:root {
  --bg: #08090b;
  --bg-raised: #0d0f12;
  --surface: #111419;
  --surface-soft: #0d1014;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .15);
  --text: #f4f6f8;
  --muted: #9299a2;
  --muted-strong: #c8cdd3;
  --cyan: #31bff2;
  --cyan-soft: #7ad8fa;
  --warm: #f39b4b;
  --magenta: #d9469a;
  --violet: #8359ef;
  --shell: 1240px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 34px 90px rgba(0, 0, 0, .38);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  width: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 6%, rgba(49, 191, 242, .055), transparent 26%),
    radial-gradient(circle at 12% 30%, rgba(243, 155, 75, .035), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: min(100%, 1440px);
  height: 920px;
  transform: translateX(-50%);
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  content: "";
  pointer-events: none;
}

::selection { background: rgba(49, 191, 242, .28); color: #fff; }

.shell {
  width: min(calc(100% - 56px), var(--shell));
  margin-inline: auto;
}

.section { position: relative; padding-block: clamp(92px, 10vw, 148px); }

.skip-link {
  position: absolute;
  z-index: 20;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: #fff;
  color: #050607;
  padding: 10px 14px;
  font-weight: 750;
}

.skip-link:focus { transform: none; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.kicker,
.eyebrow {
  color: var(--cyan-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h2,
h3 { letter-spacing: -.045em; text-wrap: balance; }

h2 {
  font-size: clamp(2.75rem, 5.7vw, 5.4rem);
  font-weight: 680;
  line-height: .98;
}

p { text-wrap: pretty; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-radius: 13px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .25s var(--ease), filter .25s ease, box-shadow .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.06);
  box-shadow: 0 14px 36px rgba(217, 70, 154, .17);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.button-cart {
  background: linear-gradient(106deg, var(--violet), var(--magenta) 53%, var(--warm));
  color: #fff;
}

.hero {
  position: relative;
  padding: clamp(24px, 4vw, 52px) 0 clamp(72px, 8vw, 116px);
}

.ambient-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.ambient-light-one {
  top: 3%;
  right: 0;
  width: 46vw;
  max-width: 720px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(49,191,242,.08), transparent 68%);
}

.hero-shell { position: relative; }

.hero-art {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #0a0c0f;
  box-shadow: var(--shadow);
}

.hero-art img { width: 100%; height: 100%; object-fit: cover; }

.hero-buybar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  padding: 24px 26px;
  border: 1px solid var(--line-strong);
  border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: rgba(14, 16, 20, .96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.hero-buybar-title { margin-top: 5px; color: var(--muted-strong); font-size: 16px; font-weight: 650; }

.hero-facts { display: flex; gap: clamp(22px, 3vw, 42px); }

.hero-facts div { min-width: 76px; }
.hero-facts dt { color: #696f78; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-facts dd { margin-top: 3px; color: #e9ecef; font-size: 12px; font-weight: 750; }
.hero-buybar .button { min-width: 170px; }

.section-heading { margin-bottom: clamp(40px, 6vw, 72px); }
.section-heading h2 { margin-top: 18px; }

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .62fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p,
.section-heading > p:last-child { color: var(--muted); font-size: 16px; }

.demo {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #0a0b0e, #08090b);
}

.demo-media {
  overflow: hidden;
  aspect-ratio: 2542 / 1320;
  border-radius: 14px;
  background: #0c0e11;
  box-shadow: 0 36px 100px rgba(0, 0, 0, .45);
}

.demo-media img { width: 100%; height: 100%; object-fit: cover; }

.demo-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 24px;
  color: #858c95;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.demo-caption i { width: 28px; height: 1px; background: linear-gradient(90deg, var(--cyan), var(--warm)); }

.statement { border-block: 1px solid var(--line); background: #0b0d10; }

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .5fr);
  align-items: end;
  gap: clamp(48px, 9vw, 130px);
}

.statement h2 { margin-top: 18px; }

.rotating-window {
  display: block;
  min-height: 1.12em;
  color: var(--cyan-soft);
}

[data-rotating-text] { display: inline-block; transition: opacity .28s ease, transform .28s var(--ease); }
[data-rotating-text].is-changing { transform: translateY(8px); opacity: 0; }
.statement-copy { padding-bottom: 4px; color: var(--muted-strong); font-size: clamp(16px, 2vw, 19px); }

.showcase { border-bottom: 1px solid var(--line); }
.showcase-alt { background: var(--bg-raised); }

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(310px, .48fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.showcase-alt .showcase-grid { grid-template-columns: minmax(0, 1fr) minmax(310px, .48fr); }

.showcase-copy h2 {
  margin: 18px 0 25px;
  font-size: clamp(2.5rem, 4.5vw, 4.35rem);
}

.showcase-copy > p:not(.kicker) { color: var(--muted); font-size: 16px; }

.showcase-art {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.showcase-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .7s ease;
}

.showcase-art:hover img { transform: scale(1.015); filter: brightness(1.025); }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 29px; }

.tag-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #101318;
  color: var(--muted-strong);
  padding: 8px 11px;
  font-size: 11px;
  font-weight: 700;
}

.proof-note {
  margin-top: 30px;
  padding: 19px 20px;
  border-left: 3px solid var(--cyan);
  background: linear-gradient(90deg, rgba(49,191,242,.08), transparent);
}

.proof-note strong,
.proof-note span { display: block; }
.proof-note strong { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.proof-note span { margin-top: 7px; color: var(--muted); font-size: 13px; }

.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-top: 30px; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #101319;
  padding: 10px 13px;
}

.feature-list span { color: var(--cyan); font: 750 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace; }
.feature-list strong { color: #e2e5e8; font-size: 12px; }

.centered { max-width: 850px; margin-inline: auto; text-align: center; }

.benefits { background: linear-gradient(180deg, #090a0d, #0c0e11); }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.benefit-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.025), rgba(255,255,255,.006));
  padding: clamp(26px, 3.5vw, 40px);
}

.benefit-card > span { display: block; margin-bottom: 72px; color: var(--warm); font: 750 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace; }
.benefit-card h3 { font-size: 1.65rem; font-weight: 680; }
.benefit-card p { margin-top: 14px; color: var(--muted); font-size: 14px; }

.compatibility { border-block: 1px solid var(--line); background: #090a0c; }

.compatibility-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .56fr) minmax(400px, .8fr);
  align-items: start;
  gap: clamp(54px, 9vw, 132px);
}

.compatibility h2,
.faq h2 { margin: 18px 0 22px; font-size: clamp(2.8rem, 5vw, 4.8rem); }
.compatibility-grid > div > p:last-child { color: var(--muted); }

.compatibility-list { border-top: 1px solid var(--line); }
.compatibility-list > div { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.compatibility-list dt { color: var(--muted); font-size: 13px; }
.compatibility-list dd { color: var(--muted-strong); font-size: 13px; font-weight: 750; text-align: right; }

.faq { background: #0b0d10; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 21px 0;
  color: var(--muted-strong);
  font-weight: 680;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--warm); font-size: 22px; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; padding: 0 38px 23px 0; color: var(--muted); font-size: 14px; }

.final-cta {
  overflow: hidden;
  padding-block: clamp(110px, 13vw, 180px);
  background: #08090b;
  text-align: center;
}

.final-light {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 100%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,191,242,.07), rgba(243,155,75,.025) 40%, transparent 69%);
  pointer-events: none;
}

.final-cta-inner { position: relative; max-width: 940px; }
.final-cta img { width: 142px; height: auto; margin: 0 auto 30px; }
.final-cta h2 { margin: 17px 0 24px; font-size: clamp(3rem, 7vw, 6.8rem); }
.final-cta > div > p:not(.kicker) { max-width: 650px; margin: 0 auto 34px; color: var(--muted-strong); font-size: 17px; }
.final-cta .button { min-width: 230px; }
.final-cta small { display: block; margin-top: 18px; color: #686d74; font-size: 11px; }

.site-footer { padding: 42px 0; border-top: 1px solid var(--line); background: #07080a; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; }
.footer-grid p strong, .footer-grid p span { display: block; }
.footer-grid p strong { color: var(--muted-strong); font-size: 12px; }
.footer-grid p span { margin-top: 3px; color: #666b72; font-size: 11px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--muted); font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-grid > small { color: #5d6268; font-size: 10px; }

.noscript { margin: 12px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 10px; background: #14171b; color: var(--muted-strong); font-size: 12px; }

.media-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 240px;
  place-items: center;
  padding: 28px;
  background: linear-gradient(145deg, #13161a, #0c0e11);
  color: var(--muted);
  text-align: center;
}

.media-fallback strong,
.media-fallback span { display: block; }
.media-fallback strong { color: var(--muted-strong); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.media-fallback span { margin-top: 7px; font: 10px/1.5 ui-monospace, SFMono-Regular, Consolas, monospace; overflow-wrap: anywhere; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .62s var(--ease), transform .62s var(--ease); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal.is-visible { transform: translateY(0); opacity: 1; }

@media (max-width: 1040px) {
  .hero-buybar { grid-template-columns: 1fr auto; }
  .hero-facts { grid-column: 1 / 2; grid-row: 2; }
  .hero-buybar .button { grid-column: 2; grid-row: 1 / 3; }
  .showcase-grid,
  .showcase-alt .showcase-grid { grid-template-columns: minmax(280px, .5fr) minmax(0, 1fr); gap: 46px; }
}

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 38px), var(--shell)); }
  .hero-buybar { grid-template-columns: 1fr auto; }
  .hero-facts { display: none; }
  .hero-buybar .button { grid-column: 2; grid-row: 1; }
  .split-heading,
  .statement-grid,
  .showcase-grid,
  .showcase-alt .showcase-grid,
  .compatibility-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .split-heading { align-items: start; gap: 24px; }
  .statement-grid { gap: 38px; }
  .showcase-copy { max-width: 680px; }
  .showcase-alt .showcase-art { order: 2; }
  .showcase-alt .showcase-copy { order: 1; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; }
  .benefit-card > span { margin-bottom: 42px; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-grid > small { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding-block: 76px; }
  .hero { padding-top: 14px; }
  .hero-art { border-radius: 16px 16px 0 0; }
  .hero-buybar { display: grid; grid-template-columns: 1fr; gap: 18px; padding: 20px; border-radius: 0 0 16px 16px; }
  .hero-buybar .button { grid-column: 1; grid-row: auto; width: 100%; }
  .hero-buybar-title { font-size: 14px; }
  .demo-caption { display: grid; grid-template-columns: auto 24px auto; justify-content: start; }
  .demo-caption i:nth-of-type(2), .demo-caption span:nth-of-type(3), .demo-caption i:nth-of-type(3), .demo-caption span:nth-of-type(4) { display: none; }
  .showcase-art { border-radius: 12px; }
  .feature-list { grid-template-columns: 1fr; }
  .compatibility-list > div { display: grid; gap: 4px; }
  .compatibility-list dd { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid > small { grid-column: auto; }
  .footer-links { flex-wrap: wrap; }
}

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