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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button, input { font: inherit; }
button { border: 0; }
a { color: inherit; text-decoration: none; }
pre { margin: 0; }

.site-nav {
  position: fixed;
  z-index: var(--z-nav);
  top: 20px;
  left: 50%;
  width: min(calc(100% - 40px), 1180px);
  min-height: 64px;
  padding: 10px 12px 10px 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-32);
  border: 1px solid color-mix(in srgb, var(--border), transparent 30%);
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--bg-white), transparent 8%);
  box-shadow: var(--shadow-nav-pill);
  backdrop-filter: blur(18px);
  transition: transform .3s var(--ease);
}
.site-nav.nav-away { transform: translate(-50%, calc(-100% - 24px)); pointer-events: none; }

.brand { display: flex; align-items: center; gap: 16px; min-width: max-content; }
.brand img { width: 128px; height: auto; }
.brand-product {
  padding-left: 16px;
  border-left: 1px solid var(--border);
  color: var(--text-body);
  font: 600 13px/1 var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links { margin-left: auto; display: flex; gap: 26px; }
.nav-links a { color: var(--text-body); font: 500 14px/1 var(--font-body); }
.nav-links a:hover { color: var(--text-dark); }
.nav-cta { flex: none; }

.page-wrap { width: min(100% - 48px, 1180px); margin: 0 auto; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(330px, .58fr) minmax(0, 1.42fr);
  align-items: center;
  gap: clamp(34px, 4vw, 64px);
  overflow: hidden;
  padding: 150px clamp(24px, 4vw, 64px) 96px;
  background:
    radial-gradient(circle at 76% 48%, color-mix(in srgb, var(--green-soft), transparent 16%), transparent 30%),
    var(--bg-white);
}

.hero::before {
  content: "";
  position: absolute;
  top: 14%;
  right: -8%;
  width: min(62vw, 880px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 244, 126, .09), transparent 67%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-inner { position: relative; z-index: 2; min-width: 0; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px var(--green-soft); }

.hero-word {
  display: grid;
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: clamp(58px, 5.8vw, 86px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.045em;
}
.hero-word > span { grid-area: 1 / 1; }
.hero-word em { color: var(--green); font-style: normal; }
.word-shine {
  color: transparent;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 40%, var(--green-bright) 47%, var(--cyan-bright) 53%, transparent 60%);
  background-position: 130% 0;
  background-size: 250% 100%;
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-sub {
  max-width: 610px;
  margin: 34px 0 0;
  color: var(--text-body);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 42px; }
.text-link { padding: 12px 4px; color: var(--text-body); font-size: 14px; font-weight: 600; }
.text-link:hover { color: var(--text-dark); }

.hero-agent {
  position: relative;
  z-index: 2;
  isolation: isolate;
  min-width: 0;
  animation-delay: .22s;
}

.hero-agent::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -54px -64px -62px;
  border-radius: 42px;
  background:
    radial-gradient(ellipse at 20% 16%, rgba(51, 213, 231, .24), transparent 52%),
    radial-gradient(ellipse at 80% 70%, rgba(75, 207, 91, .29), transparent 58%);
  filter: blur(30px);
  pointer-events: none;
}

.console-window {
  min-height: 548px;
  overflow: hidden;
  border: 1px solid #3b3934;
  border-radius: 10px;
  background: #1f1e1b;
  box-shadow: 0 28px 70px rgba(24, 18, 13, .2), 0 8px 22px rgba(24, 18, 13, .13);
}

.console-window.hero-video-shell {
  position: relative;
  z-index: 1;
  min-height: 0;
  aspect-ratio: 1280 / 792;
  border-color: #302f2c;
  border-radius: 12px;
  background: #0e0e0e;
  box-shadow: 0 32px 72px rgba(24, 18, 13, .22), 0 10px 24px rgba(24, 18, 13, .14);
  cursor: pointer;
  pointer-events: auto;
}
.console-window.hero-video-shell:focus-visible { outline: 3px solid var(--green); outline-offset: 5px; }

.hero-agent-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 1500px) {
  .hero {
    display: flex;
    padding-right: 24px;
    padding-left: clamp(24px, 5vw, 96px);
  }
  .hero-inner { width: min(430px, 32vw); }
  .hero-sub { max-width: 430px; }
  .hero-agent {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: auto;
    overflow: hidden;
    pointer-events: none;
  }
  .hero-agent::before { display: none; }
  .hero-agent-stage {
    --hero-copy-edge: calc(clamp(24px, 5vw, 96px) + min(430px, 32vw));
    position: absolute;
    top: 50%;
    right: 24px;
    width: min(1280px, calc(100vw - var(--hero-copy-edge) - 40px));
    transform: translateY(-48%);
  }
  .console-window.hero-video-shell {
    position: relative;
    height: auto;
    min-height: 0;
    aspect-ratio: 1280 / 792;
    border: 1px solid rgba(28, 26, 23, .54);
    border-radius: 14px;
    background: #0e0e0e;
    box-shadow:
      -24px 0 90px rgba(75, 207, 91, .14),
      0 34px 86px rgba(24, 18, 13, .25),
      0 10px 28px rgba(24, 18, 13, .14);
  }
  .hero-agent-video {
    object-fit: contain;
    object-position: center;
    opacity: .94;
    filter: saturate(.92) contrast(1.04) brightness(1.02);
  }
}

section[id] { scroll-margin-top: 104px; }
.section { min-height: 100vh; min-height: 100svh; padding: clamp(90px, 10vw, 150px) 0; display: flex; align-items: center; }
.section-kicker { margin: 0 0 14px; color: var(--text-muted); font: 600 12px/1 var(--font-body); letter-spacing: .1em; text-transform: uppercase; }
.section h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}
.section-heading { display: flex; gap: 28px; align-items: flex-start; margin-bottom: 56px; }
.section-index { padding-top: 10px; color: var(--green); font: 600 12px/1 var(--font-body); }

