:root {
  --black: #090909;
  --black-soft: #111210;
  --panel: #171816;
  --paper: #f1efe5;
  --paper-soft: #e8e5d8;
  --white: #f8f8f4;
  --muted: #a7a79f;
  --ink: #151613;
  --ink-soft: #65665e;
  --acid: #d9f64a;
  --acid-bright: #e8ff63;
  --line-dark: rgba(255, 255, 255, 0.11);
  --line-light: rgba(16, 17, 14, 0.12);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --ease: cubic-bezier(0.2, 0.78, 0.22, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Avenir Next",
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--acid);
  color: var(--black);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 20px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 18px 28px;
  color: var(--white);
  transition:
    transform 320ms var(--ease),
    padding 260ms ease;
}

.site-header.is-hidden {
  transform: translateY(-120%);
}

.nav-shell {
  width: min(1280px, 100%);
  min-height: 62px;
  margin: 0 auto;
  padding: 0 12px 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 18px;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(17, 18, 16, 0.87);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  background: var(--acid);
  box-shadow: 0 0 28px rgba(217, 246, 74, 0.14);
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 22px;
  border: 2px solid var(--black);
  border-radius: 4px 7px 7px 4px;
  transform: translateX(-3px);
}

.brand-mark span:first-child {
  position: absolute;
  z-index: 2;
  width: 2px;
  height: 18px;
  background: var(--black);
}

.brand-mark span:last-child {
  position: absolute;
  z-index: 2;
  width: 2px;
  height: 15px;
  background: var(--black);
  transform: translateX(5px);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.desktop-nav a,
.nav-login {
  color: rgba(255, 255, 255, 0.59);
  font-size: 13px;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.nav-login:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.025em;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    background 220ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}

.button-large {
  min-height: 58px;
  padding: 0 25px;
  font-size: 14px;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button-accent {
  background: var(--acid);
  color: var(--black);
  box-shadow: 0 0 0 0 rgba(217, 246, 74, 0.3);
}

.button-accent:hover {
  background: var(--acid-bright);
  box-shadow: 0 12px 34px rgba(217, 246, 74, 0.17);
}

.button-dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.button-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px;
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 220ms 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-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 1120px;
  overflow: hidden;
  padding: 170px 24px 120px;
  background:
    radial-gradient(circle at 50% 17%, rgba(217, 246, 74, 0.055), transparent 27%),
    var(--black);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(ellipse at center 35%, #000 0%, transparent 68%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 110px;
  left: 50%;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-left {
  top: 390px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(217, 246, 74, 0.08), transparent 68%);
}

.orb-right {
  top: 260px;
  right: -140px;
  width: 370px;
  height: 370px;
  background: radial-gradient(circle, rgba(122, 145, 255, 0.08), transparent 68%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-badge,
.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.55);
  font-family: "DIN Alternate", "Avenir Next", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.hero-badge span,
.download-badge span,
.hero-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px rgba(217, 246, 74, 0.7);
}

.hero h1 {
  margin: 40px 0 0;
  font-size: clamp(68px, 8.3vw, 126px);
  font-weight: 750;
  line-height: 0.99;
  letter-spacing: -0.087em;
}

.hero h1 span {
  color: #a2a39c;
}

.hero-lead {
  max-width: 760px;
  margin: 33px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  margin-top: 35px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-note {
  display: flex;
  margin: 21px 0 0;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.38);
  font-family: "DIN Alternate", "PingFang SC", sans-serif;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.hero-note span {
  width: 5px;
  height: 5px;
}

.hero-product {
  position: relative;
  z-index: 4;
  width: min(1120px, 92vw);
  margin: 100px auto 0;
  perspective: 1800px;
}

.app-shadow {
  position: absolute;
  right: 8%;
  bottom: -11%;
  left: 8%;
  height: 28%;
  border-radius: 50%;
  background: rgba(217, 246, 74, 0.13);
  filter: blur(80px);
}

.app-shell {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: #111311;
  box-shadow:
    0 55px 120px rgba(0, 0, 0, 0.68),
    0 0 0 9px rgba(255, 255, 255, 0.018);
  transform: rotateX(3deg);
}

.app-topbar {
  display: grid;
  min-height: 58px;
  padding: 0 21px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.42);
  font-family: "DIN Alternate", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.app-brand,
.app-state {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-brand i,
.app-state span,
.solution-status span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 11px rgba(217, 246, 74, 0.6);
}

.app-state {
  color: #b8c774;
}

.app-controls {
  justify-self: end;
  color: rgba(255, 255, 255, 0.25);
}

.app-tabs {
  display: flex;
  min-height: 60px;
  padding: 0 18px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.016);
}

.app-tabs button {
  display: inline-flex;
  min-height: 36px;
  padding: 0 14px;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  cursor: pointer;
}

.app-tabs button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.app-tabs button.is-active {
  border-color: rgba(217, 246, 74, 0.22);
  background: rgba(217, 246, 74, 0.09);
  color: var(--acid);
}

.app-tab-spacer {
  flex: 1;
}

.model-pill,
.credits-pill {
  padding: 8px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.credits-pill {
  color: #b6c374;
}

.product-panel {
  display: grid;
  min-height: 470px;
  grid-template-columns: 190px 1fr;
}

.context-rail {
  padding: 22px 18px;
  border-right: 1px solid var(--line-dark);
  background: #0e100e;
}

.rail-title {
  display: flex;
  margin-bottom: 17px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.rail-title b {
  font-weight: 500;
}

.shot-card {
  position: relative;
  height: 108px;
  margin-top: 10px;
  padding: 20px 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: #181a18;
}

.shot-card.is-current {
  border-color: rgba(217, 246, 74, 0.35);
}

.shot-card span {
  position: absolute;
  right: 9px;
  bottom: 7px;
  color: rgba(255, 255, 255, 0.24);
  font-size: 7px;
}

.shot-card i {
  display: block;
  width: 80%;
  height: 5px;
  margin-top: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.11);
}

.shot-card i:nth-of-type(2) {
  width: 54%;
}

.shot-card i:nth-of-type(3) {
  width: 68%;
}

.context-rail > button {
  width: 100%;
  height: 42px;
  margin-top: 11px;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.28);
}

.solution-pane {
  padding: 38px 46px 30px;
  background:
    radial-gradient(circle at 80% 10%, rgba(217, 246, 74, 0.045), transparent 28%),
    #131513;
  text-align: left;
}

.solution-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.34);
  font-family: "DIN Alternate", monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.solution-status span {
  width: 6px;
  height: 6px;
}

.solution-question {
  margin-top: 28px;
}

.solution-question small {
  color: var(--acid);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.solution-question h2 {
  margin: 10px 0 9px;
  color: #f3f4ee;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.solution-question p {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
  line-height: 1.7;
}

.code-window {
  margin-top: 28px;
  padding: 22px 24px;
  display: grid;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background: #0c0e0c;
  color: #b9bcb2;
  font-family: "SFMono-Regular", "Consolas", monospace;
  font-size: 10px;
  line-height: 1.35;
}

.code-window em {
  color: var(--acid);
  font-style: normal;
}

.code-window b {
  color: #e6e7df;
}

.code-window .indent {
  padding-left: 18px;
}

.code-window .indent-two {
  padding-left: 36px;
}

.code-window .indent-three {
  padding-left: 54px;
}

.solution-meta {
  display: flex;
  margin-top: 18px;
  align-items: center;
  gap: 12px;
}

.solution-meta span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
}

.solution-meta button {
  margin-left: auto;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--acid);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
}

