:root {
  --ink: #050609;
  --surface: #090b10;
  --surface-2: #0e1118;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f4f7fb;
  --muted: #939ba8;
  --cyan: #7ee7ff;
  --violet: #9c8cff;
  --radius: 24px;
  --shell: min(1320px, calc(100vw - 64px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 62% 17%, rgba(77, 112, 255, 0.08), transparent 30%),
    var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection { color: #020305; background: var(--cyan); }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #050609;
  background: var(--cyan);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: none; }

.noise {
  position: fixed;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: .16;
  background: radial-gradient(circle, rgba(84, 198, 255, .42), rgba(88, 70, 255, .1) 38%, transparent 70%);
  transform: translate3d(calc(var(--x, 50vw) - 50%), calc(var(--y, 50vh) - 50%), 0);
  transition: opacity .3s ease;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.03);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
}

.section-shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1400px, calc(100vw - 40px));
  height: 72px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 20px;
  transform: translateX(-50%);
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease, top .35s ease;
}

.site-header.is-scrolled {
  top: 10px;
  border-color: var(--line);
  background: rgba(7, 8, 12, .7);
  box-shadow: 0 16px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand-mark { width: 32px; height: 32px; overflow: visible; }
.brand-mark path { fill: none; stroke: var(--cyan); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.brand span { font-size: .9rem; font-weight: 700; letter-spacing: .12em; }
.brand em { color: var(--cyan); font-style: normal; }

.desktop-nav { display: flex; align-items: center; gap: 38px; }
.desktop-nav a { position: relative; color: #c2c8d1; font-size: .8rem; letter-spacing: .03em; transition: color .2s ease; }
.desktop-nav a::after { position: absolute; bottom: -8px; left: 0; width: 100%; height: 1px; content: ""; background: var(--cyan); transform: scaleX(0); transition: transform .25s ease; }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--text); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); }

.header-cta { justify-self: end; padding: 10px 4px; border-bottom: 1px solid var(--line-strong); font-size: .8rem; letter-spacing: .04em; }
.header-cta span { display: inline-block; margin-left: 8px; color: var(--cyan); transition: transform .2s ease; }
.header-cta:hover span { transform: translate(2px, -2px); }

.menu-toggle, .mobile-menu { display: none; }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 150px max(32px, calc((100vw - 1320px) / 2)) 80px;
  overflow: hidden;
  isolation: isolate;
}

#neural-canvas { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; opacity: .4; }

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5,6,9,1) 0%, rgba(5,6,9,.93) 31%, rgba(5,6,9,.36) 56%, rgba(5,6,9,.24) 78%, rgba(5,6,9,.9) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 30%);
}

.hero-aura { position: absolute; z-index: -3; right: -10vw; top: 6vh; width: 72vw; height: 72vw; max-width: 1100px; max-height: 1100px; border-radius: 50%; background: radial-gradient(circle, rgba(63, 145, 255, .12), transparent 64%); filter: blur(30px); }

.hero-visual { position: absolute; z-index: -4; inset: 0 -6vw 0 0; display: flex; align-items: center; pointer-events: none; will-change: transform; }
.hero-visual img { width: 100%; min-width: 1300px; height: 100%; object-fit: cover; object-position: center; opacity: .96; }
.visual-scan { position: absolute; top: 0; left: 58%; width: 1px; height: 100%; opacity: .16; background: linear-gradient(transparent 12%, var(--cyan) 50%, transparent 88%); animation: scan 8s ease-in-out infinite; }

