/* ─────────────────────────────────────────────
   INNERVOS — v2
   ───────────────────────────────────────────── */

@font-face {
  font-family: 'Grain';
  src: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

:root {
  --bg:       #08080a;
  --bg-2:     #0e0f13;
  --bg-3:     #131419;
  --surface:  #18191f;
  --surface-2:#1e2028;

  --rule:     rgba(255, 255, 255, 0.07);
  --rule-2:   rgba(255, 255, 255, 0.12);

  --white:    #f0f0f2;
  --gray:     #8a8d9b;
  --dim:      #53566a;

  --accent:   #7fd8c6;
  --accent-2: #5dbba9;
  --accent-3: rgba(127, 216, 198, 0.38);
  --accent-4: #8cb8ff;

  --font:     "Space Grotesk", sans-serif;
  --mono:     "JetBrains Mono", monospace;
  --body:     "Inter", sans-serif;

  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --maxw:     1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 14%, rgba(127, 216, 198, 0.08), transparent 18%),
    radial-gradient(circle at 82% 30%, rgba(140, 184, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #07080b 0%, #08080a 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
input, textarea, button { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}


/* ─── Grain ─── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}


/* ─── Utilities ─── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.mono-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

h1, h2, h3 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}


/* ─── Pill CTA ─── */
.pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  padding: 14px 30px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.pill-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 15%, rgba(127, 216, 198, 0.18) 50%, transparent 85%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);
}

.pill-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 60px -18px rgba(127, 216, 198, 0.22);
}

.pill-cta:hover::after,
.pill-cta:focus-visible::after {
  transform: translateX(120%);
}

.pill-cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}


/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(24px, 5vw, 64px);
  transition: all 0.5s var(--ease);
}

.nav.scrolled {
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.nav-wordmark {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.3s;
}

.nav-link:hover { color: var(--white); }

.nav-link:focus-visible,
.nav-link-cta:focus-visible,
.nav-wordmark:focus-visible,
.nav-burger:focus-visible,
.pill-cta:focus-visible {
  color: var(--white);
}

.nav-link-cta {
  padding: 8px 20px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(127, 216, 198, 0.08), transparent);
  box-shadow: inset 0 0 0 1px rgba(127, 216, 198, 0.08);
}

.nav-link-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s var(--ease);
  transform-origin: center;
}

.nav-burger.open span:first-child {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}

.nav-burger.open span:last-child {
  transform: rotate(-45deg) translate(2.5px, -2.5px);
}

.mobile-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  display: none;
  flex-direction: column;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--rule);
  padding: 16px clamp(24px, 5vw, 64px) 28px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease);
}

.mobile-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-drawer a {
  padding: 16px 0;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gray);
  border-bottom: 1px solid var(--rule);
  transition: color 0.3s;
}

.mobile-drawer a:last-child { border: none; }
.mobile-drawer a:hover { color: var(--accent); }

.mobile-drawer a:focus-visible {
  color: var(--accent);
}


/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(60px, 10vh, 120px);
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(127, 216, 198, 0.045), transparent),
    radial-gradient(ellipse 50% 70% at 80% 80%, rgba(93, 187, 169, 0.03), transparent),
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(127, 216, 198, 0.015), transparent),
    linear-gradient(90deg, transparent 0%, rgba(127, 216, 198, 0.02) 40%, transparent 72%);
  pointer-events: none;
}

.hero-scan {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(127, 216, 198, 0.035) 48%,
      rgba(127, 216, 198, 0.06) 50%,
      rgba(127, 216, 198, 0.035) 52%,
      transparent 100%
    );
  mix-blend-mode: screen;
  pointer-events: none;
  animation: scan-sweep 9s linear infinite;
}

.hero-orbit,
.hero-beacon {
  position: absolute;
  pointer-events: none;
}

.hero-orbit {
  border: 1px solid rgba(127, 216, 198, 0.12);
  border-radius: 999px;
  filter: drop-shadow(0 0 24px rgba(127, 216, 198, 0.12));
}

.hero-orbit-1 {
  top: 12%;
  right: clamp(-120px, -8vw, -40px);
  width: clamp(260px, 34vw, 460px);
  height: clamp(260px, 34vw, 460px);
  animation: orbit-drift 14s ease-in-out infinite;
}

.hero-orbit-2 {
  bottom: 8%;
  left: clamp(-100px, -6vw, -30px);
  width: clamp(180px, 22vw, 300px);
  height: clamp(180px, 22vw, 300px);
  animation: orbit-drift 18s ease-in-out infinite reverse;
}