.interview-panel {
  grid-template-columns: 260px 1fr;
}

.listen-sidebar {
  padding: 52px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--line-dark);
  background: #0e100e;
}

.recording-dot {
  width: 13px;
  height: 13px;
  margin-bottom: 20px;
  border: 3px solid #252a20;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 24px rgba(217, 246, 74, 0.34);
  animation: recording 1.5s ease infinite;
}

@keyframes recording {
  50% {
    box-shadow: 0 0 0 12px rgba(217, 246, 74, 0);
  }
}

.listen-sidebar strong {
  color: #eff0e9;
  font-size: 17px;
}

.listen-sidebar small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.31);
  font-size: 9px;
}

.listen-wave,
.audio-wave {
  display: flex;
  height: 80px;
  margin-top: 32px;
  align-items: center;
  gap: 6px;
}

.listen-wave i,
.audio-wave i {
  width: 3px;
  height: 25%;
  border-radius: 4px;
  background: var(--acid);
  animation: wave 1.4s ease-in-out infinite alternate;
}

.listen-wave i:nth-child(2n),
.audio-wave i:nth-child(2n) {
  height: 68%;
  animation-delay: 180ms;
}

.listen-wave i:nth-child(3n),
.audio-wave i:nth-child(3n) {
  height: 95%;
  animation-delay: 320ms;
}

@keyframes wave {
  to {
    transform: scaleY(0.45);
    opacity: 0.45;
  }
}

.interview-answer {
  padding: 46px 50px;
  text-align: left;
}

.interview-answer blockquote {
  max-width: 650px;
  margin: 36px 0 28px;
  color: #f1f2eb;
  font-size: 27px;
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.answer-outline {
  padding: 24px 26px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: #0e100e;
}

.answer-outline small {
  color: var(--acid);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.answer-outline ol {
  margin: 18px 0 0;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 2;
}

.answer-outline b {
  color: rgba(255, 255, 255, 0.82);
}

.floating-proof {
  position: absolute;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(20, 22, 19, 0.87);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.proof-a {
  bottom: -21px;
  left: -28px;
  padding: 13px 18px;
  gap: 10px;
  border-radius: 14px;
}

.proof-a span {
  color: var(--acid);
  font-family: "SFMono-Regular", monospace;
  font-size: 13px;
}

.proof-a strong {
  font-size: 10px;
}

.proof-b {
  top: 55px;
  right: -38px;
  padding: 14px 18px;
  gap: 11px;
  border-radius: 14px;
}

.proof-b > i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 13px rgba(217, 246, 74, 0.6);
}

.proof-b strong,
.proof-b span {
  display: block;
}

.proof-b strong {
  font-size: 10px;
}

.proof-b span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
}

.signal-strip {
  min-height: 150px;
  padding: 30px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  background: var(--acid);
  color: var(--black);
}

.signal-strip > div {
  padding: 0 24px;
  text-align: center;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  font-size: 17px;
  letter-spacing: -0.04em;
}

.signal-strip span {
  margin-top: 7px;
  color: rgba(9, 9, 9, 0.58);
  font-size: 10px;
}

.signal-strip > i {
  width: 1px;
  height: 36px;
  background: rgba(9, 9, 9, 0.16);
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 135px 0;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #72736b;
  font-family: "DIN Alternate", "PingFang SC", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  width: 32px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: #383933;
  font-size: 8px;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.42);
}

.section-kicker-light span {
  border-color: var(--line-dark);
  color: rgba(255, 255, 255, 0.65);
}

