:root {
  color-scheme: dark;
  --bg: #08090a;
  --surface: #0d0f11;
  --surface-raised: #121518;
  --ink: #f4f5f5;
  --muted: #a2a7aa;
  --quiet: #73797d;
  --line: rgba(255, 255, 255, .11);
  --line-bright: rgba(255, 255, 255, .18);
  --sea: #45dfd0;
  --deep-sea: #0b7175;
  --sun: #ffc95b;
  --max: 1200px;
  --display: "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --body: "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --utility: "SFMono-Regular", "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 100;
  padding: 11px 15px;
  border-radius: 9px;
  background: white;
  color: black;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 30;
  pointer-events: none;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  min-height: 72px;
  margin: 0 auto;
  padding: 0 16px 0 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 15, 17, .82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(22px) saturate(130%);
  pointer-events: auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.015em;
}
.brand img { border-radius: 8px; box-shadow: 0 3px 12px rgba(0, 0, 0, .28); }
nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 38px); color: var(--muted); font-size: 14px; }
nav a, footer a { transition: color .18s ease; }
nav a:hover, footer a:hover { color: white; }
.nav-download {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 10px;
  background: #eceeed;
  color: #111315;
  font-size: 14px;
  font-weight: 650;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8), 0 6px 18px rgba(0, 0, 0, .24);
}

.hero {
  position: relative;
  min-height: 1140px;
  padding: 176px 24px 0;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, transparent 55%, var(--bg) 93%),
    radial-gradient(circle at 50% 42%, rgba(11, 113, 117, .11), transparent 35rem);
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.horizon-sun {
  position: absolute;
  left: 50%;
  top: 235px;
  width: min(75vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 201, 91, .2) 0 9%, rgba(69, 223, 208, .13) 22%, rgba(8, 9, 10, 0) 64%);
  filter: blur(3px);
  transform: translateX(-50%);
}
.tide {
  position: absolute;
  left: 50%;
  width: min(1120px, 92vw);
  height: 260px;
  border: 1px solid rgba(69, 223, 208, .18);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-7deg);
  filter: drop-shadow(0 0 20px rgba(69, 223, 208, .1));
}
.tide::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 201, 91, .08);
  border-radius: inherit;
}
.tide-one { top: 455px; }
.tide-two { top: 515px; width: min(1300px, 105vw); opacity: .7; transform: translateX(-50%) rotate(6deg); }
.tide-three { top: 585px; width: min(1500px, 118vw); opacity: .4; transform: translateX(-50%) rotate(-3deg); }

