:root {
  color-scheme: dark;
  --background: #07101f;
  --surface: rgba(13, 29, 50, 0.94);
  --surface-strong: #0c1e34;
  --border: rgba(74, 108, 145, 0.52);
  --border-soft: rgba(74, 108, 145, 0.3);
  --text: #f1f7fc;
  --muted: #94a5ba;
  --muted-dark: #66788f;
  --cyan: #22d3ee;
  --cyan-bright: #00c7f2;
  --violet: #8b5cf6;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-pixel: "Press Start 2P", monospace;
  --font-mono: "JetBrains Mono", monospace;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 15% 4%, rgba(0, 211, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.11), transparent 34rem),
    linear-gradient(rgba(72, 105, 139, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 105, 139, 0.24) 1px, transparent 1px),
    var(--background);
  background-attachment: fixed;
  background-position: 0 0, 0 0, -1px -1px, -1px -1px, 0 0;
  background-size: auto, auto, 32px 32px, 32px 32px, auto;
  color: var(--text);
  font-family: var(--font-sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

ul,
ol,
dl,
p,
h1,
h2,
h3 {
  margin-top: 0;
}

ul,
ol {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: rgba(34, 211, 238, 0.35);
  color: white;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.container--narrow {
  max-width: 960px;
}

.section {
  position: relative;
  padding-block: 96px;
}

.pixel-text,
.pixel-label,
.eyebrow,
.project-card__code,
.status-chip {
  font-family: var(--font-pixel);
  letter-spacing: 0.05em;
}

.pixel-label {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 9px;
  line-height: 1.7;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(105deg, var(--cyan-bright), #39a9ff 55%, var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  transform: translateY(-90px);
  border-radius: 3px;
  background: var(--cyan);
  color: #03101b;
  font-weight: 700;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(7, 16, 31, 0.48);
  backdrop-filter: blur(8px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header--scrolled {
  border-color: rgba(71, 99, 132, 0.55);
  background: rgba(7, 16, 31, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-size: 10px;
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
}

.brand img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 16px -6px var(--cyan);
}

.brand .brand__name {
  color: var(--cyan);
}

.brand .brand__cursor {
  color: var(--violet);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  padding: 9px 8px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 14px;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 8px;
  bottom: 3px;
  left: 8px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--cyan-bright), var(--violet));
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.65);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: linear-gradient(105deg, rgba(34, 211, 238, 0.1), rgba(139, 92, 246, 0.12));
  box-shadow: 0 8px 22px -14px rgba(34, 211, 238, 0.85);
  color: var(--text);
  text-shadow: 0 0 12px rgba(34, 211, 238, 0.35);
  transform: translateY(-2px);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan);
  font-size: 11px;
}

.availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.language-switcher {
  display: inline-grid;
  min-width: 38px;
  min-height: 34px;
  place-items: center;
  border: 1px solid rgba(139, 92, 246, 0.45);
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.language-switcher:hover,
.language-switcher:focus-visible {
  border-color: var(--cyan);
  background: rgba(34, 211, 238, 0.13);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(12, 28, 48, 0.7);
  cursor: pointer;
  font-size: 22px;
}

.mobile-menu {
  padding: 8px 20px 14px;
  border-top: 1px solid var(--border-soft);
  background: rgba(7, 16, 31, 0.97);
}

.mobile-menu a {
  display: block;
  padding: 12px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 14px;
}

.mobile-menu a:hover {
  background: rgba(37, 54, 76, 0.55);
  color: white;
}

.hud-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(15, 31, 52, 0.94), rgba(9, 24, 43, 0.95));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.hover-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hover-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.58);
  box-shadow: 0 18px 48px -28px rgba(34, 211, 238, 0.62);
}

.pixel-corners::before,
.pixel-corners::after {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.9);
}

.pixel-corners::before {
  top: -2px;
  left: -2px;
}

.pixel-corners::after {
  right: -2px;
  bottom: -2px;
  background: var(--violet);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.9);
}

.scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(34, 211, 238, 0.04) 4px
  );
}

.hero {
  padding-block: 80px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.75fr);
}