.split-heading {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.55fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.split-heading h2,
.types-header h2,
.compatibility-header h2 {
  margin: 0;
  font-size: clamp(50px, 6.3vw, 88px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.075em;
}

.split-heading h2 span {
  color: #96978e;
}

.split-heading p,
.types-header > p,
.compatibility-header > p {
  margin: 0 0 9px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.split-heading-light h2 {
  color: var(--white);
}

.split-heading-light h2 span {
  color: #73766d;
}

.split-heading-light p {
  color: rgba(255, 255, 255, 0.43);
}

.proof-section {
  padding-bottom: 150px;
}

.comparison-card {
  position: relative;
  min-height: 650px;
  margin-top: 80px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  background: #e5e2d5;
}

.comparison-card::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(217, 246, 74, 0.22);
  filter: blur(60px);
}

.comparison-copy {
  position: relative;
  z-index: 2;
  padding: 62px 30px 56px 55px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--black);
  color: var(--acid);
}

.feature-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.card-eyebrow {
  margin-top: 65px;
  color: #77786f;
  font-family: "DIN Alternate", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.comparison-copy h3 {
  margin: 16px 0 0;
  font-size: clamp(39px, 4vw, 55px);
  line-height: 1.05;
  letter-spacing: -0.07em;
}

.comparison-copy p {
  margin: 23px 0 0;
  color: #62635b;
  font-size: 13px;
  line-height: 1.8;
}

.platform-row {
  display: flex;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 7px;
}

.platform-row span {
  padding: 8px 10px;
  border: 1px solid rgba(9, 9, 9, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  color: #6d6e65;
  font-size: 8px;
}

.comparison-demo {
  position: relative;
  min-width: 0;
  margin: 54px 45px 54px 0;
}

.compare-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 9, 0.12);
  border-radius: 24px;
  background: #f7f7f4;
  box-shadow: 0 35px 80px rgba(24, 25, 20, 0.18);
}

.exam-browser {
  position: absolute;
  inset: 0;
}

.browser-bar {
  display: flex;
  height: 47px;
  padding: 0 15px;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(9, 9, 9, 0.08);
  background: #fff;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dadad5;
}

.browser-bar span {
  margin-left: 10px;
  color: #9c9d97;
  font-size: 8px;
}

.exam-content {
  padding: 34px 32px;
}

.exam-content small {
  color: #8b8d86;
  font-family: "DIN Alternate", monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.exam-content h4 {
  max-width: 500px;
  margin: 13px 0 22px;
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.exam-lines {
  display: grid;
  gap: 10px;
}

.exam-lines i {
  width: 75%;
  height: 6px;
  border-radius: 6px;
  background: #deded8;
}

.exam-lines i:nth-child(2) {
  width: 58%;
}

.exam-lines i:nth-child(3) {
  width: 67%;
}

.helper-overlay {
  position: absolute;
  right: 6%;
  bottom: 7%;
  left: 6%;
  padding: 23px 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(14, 15, 13, 0.94);
  color: #f0f1eb;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
}

.helper-overlay > div {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "DIN Alternate", monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.helper-overlay > div span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px rgba(217, 246, 74, 0.6);
}

.helper-overlay > div small {
  margin-left: auto;
  font-size: inherit;
}

.helper-overlay strong {
  display: block;
  margin-top: 17px;
  font-size: 18px;
}

.helper-overlay p {
  margin: 8px 0 15px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 9px;
}

.helper-overlay code {
  display: block;
  margin-top: 6px;
  color: #c9dc72;
  font-family: "SFMono-Regular", monospace;
  font-size: 8px;
}

.shared-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 0 0 var(--split));
}

.overlay-cover {
  position: absolute;
  right: 6%;
  bottom: 7%;
  left: 6%;
  min-height: 198px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(9, 9, 9, 0.13);
  border-radius: 18px;
  background: rgba(247, 247, 244, 0.97);
  color: #a2a39c;
  font-size: 8px;
  letter-spacing: 0.04em;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 4;
  width: 1px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(9, 9, 9, 0.08);
  pointer-events: none;
}

.compare-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(9, 9, 9, 0.09);
  border-radius: 50%;
  background: var(--acid);
  color: var(--black);
  font-family: "DIN Alternate", monospace;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(9, 9, 9, 0.16);
  transform: translate(-50%, -50%);
}

.view-label {
  position: absolute;
  top: 63px;
  z-index: 5;
  padding: 7px 10px;
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 8px;
  box-shadow: 0 7px 20px rgba(9, 9, 9, 0.08);
}

.self-label {
  left: 15px;
}

.shared-label {
  right: 15px;
}