.hero-copy {
  width: min(100%, 880px);
  margin: 0 auto;
  text-align: center;
}
.release-note, .section-kicker {
  margin: 0;
  color: #b7bcbe;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.release-note { display: flex; justify-content: center; align-items: center; gap: 10px; }
.release-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sea);
  box-shadow: 0 0 0 5px rgba(69, 223, 208, .1), 0 0 20px rgba(69, 223, 208, .7);
}
h1, h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 590;
  letter-spacing: -.05em;
  text-wrap: balance;
}
h1 {
  margin-top: 26px;
  font-size: clamp(4rem, 7.3vw, 7rem);
  line-height: .94;
}
.hero-detail {
  max-width: 650px;
  margin: 28px auto 0;
  color: #b5b9bb;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}
.primary-action, .secondary-action {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 19px;
  overflow: hidden;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 650;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.primary-action {
  background: #f2f3f3;
  color: #111315;
  box-shadow: inset 0 0 0 1px white, 0 10px 28px rgba(0, 0, 0, .25);
}
.secondary-action { border: 1px solid var(--line-bright); background: rgba(17, 19, 21, .72); color: #dcdfdf; }
.primary-action:hover, .secondary-action:hover { transform: translateY(-2px); }
.secondary-action:hover { border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .07); }
.button-icon { font-size: 17px; line-height: 1; }
.download-glow { --glow-x: 50%; --glow-y: 50%; isolation: isolate; }
.download-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid transparent;
  border-radius: inherit;
  background: radial-gradient(90px circle at var(--glow-x) var(--glow-y), rgba(69, 223, 208, .85), transparent 75%) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.download-glow:hover::after, .download-glow:focus-visible::after { opacity: 1; }
.download-glow > * { position: relative; z-index: 2; }
.requirements {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0;
  color: var(--quiet);
  font-family: var(--utility);
  font-size: 10px;
  text-transform: uppercase;
}
.requirements i { width: 3px; height: 3px; border-radius: 50%; background: #555b5e; }

.hero-product {
  position: relative;
  width: min(1080px, calc(100vw - 48px));
  margin: 82px auto 0;
  padding: 9px;
  border: 1px solid var(--line-bright);
  border-radius: 24px;
  background: rgba(20, 23, 25, .72);
  box-shadow: 0 45px 130px rgba(0, 0, 0, .62), 0 0 90px rgba(69, 223, 208, .07);
  transform: perspective(1600px) rotateX(var(--stage-x, 1.5deg)) rotateY(var(--stage-y, 0deg));
  transform-origin: center top;
  transition: transform .25s ease-out;
}
.hero-product::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(69, 223, 208, .32), transparent 26%, transparent 72%, rgba(255, 201, 91, .2));
  filter: blur(20px);
  opacity: .5;
}
.product-chrome {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 44px;
  padding: 0 12px;
  color: #9ba0a3;
  font-size: 11px;
}
.traffic-lights { display: flex; gap: 7px; }
.traffic-lights i { width: 9px; height: 9px; border-radius: 50%; background: #363b3e; }
.traffic-lights i:first-child { background: var(--sea); }
.live-indicator { justify-self: end; display: flex; align-items: center; gap: 6px; font-family: var(--utility); font-size: 9px; text-transform: uppercase; }
.live-indicator i { width: 5px; height: 5px; border-radius: 50%; background: var(--sea); box-shadow: 0 0 12px var(--sea); }
.hero-product > img { width: 100%; border: 1px solid rgba(255, 255, 255, .08); border-radius: 15px; }
.stage-note {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 168px;
  padding: 13px 15px;
  border: 1px solid var(--line-bright);
  border-radius: 13px;
  background: rgba(12, 14, 16, .88);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
  backdrop-filter: blur(14px);
}
.stage-note b { font-family: var(--display); font-size: 19px; }
.stage-note span { color: var(--muted); font-size: 10px; }
.stage-note-left { left: -50px; bottom: 62px; }
.stage-note-right { right: -50px; top: 105px; }

.intro {
  width: min(calc(100% - 48px), 930px);
  margin: 0 auto;
  padding: 160px 0 150px;
  text-align: center;
}
.intro h2, .final-cta h2 {
  margin-top: 22px;
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: .96;
}
.intro > p:last-child {
  max-width: 650px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.feature {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(56px, 7vw, 104px);
  width: min(calc(100% - 48px), var(--max));
  min-height: 760px;
  margin: 0 auto 120px;
  padding: clamp(56px, 7vw, 86px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 50%, rgba(69, 223, 208, .075), transparent 31rem),
    var(--surface);
}
.feature-widgets {
  grid-template-columns: 1.28fr .72fr;
  background:
    radial-gradient(circle at 18% 48%, rgba(255, 201, 91, .07), transparent 30rem),
    var(--surface);
}
.feature-widgets .feature-copy { order: 2; }
.feature-widgets .feature-stage { order: 1; }
.feature-copy h2 {
  max-width: 470px;
  margin-top: 18px;
  font-size: clamp(2.9rem, 4.6vw, 4.8rem);
  line-height: .98;
}
.feature-copy > p:not(.section-kicker) {
  max-width: 440px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}
.feature-list { display: grid; gap: 0; margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); color: #d9dcdd; font-size: 13px; }
.feature-list span { color: var(--sea); font-family: var(--utility); font-size: 10px; }
.preset-line { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 34px; }
.preset-line span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; color: #b8bdbe; font-family: var(--utility); font-size: 9px; text-transform: uppercase; }
.feature-stage { position: relative; }
.feature-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  pointer-events: none;
}
.feature-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, .48);
}
.feature-glow { position: absolute; inset: 12%; background: rgba(69, 223, 208, .16); filter: blur(70px); }
.feature-widgets .feature-glow { background: rgba(255, 201, 91, .12); }

.privacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 150px);
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 150px 0;
  border-top: 1px solid var(--line);
}
.privacy h2 { max-width: 500px; margin-top: 20px; font-size: clamp(3.4rem, 6vw, 6.2rem); line-height: .94; }
.privacy-copy > p { max-width: 570px; margin: 2px 0 24px; color: var(--muted); font-size: 18px; line-height: 1.68; }
.privacy-copy > a { color: var(--sea); font-size: 14px; font-weight: 650; }
.privacy dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 48px 0 0; background: var(--line); }
.privacy dl div { display: grid; gap: 7px; padding: 18px 0; background: var(--bg); }
.privacy dt { color: var(--quiet); font-family: var(--utility); font-size: 9px; text-transform: uppercase; }
.privacy dd { margin: 0; font-size: 18px; font-weight: 620; }