.hero-beacon {
  top: 18%;
  right: 18%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 0 rgba(127, 216, 198, 0.34),
    0 0 34px rgba(127, 216, 198, 0.45);
  animation: beacon-pulse 2.8s ease-out infinite;
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.hero-headline {
  margin-top: 24px;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-line {
  display: block;
}

.hero-line-indent {
  padding-left: clamp(40px, 8vw, 140px);
  color: transparent;
  background: linear-gradient(90deg, var(--white), var(--accent), var(--accent-4));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 28px rgba(127, 216, 198, 0.12);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: clamp(40px, 6vh, 80px);
  padding-top: clamp(24px, 4vh, 40px);
  border-top: 1px solid var(--rule);
}

.hero-signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 28px;
}

.hero-signal-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(127, 216, 198, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gray);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-console {
  margin-top: 22px;
  max-width: 520px;
  border: 1px solid rgba(127, 216, 198, 0.12);
  background:
    linear-gradient(180deg, rgba(127, 216, 198, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(12, 13, 17, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero-console-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(127, 216, 198, 0.1);
}

.hero-console-head p {
  margin: 0 0 0 2px;
  color: var(--gray);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-console-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.hero-console-dot:first-child {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(127, 216, 198, 0.45);
}

.hero-console-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(127, 216, 198, 0.08);
}

.hero-console-grid div {
  padding: 14px;
  background: rgba(10, 11, 14, 0.74);
}

.hero-console-grid span {
  display: block;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-console-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.hero-body {
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
}


/* ─── Marquee ─── */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg-2);
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-track span {
  font-family: var(--font);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
  padding: 0 8px;
}

.marquee-sep {
  display: flex;
  align-items: center;
  padding: 0 20px !important;
}

.marquee-sep::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ─── Sections ─── */
.section {
  padding: clamp(80px, 14vw, 160px) 0;
  border-top: 1px solid var(--rule);
}

.section-dark {
  background: var(--bg-2);
}

.section-intro {
  margin-bottom: clamp(48px, 8vw, 80px);
}

.section-title {
  margin-top: 16px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.section-body {
  margin-top: 20px;
  max-width: 480px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
}


/* ─── Steps ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.step {
  padding: clamp(28px, 4vw, 48px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.015);
}

.step::before,
.bento-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -1px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(127, 216, 198, 0.12), transparent 68%);
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transform: translate3d(24px, 24px, 0);
}

.step:hover {
  background: var(--bg-2);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.step:hover::before,
.bento-card:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.step-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  flex-shrink: 0;
}

.step-rule {
  flex: 1;
  height: 1px;
  background: var(--rule-2);
}

.step h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.step p {
  color: var(--gray);
  line-height: 1.7;
}


/* ─── Bento ─── */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.bento-card {
  padding: clamp(28px, 4vw, 44px);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease), border-color 0.5s var(--ease);
}

.bento-card:hover {
  background: var(--bg-3);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

.bento-wide {
  grid-row: 1 / 3;
}

.bento-card .mono-tag {
  margin-bottom: 16px;
}

.bento-card h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  margin-bottom: 16px;
}

.bento-card p {
  color: var(--gray);
  line-height: 1.7;
}

.bento-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}


/* ─── Leverage ─── */
.leverage-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
}

.leverage-left {
  position: sticky;
  top: 120px;
  align-self: start;
}

.leverage-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.leverage-block {
  padding-top: 32px;
  border-top: 1px solid var(--rule-2);
  position: relative;
}

.leverage-block::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.leverage-block h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--white);
}

.leverage-block p {
  color: var(--gray);
  line-height: 1.7;
}


/* ─── Contact ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.contact-left .section-title {
  margin-top: 16px;
}

.form {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--rule);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.form::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(127, 216, 198, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 30%);
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.form-field span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--rule-2);
  border-radius: 0;
  color: var(--white);
  font-size: 0.92rem;
  transition: border-color 0.3s var(--ease);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--dim);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(127, 216, 198, 0.12);
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
  margin-bottom: 0;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.pill-cta-submit {
  flex-shrink: 0;
}

.form-aside {
  font-size: 0.8rem;
  color: var(--dim);
}

.form-status {
  min-height: 1.2rem;
  margin-top: 12px;
  font-size: 0.88rem;
}

.form-status.is-success { color: var(--accent); }
.form-status.is-error   { color: #f06060; }

.honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}


/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--rule);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-sub {
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--dim);
}

.footer-year {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--dim);
}


/* ─── Reveals ─── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-up.vis {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.06s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.18s; }
.stagger-4 { transition-delay: 0.24s; }


/* ─── Line draw on scroll ─── */
.step-rule {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease);
}

.step.vis .step-rule {
  transform: scaleX(1);
}

@keyframes orbit-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, 10px, 0) rotate(6deg);
  }
}

@keyframes beacon-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(127, 216, 198, 0.34),
      0 0 34px rgba(127, 216, 198, 0.45);
  }
  70% {
    box-shadow:
      0 0 0 26px rgba(127, 216, 198, 0),
      0 0 44px rgba(127, 216, 198, 0.24);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(127, 216, 198, 0),
      0 0 34px rgba(127, 216, 198, 0.2);
  }
}

@keyframes scan-sweep {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}


/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: 1fr;
  }

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

  .bento-wide {
    grid-row: auto;
  }

  .leverage-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .leverage-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .mobile-drawer { display: flex; }

  .hero { min-height: 85vh; align-items: center; padding-bottom: 60px; }

  .hero-headline { font-size: clamp(2.6rem, 11vw, 4rem); }

  .hero-line-indent { padding-left: 32px; }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-console-grid {
    grid-template-columns: 1fr;
  }

  .hero-orbit-1 {
    right: -120px;
  }

  .hero-orbit-2 {
    left: -110px;
  }

  .hero-beacon {
    right: 10%;
  }

  .form-row { grid-template-columns: 1fr; }

  .form { padding: 24px; }

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

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .section-title { font-size: 1.9rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-signal-strip span { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-track,
  .pill-cta-dot,
  .hero-scan,
  .hero-orbit,
  .hero-beacon {
    animation: none !important;
  }

  .reveal-up,
  .reveal-up.vis,
  .step-rule,
  .step.vis .step-rule {
    opacity: 1 !important;
    transform: none !important;
  }
}