.hero__content {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 9px 12px;
  border: 1px solid rgba(34, 211, 238, 0.4);
  border-radius: 4px;
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan);
  font-size: 9px;
  line-height: 1.5;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 28px;
  color: #f8fbff;
  font-size: clamp(56px, 5.7vw, 84px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero__lead strong,
.prose strong {
  color: var(--text);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button-row--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--cyan-bright);
  box-shadow: 0 0 26px -9px var(--cyan);
  color: #04101a;
}

.button--primary:hover {
  background: #48ddf7;
}

.button--outline {
  border-color: var(--border);
  background: rgba(12, 26, 46, 0.74);
  color: var(--text);
}

.button--outline:hover {
  border-color: rgba(34, 211, 238, 0.65);
  color: var(--cyan);
}

.button--small {
  min-height: 38px;
  padding-inline: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  background: rgba(12, 26, 46, 0.68);
  color: var(--muted);
  font-size: 14px;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(34, 211, 238, 0.48);
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 10px 24px -17px rgba(34, 211, 238, 0.9);
  color: var(--cyan);
  transform: translateY(-2px);
}

.official-link__icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button .official-link__icon {
  width: 18px;
  height: 18px;
}

.hero-card {
  width: 100%;
  max-width: 440px;
  padding: 12px;
  justify-self: end;
}

.hero-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 9px;
  background: #020b13;
}

.hero-card__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(2, 11, 19, 0.8), transparent 45%);
}

.hero-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  grid-template-columns: repeat(3, 1fr);
}

.hero-stats > div {
  padding: 11px 7px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(3, 12, 27, 0.38);
  text-align: center;
}

.hero-stats .hero-stats__active {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.1);
}

.hero-stats dt {
  margin-bottom: 5px;
  color: var(--muted-dark);
  font-family: var(--font-pixel);
  font-size: 7px;
}

.hero-stats dd {
  margin: 0;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
}

.hero-stats__active dd {
  color: var(--cyan);
}

.particle {
  position: absolute;
  width: 11px;
  height: 11px;
  animation: float 4s ease-in-out infinite;
}

.particle--cyan {
  top: 18%;
  left: 9%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.particle--violet {
  right: 10%;
  bottom: 10%;
  background: var(--violet);
  box-shadow: 0 0 16px var(--violet);
  animation-duration: 5s;
}

.section-header {
  max-width: 760px;
}

.section-header h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(32px, 4vw, 43px);
  letter-spacing: -0.035em;
}

.section-header > p:not(.pixel-label) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-header__line {
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-header--center .section-header__line {
  margin-inline: auto;
}

.services-section {
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.035), transparent);
}

.service-links-grid {
  display: grid;
  gap: 18px;
  margin-top: 46px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-link-card {
  display: flex;
  min-height: 280px;
  padding: 26px;
  flex-direction: column;
}

.service-link-card__code {
  width: fit-content;
  margin-bottom: 28px;
  padding: 6px 8px;
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 3px;
  background: rgba(34, 211, 238, 0.075);
  color: var(--cyan);
  font-family: var(--font-pixel);
  font-size: 8px;
}

.service-link-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.service-link-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-link-card strong {
  margin-top: auto;
  color: var(--cyan);
  font-size: 12px;
}

.service-link-card:hover strong span {
  display: inline-block;
  transform: translateX(4px);
}

.about-grid {
  display: grid;
  gap: 70px;
  margin-top: 48px;
  grid-template-columns: 0.85fr 1.15fr;
}

.prose {
  color: var(--muted);
  line-height: 1.85;
}

.prose p {
  margin-bottom: 18px;
}

.values-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.values-grid li {
  padding: 25px;
}

.value-icon {
  display: block;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 23px;
}

.values-grid h3 {
  margin: 20px 0 10px;
  color: var(--text);
  font-size: 9px;
}

.values-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 28px;
  border-left: 1px solid var(--border);
}

.timeline__item {
  position: relative;
  padding-bottom: 26px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: absolute;
  top: 27px;
  left: -35px;
  width: 13px;
  height: 13px;
  background: #3d5c77;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.38);
}

.timeline__marker--active {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.72);
}

.timeline__card {
  padding: 23px;
}

.timeline__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.timeline__heading h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.timeline__heading > span {
  color: var(--cyan);
  font-size: 14px;
}