.comparison-demo input {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

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

.feature-card {
  position: relative;
  min-height: 500px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: #e7e4d8;
}

.card-number {
  color: #87887f;
  font-family: "DIN Alternate", monospace;
  font-size: 9px;
}

.feature-card h3 {
  position: absolute;
  right: 32px;
  bottom: 86px;
  left: 32px;
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.feature-card > p {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  margin: 0;
  color: #6b6c64;
  font-size: 11px;
  line-height: 1.65;
}

.cursor-demo {
  position: absolute;
  top: 70px;
  right: 22px;
  left: 22px;
  height: 230px;
}

.layer-window {
  position: absolute;
  padding: 20px;
  border: 1px solid rgba(9, 9, 9, 0.1);
  border-radius: 16px;
}

.layer-top {
  z-index: 2;
  top: 10px;
  right: 12px;
  left: 12px;
  height: 100px;
  background: rgba(18, 20, 17, 0.88);
  color: rgba(255, 255, 255, 0.55);
  font-family: "DIN Alternate", monospace;
  font-size: 8px;
  box-shadow: 0 18px 40px rgba(9, 9, 9, 0.16);
}

.layer-top span {
  float: right;
  color: var(--acid);
}

.layer-bottom {
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  padding-top: 57px;
  background: rgba(255, 255, 255, 0.5);
}

.layer-bottom i {
  position: absolute;
  top: 24px;
  left: 20px;
  width: 60%;
  height: 6px;
  border-radius: 5px;
  background: rgba(9, 9, 9, 0.1);
}

.layer-bottom i:nth-child(2) {
  top: 38px;
  width: 38%;
}

.layer-bottom button {
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--acid);
  color: var(--black);
  font-size: 8px;
}

.cursor-demo svg {
  position: absolute;
  z-index: 3;
  top: 85px;
  left: 50%;
  width: 34px;
  fill: var(--acid);
  stroke: var(--black);
  stroke-width: 1.2;
  filter: drop-shadow(0 8px 14px rgba(9, 9, 9, 0.25));
}

.opacity-demo {
  position: absolute;
  top: 66px;
  right: 25px;
  left: 25px;
  height: 245px;
}

.opacity-window {
  position: absolute;
  width: 72%;
  height: 120px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(15, 17, 14, var(--opacity));
  box-shadow: 0 18px 40px rgba(9, 9, 9, 0.12);
  backdrop-filter: blur(12px);
}

.opacity-window span {
  color: rgba(255, 255, 255, 0.65);
  font-family: "DIN Alternate", monospace;
  font-size: 8px;
}

.opacity-window i {
  display: block;
  width: 70%;
  height: 6px;
  margin-top: 18px;
  border-radius: 5px;
  background: var(--acid);
}

.opacity-window i:last-child {
  width: 43%;
  margin-top: 8px;
}

.opacity-100 {
  --opacity: 0.96;
  z-index: 1;
  top: 0;
  left: 0;
}

.opacity-55 {
  --opacity: 0.58;
  z-index: 2;
  top: 46px;
  left: 14%;
}

.opacity-25 {
  --opacity: 0.28;
  z-index: 3;
  top: 92px;
  left: 28%;
}

.shortcut-demo {
  position: absolute;
  top: 65px;
  right: 32px;
  left: 32px;
  display: grid;
  gap: 10px;
}

.shortcut-demo > div {
  padding: 10px;
  display: grid;
  grid-template-columns: 44px 44px 1fr;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 30px rgba(9, 9, 9, 0.05);
}

.shortcut-demo > div:nth-child(2) {
  transform: translateX(14px);
}

.shortcut-demo kbd {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(9, 9, 9, 0.12);
  border-bottom-width: 3px;
  border-radius: 10px;
  background: #f7f6f0;
  font-family: inherit;
  font-size: 15px;
}

.shortcut-demo span {
  padding-left: 6px;
  color: #787970;
  font-size: 9px;
}

.modes-section {
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.modes-inner {
  padding-bottom: 155px;
}

.mode-switch {
  width: fit-content;
  margin: 65px 0 28px auto;
  padding: 5px;
  display: flex;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: #121311;
}

.mode-switch button {
  padding: 11px 17px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  cursor: pointer;
}

.mode-switch button span {
  margin-right: 7px;
  font-family: "DIN Alternate", monospace;
}

.mode-switch button.is-active {
  background: var(--acid);
  color: var(--black);
}

.mode-panel {
  min-height: 620px;
  padding: 70px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 50px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 83% 40%, rgba(217, 246, 74, 0.06), transparent 28%),
    #111210;
}

.mode-copy {
  max-width: 430px;
}

.mode-label {
  color: var(--acid);
  font-family: "DIN Alternate", monospace;
  font-size: 9px;
  letter-spacing: 0.11em;
}

.mode-copy h3 {
  margin: 18px 0 0;
  font-size: clamp(42px, 4.7vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.07em;
}

.mode-copy p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 13px;
  line-height: 1.85;
}

.mode-copy ul {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.mode-copy li::before {
  content: "↗";
  margin-right: 10px;
  color: var(--acid);
}

.mode-visual {
  position: relative;
  min-height: 440px;
}

.capture-frame {
  position: absolute;
  top: 10px;
  right: 0;
  left: 5%;
  height: 315px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(217, 246, 74, 0.25);
  border-radius: 22px;
  background: #20221e;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(3deg);
}

.capture-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(217, 246, 74, 0.38);
  border-radius: 14px;
}

.capture-frame span {
  color: var(--acid);
  font-family: "DIN Alternate", monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.capture-frame i {
  display: block;
  width: 77%;
  height: 7px;
  margin-top: 38px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.12);
}

.capture-frame i + i {
  width: 55%;
  margin-top: 15px;
}

.capture-frame i:nth-of-type(3) {
  width: 68%;
}

.capture-frame i:nth-of-type(4) {
  width: 39%;
}

.answer-card {
  position: absolute;
  right: 8%;
  bottom: 0;
  left: 0;
  z-index: 2;
  min-height: 190px;
  padding: 27px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(12, 13, 11, 0.92);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.answer-card small {
  color: var(--acid);
  font-family: "DIN Alternate", monospace;
  font-size: 8px;
}

.answer-card strong {
  display: block;
  margin: 18px 0;
  font-size: 18px;
}

.answer-card i {
  display: block;
  width: 70%;
  height: 6px;
  margin-top: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.13);
}

.answer-card i:nth-last-child(2) {
  width: 52%;
}

.answer-card i:last-child {
  width: 62%;
}

.listen-visual {
  padding: 45px 48px;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: #0d0e0c;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.38);
}

.live-badge {
  display: inline-flex;
  padding: 8px 11px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "DIN Alternate", monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
}

.live-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px rgba(217, 246, 74, 0.6);
}

.listen-visual blockquote {
  margin: 40px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 650;
  line-height: 1.43;
  letter-spacing: -0.045em;
}

.listen-visual .audio-wave {
  height: 70px;
  margin: 28px 0 0;
  justify-content: flex-start;
}

.talking-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.talking-points span {
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
}

.types-section {
  padding-bottom: 155px;
}

.types-header,
.compatibility-header {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  align-items: end;
  gap: 80px;
}

.types-header h2,
.compatibility-header h2 {
  margin-top: 30px;
}

.type-marquee {
  width: 100vw;
  margin: 100px 0 0 calc((1180px - 100vw) / 2);
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.type-track {
  width: max-content;
  min-height: 135px;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: marquee 35s linear infinite;
}

.type-track span {
  font-size: 38px;
  font-weight: 650;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.type-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9aa83f;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.model-board {
  min-height: 520px;
  margin-top: 85px;
  padding: 62px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 80px;
  border-radius: var(--radius-xl);
  background: var(--black);
  color: var(--white);
}

.model-board-copy > span {
  color: var(--acid);
  font-family: "DIN Alternate", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.model-board-copy h3 {
  margin: 18px 0 0;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -0.065em;
}

.model-board-copy p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 1.8;
}

.model-list {
  display: grid;
}

.model-list > div {
  min-height: 105px;
  padding: 0 6px;
  display: grid;
  grid-template-columns: 36px 0.65fr 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line-dark);
}

.model-list > div:first-child {
  border-top: 1px solid var(--line-dark);
}

.model-list span,
.model-list b {
  color: rgba(255, 255, 255, 0.3);
  font-family: "DIN Alternate", monospace;
  font-size: 8px;
  font-weight: 500;
}

.model-list strong {
  font-size: 14px;
}

.model-list small {
  color: rgba(255, 255, 255, 0.37);
  font-size: 9px;
}

.model-list b {
  padding: 7px 9px;
  border: 1px solid rgba(217, 246, 74, 0.2);
  border-radius: 999px;
  color: var(--acid);
}

.workflow-section {
  background: #dedbcf;
}

.steps-grid {
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  position: relative;
  min-height: 380px;
  padding: 32px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.34);
}

.step-card > span {
  color: #82837a;
  font-family: "DIN Alternate", monospace;
  font-size: 9px;
}

.step-icon {
  display: grid;
  width: 80px;
  height: 80px;
  margin-top: 72px;
  place-items: center;
  border-radius: 23px;
  background: var(--acid);
  box-shadow: 0 16px 35px rgba(104, 114, 48, 0.14);
}

.step-icon svg {
  width: 34px;
  fill: none;
  stroke: var(--black);
  stroke-width: 1.4;
}

