@font-face {
  font-family: "Google Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-stretch: 100%;
  font-display: swap;
  src: url("./assets/fonts/google-sans-flex-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Google Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-stretch: 100%;
  font-display: swap;
  src: url("./assets/fonts/google-sans-flex-symbols.woff2") format("woff2");
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}

:root {
  color-scheme: dark;
  --bg: #050713;
  --bg-deep: #02030a;
  --surface: rgba(18, 23, 48, 0.72);
  --surface-solid: #11162d;
  --line: rgba(184, 200, 255, 0.14);
  --line-strong: rgba(133, 171, 255, 0.28);
  --text: #f8faff;
  --muted: #a7aec7;
  --blue: #6ca7ff;
  --blue-bright: #89c5ff;
  --purple: #b08cff;
  --mint: #7ef0d0;
  --shell: min(1180px, calc(100% - 40px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(48, 91, 221, 0.16), transparent 34%),
    linear-gradient(180deg, #050713 0%, #070918 36%, #03040c 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.34;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.2px),
    radial-gradient(circle, rgba(113, 170, 255, 0.48) 0 1px, transparent 1.3px);
  background-position: 0 0, 42px 57px;
  background-size: 92px 92px, 137px 137px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
  pointer-events: none;
}

a { color: inherit; }

img,
video { max-width: 100%; }

button,
a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #02030a;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

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

.page-aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.page-aurora span {
  position: absolute;
  width: 38vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  animation: aurora-drift 16s ease-in-out infinite alternate;
}

.page-aurora span:nth-child(1) { top: 8%; left: -20%; background: #2c74ff; }
.page-aurora span:nth-child(2) { top: 42%; right: -24%; background: #884dff; animation-delay: -5s; }
.page-aurora span:nth-child(3) { bottom: -20%; left: 30%; background: #1e9bd7; animation-delay: -9s; }

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100% - 28px));
  min-height: 64px;
  margin: 14px auto 0;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(202, 214, 255, 0.14);
  border-radius: 20px;
  background: rgba(7, 10, 24, 0.72);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
  font-family: "Google Sans";
  font-synthesis: none;
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 820;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img { width: 38px; height: 38px; object-fit: contain; }

.site-nav { display: flex; gap: 30px; }

.site-nav a {
  color: rgba(233, 238, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: #fff; }

.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(160, 190, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); border-color: rgba(150, 190, 255, 0.5); }
.button-small { min-height: 46px; padding-inline: 18px; }

.button-primary {
  border-color: rgba(151, 189, 255, 0.62);
  background: linear-gradient(135deg, #276eff, #7447e8);
  box-shadow: 0 14px 38px rgba(42, 105, 255, 0.28), inset 0 1px rgba(255, 255, 255, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible { box-shadow: 0 18px 50px rgba(70, 112, 255, 0.42), inset 0 1px rgba(255, 255, 255, 0.24); }

.button-large { min-height: 58px; padding-inline: 30px; font-size: 1rem; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  min-height: calc(100vh - 94px);
  padding-block: 92px 110px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: #a8c9ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px var(--mint);
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.75rem, 6.6vw, 6.7rem);
  font-weight: 780;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

h1 em,
h2 em {
  background: linear-gradient(110deg, #72aeff 15%, #d0a8ff 86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.65vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 24px; }

.text-link {
  color: #dce7ff;
  font-size: 0.92rem;
  font-weight: 720;
  text-decoration: none;
}

.text-link span { display: inline-block; margin-left: 5px; transition: transform 180ms ease; }
.text-link:hover span { transform: translateY(3px); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 570px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero-stats div { display: grid; gap: 6px; padding-inline: 22px; border-left: 1px solid var(--line); }
.hero-stats div:first-child { padding-left: 0; border-left: 0; }
.hero-stats strong { font-size: 1.45rem; letter-spacing: -0.035em; }
.hero-stats span { color: #828aa6; font-size: 0.72rem; line-height: 1.35; text-transform: uppercase; }

.hero-visual { position: relative; perspective: 1400px; }

.visual-glow {
  position: absolute;
  inset: 10% 5%;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(41, 113, 255, 0.48), rgba(129, 69, 255, 0.3));
  filter: blur(70px);
  opacity: 0.6;
  animation: visual-pulse 5s ease-in-out infinite alternate;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(173, 195, 255, 0.27);
  border-radius: 22px;
  background: #080a12;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.52), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: rotateY(-5deg) rotateX(2deg);
  animation: frame-float 6s ease-in-out infinite;
}

.browser-bar {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 0.9fr) 1fr;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #121626;
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 7px; height: 7px; border-radius: 50%; background: #586077; }
.browser-address { padding: 6px 14px; border-radius: 999px; background: rgba(0, 0, 0, 0.25); color: #777f95; font-size: 0.63rem; text-align: center; }
.browser-frame > img { display: block; width: 100%; height: auto; }

.floating-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(176, 199, 255, 0.24);
  border-radius: 14px;
  background: rgba(13, 18, 39, 0.88);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  font-size: 0.72rem;
}

.floating-pill-speed { top: 15%; left: -7%; animation: pill-float 4.6s ease-in-out infinite; }
.floating-pill-limit { right: -5%; bottom: 12%; display: grid; gap: 2px; animation: pill-float 5.2s ease-in-out -1.8s infinite; }
.floating-pill small { color: #77809d; font-size: 0.52rem; font-weight: 800; letter-spacing: 0.13em; }
.floating-pill strong { font-size: 0.75rem; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #72e6c3; box-shadow: 0 0 14px #72e6c3; }

.trust-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(10, 13, 29, 0.58);
}

.trust-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 38px);
  width: 100%;
  min-height: 72px;
  color: #8993af;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.trust-strip i { color: #5f8cff; font-style: normal; }

.intro,
.features,
.showcase,
.how-it-works { padding-block: 150px; }

.section-heading { max-width: 720px; margin-bottom: 62px; }
.section-heading-wide { max-width: 900px; }

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 6vw, 5.75rem);
  font-weight: 730;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading > p:last-child,
.comparison-heading > p,
.showcase-copy > p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.intro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 22px; }

.intro-video-card {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #010207;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.intro-video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(1, 2, 9, 0.9)); pointer-events: none; }
.intro-video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; right: 32px; bottom: 28px; left: 32px; z-index: 1; display: flex; align-items: end; justify-content: space-between; }
.video-overlay p { margin: 0; font-size: 1.45rem; font-weight: 750; }
.video-overlay span { color: #929bb7; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

.bento-stack { display: grid; gap: 22px; }
.bento-card { position: relative; min-height: 304px; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: 28px; }
.bento-card h3 { max-width: 450px; margin-bottom: 13px; font-size: clamp(1.65rem, 3vw, 2.45rem); letter-spacing: -0.045em; line-height: 1.05; }
.bento-card p:not(.card-kicker) { max-width: 440px; margin-bottom: 0; color: rgba(232, 237, 255, 0.72); line-height: 1.6; }
.bento-blue { background: linear-gradient(145deg, rgba(34, 89, 208, 0.86), rgba(66, 43, 141, 0.8)); }
.card-icon { display: grid; place-items: center; width: 45px; height: 45px; margin-bottom: 42px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 14px; background: rgba(255, 255, 255, 0.1); font-size: 1.5rem; }
.card-kicker { margin-bottom: 14px; color: rgba(231, 239, 255, 0.66); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.speed-visual { position: absolute; right: 25px; bottom: 24px; display: flex; align-items: end; gap: 7px; width: 130px; height: 74px; opacity: 0.44; }
.speed-visual span { flex: 1; height: var(--height); border-radius: 8px 8px 3px 3px; background: rgba(255, 255, 255, 0.74); animation: bar-wave 2.2s ease-in-out infinite alternate; }
.speed-visual span:nth-child(2n) { animation-delay: -0.8s; }


.comparison-section { padding-block: 150px; border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(14, 19, 44, 0.66), rgba(5, 7, 19, 0.45)); }
.comparison-heading { display: grid; grid-template-columns: 1.05fr 0.75fr; align-items: end; gap: 60px; margin-bottom: 60px; }
.comparison-heading h2 { margin-bottom: 0; }
.comparison-heading > p { margin-bottom: 8px; }
.comparison-stage {
  display: grid;
  grid-template-columns: minmax(235px, 320px) minmax(0, 1180px);
  align-items: end;
  justify-content: center;
  gap: 30px;
  width: min(1570px, calc(100vw - 40px));
  margin-left: 50%;
  transform: translateX(-50%);
}
.rate-limit-callout {
  position: relative;
  min-height: 190px;
}
.rate-limit-preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: min(220px, 74%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(115, 167, 255, 0.44);
  border-radius: 19px;
  background: #081025;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36), 0 0 40px rgba(47, 111, 255, 0.12);
  transform: rotate(-1.5deg);
}
.rate-limit-preview img { display: block; width: 100%; height: auto; }
.rate-limit-arrow {
  position: absolute;
  right: -13px;
  bottom: 9px;
  z-index: 1;
  width: 240px;
  height: 130px;
  overflow: visible;
  color: #f2f5ff;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.32));
}
.rate-limit-arrow-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rate-limit-arrow-mobile { display: none; }
.rate-limit-arrow marker path { fill: currentColor; }
.comparison-table { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 26px; background: rgba(8, 11, 25, 0.78); box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26); }
.comparison-row { display: grid; grid-template-columns: 1fr 1.1fr 1fr; }
.comparison-row + .comparison-row { border-top: 1px solid var(--line); }
.comparison-row > div { display: flex; flex-direction: column; justify-content: center; gap: 6px; min-height: 116px; padding: 25px 28px; }
.comparison-row > div + div { border-left: 1px solid var(--line); }
.comparison-row strong { font-size: 0.96rem; }
.comparison-row span { color: #7f88a3; font-size: 0.78rem; line-height: 1.45; }
.comparison-header > div { min-height: 76px; color: #939dbb; font-size: 0.69rem; font-weight: 820; letter-spacing: 0.12em; text-transform: uppercase; }
.comparison-header .learny-column { color: #dceaff; }
.comparison-header .learny-column span { color: #82b6ff; font-size: 0.9rem; }
.learny-column { background: linear-gradient(180deg, rgba(44, 99, 228, 0.16), rgba(49, 57, 145, 0.09)); }
.learny-column strong { color: #bbd6ff; }
.comparison-note { margin: 18px 4px 0; color: #6f7891; font-size: 0.72rem; line-height: 1.6; }
.comparison-note a { color: #92bfff; text-underline-offset: 3px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 350px; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: rgba(14, 18, 38, 0.72); }
.feature-card-wide { grid-column: span 2; }
.feature-card-accent { background: linear-gradient(150deg, rgba(35, 72, 161, 0.77), rgba(72, 38, 126, 0.64)); }
.feature-number { margin-bottom: 60px; color: #5f6a87; font-size: 0.65rem; font-weight: 820; letter-spacing: 0.12em; }
.feature-card h3 { max-width: 420px; margin-bottom: 13px; font-size: 1.65rem; letter-spacing: -0.04em; }
.feature-card p { max-width: 480px; margin-bottom: 0; color: #8f98b4; font-size: 0.92rem; line-height: 1.65; }
.file-stack { position: absolute; right: 30px; bottom: 36px; display: flex; align-items: end; }
.file-stack span { display: grid; place-items: center; width: 82px; height: 104px; margin-left: -18px; border: 1px solid rgba(178, 203, 255, 0.3); border-radius: 15px; background: linear-gradient(145deg, #242e5d, #171a32); box-shadow: -12px 16px 34px rgba(0, 0, 0, 0.3); color: #94bcff; font-size: 0.67rem; font-weight: 850; letter-spacing: 0.1em; transform: rotate(var(--rotate, -8deg)); }
.file-stack span:nth-child(2) { --rotate: 1deg; transform: translateY(-18px) rotate(1deg); }
.file-stack span:nth-child(3) { --rotate: 8deg; }
.sync-orbit { position: absolute; right: -36px; bottom: -36px; display: grid; place-items: center; width: 170px; aspect-ratio: 1; border: 1px solid rgba(109, 161, 255, 0.18); border-radius: 50%; }
.sync-orbit::before { content: ""; position: absolute; width: 112px; aspect-ratio: 1; border: 1px solid rgba(109, 161, 255, 0.22); border-radius: 50%; }
.sync-orbit span { position: absolute; top: 20px; width: 10px; height: 10px; border-radius: 50%; background: #72aaff; box-shadow: 0 0 17px #72aaff; animation: ring-spin 4s linear infinite; transform-origin: 5px 65px; }
.sync-orbit i { color: #7caeff; font-size: 1.8rem; font-style: normal; }
.format-toggle { position: absolute; right: 25px; bottom: 26px; left: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 5px; border: 1px solid var(--line); border-radius: 12px; background: #090c19; color: #737d98; font-size: 0.66rem; text-align: center; }
.format-toggle span { padding: 9px; border-radius: 8px; }
.format-toggle span:first-child { background: #283863; color: #bcd5ff; }
.guest-badge { position: absolute; right: 25px; bottom: 25px; left: 25px; display: flex; align-items: center; gap: 10px; padding: 10px; border: 1px solid var(--line); border-radius: 13px; color: #8e98b4; font-size: 0.7rem; }
.guest-badge span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 9px; background: #27355f; color: #a9c8ff; font-weight: 800; }
.device-lines { position: absolute; right: 30px; bottom: 28px; display: flex; align-items: end; gap: 7px; }
.device-lines span { width: 45px; height: 65px; border: 1px solid rgba(181, 202, 255, 0.28); border-radius: 7px; }
.device-lines span:first-child { width: 80px; height: 52px; }
.device-lines span:last-child { width: 30px; height: 54px; }

.showcase { display: grid; grid-template-columns: 0.7fr 1.3fr; align-items: center; gap: 80px; }
.showcase-copy h2 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.showcase-copy ul { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; }
.showcase-copy li { color: #c9d2ea; font-size: 0.9rem; }
.showcase-copy li span { margin-right: 9px; color: var(--mint); }
.showcase-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(150px, 15vw, 190px);
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  min-width: 0;
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 75% 42%, rgba(73, 118, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(13, 18, 42, 0.82), rgba(7, 9, 23, 0.72));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}
.showcase-visual::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(72, 112, 255, 0.12);
  filter: blur(55px);
}
.showcase-device { min-width: 0; }
.device-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 4px;
  color: #7783a4;
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}
.device-label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #68e0be;
  box-shadow: 0 0 10px #68e0be;
}
.tablet-frame,
.phone-frame {
  position: relative;
  background: linear-gradient(145deg, #252b3e, #070910 32%, #151a2a);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.48), inset 0 1px rgba(255, 255, 255, 0.16);
}
.tablet-frame {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(184, 202, 255, 0.3);
  border-radius: 24px;
}
.tablet-camera {
  position: absolute;
  top: 4px;
  left: 50%;
  z-index: 2;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #05060a;
  box-shadow: 0 0 0 1px rgba(124, 145, 191, 0.24);
  transform: translateX(-50%);
}
.tablet-screen {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: #000;
}
.tablet-screen img,
.phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-phone { width: 100%; max-width: 190px; justify-self: center; }
.phone-frame {
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(188, 206, 255, 0.3);
  border-radius: 34px;
}
.phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: #0b0d13;
  box-shadow: 0 0 0 1px rgba(114, 130, 168, 0.14);
  transform: translateX(-50%);
}
.phone-screen {
  aspect-ratio: 390 / 844;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: #000;
}

.how-it-works { padding-top: 50px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.steps li { min-height: 270px; padding: 28px 32px 10px 0; border-right: 1px solid var(--line); }
.steps li + li { padding-left: 32px; }
.steps li:last-child { border-right: 0; }
.steps > li > span { display: block; margin-bottom: 70px; color: #5973a9; font-size: 0.7rem; font-weight: 850; letter-spacing: 0.12em; }
.steps h3 { margin-bottom: 12px; font-size: 1.45rem; }
.steps p { margin-bottom: 0; color: #8992ad; font-size: 0.9rem; line-height: 1.65; }

.final-cta { position: relative; display: grid; justify-items: center; overflow: hidden; margin-bottom: 110px; padding: 100px 28px; border: 1px solid var(--line-strong); border-radius: 34px; background: radial-gradient(circle at 50% 120%, rgba(51, 103, 232, 0.5), transparent 44%), linear-gradient(145deg, rgba(21, 28, 67, 0.92), rgba(20, 15, 48, 0.92)); text-align: center; }
.final-cta > img { width: 76px; margin-bottom: 24px; filter: drop-shadow(0 0 28px rgba(89, 146, 255, 0.42)); animation: logo-hover 4s ease-in-out infinite; }
.final-cta .eyebrow { margin-bottom: 16px; }
.final-cta h2 { max-width: 880px; margin-bottom: 18px; }
.final-cta > p:not(.eyebrow) { max-width: 600px; margin-bottom: 30px; color: #a3acc6; font-size: 1.05rem; line-height: 1.65; }
.cta-orbit { position: absolute; border: 1px solid rgba(130, 170, 255, 0.12); border-radius: 50%; pointer-events: none; }
.cta-orbit-one { width: 620px; aspect-ratio: 1; }
.cta-orbit-two { width: 920px; aspect-ratio: 1; }

.site-footer { display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; padding-block: 78px 35px; border-top: 1px solid var(--line); }
.footer-brand p { max-width: 310px; margin: 20px 0 0; color: #7f88a2; font-size: 0.85rem; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links div { display: grid; align-content: start; gap: 12px; }
.footer-links strong { margin-bottom: 7px; color: #d8dff3; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; }
.footer-links a { width: fit-content; color: #7f88a2; font-size: 0.82rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 36px; padding-top: 25px; border-top: 1px solid var(--line); color: #606981; font-size: 0.7rem; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 780ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 780ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal-delay { transition-delay: 130ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes aurora-drift { to { transform: translate3d(12vw, 5vh, 0) scale(1.15); } }
@keyframes visual-pulse { to { opacity: 0.82; transform: scale(1.12); } }
@keyframes frame-float { 0%, 100% { transform: rotateY(-5deg) rotateX(2deg) translateY(0); } 50% { transform: rotateY(-3deg) rotateX(1deg) translateY(-10px); } }
@keyframes pill-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes bar-wave { to { height: calc(var(--height) * 0.65); opacity: 0.6; } }
@keyframes ring-spin { to { transform: rotate(360deg); } }
@keyframes logo-hover { 50% { transform: translateY(-8px) rotate(2deg); } }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 110px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { width: min(860px, 94%); margin: 20px auto 0; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-video-card { min-height: 520px; }
  .bento-stack { grid-template-columns: 1fr 1fr; }
  .comparison-heading { grid-template-columns: 1fr; gap: 20px; }
  .comparison-stage { grid-template-columns: 1fr; width: 100%; margin-left: 0; transform: none; }
  .comparison-table { order: 1; }
  .rate-limit-callout { order: 2; width: min(420px, 100%); min-height: 190px; margin-top: 24px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-wide { grid-column: span 2; }
  .showcase { grid-template-columns: 1fr; gap: 35px; }
  .showcase-copy { max-width: 720px; }
  .showcase-visual { width: min(860px, 100%); margin: auto; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .site-header { grid-template-columns: 1fr auto; top: 8px; margin-top: 8px; border-radius: 17px; }
  .site-nav { display: none; }
  .brand img { width: 34px; height: 34px; }
  .brand span { font-size: 0.78rem; }
  .site-header .button { min-height: 40px; padding-inline: 14px; font-size: 0.75rem; }
  .hero { gap: 58px; min-height: auto; padding-block: 88px 80px; }
  h1 { font-size: clamp(3.4rem, 15vw, 5.8rem); }
  h2 { font-size: clamp(2.65rem, 13vw, 4.5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .text-link { text-align: center; }
  .hero-stats { gap: 14px; }
  .hero-stats div { padding-inline: 10px; }
  .hero-stats strong { font-size: 1.15rem; }
  .browser-frame { border-radius: 14px; transform: none; animation: frame-float-mobile 6s ease-in-out infinite; }
  .browser-bar { min-height: 32px; padding-inline: 9px; }
  .browser-address { padding-block: 4px; }
  .floating-pill { display: none; }
  .intro,
  .features,
  .showcase,
  .how-it-works,
  .comparison-section { padding-block: 100px; }
  .section-heading { margin-bottom: 42px; }
  .intro-video-card { min-height: 440px; border-radius: 22px; }
  .video-overlay { right: 22px; bottom: 22px; left: 22px; }
  .bento-stack { grid-template-columns: 1fr; }
  .bento-card { padding: 26px; border-radius: 22px; }
  .comparison-table { overflow-x: auto; border-radius: 20px; }
  .comparison-row { min-width: 700px; grid-template-columns: 0.85fr 1fr 1fr; }
  .comparison-row > div { min-height: 105px; padding: 20px; }
  .rate-limit-callout { min-height: 210px; }
  .rate-limit-preview { top: 48px; width: 205px; }
  .rate-limit-arrow { top: -14px; right: 8px; bottom: auto; width: 225px; }
  .rate-limit-arrow-desktop { display: none; }
  .rate-limit-arrow-mobile { display: block; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card,
  .feature-card-wide { grid-column: auto; min-height: 320px; }
  .file-stack span { width: 64px; height: 86px; }
  .showcase-visual {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 30px;
    padding: 22px;
    border-radius: 24px;
  }
  .showcase-tablet { width: 100%; }
  .showcase-phone { width: 140px; }
  .steps { grid-template-columns: 1fr; }
  .steps li,
  .steps li + li { min-height: auto; padding: 25px 0 34px; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps li:last-child { border-bottom: 0; }
  .steps > li > span { margin-bottom: 34px; }
  .final-cta { width: calc(100% - 20px); margin-bottom: 80px; padding-block: 75px; border-radius: 26px; }
  .site-footer { grid-template-columns: 1fr; gap: 52px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  @keyframes frame-float-mobile { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
}

@media (max-width: 480px) {
  .site-header { padding-left: 11px; }
  .site-header .button span { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats div:nth-child(3) { display: none; }
  .hero-stats div:nth-child(2) { border-left: 1px solid var(--line); }
  .trust-strip div { min-height: 60px; }
  .intro-video-card { min-height: 360px; }
  .video-overlay { display: grid; gap: 5px; }
  .feature-card { padding: 24px; }
  .feature-number { margin-bottom: 45px; }
  .showcase-phone { width: 125px; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 35px; }
}

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