:root {
  --void: #04060a;
  --void-soft: #081019;
  --ice: #dff6ff;
  --steel: #7d97ab;
  --steel-dark: #42576a;
  --cyan: #00eaff;
  --cyan-bright: #5ff8ff;
  --magenta: #ff2d78;
  --amber: #ffb300;
  --line: rgba(0, 234, 255, .16);
  --line-strong: rgba(0, 234, 255, .42);
  --panel: rgba(7, 15, 24, .78);
  --display: "Chakra Petch", "Arial Narrow", sans-serif;
  --body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Share Tech Mono", "IBM Plex Mono", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--void); }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--void);
  color: var(--ice);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: .34;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .2) 0, rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: multiply;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img, canvas { display: block; max-width: 100%; }
::selection { color: var(--void); background: var(--cyan); }

.skip-link {
  position: fixed;
  z-index: 500;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--void);
  background: var(--cyan);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.wrap { width: min(1200px, calc(100% - 60px)); margin: 0 auto; }
.display { font-family: var(--display); font-weight: 700; letter-spacing: -.025em; line-height: .98; text-transform: uppercase; }
.mono { font-family: var(--mono); }
.neon { color: var(--cyan); text-shadow: 0 0 22px rgba(0, 234, 255, .58); }
.magenta { color: var(--magenta); text-shadow: 0 0 22px rgba(255, 45, 120, .48); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; box-shadow: 0 0 8px currentColor; }
.section { position: relative; z-index: 4; padding: 118px 0; background: var(--void); }
.section-tight { padding-top: 0; }
.section[id] { scroll-margin-top: 92px; }
.section-head { max-width: 690px; margin-bottom: 52px; }
.section-head h2 { margin: 16px 0; font-size: clamp(34px, 5vw, 62px); }
.section-head p { max-width: 620px; color: var(--steel); font-size: clamp(16px, 1.7vw, 19px); }

.progress { position: fixed; z-index: 210; top: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--magenta)); box-shadow: 0 0 12px var(--cyan); }
.site-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(4, 6, 10, .94), rgba(4, 6, 10, .64));
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .7s ease, transform .7s ease;
}
.site-nav.is-visible, .no-intro .site-nav { opacity: 1; transform: none; }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 13px; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: .09em; text-transform: uppercase; }
.brand-mark { position: relative; width: 24px; height: 24px; border: 1px solid var(--cyan); box-shadow: 0 0 15px rgba(0, 234, 255, .48); transform: rotate(45deg); }
.brand-mark::after { content: ""; position: absolute; inset: 6px; background: var(--magenta); box-shadow: 0 0 10px var(--magenta); }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); margin-left: auto; }
.nav-links a { color: var(--steel); font-family: var(--mono); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: var(--cyan); }
.nav-links small { margin-right: 5px; color: var(--cyan); font-size: 10px; opacity: .58; }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 21px;
  border: 1px solid var(--line-strong);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 92% 100%, 0 100%);
  background: rgba(4, 6, 10, .48);
  color: var(--cyan);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s, background .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.button:hover { color: var(--void); background: var(--cyan); border-color: var(--cyan); box-shadow: 0 0 28px -7px var(--cyan); }
.button-primary { color: var(--void); background: var(--cyan); border-color: var(--cyan); }
.button-primary:hover { color: white; background: var(--magenta); border-color: var(--magenta); box-shadow: 0 0 28px -7px var(--magenta); }
.button:focus-visible, .nav-links a:focus-visible, .footer-links a:focus-visible, .brand:focus-visible, .request-field input:focus-visible, .request-field select:focus-visible, .request-field textarea:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.intro {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 20px;
  background: var(--void);
  text-align: center;
  transition: opacity .8s ease, visibility .8s ease;
}
.intro.is-gone { visibility: hidden; opacity: 0; pointer-events: none; }
.intro-kicker { color: var(--cyan); font-family: var(--mono); font-size: 12px; letter-spacing: .4em; }
.boot-log { min-height: 104px; color: var(--cyan); font-family: var(--mono); font-size: 13px; letter-spacing: .08em; }
.boot-log .ok { color: var(--cyan-bright); }