.final-cta {
  width: min(calc(100% - 48px), var(--max));
  margin: 30px auto 120px;
  padding: 120px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 110%, rgba(69, 223, 208, .22), transparent 32rem),
    radial-gradient(circle at 20% 0, rgba(255, 201, 91, .09), transparent 24rem),
    var(--surface);
  text-align: center;
}
.final-cta > img { margin: 0 auto 24px; border-radius: 22px; box-shadow: 0 20px 60px rgba(0, 0, 0, .4); }
.final-cta .primary-action { margin-top: 32px; }
.preview-warning { max-width: 560px; margin: 17px auto 0; color: var(--quiet); font-size: 11px; line-height: 1.5; }

footer {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 30px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 11px;
}
footer p { text-align: center; }
footer div { display: flex; justify-content: flex-end; gap: 22px; }

.legal-page {
  width: min(calc(100% - 48px), 780px);
  margin: 0 auto;
  padding: 170px 0 120px;
}
.legal-page .release-note { justify-content: flex-start; }
.legal-page h1 { margin: 30px 0 70px; font-size: clamp(3.6rem, 7vw, 6rem); line-height: .95; }
.legal-copy { border-top: 1px solid var(--line); }
.legal-copy h2 { margin: 42px 0 10px; font-size: 1.35rem; letter-spacing: -.025em; }
.legal-copy p { color: var(--muted); line-height: 1.75; }
.legal-copy a { color: var(--sea); }
.legal-date { margin-top: 52px; font-family: var(--utility); font-size: 10px; text-transform: uppercase; }

.motion-ok .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1); }
.motion-ok .reveal.is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 2px solid var(--sea); outline-offset: 4px; }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { min-height: 980px; }
  .stage-note { display: none; }
  .feature, .feature-widgets { grid-template-columns: 1fr; min-height: auto; padding: 54px; }
  .feature-widgets .feature-copy, .feature-widgets .feature-stage { order: initial; }
  .feature-copy h2, .feature-copy > p:not(.section-kicker) { max-width: 680px; }
}

@media (max-width: 640px) {
  .site-header { inset: 10px 0 auto; }
  .header-inner { width: calc(100% - 20px); min-height: 60px; padding: 0 10px 0 13px; border-radius: 15px; }
  .brand span { display: none; }
  .nav-download { min-height: 38px; }
  .hero { min-height: 790px; padding: 132px 16px 0; }
  h1 { font-size: clamp(3.3rem, 15vw, 5rem); }
  h1 br { display: none; }
  .hero-detail { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .primary-action, .secondary-action { width: 100%; }
  .requirements { flex-wrap: wrap; }
  .hero-product { width: calc(100vw - 26px); margin-top: 56px; padding: 5px; border-radius: 16px; }
  .product-chrome { height: 34px; }
  .hero-product > img { border-radius: 10px; }
  .intro { width: calc(100% - 32px); padding: 110px 0; }
  .intro h2, .final-cta h2 { font-size: 3.25rem; }
  .intro > p:last-child { font-size: 16px; }
  .feature, .feature-widgets { width: calc(100% - 20px); margin-bottom: 40px; padding: 34px 22px 24px; border-radius: 20px; }
  .feature-copy h2 { font-size: 3rem; }
  .feature-copy > p:not(.section-kicker) { font-size: 15px; }
  .privacy { grid-template-columns: 1fr; width: calc(100% - 32px); padding: 110px 0; }
  .privacy h2 { font-size: 3.6rem; }
  .privacy-copy > p { font-size: 16px; }
  .privacy dl { grid-template-columns: 1fr; }
  .privacy dl div { padding: 15px 0; }
  .final-cta { width: calc(100% - 20px); margin-bottom: 70px; padding: 80px 18px; border-radius: 20px; }
  footer { grid-template-columns: 1fr; width: calc(100% - 32px); }
  footer p { text-align: left; }
  footer div { justify-content: flex-start; }
  .legal-page { width: calc(100% - 32px); padding-top: 130px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