.step-card h3 {
  margin: 34px 0 0;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.step-card p {
  margin: 14px 0 0;
  color: #6d6e66;
  font-size: 11px;
  line-height: 1.75;
}

.compatibility-section {
  background: var(--black);
  color: var(--white);
}

.compatibility-section .section {
  padding-bottom: 150px;
}

.compatibility-header > p {
  color: rgba(255, 255, 255, 0.4);
}

.platform-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
}

.platform-grid > div {
  min-height: 104px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.platform-grid > div:nth-child(odd) {
  border-right: 1px solid var(--line-dark);
}

.platform-grid span {
  color: rgba(255, 255, 255, 0.27);
  font-family: "DIN Alternate", monospace;
  font-size: 9px;
}

.platform-grid strong {
  font-size: 14px;
}

.platform-grid b {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9ca65f;
  font-family: "DIN Alternate", monospace;
  font-size: 8px;
  font-weight: 500;
}

.platform-grid b i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 9px rgba(217, 246, 74, 0.55);
}

.pricing-section {
  padding-bottom: 155px;
}

.pricing-grid {
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  position: relative;
  min-height: 560px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: #e8e5d9;
}

.price-card.is-featured {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 30px 70px rgba(9, 9, 9, 0.15);
}

.popular-tag {
  position: absolute;
  top: -13px;
  right: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
}

.plan-head span,
.plan-head small {
  display: block;
}