.hero-content { position: relative; z-index: 2; max-width: 810px; }
.eyebrow, .section-kicker { margin: 0 0 26px; color: #b2bbc7; font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span, .micro-label span { display: inline-block; width: 26px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }

.hero h1, .intro h2, .section-heading h2, .approach h2, .tech-intro h2, .contact h2 {
  margin: 0;
  font-weight: 520;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero h1 { max-width: 900px; font-size: clamp(3.8rem, 6.6vw, 7.3rem); }
.gradient-text { color: transparent; background: linear-gradient(105deg, #fff 2%, var(--cyan) 48%, #a699ff 88%); background-clip: text; -webkit-background-clip: text; }
.hero-lead { max-width: 620px; margin: 36px 0 0; color: #b5bdc9; font-size: clamp(1.05rem, 1.45vw, 1.3rem); line-height: 1.6; }

.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 30px; min-height: 56px; padding: 0 22px; overflow: hidden; border: 1px solid rgba(126,231,255,.32); border-radius: 999px; font-size: .85rem; font-weight: 650; letter-spacing: .025em; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.button::before { position: absolute; inset: 0; content: ""; background: linear-gradient(100deg, var(--cyan), #d8f8ff); transform: translateX(-102%); transition: transform .35s cubic-bezier(.22,.61,.36,1); }
.button span, .button svg { position: relative; z-index: 1; }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.button-primary { color: #051015; background: var(--cyan); box-shadow: 0 10px 42px rgba(49,190,231,.14); }
.button-primary::before { background: #f3fdff; }
.button:hover::before { transform: none; }
.button:hover { border-color: var(--cyan); box-shadow: 0 16px 55px rgba(49,190,231,.22); }
.text-link { color: #b7c0cb; font-size: .85rem; transition: color .2s ease; }
.text-link span { display: inline-block; margin-left: 8px; color: var(--cyan); transition: transform .2s ease; }
.text-link:hover { color: #fff; }
.text-link:hover span { transform: translateY(4px); }

.hero-meta { position: absolute; bottom: 40px; left: max(32px, calc((100vw - 1320px) / 2)); display: flex; gap: 32px; color: rgba(255,255,255,.42); font-size: .66rem; letter-spacing: .14em; }
.hero-status { position: absolute; right: max(32px, calc((100vw - 1320px) / 2)); bottom: 40px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.4); font-size: .64rem; letter-spacing: .16em; }
.pulse-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(126,231,255,.5); animation: pulse 2.5s infinite; }

.intro { padding-block: 150px 120px; border-top: 1px solid var(--line); }
.section-index { margin-bottom: 72px; color: #77808c; font-size: .68rem; letter-spacing: .15em; }
.intro-copy { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr); gap: 10vw; align-items: end; }
.intro h2 { font-size: clamp(2.8rem, 5.7vw, 6.5rem); }
.intro h2 span { color: #6b7480; }
.intro-detail { padding-bottom: 6px; }
.intro-detail p { margin: 0; color: #a8b0bc; font-size: 1.05rem; line-height: 1.75; }
.micro-label { display: flex; align-items: center; gap: 10px; margin-top: 34px; color: #727b87; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }

.capabilities { padding-block: 120px 160px; }
.section-heading { display: grid; grid-template-columns: 1fr 400px; gap: 10vw; align-items: end; margin-bottom: 72px; }
.section-kicker { color: var(--cyan); }
.section-heading h2, .tech-intro h2 { font-size: clamp(2.7rem, 4.5vw, 5rem); }
.section-heading > p { margin: 0 0 4px; color: #939ca8; line-height: 1.75; }

.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 520px; padding: 34px 38px 38px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); transform-style: preserve-3d; transition: background .45s ease, border-color .45s ease, transform .18s ease-out; }
.service-card::before { position: absolute; inset: -1px; content: ""; opacity: 0; background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(101,203,255,.13), transparent 34%); transition: opacity .4s ease; }
.service-card::after { position: absolute; bottom: -120px; right: -90px; width: 260px; height: 260px; border: 1px solid rgba(126,231,255,.14); border-radius: 50%; content: ""; box-shadow: 0 0 0 36px rgba(126,231,255,.02), 0 0 0 72px rgba(126,231,255,.012); transform: scale(.7); transition: transform .6s ease, border-color .6s ease; }
.service-card:hover { border-color: rgba(126,231,255,.2); background: rgba(255,255,255,.026); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { border-color: rgba(126,231,255,.32); transform: scale(1); }
.service-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; color: #6f7884; font-size: .74rem; letter-spacing: .12em; }
.service-icon { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan); font-size: 1.15rem; }
.service-card > div:nth-child(2) { position: relative; z-index: 1; max-width: 460px; }
.service-card h3 { margin: 0 0 22px; font-size: clamp(2rem, 3.3vw, 3.5rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.05; }
.service-card p { margin: 0; color: #979faa; line-height: 1.7; }
.service-card ul { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin: 34px 0 0; padding: 0; list-style: none; }
.service-card li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #adb5c0; font-size: .72rem; }

.approach { position: relative; padding-block: 160px; overflow: hidden; border-block: 1px solid var(--line); background: #080a0f; }
.approach::before { position: absolute; inset: 0; content: ""; opacity: .35; background: radial-gradient(circle at 75% 45%, rgba(83,78,207,.22), transparent 34%); }
.approach-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 8vw; }
.approach h2 { font-size: clamp(3rem, 5vw, 5.6rem); }
.approach-copy > p:last-child { max-width: 520px; margin: 40px 0 0; color: #969faa; font-size: 1.05rem; line-height: 1.75; }

.system-map { position: relative; min-height: 610px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(4,5,8,.72); box-shadow: inset 0 1px rgba(255,255,255,.03), 0 40px 100px rgba(0,0,0,.28); }
.map-grid { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle, #000 20%, transparent 78%); }
.system-map svg { position: absolute; inset: 6% 4%; width: 92%; height: 88%; overflow: visible; }
.map-path { fill: none; }
.map-path-glow { stroke: rgba(126,231,255,.16); stroke-width: 10; filter: blur(7px); }
.map-path-line { stroke: url(#none); stroke: var(--cyan); stroke-width: 1.4; stroke-dasharray: 8 12; animation: dash 14s linear infinite; }
.system-map svg circle { fill: #0b0e14; stroke: var(--cyan); stroke-width: 2; }
.map-node { position: absolute; z-index: 2; display: grid; gap: 2px; min-width: 160px; padding: 15px 18px; border: 1px solid var(--line); border-radius: 12px; background: rgba(11,14,20,.88); box-shadow: 0 12px 38px rgba(0,0,0,.25); backdrop-filter: blur(10px); }
.map-node span { color: var(--cyan); font-size: .6rem; letter-spacing: .16em; }
.map-node strong { font-size: .92rem; font-weight: 550; }
.map-node small { color: #747d89; font-size: .65rem; }
.node-one { top: 9%; left: 5%; }
.node-two { top: 34%; left: 41%; }
.node-three { right: 5%; bottom: 28%; }
.node-four { right: 8%; bottom: 6%; }
.map-orbit { position: absolute; border: 1px solid rgba(126,231,255,.12); border-radius: 50%; }
.orbit-a { right: 6%; bottom: -19%; width: 54%; aspect-ratio: 1; animation: spin 28s linear infinite; }
.orbit-b { right: 16%; bottom: -8%; width: 35%; aspect-ratio: 1; border-style: dashed; animation: spin 18s linear infinite reverse; }

.technology { display: grid; grid-template-columns: .68fr 1.32fr; gap: 9vw; padding-block: 160px; }
.tech-intro { position: sticky; top: 130px; align-self: start; }
.tech-intro > p:last-child { max-width: 440px; margin: 34px 0 0; color: #919aa6; line-height: 1.75; }
.tech-stack { border-top: 1px solid var(--line); }
.tech-row { display: grid; grid-template-columns: 42px 1fr 1fr 24px; gap: 20px; align-items: center; min-height: 130px; border-bottom: 1px solid var(--line); transition: padding .3s ease, background .3s ease; }
.tech-row:hover { padding-inline: 14px; background: rgba(255,255,255,.02); }
.tech-row span { color: var(--cyan); font-size: .66rem; }
.tech-row strong { font-size: 1.2rem; font-weight: 520; letter-spacing: -.02em; }
.tech-row em { color: #78818e; font-size: .86rem; font-style: normal; }
.tech-row i { color: #535b66; font-style: normal; transition: color .2s ease, transform .2s ease; }
.tech-row:hover i { color: var(--cyan); transform: translate(2px,-2px); }

.contact { position: relative; min-height: 720px; margin-bottom: 40px; overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background:
  linear-gradient(115deg, rgba(255,255,255,.035), transparent 46%),
  #080a0f;
}
.contact::before { position: absolute; inset: 0; content: ""; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, transparent, #000); }
.contact-content { position: relative; z-index: 2; max-width: 900px; padding: 120px 8%; }
.contact h2 { font-size: clamp(3.3rem, 6.2vw, 7rem); }
.contact-content > p:not(.section-kicker) { max-width: 610px; margin: 34px 0 42px; color: #a0a9b5; font-size: 1.05rem; line-height: 1.75; }
.button-large { min-height: 64px; padding-inline: 28px; }
.contact-orb { position: absolute; right: -16%; bottom: -48%; width: 72%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(126,231,255,.2); background: radial-gradient(circle at 36% 30%, rgba(126,231,255,.24), rgba(82,63,209,.11) 24%, transparent 58%); box-shadow: inset 0 0 100px rgba(126,231,255,.06), 0 0 100px rgba(86,85,255,.07); animation: float 8s ease-in-out infinite; }
.contact-orb::before, .contact-orb::after { position: absolute; inset: 9%; border: 1px solid rgba(255,255,255,.09); border-radius: inherit; content: ""; }
.contact-orb::after { inset: 21%; border-style: dashed; animation: spin 25s linear infinite; }
.contact-code { position: absolute; right: 4%; top: 9%; color: rgba(255,255,255,.24); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .65rem; letter-spacing: .18em; line-height: 1.8; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 140px; color: #656e7a; font-size: .7rem; letter-spacing: .08em; }
.site-footer p { margin: 0; }
.site-footer > span { justify-self: end; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.65,.3,1), transform .8s cubic-bezier(.2,.65,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.services-grid .reveal:nth-child(2), .tech-stack .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3), .tech-stack .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4), .tech-stack .reveal:nth-child(4) { transition-delay: .24s; }

@keyframes scan { 0%,100% { transform: translateX(-22vw); opacity: 0; } 15%,80% { opacity: .18; } 50% { transform: translateX(28vw); opacity: .3; } }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(126,231,255,0); } 100% { box-shadow: 0 0 0 0 rgba(126,231,255,0); } }
@keyframes dash { to { stroke-dashoffset: -200; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-18px,-22px,0); } }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 40px, 900px); }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; place-content: center; gap: 5px; justify-self: end; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(5,6,9,.5); }
  .menu-toggle span { display: block; width: 17px; height: 1px; background: #fff; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: 78px; right: 0; left: 0; display: grid; padding: 18px 22px 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(7,8,12,.96); backdrop-filter: blur(20px); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 13px 4px; border-bottom: 1px solid var(--line); color: #ccd2dc; font-size: .9rem; }
  .mobile-menu a:last-child { border-bottom: 0; color: var(--cyan); }
  .hero { padding-inline: 28px; }
  .hero-visual { right: -46vw; opacity: .74; }
  .hero::after { background: linear-gradient(90deg, rgba(5,6,9,.98), rgba(5,6,9,.72) 52%, rgba(5,6,9,.48)), linear-gradient(0deg, var(--ink), transparent 35%); }
  .intro-copy, .section-heading, .approach-grid, .technology { grid-template-columns: 1fr; }
  .intro-copy, .section-heading, .approach-grid { gap: 58px; }
  .section-heading > p { max-width: 600px; }
  .approach-grid { gap: 80px; }
  .technology { gap: 70px; }
  .tech-intro { position: static; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer p { display: none; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 30px); --radius: 18px; }
  .cursor-glow { display: none; }
  .site-header { top: 10px; width: calc(100vw - 20px); height: 64px; padding: 0 14px; background: rgba(7,8,12,.64); backdrop-filter: blur(16px); }
  .brand-mark { width: 28px; height: 28px; }
  .brand span { font-size: .78rem; }
  .hero { min-height: 900px; align-items: start; padding: 170px 20px 100px; }
  .hero-visual { inset: auto -300px 0 auto; align-items: end; width: 1150px; height: auto; opacity: .76; }
  .hero-visual img { width: 1150px; min-width: 0; height: auto; object-fit: contain; object-position: center bottom; }
  .hero::after { background: linear-gradient(180deg, rgba(5,6,9,.99) 0%, rgba(5,6,9,.88) 33%, rgba(5,6,9,.32) 60%, rgba(5,6,9,.88) 100%); }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 5.1rem); }
  .hero-lead { max-width: 540px; font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-meta { left: 20px; bottom: 36px; display: grid; gap: 5px; }
  .hero-status { display: none; }
  .intro { padding-block: 100px 80px; }
  .section-index { margin-bottom: 46px; }
  .intro h2 { font-size: 3rem; }
  .capabilities { padding-block: 80px 100px; }
  .section-heading { margin-bottom: 46px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 460px; padding: 26px 24px 28px; }
  .service-card h3 { font-size: 2.55rem; }
  .approach { padding-block: 100px; }
  .system-map { min-height: 560px; }
  .map-node { min-width: 144px; padding: 12px 14px; }
  .node-one { top: 7%; left: 4%; }
  .node-two { top: 31%; left: 28%; }
  .node-three { right: 4%; bottom: 29%; }
  .node-four { right: 7%; bottom: 6%; }
  .technology { padding-block: 100px; }
  .tech-row { grid-template-columns: 30px 1fr 20px; gap: 12px; min-height: 120px; }
  .tech-row em { display: none; }
  .contact { width: calc(100% - 20px); min-height: 680px; margin-bottom: 20px; border-radius: 22px; }
  .contact-content { padding: 84px 24px; }
  .contact h2 { font-size: 3.6rem; }
  .contact-orb { right: -38%; bottom: -22%; width: 100%; }
  .button-large { max-width: 100%; gap: 16px; font-size: .76rem; }
  .site-footer { min-height: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