.status-chip {
  margin-left: auto;
  padding: 5px 7px;
  border: 1px solid rgba(34, 211, 238, 0.42);
  border-radius: 3px;
  background: rgba(34, 211, 238, 0.09);
  color: var(--cyan);
  font-size: 7px;
}

.timeline__card > p {
  max-width: 950px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.chip-list li {
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: rgba(3, 12, 27, 0.35);
  color: var(--muted);
  font-size: 11px;
}

.chip-list--cyan li {
  border-color: rgba(34, 211, 238, 0.32);
  background: rgba(34, 211, 238, 0.09);
  color: var(--cyan);
}

.technology-groups {
  margin-top: 48px;
}

.tech-group + .tech-group {
  margin-top: 34px;
}

.tech-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.tech-card {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 13px;
}

.tech-card img {
  width: 34px;
  height: 34px;
  transition: transform 180ms ease;
}

.tech-card:hover img {
  transform: scale(1.12);
}

.tech-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.featured-card {
  display: grid;
  overflow: hidden;
  gap: 42px;
  margin-top: 48px;
  padding: 40px;
  background:
    radial-gradient(circle at 5% 0%, rgba(34, 211, 238, 0.13), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(139, 92, 246, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(15, 31, 52, 0.95), rgba(9, 24, 43, 0.96));
  grid-template-columns: 1fr 1fr;
}

.featured-card__intro {
  color: #c7d2df;
  line-height: 1.85;
}

.disclaimer {
  display: flex;
  gap: 11px;
  margin: 19px 0 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: rgba(2, 10, 23, 0.34);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.disclaimer span {
  color: var(--cyan);
}

.step-grid {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  grid-template-columns: repeat(3, 1fr);
}

.step-grid li {
  padding: 16px;
}

.step-grid small {
  display: block;
  margin-bottom: 13px;
  color: var(--cyan);
  font-family: var(--font-pixel);
  font-size: 7px;
}

.step-grid strong {
  color: var(--text);
  font-size: 13px;
}

.console {
  overflow: hidden;
  align-self: start;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(3, 14, 27, 0.78);
}

.console__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(1, 8, 19, 0.34);
}

.console__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f4728d;
}

.console__bar i:nth-child(2) {
  background: #f7c55d;
}

.console__bar i:nth-child(3) {
  background: var(--cyan);
}

.console__bar span {
  margin-left: 8px;
  color: var(--muted-dark);
  font-family: var(--font-pixel);
  font-size: 7px;
}

.console pre {
  min-height: 290px;
  margin: 0;
  overflow-x: auto;
  padding: 24px;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(34, 211, 238, 0.035) 4px
  );
  color: #cbd5e1;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.9;
}

.code-violet { color: #c4b5fd; }
.code-cyan { color: #67e8f9; }
.code-blue { color: #7dd3fc; }
.code-green { color: #6ee7b7; }
.code-yellow { color: #fde68a; }

.projects-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
}

.project-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--border);
}

.project-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, var(--background), transparent 55%);
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card:hover .project-card__media img {
  transform: scale(1.045);
}

.project-card__code {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 6px 8px;
  border: 1px solid rgba(34, 211, 238, 0.42);
  border-radius: 3px;
  background: rgba(7, 16, 31, 0.82);
  color: var(--cyan);
  font-size: 8px;
}

.project-card__body {
  display: flex;
  min-height: 260px;
  padding: 24px;
  flex-direction: column;
}

.project-card__body h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.project-card__body > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.project-card__body .button {
  align-self: flex-start;
  margin-top: auto;
}

.workflow-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  grid-template-columns: 0.9fr 1.1fr;
}

.principles {
  display: grid;
  gap: 12px;
}

.principles li {
  display: flex;
  gap: 17px;
  padding: 20px;
}

.principles > li > strong {
  color: var(--cyan);
  font-family: var(--font-pixel);
  font-size: 19px;
  line-height: 1.3;
  text-shadow: 0 0 9px rgba(34, 211, 238, 0.5);
}

.principles h3 {
  margin-bottom: 6px;
  font-size: 15px;
}

.principles p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.workflow-console {
  align-self: stretch;
}

.workflow-console pre {
  min-height: 306px;
}

.console__footer {
  padding: 18px;
  border-top: 1px solid var(--border);
}