.plan-head span {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.plan-head small {
  margin-top: 7px;
  color: #77786f;
  font-size: 10px;
}

.is-featured .plan-head small {
  color: rgba(255, 255, 255, 0.38);
}

.plan-price {
  margin-top: 55px;
  display: flex;
  align-items: flex-start;
}

.plan-price sup {
  margin: 10px 6px 0 0;
  font-size: 20px;
}

.plan-price strong {
  font-family: "DIN Alternate", "Avenir Next", sans-serif;
  font-size: 78px;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.is-featured .plan-price strong,
.is-featured .plan-price sup {
  color: var(--acid);
}

.plan-credits {
  margin-top: 18px;
  color: #77786f;
  font-size: 11px;
}

.plan-credits b {
  margin-right: 4px;
  color: var(--ink);
  font-size: 18px;
}

.is-featured .plan-credits {
  color: rgba(255, 255, 255, 0.38);
}

.is-featured .plan-credits b {
  color: var(--white);
}

.price-card ul {
  margin: 45px 0 30px;
  padding: 27px 0 0;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line-light);
  list-style: none;
  color: #5f6058;
  font-size: 11px;
}

.is-featured ul {
  border-color: var(--line-dark);
  color: rgba(255, 255, 255, 0.55);
}

.price-card li::before {
  content: "✓";
  margin-right: 10px;
  color: #849426;
}

.price-card > a {
  min-height: 50px;
  margin-top: auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.price-card > a:hover {
  background: var(--black);
  color: var(--white);
}

.is-featured > a {
  border-color: transparent;
  background: var(--acid);
  color: var(--black);
}

.is-featured > a:hover {
  background: var(--acid-bright);
  color: var(--black);
}

.pricing-note {
  margin: 22px 0 0;
  color: #85867e;
  font-size: 9px;
  text-align: center;
}

.faq-section {
  background: var(--black);
  color: var(--white);
}

.faq-layout {
  padding-bottom: 145px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading h2 {
  margin: 34px 0 0;
  font-size: 55px;
  line-height: 1.05;
  letter-spacing: -0.07em;
}

.faq-heading p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.faq-heading a {
  color: var(--acid);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 96px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 20px;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 340ms var(--ease);
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding-right: 70px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
  line-height: 1.85;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 32px;
}

.download-section {
  position: relative;
  min-height: 700px;
  padding: 135px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 115%, rgba(217, 246, 74, 0.22), transparent 42%),
    #111210;
  color: var(--white);
}

.download-section::before,
.download-section::after {
  content: "";
  position: absolute;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  transform: translateX(-50%);
}

.download-section::before {
  top: 20px;
  width: 700px;
  height: 700px;
}

.download-section::after {
  top: 120px;
  width: 500px;
  height: 500px;
}

.download-noise {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, #000, transparent 70%);
}

.download-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.download-inner h2 {
  margin: 35px 0 0;
  font-size: clamp(55px, 7vw, 92px);
  line-height: 1.03;
  letter-spacing: -0.08em;
}

.download-inner h2 span {
  color: #8d8f87;
}

.download-inner > p {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 14px;
}

.download-inner .hero-actions {
  margin-top: 35px;
}

.download-inner .download-disclaimer {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 9px;
}

.site-footer {
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  background: var(--black);
  color: var(--white);
}

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

.footer-top {
  min-height: 130px;
  border-top: 1px solid var(--line-dark);
}

.footer-top p {
  color: rgba(255, 255, 255, 0.37);
  font-size: 11px;
}

.footer-top > a:last-child {
  color: var(--acid);
  font-size: 11px;
}

.footer-bottom {
  min-height: 62px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.27);
  font-size: 9px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
}

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

.hero-copy .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.hero-copy .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.hero-copy .reveal:nth-child(4) {
  transition-delay: 200ms;
}

.hero-copy .reveal:nth-child(5) {
  transition-delay: 250ms;
}

.hero-product.reveal {
  transition-delay: 300ms;
}

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

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

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    top: 92px;
    right: 28px;
    left: 28px;
    padding: 12px 24px;
    display: grid;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(17, 18, 16, 0.95);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    backdrop-filter: blur(22px);
    transition:
      opacity 220ms ease,
      transform 280ms var(--ease);
  }

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

  .mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line-dark);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
    color: var(--acid);
  }

  .hero {
    min-height: 1030px;
  }

  .app-shell {
    min-height: 550px;
  }

  .comparison-card {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .comparison-copy {
    padding-left: 38px;
  }

  .comparison-demo {
    margin-right: 28px;
  }

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

  .feature-card:last-child {
    grid-column: span 2;
  }

  .feature-card:last-child .shortcut-demo {
    right: 50%;
  }

  .feature-card:last-child h3,
  .feature-card:last-child > p {
    left: 55%;
  }

  .mode-panel {
    padding: 52px;
  }

  .model-board {
    gap: 45px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 12px;
  }

  .nav-shell {
    min-height: 54px;
    padding: 0 6px 0 11px;
    border-radius: 15px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
    border-radius: 8px;
  }

  .brand-name {
    font-size: 15px;
  }

  .nav-actions .button {
    display: none;
  }

  .mobile-nav {
    top: 72px;
    right: 12px;
    left: 12px;
  }

  .hero {
    min-height: auto;
    padding: 125px 18px 85px;
  }

  .hero::after {
    top: 150px;
    width: 520px;
    height: 520px;
  }

  .hero-badge {
    font-size: 8px;
  }

  .hero h1 {
    margin-top: 30px;
    font-size: clamp(46px, 13vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.08em;
  }

  .hero h1 span {
    display: block;
    margin-top: 4px;
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: min(330px, 100%);
  }

  .hero-product {
    width: 126vw;
    margin-top: 75px;
    margin-left: -22vw;
    transform: scale(0.82);
    transform-origin: center top;
  }

  .app-shell {
    min-height: 540px;
  }

  .app-topbar {
    grid-template-columns: 1fr auto;
  }

  .app-state {
    display: none;
  }

  .app-tabs {
    padding: 0 12px;
  }

  .credits-pill {
    display: none;
  }

  .product-panel {
    grid-template-columns: 140px 1fr;
  }

  .solution-pane {
    padding: 30px 24px;
  }

  .solution-question h2 {
    font-size: 25px;
  }

  .interview-panel {
    grid-template-columns: 170px 1fr;
  }

  .interview-answer {
    padding: 35px 28px;
  }

  .floating-proof {
    display: none;
  }

  .signal-strip {
    padding: 38px 16px;
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
  }

  .signal-strip > div {
    padding: 0 12px;
  }

  .signal-strip > i {
    display: none;
  }

  .signal-strip > div:nth-of-type(2n) {
    border-left: 1px solid rgba(9, 9, 9, 0.14);
  }

  .signal-strip strong {
    font-size: 15px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 90px 0;
  }

  .split-heading,
  .types-header,
  .compatibility-header {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .split-heading h2,
  .types-header h2,
  .compatibility-header h2 {
    font-size: clamp(42px, 12vw, 55px);
  }

  .split-heading p,
  .types-header > p,
  .compatibility-header > p {
    max-width: 520px;
    font-size: 12px;
  }

  .comparison-card {
    min-height: 930px;
    margin-top: 52px;
    display: block;
    border-radius: 28px;
  }

  .comparison-copy {
    height: 360px;
    padding: 35px 30px;
  }

  .card-eyebrow {
    margin-top: 32px;
  }

  .comparison-copy h3 {
    font-size: 40px;
  }

  .comparison-copy p {
    margin-top: 16px;
  }

  .platform-row {
    margin-top: 18px;
  }

  .comparison-demo {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    height: 540px;
    margin: 0;
  }

  .exam-content {
    padding: 26px 20px;
  }

  .exam-content h4 {
    font-size: 18px;
  }

  .helper-overlay {
    right: 4%;
    left: 4%;
    padding: 20px;
  }

  .overlay-cover {
    right: 4%;
    left: 4%;
  }

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

  .feature-card,
  .feature-card:last-child {
    min-height: 490px;
    grid-column: auto;
  }

  .feature-card:last-child .shortcut-demo {
    right: 32px;
  }

  .feature-card:last-child h3,
  .feature-card:last-child > p {
    left: 32px;
  }

  .mode-switch {
    width: 100%;
    margin: 45px 0 20px;
  }

  .mode-switch button {
    flex: 1;
    padding: 11px 10px;
  }

  .mode-panel {
    min-height: 900px;
    padding: 35px 28px;
    grid-template-columns: 1fr;
    gap: 35px;
    border-radius: 28px;
  }

  .mode-copy h3 {
    font-size: 42px;
  }

  .mode-visual {
    min-height: 410px;
  }

  .capture-frame {
    left: 0;
  }

  .listen-visual {
    padding: 30px 25px;
  }

  .talking-points {
    grid-template-columns: 1fr;
  }

  .type-marquee {
    margin-top: 65px;
    margin-left: -16px;
  }

  .type-track {
    min-height: 105px;
    gap: 22px;
  }

  .type-track span {
    font-size: 29px;
  }

  .model-board {
    min-height: 760px;
    margin-top: 60px;
    padding: 38px 28px;
    grid-template-columns: 1fr;
    gap: 35px;
    border-radius: 28px;
  }

  .model-board-copy h3 {
    font-size: 38px;
  }

  .model-list > div {
    grid-template-columns: 28px 1fr auto;
  }

  .model-list small {
    display: none;
  }

  .steps-grid {
    margin-top: 55px;
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 330px;
  }

  .step-icon {
    margin-top: 45px;
  }

  .platform-grid {
    margin-top: 55px;
    grid-template-columns: 1fr;
  }

  .platform-grid > div:nth-child(odd) {
    border-right: 0;
  }

  .platform-grid > div {
    padding: 0 12px;
    grid-template-columns: 40px 1fr auto;
  }

  .pricing-grid {
    margin-top: 55px;
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 520px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading h2 {
    font-size: 43px;
  }

  .faq-item button {
    min-height: 88px;
    font-size: 14px;
  }

  .faq-answer p {
    padding-right: 12px;
  }

  .download-section {
    min-height: 680px;
    padding: 100px 18px;
  }

  .download-inner h2 {
    font-size: 48px;
  }

  .footer-top {
    min-height: 170px;
    padding: 35px 0;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .footer-bottom {
    min-height: 85px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 45px;
  }

  .hero-product {
    width: 138vw;
    margin-left: -28vw;
  }

  .comparison-copy h3 {
    font-size: 36px;
  }

  .comparison-copy p {
    font-size: 11px;
  }

  .comparison-demo {
    height: 520px;
  }

  .platform-row span:nth-child(4) {
    display: none;
  }

  .plan-price strong {
    font-size: 70px;
  }
}

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

/* 2026 light product direction */
:root {
  --paper: #f5f5f7;
  --paper-soft: #ececf0;
  --white: #ffffff;
  --ink: #1d1d1f;
  --ink-soft: #6e6e73;
  --acid: #0071e3;
  --acid-bright: #147ce5;
  --line-light: rgba(29, 29, 31, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
}

body {
  background: var(--paper);
  color: var(--ink);
}

.site-header {
  padding-top: 14px;
  color: var(--ink);
}

.nav-shell {
  width: min(1180px, 100%);
  min-height: 58px;
  border-color: rgba(29, 29, 31, 0.06);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 30px rgba(26, 31, 44, 0.06);
  backdrop-filter: blur(24px) saturate(150%);
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 13px 38px rgba(26, 31, 44, 0.1);
}

.brand-mark {
  background: var(--blue, #0071e3);
  box-shadow: 0 8px 22px rgba(0, 113, 227, 0.2);
}

.brand-mark::before {
  border-color: #fff;
}

.brand-mark span:first-child,
.brand-mark span:last-child {
  background: #fff;
}

.desktop-nav a,
.nav-login {
  color: #6e6e73;
}

.desktop-nav a:hover,
.nav-login:hover {
  color: #1d1d1f;
}

.button-accent {
  background: #0071e3;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 113, 227, 0.2);
}

.button-accent:hover {
  background: #0077ed;
  box-shadow: 0 13px 30px rgba(0, 113, 227, 0.28);
}

.button-dark {
  border-color: rgba(29, 29, 31, 0.12);
  background: #fff;
  color: #1d1d1f;
  box-shadow: 0 9px 24px rgba(26, 31, 44, 0.07);
}

.button-dark:hover {
  background: #f8f8fa;
}

.menu-toggle span {
  background: #1d1d1f;
}

.hero {
  min-height: 890px;
  padding: 135px max(32px, calc((100% - 1260px) / 2)) 90px;
  display: grid;
  grid-template-columns: minmax(400px, 0.82fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: 48px;
  background:
    radial-gradient(circle at 82% 24%, rgba(0, 113, 227, 0.13), transparent 29%),
    radial-gradient(circle at 54% 74%, rgba(147, 112, 255, 0.09), transparent 25%),
    linear-gradient(180deg, #fbfbfd 0%, #f3f5fb 100%);
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 29, 31, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 31, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, transparent 92%);
}

.hero::after,
.hero-grid,
.hero-orb {
  display: none;
}

.hero-copy {
  z-index: 4;
  width: auto;
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.hero-badge {
  padding: 8px 12px;
  border-color: rgba(0, 113, 227, 0.14);
  background: rgba(0, 113, 227, 0.07);
  color: #35658f;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-badge span,
.hero-note span {
  background: #0071e3;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.hero h1 {
  margin-top: 29px;
  font-size: clamp(54px, 5.5vw, 78px);
  font-weight: 720;
  line-height: 1.05;
  letter-spacing: -0.075em;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: #0071e3;
}

.hero-lead {
  max-width: 530px;
  margin: 27px 0 0;
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.8;
}

.hero .hero-actions {
  margin-top: 31px;
  justify-content: flex-start;
}

.hero-note {
  margin-top: 19px;
  justify-content: flex-start;
  color: #86868b;
  font-family: inherit;
  letter-spacing: 0;
}

.hero-product {
  z-index: 4;
  width: min(760px, 53vw);
  margin: 0;
  perspective: none;
}

.app-shadow {
  right: 6%;
  bottom: -8%;
  left: 6%;
  background: rgba(0, 113, 227, 0.17);
  filter: blur(70px);
}

.app-shell {
  min-height: 575px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #12151b;
  box-shadow:
    0 42px 90px rgba(39, 55, 84, 0.24),
    0 0 0 8px rgba(255, 255, 255, 0.55);
  transform: none;
}

.app-topbar {
  min-height: 52px;
}

.app-brand i,
.app-state span,
.solution-status span {
  background: #50d890;
  box-shadow: 0 0 11px rgba(80, 216, 144, 0.55);
}

.app-state {
  color: #7ee3ae;
}

.app-tabs {
  min-height: 56px;
}

.app-tabs button.is-active {
  border-color: rgba(80, 150, 255, 0.3);
  background: rgba(0, 113, 227, 0.15);
  color: #79b6ff;
}

.credits-pill {
  color: #7ee3ae;
}

.product-panel {
  min-height: 465px;
  grid-template-columns: 170px 1fr;
}

.solution-pane {
  padding: 34px 38px 26px;
  background:
    radial-gradient(circle at 80% 8%, rgba(0, 113, 227, 0.12), transparent 30%),
    #151820;
}

.solution-question small,
.code-window em {
  color: #79b6ff;
}

.solution-meta button {
  background: #0071e3;
  color: #fff;
}

.floating-proof {
  border-color: rgba(29, 29, 31, 0.09);
  background: rgba(255, 255, 255, 0.91);
  color: #1d1d1f;
  box-shadow: 0 18px 50px rgba(32, 43, 69, 0.14);
}

.proof-a span {
  color: #0071e3;
}

.proof-b > i {
  background: #34c759;
  box-shadow: 0 0 0 5px rgba(52, 199, 89, 0.1);
}

.proof-b span {
  color: #86868b;
}

.signal-strip {
  min-height: 126px;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  background: #fff;
  color: #1d1d1f;
}

.signal-strip span {
  color: #86868b;
}

.signal-strip > i {
  background: rgba(29, 29, 31, 0.1);
}

.proof-section {
  width: min(1200px, calc(100% - 48px));
}

.section-kicker {
  color: #0071e3;
}

.section-kicker span {
  border-color: rgba(0, 113, 227, 0.18);
  background: rgba(0, 113, 227, 0.06);
  color: #0071e3;
}

.split-heading h2 span {
  color: #86868b;
}

.comparison-card {
  border-color: rgba(29, 29, 31, 0.08);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 113, 227, 0.09), transparent 34%),
    #fff;
  box-shadow: 0 25px 70px rgba(36, 48, 74, 0.08);
}

.comparison-card::before {
  display: none;
}

.feature-icon {
  background: #0071e3;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 113, 227, 0.22);
}

.platform-row span {
  border-color: rgba(0, 113, 227, 0.1);
  background: rgba(0, 113, 227, 0.055);
  color: #56718a;
}

.compare-handle span {
  background: #0071e3;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 113, 227, 0.25);
}

.feature-card {
  border-color: rgba(29, 29, 31, 0.08);
  background: #fff;
  box-shadow: 0 16px 45px rgba(36, 48, 74, 0.055);
}

.layer-bottom button,
.opacity-window i {
  background: #0071e3;
  color: #fff;
}

.cursor-demo svg {
  fill: #0071e3;
}

.modes-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 113, 227, 0.09), transparent 38%),
    #f5f5f7;
  color: #1d1d1f;
}

.section-kicker-light {
  color: #0071e3;
}

.section-kicker-light span {
  border-color: rgba(0, 113, 227, 0.18);
  background: rgba(0, 113, 227, 0.06);
  color: #0071e3;
}

.split-heading-light h2 {
  color: #1d1d1f;
}

.split-heading-light h2 span {
  color: #86868b;
}

.split-heading-light p {
  color: #6e6e73;
}

.mode-switch {
  border-color: rgba(29, 29, 31, 0.09);
  background: #e9e9ed;
}

.mode-switch button {
  color: #6e6e73;
}

.mode-switch button.is-active {
  background: #0071e3;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 113, 227, 0.2);
}

.mode-panel {
  border-color: rgba(29, 29, 31, 0.08);
  background: #fff;
  color: #1d1d1f;
  box-shadow: 0 24px 70px rgba(36, 48, 74, 0.08);
}

.mode-label {
  color: #0071e3;
}

.mode-copy p {
  color: #6e6e73;
}

.mode-copy ul {
  color: #515154;
}

.mode-copy li::before {
  color: #0071e3;
}

.capture-frame {
  border-color: rgba(72, 145, 255, 0.4);
  background: #1c2230;
}

.capture-frame::before {
  border-color: rgba(72, 145, 255, 0.55);
}

.capture-frame span,
.answer-card small,
.live-badge i {
  color: #79b6ff;
}

.listen-visual {
  background: #151820;
}

.live-badge i {
  background: #34c759;
}

.types-section {
  background: #fff;
}

.type-track i {
  background: #0071e3;
}

.model-board {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 113, 227, 0.22), transparent 32%),
    #10131a;
}

.model-board-copy > span,
.model-list b {
  color: #79b6ff;
}

.model-list b {
  border-color: rgba(121, 182, 255, 0.22);
}

.workflow-section {
  background: #f5f5f7;
}

.step-card {
  border-color: rgba(29, 29, 31, 0.08);
  background: #fff;
  box-shadow: 0 14px 40px rgba(36, 48, 74, 0.05);
}

.step-icon {
  background: linear-gradient(145deg, #1685f5, #0066cc);
  box-shadow: 0 16px 35px rgba(0, 113, 227, 0.18);
}

.step-icon svg {
  stroke: #fff;
}

.compatibility-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 113, 227, 0.19), transparent 30%),
    #10131a;
}