.section-quickstart { min-height: auto; background: var(--bg-white); }
.agent-handoff { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(36px, 4vw, 60px); align-items: center; }
.agent-handoff-copy h2 { max-width: 620px; font-size: clamp(50px, 5vw, 70px); }
.agent-handoff-copy > p:not(.section-kicker) { max-width: 520px; margin: 28px 0 0; color: var(--text-body); font-size: 17px; line-height: 1.65; }
.agent-config { min-width: 0; overflow: hidden; border: 1px solid var(--sf-dim-dark); border-radius: var(--radius); background: var(--bg-dark); box-shadow: var(--shadow-mega-card); }
.agent-config-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; border-bottom: 1px solid var(--sf-dim-dark); color: var(--text-on-dark); font-size: 13px; font-weight: 600; }
.copy-button { padding: 9px 13px; border: 1px solid var(--sf-dim-dark); border-radius: var(--radius-sm); background: transparent; color: var(--text-on-dark); cursor: pointer; font-size: 12px; font-weight: 600; }
.copy-button:hover { border-color: var(--text-on-dark-muted); background: var(--bg-card-dark); }
.copy-button:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.agent-config-message { display: grid; gap: 24px; padding: clamp(28px, 4vw, 44px); color: var(--text-on-dark); }
.agent-prompt-lead { max-width: 560px; margin: 0; color: var(--text-on-dark); font-size: clamp(21px, 2vw, 28px); font-weight: 600; line-height: 1.28; letter-spacing: -.025em; }
.agent-prompt-guide { display: grid; gap: 10px; padding: 17px 18px; border: 1px solid var(--sf-dim-dark); border-radius: var(--radius-sm); background: rgba(255, 255, 255, .025); }
.agent-prompt-label { color: var(--text-on-dark-muted); font-size: 11px; font-weight: 600; line-height: 1; letter-spacing: .09em; text-transform: uppercase; }
.agent-config .value { display: block; color: var(--green-bright); font: 500 clamp(13px, 1.2vw, 16px)/1.5 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; letter-spacing: -.02em; overflow-wrap: anywhere; }
.agent-prompt-followup { max-width: 590px; margin: 0; color: var(--text-on-dark-muted); font-size: clamp(14px, 1.25vw, 16px); line-height: 1.6; }
.agent-guide-address { white-space: nowrap; }
.agent-guide-path { white-space: nowrap; }
.agent-guide-query { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.copy-status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.section-catalog { min-height: auto; padding: clamp(80px, 7vw, 112px) 0; border-top: 1px solid var(--border); background: var(--bg-white); }
.catalog-intro { margin-bottom: clamp(42px, 6vw, 70px); }
.catalog-intro h2 { max-width: 720px; font-size: clamp(52px, 6vw, 82px); }
.coverage-list { border-top: 1px solid var(--text-dark); }
.coverage-row {
  display: grid;
  grid-template-columns: minmax(110px, 170px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(23px, 2.5vw, 34px) 0;
  border-bottom: 1px solid var(--border);
}
.coverage-row code { color: var(--green); font: 600 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.coverage-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.025em;
}
.catalog-footer { display: flex; justify-content: flex-end; margin-top: 22px; }
.catalog-footer .text-link { white-space: nowrap; }

.section-pricing { min-height: auto; background: var(--bg-gray); }
.pricing-heading { max-width: 780px; margin-bottom: 42px; }
.pricing-heading h2 { max-width: 760px; font-size: clamp(48px, 5vw, 70px); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 34px 26px 30px; border-right: 1px solid var(--border); background: transparent; }
.price-card:last-child { border-right: 0; }
.price-card.featured { margin: -1px 0; border: 1px solid var(--green); border-radius: var(--radius); background: var(--bg-white); }
.popular { position: absolute; top: 15px; right: 15px; padding: 6px 9px; border-radius: var(--radius-pill); background: var(--green-soft); font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.plan-name { display: block; margin-bottom: 12px; color: var(--text-dark); font-family: var(--font-display); font-size: 28px; font-weight: 600; }
.price-card > div > p { min-height: 84px; margin: 0; color: var(--text-body); font-size: 13px; line-height: 1.55; }
.price { display: flex; align-items: baseline; gap: 8px; margin: 32px 0 28px; }
.price strong { font-family: var(--font-display); font-size: 46px; font-weight: 400; letter-spacing: -.035em; }
.price span { color: var(--text-muted); font-size: 12px; }
.price-card ul { flex: 1; margin: 0 0 28px; padding: 0; list-style: none; }
.price-card li { position: relative; padding: 9px 0 9px 20px; color: var(--text-body); font-size: 13px; border-top: 1px solid var(--border); }
.price-card li::before { content: "·"; position: absolute; left: 3px; color: var(--green); font-weight: 800; }
.price-card .sb-btn { width: 100%; }
.price-card .sb-btn--default { border-color: var(--border); background: var(--bg-white); }
.price-card .sb-btn--default:hover { background: color-mix(in srgb, var(--bg-white), var(--text-dark) 5%); }

.footer {
  --pad: clamp(16px, 5vw, 80px);
  background: var(--surface-canvas);
  min-width: var(--site-min);
  padding-top: calc(14px + 56px + 24px);
  padding-bottom: var(--footer-space);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}
.footer > .wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.footer-union {
  position: relative;
  border-radius: clamp(20px, 2.4vw, 30px);
  overflow: hidden;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.footer-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  --l1: 0px; --l2: 0px; --l3: 0px; --l4: 0px; --l5: 0px;
  --l6: 0px; --l7: 0px; --l8: 0px; --l9: 0px; --l10: 0px;
  -webkit-mask-image:
    url(../logo/streetbeat-footer-card-mask.svg),
    url(../logo/fw-1.svg), url(../logo/fw-2.svg), url(../logo/fw-3.svg),
    url(../logo/fw-4.svg), url(../logo/fw-5.svg), url(../logo/fw-6.svg),
    url(../logo/fw-7.svg), url(../logo/fw-8.svg), url(../logo/fw-9.svg),
    url(../logo/fw-10.svg);
  mask-image:
    url(../logo/streetbeat-footer-card-mask.svg),
    url(../logo/fw-1.svg), url(../logo/fw-2.svg), url(../logo/fw-3.svg),
    url(../logo/fw-4.svg), url(../logo/fw-5.svg), url(../logo/fw-6.svg),
    url(../logo/fw-7.svg), url(../logo/fw-8.svg), url(../logo/fw-9.svg),
    url(../logo/fw-10.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-position:
    center top,
    center var(--l1), center var(--l2), center var(--l3),
    center var(--l4), center var(--l5), center var(--l6),
    center var(--l7), center var(--l8), center var(--l9),
    center var(--l10);
  mask-position:
    center top,
    center var(--l1), center var(--l2), center var(--l3),
    center var(--l4), center var(--l5), center var(--l6),
    center var(--l7), center var(--l8), center var(--l9),
    center var(--l10);
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
  pointer-events: none;
}
.footer-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.footer-bg-video--mobile { display: none; }
.footer-media-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 120% at 86% 58%, rgba(58, 240, 220, .16), transparent 46%),
    linear-gradient(to bottom, rgba(6, 8, 7, 0) 0%, rgba(6, 8, 7, 0) 14%, rgba(6, 8, 7, .5) 34%, rgba(6, 8, 7, .56) 100%);
  pointer-events: none;
}
.footer-word { position: relative; z-index: var(--z-raised); width: 100%; aspect-ratio: 1440 / 206; pointer-events: none; }
.footer-card {
  position: relative;
  z-index: var(--z-raised);
  padding: clamp(48px, 7vw, 110px) var(--pad) clamp(40px, 4vw, 64px);
  color: var(--text-on-dark-primary);
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-cta, .footer-links { position: relative; z-index: var(--z-raised); }
.footer-cta { text-align: center; max-width: 760px; margin: 0 auto; }
.footer-cta h2 { font-family: var(--ts-heading-l-family); font-size: var(--ts-heading-l-size); font-weight: var(--ts-heading-l-weight); letter-spacing: var(--ts-heading-l-spacing); line-height: var(--ts-heading-l-line); color: var(--text-on-dark-primary); }
.footer-cta .sub { font-family: var(--ts-body-xl-family); font-size: var(--ts-body-xl-size); font-weight: var(--ts-body-xl-weight); line-height: var(--ts-body-xl-line); letter-spacing: var(--ts-body-xl-spacing); color: rgba(255,255,255,.62); margin-top: var(--space-6); }
.pill {
  font-family: var(--ts-eyebrow-s-family); font-size: var(--ts-eyebrow-s-size);
  font-weight: var(--ts-eyebrow-s-weight); line-height: var(--ts-eyebrow-s-line);
  letter-spacing: var(--ts-eyebrow-s-spacing);
  padding: var(--space-10) var(--space-20); border-radius: var(--radius-pill); white-space: nowrap;
  display: inline-flex; align-items: center; gap: var(--space-8);
  transition: transform .2s var(--ease), background .2s, box-shadow .2s, border-color .2s;
}
.pill:active { transform: scale(.97); }
.pill-green { background: var(--accent-green); color: var(--text-primary); }
.pill-green:hover { background: var(--accent-green-bright); box-shadow: var(--glow-pill-green); }
.footer-cta .pill-green { display: inline-block; margin-top: var(--footer-cta-space); padding: var(--space-16) var(--space-32); }
.socials { display: flex; justify-content: center; gap: var(--space-12); margin-top: var(--footer-socials-space); }
.socials a { width: 40px; height: 40px; border-radius: var(--radius-round); background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--accent-green); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; fill: var(--text-on-dark-primary); }
.footer-links { display: flex; flex-wrap: wrap; gap: var(--space-40) var(--space-64); margin-top: clamp(60px, 8vw, 120px); }
.footer-col { display: flex; flex-direction: column; gap: var(--space-12); }
.footer-col h3 { font-family: var(--ts-label-xs-family); font-size: var(--ts-label-xs-size); font-weight: var(--ts-label-xs-weight); line-height: var(--ts-label-xs-line); letter-spacing: var(--ts-label-xs-spacing); text-transform: var(--ts-label-xs-case); color: rgba(255,255,255,.45); margin-bottom: var(--space-6); }
.footer-col a, .footer-col p { font-family: var(--ts-body-base-family); font-size: var(--ts-body-base-size); font-weight: var(--ts-body-base-weight); line-height: var(--ts-body-base-line); letter-spacing: var(--ts-body-base-spacing); color: rgba(255,255,255,.78); transition: color .2s; }
.footer-col a:hover { color: var(--text-on-dark-primary); }
.footer-contact { margin-left: auto; text-align: right; padding-top: var(--footer-space); }
.footer-contact .socials { justify-content: flex-end; margin-top: var(--space-20); margin-bottom: 0; }
.footer-contact a { color: var(--accent-green-bright); }
.copyright { font-family: var(--ts-body-base-family); font-size: var(--ts-body-base-size); font-weight: var(--ts-body-base-weight); line-height: var(--ts-body-base-line); letter-spacing: var(--ts-body-base-spacing); color: var(--text-tertiary); margin-top: var(--footer-space); padding: 0 var(--space-4); text-align: center; }

.intro { animation: rise .9s var(--reveal-ease) both; }
.hero-word.intro { animation-delay: .08s; }
.hero-sub.intro { animation-delay: .18s; }
.hero-actions.intro { animation-delay: .28s; }
.word-shine { animation: shine 1.6s .55s var(--ease) forwards; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); filter: blur(8px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes shine { 0% { opacity: 1; background-position: 130% 0; } 99% { opacity: 1; background-position: -50% 0; } 100% { opacity: 0; background-position: -50% 0; } }

.toast { position: fixed; z-index: 500; right: 24px; bottom: 24px; max-width: 420px; padding: 16px 20px; border-radius: var(--radius-sm); background: var(--bg-dark); color: var(--text-on-dark); box-shadow: var(--shadow-mega-card); font-size: 13px; line-height: 1.5; }

.result-page { min-height: 100vh; display: grid; place-items: center; padding: 130px 24px 60px; background: var(--bg-green-tint); }
.result-page .site-nav { position: fixed; }
.result-card { width: min(100%, 700px); padding: clamp(36px, 7vw, 70px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-white); box-shadow: var(--shadow-mega-card); }
.result-card h1 { margin: 0 0 22px; font-family: var(--font-display); font-size: clamp(46px, 7vw, 76px); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
.result-card > p:not(.section-kicker) { color: var(--text-body); font-size: 16px; line-height: 1.65; }
.result-mark { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 26px; border-radius: 50%; background: var(--green); color: var(--text-dark); font-size: 24px; }
.result-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.access-form { display: grid; gap: 14px; margin-top: 34px; }
.access-form label { font-size: 12px; font-weight: 600; }
.access-form .sb-btn { margin-top: 8px; }
.form-error { margin: 0; color: var(--negative); font-size: 13px; }

@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card { border-bottom: 1px solid var(--border); }
  .price-card:nth-child(2n) { border-right: 0; }
  .agent-handoff { grid-template-columns: 1fr; }
  .agent-handoff-copy { max-width: 760px; }
  .hero {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 150px;
  }
  .hero-inner { width: min(760px, 86vw); }
  .hero-word { font-size: clamp(66px, 10vw, 102px); }
  .hero-sub { max-width: 650px; }
  .hero-agent { width: min(100%, 1040px); justify-self: center; }
  .footer-contact { flex-basis: 100%; margin-left: 0; text-align: left; }
}

@media (max-width: 768px) {
  .footer-bg-video--desktop { display: none; }
  .footer-bg-video--mobile { display: block; }
}

@media (max-width: 760px) {
  .site-nav { top: 12px; width: calc(100% - 24px); min-height: 58px; gap: 8px; padding: 8px 8px 8px 16px; }
  .brand img { width: 116px; }
  .brand-product { display: none; }
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .page-wrap { width: min(100% - 32px, 1180px); }
  .section { min-height: auto; padding: 76px 0; }
  .section h2 { font-size: clamp(42px, 13vw, 56px); }
  .hero {
    align-items: flex-start;
    gap: 44px;
    padding: 136px 24px 72px;
  }
  .hero-inner { width: 100%; }
  .hero-word { font-size: clamp(54px, 17vw, 82px); }
  .hero-sub { margin-top: 26px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 8px; margin-top: 30px; }
  .hero-actions .sb-btn { width: 100%; justify-content: center; }
  .hero-actions .text-link { color: var(--text-dark); text-align: center; }
  .hero-agent { width: 100%; }
  .hero-agent::before {
    inset: -30px -26px -38px;
    border-radius: 30px;
    opacity: .82;
    filter: blur(23px);
  }
  .console-window { min-height: 504px; border-radius: 8px; }
  .console-window.hero-video-shell {
    min-height: 0;
    aspect-ratio: 1280 / 792;
    border-radius: 10px;
  }
  .hero-agent-video {
    object-fit: contain;
    object-position: center;
  }
  .agent-handoff-copy h2 { font-size: clamp(42px, 13vw, 56px); }
  .agent-handoff-copy > p:not(.section-kicker) { margin-top: 22px; font-size: 16px; }
  .agent-config-head { gap: 14px; padding: 16px 18px; }
  .copy-button { min-height: 44px; }
  .agent-config-message { gap: 20px; padding: 24px 20px 26px; }
  .agent-prompt-lead { font-size: 20px; }
  .agent-prompt-guide { padding: 15px 16px; }
  .agent-config .value { font-size: 13px; line-height: 1.55; }
  .agent-prompt-followup { font-size: 14px; }
  .section-catalog { padding: 72px 0; }
  .catalog-intro { margin-bottom: 38px; }
  .coverage-row { grid-template-columns: 82px minmax(0, 1fr); gap: 16px; padding: 22px 0; }
  .coverage-row code { font-size: 11px; }
  .coverage-row h3 { font-size: clamp(22px, 7vw, 30px); line-height: 1.08; }
  .catalog-footer { justify-content: flex-start; margin-top: 18px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { border-right: 0; }
  .price-card.featured { margin: 0; }
  .price-card > div > p { min-height: 0; }
  .agent-guide-address { white-space: normal; }
  .agent-guide-origin { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal-item] { opacity: 1; transform: none; filter: none; }
  .word-shine { display: none; }
}