.contact-card {
  display: grid;
  overflow: hidden;
  margin-top: 48px;
  padding: 56px 48px;
  align-items: start;
  gap: 48px;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(15, 31, 52, 0.94), rgba(9, 24, 43, 0.95));
  text-align: left;
}

.signal {
  margin-bottom: 18px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 26px;
}

.contact-card h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(28px, 4.4vw, 43px);
  letter-spacing: -0.04em;
}

.contact-card__intro > p:not(.signal) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card__intro .button {
  margin-top: 24px;
}

.contact-card__response {
  color: var(--cyan) !important;
  font-family: var(--font-mono);
  font-size: 12px;
}

.contact-card__email a {
  color: var(--cyan);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.proposal-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(71, 99, 132, 0.64);
  border-radius: 10px;
  background: rgba(4, 14, 27, 0.68);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.proposal-form__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proposal-form label:not(.proposal-form__consent, .proposal-form__honey) {
  display: grid;
  gap: 8px;
}

.proposal-form label > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.proposal-form input,
.proposal-form select,
.proposal-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 7px;
  outline: none;
  background: rgba(7, 16, 31, 0.88);
  color: var(--text);
  font: inherit;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.proposal-form input,
.proposal-form select {
  min-height: 46px;
  padding: 0 13px;
}

.proposal-form textarea {
  min-height: 132px;
  padding: 13px;
  resize: vertical;
}

.proposal-form input:focus,
.proposal-form select:focus,
.proposal-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.proposal-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.proposal-form__consent input {
  width: 17px;
  min-height: 17px;
  margin-top: 2px;
  accent-color: var(--cyan);
}

.proposal-form__processor {
  margin: -8px 0 0;
  color: var(--muted-dark);
  font-size: 11px;
  line-height: 1.5;
}

.proposal-form__processor a {
  color: var(--cyan);
}

.proposal-form .button {
  justify-self: start;
}

.proposal-form .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.proposal-form__success {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(34, 211, 238, 0.36);
  border-radius: 7px;
  background: rgba(34, 211, 238, 0.09);
  color: var(--cyan);
  font-size: 13px;
  line-height: 1.55;
}

.proposal-form__success--error {
  border-color: rgba(239, 68, 68, 0.38);
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
}

.proposal-form__honey {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer {
  border-top: 1px solid var(--border-soft);
  background: rgba(7, 16, 31, 0.74);
}

.footer__inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted-dark);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer strong {
  color: var(--cyan);
  font-size: 9px;
}

.footer__seo-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  font-size: 11px;
}

.footer__seo-links a {
  transition: color 160ms ease;
}

.footer__seo-links a:hover {
  color: var(--cyan);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  50% { transform: translateY(-7px); }
}

@media (max-width: 1100px) {
  .availability {
    display: none;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.8fr);
  }

  .hero h1 {
    font-size: clamp(52px, 6.8vw, 70px);
  }

  .tech-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    padding-block: 64px 82px;
  }

  .hero__grid {
    gap: 58px;
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: center;
  }

  .about-grid,
  .featured-card,
  .workflow-grid,
  .contact-card {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 40px, var(--max-width));
  }

  .section {
    padding-block: 76px;
  }

  .hero {
    padding-top: 56px;
  }

  .eyebrow {
    font-size: 7px;
  }

  .hero h1 {
    font-size: clamp(37px, 10.6vw, 51px);
    letter-spacing: -0.045em;
    line-height: 1.04;
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .button-row:not(.button-row--center) {
    flex-direction: column;
  }

  .button-row:not(.button-row--center) .button {
    width: 100%;
  }

  .hero-card {
    max-width: 430px;
  }

  .values-grid,
  .service-links-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 22px;
  }

  .timeline__marker {
    left: -29px;
  }

  .timeline__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-chip {
    margin-left: 0;
  }

  .tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-card {
    padding: 27px 20px;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .console pre {
    min-height: 250px;
    padding: 18px;
    font-size: 11px;
  }

  .project-card__body {
    min-height: 240px;
  }

  .contact-card {
    padding: 44px 22px;
  }

  .proposal-form {
    padding: 22px;
  }

  .proposal-form__grid {
    grid-template-columns: 1fr;
  }

  .button-row--center {
    align-items: stretch;
    flex-direction: column;
  }

  .footer__inner {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .footer__seo-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