.platform-grid b {
  color: #7ee3ae;
}

.platform-grid b i {
  background: #34c759;
  box-shadow: 0 0 9px rgba(52, 199, 89, 0.55);
}

.pricing-section {
  background: #fff;
}

.price-card {
  border-color: rgba(29, 29, 31, 0.08);
  background: #f5f5f7;
}

.price-card.is-featured {
  border-color: #0071e3;
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 113, 227, 0.35), transparent 38%),
    #111722;
}

.popular-tag {
  background: #0071e3;
  color: #fff;
}

.is-featured .plan-price strong,
.is-featured .plan-price sup {
  color: #79b6ff;
}

.price-card li::before {
  color: #0071e3;
}

.price-card > a:hover {
  background: #0071e3;
}

.is-featured > a {
  background: #0071e3;
  color: #fff;
}

.is-featured > a:hover {
  background: #147ce5;
  color: #fff;
}

.faq-section {
  background: #f5f5f7;
  color: #1d1d1f;
}

.faq-heading h2 {
  color: #1d1d1f;
}

.faq-heading p {
  color: #6e6e73;
}

.faq-heading a {
  color: #0071e3;
}

.faq-list,
.faq-item {
  border-color: rgba(29, 29, 31, 0.1);
}

.faq-item button {
  color: #1d1d1f;
}