.hud-corner { position: fixed; z-index: 80; width: 27px; height: 27px; border-color: var(--line-strong); border-style: solid; pointer-events: none; opacity: 0; transition: opacity .8s; }
.hud-corner.is-visible, .no-intro .hud-corner { opacity: .72; }
.hud-corner.tl { top: 86px; left: 22px; border-width: 1px 0 0 1px; }
.hud-corner.tr { top: 86px; right: 22px; border-width: 1px 1px 0 0; }
.hud-corner.bl { bottom: 22px; left: 22px; border-width: 0 0 1px 1px; }
.hud-corner.br { right: 22px; bottom: 22px; border-width: 0 1px 1px 0; }
.hud { position: fixed; z-index: 80; color: var(--steel); font-family: var(--mono); font-size: 11px; pointer-events: none; opacity: 0; transition: opacity .8s; }
.hud.is-visible, .no-intro .hud { opacity: .86; }
.hud strong { color: var(--cyan); font-weight: 400; }
.hud-tl { top: 92px; left: 31px; }
.hud-tr { top: 92px; right: 31px; text-align: right; }
.hud-bl { bottom: 27px; left: 31px; }

.hero { position: relative; height: 100svh; min-height: 680px; overflow: hidden; display: flex; align-items: flex-end; background: var(--void); }
.hero-art, .hero-shade, .hero-flash, .hero-rain, .hero-core { position: absolute; inset: 0; }
.hero-art { z-index: 0; background: #06111b url("art-city.jpg") center center / cover no-repeat; transform: scale(1.08); will-change: transform; }
.hero-shade { z-index: 2; background: linear-gradient(180deg, rgba(4, 6, 10, .6) 0%, rgba(4, 6, 10, .04) 35%, rgba(4, 6, 10, .64) 74%, var(--void) 100%), linear-gradient(90deg, rgba(4, 6, 10, .72), transparent 58%); }
.hero-rain { z-index: 1; width: 100%; height: 100%; opacity: .5; mix-blend-mode: screen; pointer-events: none; }
.hero-core { z-index: 2; width: 100%; height: 100%; mix-blend-mode: screen; pointer-events: none; }
.hero-flash { z-index: 3; opacity: 0; pointer-events: none; background: linear-gradient(90deg, rgba(255, 45, 120, .25), transparent 40%, transparent 60%, rgba(0, 234, 255, .25)); mix-blend-mode: screen; }
.hero-flash.is-on { opacity: 1; transform: translateX(4px); }
.hero-content { position: relative; z-index: 5; width: 100%; padding-bottom: clamp(64px, 10vh, 110px); }
.hero-copy { max-width: 980px; }
.hero h1 { max-width: 1020px; margin: 21px 0 25px; font-size: clamp(50px, 8.6vw, 116px); }
.hero p { max-width: 610px; margin-bottom: 31px; color: var(--ice); font-size: clamp(17px, 2vw, 21px); text-shadow: 0 2px 22px rgba(0, 0, 0, .86); }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; }
.kinetic { display: inline-block; overflow: hidden; vertical-align: top; }
.kinetic > span { display: inline-block; transform: translateY(118%); transition: transform 1s cubic-bezier(.16, 1, .3, 1); }
.kinetic.is-in > span { transform: none; }
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after { content: attr(data-text); position: absolute; inset: 0; opacity: .84; pointer-events: none; }
.glitch::before { color: var(--magenta); animation: glitch-a 3s infinite steps(2); }
.glitch::after { color: var(--cyan); animation: glitch-b 2.6s infinite steps(2); }
@keyframes glitch-a { 0%, 92%, 100% { clip-path: inset(0 0 100%); transform: none; } 93% { clip-path: inset(20% 0 40%); transform: translate(-3px, 1px); } 96% { clip-path: inset(60% 0 10%); transform: translate(2px, -1px); } }
@keyframes glitch-b { 0%, 90%, 100% { clip-path: inset(0 0 100%); transform: none; } 91% { clip-path: inset(10% 0 60%); transform: translate(3px, -1px); } 94% { clip-path: inset(50% 0 20%); transform: translate(-2px, 1px); } }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: rgba(0, 234, 255, .025); }
.metric { min-height: 145px; padding: 31px 25px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric-value { color: var(--cyan); font-family: var(--display); font-size: clamp(36px, 4.5vw, 50px); font-weight: 700; line-height: 1; text-shadow: 0 0 18px rgba(0, 234, 255, .38); }
.metric-label { margin-top: 12px; color: var(--steel); font-family: var(--mono); font-size: 13px; }
.metric-note { grid-column: 1 / -1; padding: 10px 24px; border-top: 1px solid var(--line); color: var(--steel-dark); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.feature-card { position: relative; min-height: 230px; padding: 29px; border: 1px solid var(--line); clip-path: polygon(0 0, 100% 0, 100% 88%, 94% 100%, 0 100%); background: linear-gradient(180deg, rgba(0, 234, 255, .05), rgba(4, 6, 10, .18)); transition: transform .25s, border-color .25s, background .25s; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--line-strong); background: linear-gradient(180deg, rgba(0, 234, 255, .09), rgba(4, 6, 10, .18)); }
.feature-index, .feature-glyph { color: var(--cyan); font-family: var(--mono); font-size: 11px; letter-spacing: .12em; opacity: .65; }
.feature-glyph { position: absolute; top: 21px; right: 21px; font-size: 13px; opacity: .42; }
.feature-card h3 { margin: 15px 0 10px; font-family: var(--display); font-size: 21px; font-weight: 600; text-transform: uppercase; }
.feature-card p { color: var(--steel); font-size: 14px; }

.art-panel { position: relative; min-height: 560px; overflow: hidden; display: flex; align-items: center; border: 1px solid var(--line); clip-path: polygon(0 0, 100% 0, 100% 93%, 97% 100%, 0 100%); background: var(--void-soft); }
.art-panel-image, .art-panel-shade { position: absolute; inset: 0; }
.art-panel-image { z-index: 0; background-position: center; background-size: cover; }
.art-eye { background-image: url("art-eye.jpg"); background-position: 77% 42%; }
.art-diver { background-image: url("art-diver.jpg"); }
.art-panel-shade { z-index: 1; background: linear-gradient(90deg, rgba(4, 6, 10, .98) 0%, rgba(4, 6, 10, .83) 43%, rgba(4, 6, 10, .1) 80%); }
.art-panel-content { position: relative; z-index: 2; max-width: 640px; padding: 66px 48px; }
.art-panel h2 { margin: 16px 0; font-size: clamp(37px, 5vw, 62px); }
.art-panel p { margin-bottom: 25px; color: var(--steel); font-size: 17px; }

.trace-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 58px; align-items: center; }
.trace-copy h2 { margin: 16px 0; font-size: clamp(36px, 5vw, 60px); }
.trace-copy p { color: var(--steel); font-size: 17px; }
.trace-window { overflow: hidden; border: 1px solid var(--line-strong); clip-path: polygon(0 0, 100% 0, 100% 94%, 96% 100%, 0 100%); background: #07101a; box-shadow: 0 34px 80px rgba(0, 0, 0, .28); }
.trace-bar { display: flex; justify-content: space-between; gap: 20px; padding: 15px 19px; border-bottom: 1px solid var(--line); color: var(--steel); font-family: var(--mono); font-size: 12px; }
.trace-bar strong { color: var(--cyan); font-weight: 400; }
.trace-body { padding: 21px; }
.trace-summary { display: flex; justify-content: space-between; margin-bottom: 20px; font-family: var(--mono); font-size: 12px; }
.trace-summary span:last-child { color: var(--magenta); }
.span-row { display: grid; grid-template-columns: 110px 1fr 50px; gap: 14px; align-items: center; margin: 15px 0; color: var(--steel); font-family: var(--mono); font-size: 12px; }
.span-track { height: 8px; background: rgba(125, 151, 171, .12); }
.span-fill { width: 0; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--cyan-bright)); box-shadow: 0 0 12px rgba(0, 234, 255, .36); transition: width 1.2s cubic-bezier(.16, 1, .3, 1); }
.span-row:nth-child(3) .span-fill { background: linear-gradient(90deg, var(--magenta), #ff71a3); }
.span-row:nth-child(4) .span-fill { background: linear-gradient(90deg, var(--amber), #ffe071); }
.reveal.is-in .span-fill { width: var(--span); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.price-card { position: relative; padding: 32px; border: 1px solid var(--line); background: linear-gradient(160deg, rgba(0, 234, 255, .055), transparent 50%); }
.price-card.popular { border-color: var(--magenta); box-shadow: inset 0 0 44px rgba(255, 45, 120, .05); }
.price-badge { position: absolute; top: 0; right: 0; padding: 6px 11px; background: var(--magenta); color: white; font-family: var(--mono); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.price-card h3 { font-family: var(--display); font-size: 25px; text-transform: uppercase; }
.price { margin: 17px 0 20px; color: var(--cyan); font-family: var(--display); font-size: 42px; font-weight: 700; }
.price small { color: var(--steel); font-family: var(--mono); font-size: 12px; font-weight: 400; }
.price-card p { min-height: 52px; margin-bottom: 23px; color: var(--steel); font-size: 14px; }

.cta { position: relative; overflow: hidden; min-height: 520px; display: grid; place-items: center; padding: 84px 40px; border: 1px solid var(--line-strong); clip-path: polygon(0 0, 100% 0, 100% 91%, 96% 100%, 0 100%, 0 9%); text-align: center; }
.cta-art, .cta-shade { position: absolute; inset: 0; }
.cta-art { background: url("art-street.jpg") center 55% / cover no-repeat; opacity: .52; }
.cta-shade { background: linear-gradient(rgba(4, 6, 10, .55), rgba(4, 6, 10, .93)); }
.cta-content { position: relative; z-index: 2; max-width: 760px; }
.cta h2 { margin: 15px 0; font-size: clamp(38px, 5.5vw, 66px); }
.cta p { max-width: 590px; margin: 0 auto 29px; color: var(--steel); font-family: var(--mono); font-size: 17px; }
.cta .button-row { justify-content: center; }

.site-footer { position: relative; z-index: 4; padding: 70px 0 40px; border-top: 1px solid var(--line); background: var(--void); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 44px; }
.footer-intro p { max-width: 300px; margin-top: 18px; color: var(--steel); font-size: 14px; }
.footer-column strong { display: block; margin-bottom: 15px; color: var(--cyan); font-family: var(--mono); font-size: 11px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: var(--steel); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--ice); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 55px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--steel-dark); font-family: var(--mono); font-size: 11px; letter-spacing: .04em; }
.footer-bottom-links { display: flex; gap: 18px; }

.reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1); }
.reveal.is-in { opacity: 1; transform: none; }

/* Request information */
.request-page { min-height: 100svh; background: var(--void); }
.request-hero { position: relative; min-height: 100svh; overflow: hidden; display: flex; align-items: center; padding: 120px 0 70px; }
.request-art, .request-shade, .request-grid { position: absolute; inset: 0; }
.request-art { background: url("art-city.jpg") 66% center / cover no-repeat; transform: scale(1.05); opacity: .62; }
.request-shade { background: linear-gradient(90deg, var(--void) 0%, rgba(4, 6, 10, .9) 48%, rgba(4, 6, 10, .33) 100%), linear-gradient(0deg, var(--void), transparent 45%); }
.request-grid { opacity: .18; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(90deg, black, transparent 72%); }
.request-layout { position: relative; z-index: 3; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(42px, 7vw, 100px); align-items: center; }
.request-copy h1 { margin: 18px 0 22px; font-size: clamp(49px, 7vw, 94px); }
.request-copy > p { max-width: 570px; color: var(--steel); font-size: clamp(17px, 1.8vw, 20px); }
.request-status { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; color: var(--cyan); font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.request-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: .35; transform: scale(.7); } }
.request-facts { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 570px; margin-top: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.request-facts div { padding: 15px 12px 15px 0; border-right: 1px solid var(--line); }
.request-facts div + div { padding-left: 16px; }
.request-facts div:last-child { border-right: 0; }
.request-facts dt { color: var(--steel-dark); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.request-facts dd { margin-top: 3px; color: var(--ice); font-family: var(--mono); font-size: 11px; }
.request-panel { position: relative; padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line-strong); clip-path: polygon(0 0, 100% 0, 100% 93%, 96% 100%, 0 100%, 0 7%); background: rgba(4, 9, 15, .88); backdrop-filter: blur(18px); box-shadow: 0 30px 90px rgba(0, 0, 0, .38); }
.request-panel::before { content: "TRANSMISSION // 01"; position: absolute; top: 15px; right: 18px; color: var(--cyan); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; opacity: .54; }
.request-panel h2 { margin: 12px 0 10px; font-family: var(--display); font-size: clamp(29px, 3.3vw, 43px); line-height: 1.05; text-transform: uppercase; }
.request-panel p { color: var(--steel); font-size: 15px; }
.request-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px 15px; margin-top: 27px; }
.request-field { min-width: 0; }
.request-field-wide { grid-column: 1 / -1; }
.request-field label { display: block; margin-bottom: 7px; color: var(--steel); font-family: var(--mono); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.request-field label span { color: var(--magenta); }
.request-field input, .request-field select, .request-field textarea { width: 100%; border: 1px solid rgba(125, 151, 171, .26); border-radius: 0; background: rgba(0, 234, 255, .025); color: var(--ice); font: 14px/1.4 var(--body); transition: border-color .2s, background .2s, box-shadow .2s; }
.request-field input, .request-field select { height: 49px; padding: 0 14px; }
.request-field textarea { min-height: 108px; resize: vertical; padding: 13px 14px; }
.request-field select { appearance: none; padding-right: 38px; background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%); background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px; background-size: 5px 5px; background-repeat: no-repeat; }
.request-field select option { background: #07101a; color: var(--ice); }
.request-field input::placeholder, .request-field textarea::placeholder { color: rgba(125, 151, 171, .54); }
.request-field input:hover, .request-field select:hover, .request-field textarea:hover { border-color: rgba(0, 234, 255, .46); }
.request-field input:focus, .request-field select:focus, .request-field textarea:focus { border-color: var(--cyan); background-color: rgba(0, 234, 255, .055); box-shadow: 0 0 24px rgba(0, 234, 255, .08); }
.request-submit { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 4px; padding-top: 18px; border-top: 1px solid var(--line); }
.request-submit .button { flex: 0 0 auto; cursor: pointer; }
.request-submit p { max-width: 210px; font-family: var(--mono); font-size: 10px; line-height: 1.45; text-align: right; }
.request-submit a { color: var(--cyan); }
.form-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.received-hero { justify-content: center; padding-right: 30px; padding-left: 30px; }
.received-panel { position: relative; z-index: 4; width: min(710px, 100%); padding: clamp(38px, 6vw, 70px); border: 1px solid var(--line-strong); clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%, 0 10%); background: rgba(4, 9, 15, .9); text-align: center; backdrop-filter: blur(18px); box-shadow: 0 30px 100px rgba(0, 0, 0, .5); }
.received-panel .eyebrow { justify-content: center; }
.received-panel h1 { margin: 22px 0 18px; font-size: clamp(43px, 7vw, 78px); }
.received-panel > p { max-width: 560px; margin: 0 auto; color: var(--steel); font-size: clamp(16px, 2vw, 19px); }
.received-panel .button-row { justify-content: center; margin-top: 30px; }
.received-pulse { position: relative; width: 56px; height: 56px; margin: 0 auto 25px; border: 1px solid var(--cyan); transform: rotate(45deg); box-shadow: 0 0 30px rgba(0, 234, 255, .2); }
.received-pulse::before, .received-pulse::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(0, 234, 255, .35); animation: received-wave 2.2s infinite ease-out; }
.received-pulse::after { animation-delay: 1.1s; }
.received-pulse span { position: absolute; inset: 19px; background: var(--magenta); box-shadow: 0 0 16px var(--magenta); }
@keyframes received-wave { 0% { opacity: .9; transform: scale(.45); } 100% { opacity: 0; transform: scale(2.4); } }
.received-meta { display: flex; justify-content: center; gap: 28px; margin-top: 27px; color: var(--steel-dark); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.received-meta strong { color: var(--cyan); font-weight: 400; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .hud, .hud-corner { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trace-layout, .request-layout { grid-template-columns: 1fr; }
  .trace-layout { gap: 42px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card p { min-height: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 34px, 1200px); }
  .site-nav { height: 64px; }
  .nav-inner { gap: 12px; }
  .brand { font-size: 16px; }
  .brand-mark { width: 21px; height: 21px; }
  .nav-actions .button { min-height: 40px; padding: 8px 13px; font-size: 11px; }
  .hero { min-height: 650px; }
  .hero-art { background-position: 61% center; }
  .hero h1 { font-size: clamp(44px, 16vw, 72px); }
  .hero p { font-size: 16px; }
  .eyebrow { max-width: 90%; font-size: 10px; letter-spacing: .15em; }
  .section { padding: 88px 0; }
  .section-tight { padding-top: 0; }
  .metrics, .feature-grid { grid-template-columns: 1fr; }
  .metric { min-height: 118px; border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:nth-child(3) { border-bottom: 1px solid var(--line); }
  .feature-card { min-height: 200px; }
  .art-panel { min-height: 620px; align-items: flex-end; }
  .art-eye { background-position: 66% 30%; }
  .art-panel-shade { background: linear-gradient(0deg, rgba(4, 6, 10, .98) 0%, rgba(4, 6, 10, .82) 48%, rgba(4, 6, 10, .12) 100%); }
  .art-panel-content { padding: 38px 25px; }
  .trace-window { clip-path: none; }
  .trace-body { padding: 17px 12px; }
  .span-row { grid-template-columns: 92px 1fr 42px; gap: 9px; font-size: 10px; }
  .cta { min-height: 560px; padding: 66px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 22px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .request-hero { padding-top: 104px; }
  .request-copy h1 { font-size: clamp(48px, 17vw, 74px); }
  .request-panel { clip-path: polygon(0 0, 100% 0, 100% 96%, 94% 100%, 0 100%, 0 5%); }
  .request-form { grid-template-columns: 1fr; }
  .request-field-wide { grid-column: auto; }
  .request-submit { align-items: stretch; flex-direction: column; }
  .request-submit .button { width: 100%; }
  .request-submit p { max-width: none; text-align: left; }
  .request-facts { grid-template-columns: 1fr; }
  .request-facts div { padding: 11px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .request-facts div + div { padding-left: 0; }
  .request-facts div:last-child { border-bottom: 0; }
  .received-hero { padding: 100px 17px 34px; }
  .received-panel { clip-path: polygon(0 0, 100% 0, 100% 94%, 92% 100%, 0 100%, 0 6%); }
  .received-meta { align-items: center; flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .intro { display: none; }
  .site-nav, .hud, .hud-corner { opacity: 1; transform: none; }
  .kinetic > span, .reveal { opacity: 1; transform: none; }
  .hero-rain, .hero-core, .hero-flash { display: none; }
  .hero-art { transform: scale(1.03) !important; }
  .span-fill { width: var(--span); }
}