.faq-item button span {
  border-color: rgba(29, 29, 31, 0.12);
}

.faq-item button span::before,
.faq-item button span::after {
  background: #6e6e73;
}

.faq-answer p {
  color: #6e6e73;
}

.download-section {
  min-height: 640px;
  background:
    radial-gradient(circle at 50% 110%, rgba(255, 255, 255, 0.25), transparent 38%),
    linear-gradient(145deg, #006bd6, #0077ed 54%, #369cff);
}

.download-section::before,
.download-section::after {
  border-color: rgba(255, 255, 255, 0.12);
}

.download-badge {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

.download-badge span {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.download-inner h2 span {
  color: rgba(255, 255, 255, 0.68);
}

.download-inner > p {
  color: rgba(255, 255, 255, 0.72);
}

.download-section .button-accent {
  background: #fff;
  color: #0066cc;
}

.download-section .button-outline {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  background: #fff;
  color: #1d1d1f;
}

.footer-top,
.footer-bottom {
  border-color: rgba(29, 29, 31, 0.08);
}

.footer-top p,
.footer-bottom {
  color: #86868b;
}

.footer-top > a:last-child {
  color: #0071e3;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(360px, 0.8fr) minmax(530px, 1.2fr);
    gap: 24px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-product {
    width: 56vw;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 145px;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-product {
    width: min(780px, 92vw);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    background: rgba(255, 255, 255, 0.9);
  }

  .mobile-nav {
    border-color: rgba(29, 29, 31, 0.08);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 60px rgba(31, 43, 67, 0.16);
  }

  .mobile-nav a {
    border-color: rgba(29, 29, 31, 0.08);
    color: #515154;
  }

  .mobile-nav a:last-child {
    color: #0071e3;
  }

  .hero {
    padding: 120px 18px 75px;
    display: grid;
    gap: 56px;
  }

  .hero h1 {
    font-size: clamp(45px, 12vw, 56px);
  }

  .hero h1 span {
    margin-top: 7px;
  }

  .hero-product {
    width: 112vw;
    margin-left: -15vw;
    transform: scale(0.84);
  }

  .hero .hero-actions {
    align-items: center;
  }

  .signal-strip {
    background: #fff;
  }

  .comparison-card {
    background:
      radial-gradient(circle at 10% 12%, rgba(0, 113, 227, 0.1), transparent 38%),
      #fff;
  }

  .mode-panel {
    background: #fff;
  }

  .price-card.is-featured {
    background:
      radial-gradient(circle at 80% 0%, rgba(0, 113, 227, 0.35), transparent 38%),
      #111722;
  }
}
