:root {
  color-scheme: dark;
  --bg: #05070c;
  --bg-soft: #0a0e16;
  --panel: #0d121c;
  --panel-light: #121925;
  --text: #f5f7fb;
  --muted: #a8b0bd;
  --line: rgba(255, 255, 255, 0.10);
  --cyan: #10d8f5;
  --green: #32ed9a;
  --yellow: #ffd014;
  --orange: #ff9d12;
  --red: #ff2445;
  --blue: #1689ff;
  --shell: 1160px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 240px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 72% 8%, rgba(22, 137, 255, 0.13), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 750;
  transform: translateY(-180%);
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 12, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 550;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 0 28px rgba(22, 137, 255, 0.18);
}

.brand strong {
  font-weight: 800;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  min-height: 750px;
  padding-block: 80px 100px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.2rem;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.6rem, 7.1vw, 6.45rem);
  font-weight: 790;
  letter-spacing: -0.072em;
  line-height: 0.93;
}

h1 em {
  color: var(--muted);
  font-style: normal;
  font-weight: 520;
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 2rem;
  color: #c3c9d2;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.hero-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.72rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.12);
}

.watch-stage {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  isolation: isolate;
}

.ambient {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.2;
}

.ambient-one {
  width: 280px;
  height: 280px;
  background: var(--blue);
  transform: translate(-22%, -24%);
}

.ambient-two {
  width: 210px;
  height: 210px;
  background: var(--green);
  transform: translate(52%, 52%);
  opacity: 0.1;
}

.watch {
  position: relative;
  width: min(72vw, 350px);
  aspect-ratio: 0.83;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 82px;
  background: linear-gradient(145deg, #4c525b, #12151b 35%, #303641 70%, #0f1217);
  box-shadow:
    0 55px 90px rgba(0, 0, 0, 0.65),
    inset 0 1px 2px rgba(255, 255, 255, 0.7),
    0 0 0 1px rgba(0, 0, 0, 0.8);
  transform: rotate(4deg);
}

.watch::before,
.watch::after {
  position: absolute;
  z-index: -1;
  left: 25%;
  width: 50%;
  height: 110px;
  background: linear-gradient(90deg, #11151c, #353b46 48%, #101319);
  content: "";
}

.watch::before {
  bottom: 97%;
  border-radius: 30px 30px 0 0;
}

.watch::after {
  top: 97%;
  border-radius: 0 0 30px 30px;
}

.watch-crown {
  position: absolute;
  top: 105px;
  left: calc(100% + 3px);
  width: 15px;
  height: 62px;
  border-radius: 0 10px 10px 0;
  background: linear-gradient(90deg, #323843, #7e8793, #292e36);
}

.watch-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 25px 22px;
  overflow: hidden;
  border: 2px solid #000;
  border-radius: 68px;
  background:
    radial-gradient(circle at 50% 0%, rgba(20, 50, 84, 0.35), transparent 45%),
    #020306;
}

.watch-heading,
.next-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.watch-heading {
  color: #c0c6ce;
  font-size: 0.77rem;
  font-weight: 700;
}

.live-dot {
  color: var(--green);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  content: "";
  vertical-align: 0.08em;
}

.rate-row {
  display: flex;
  align-items: end;
  gap: 0.8rem;
  margin: 0.35rem 0 0.9rem;
}

.rate-row strong {
  font-size: 3.3rem;
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 1;
}

.rate-row span {
  padding-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.25;
}

.chart {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 136px;
  padding: 8px 0 0;
  border-bottom: 1px solid #48515f;
}

.bar {
  position: relative;
  width: 10%;
  height: var(--height);
  min-height: 8px;
  border-radius: 6px 6px 1px 1px;
  background: currentColor;
  box-shadow: 0 0 12px color-mix(in srgb, currentColor 45%, transparent);
}

.bar.active::after {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 10px white;
  content: "";
  transform: translateX(-50%);
}

.cyan { color: var(--cyan); }
.green { color: var(--green); }
.yellow { color: var(--yellow); }
.orange { color: var(--orange); }
.red { color: var(--red); }

.chart-labels {
  display: flex;
  justify-content: space-between;
  padding-top: 0.4rem;
  color: #737d8b;
  font-size: 0.51rem;
}

.next-rate {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.67rem;
}

.next-rate strong {
  color: var(--yellow);
  font-size: 0.9rem;
}

.feature-section {
  padding-block: 120px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 34%, rgba(16, 216, 245, 0.05), transparent 26rem),
    var(--bg-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  column-gap: 6rem;
  margin-bottom: 3.3rem;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
}

.section-heading h2,
.privacy-promise h2,
.coming-soon h2,
.legal-header h1 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 1;
}

.section-heading > p:last-child {
  align-self: end;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card {
  position: relative;
  min-height: 370px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 40%),
    var(--panel);
}

.feature-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  min-height: 390px;
  gap: 4rem;
}

.card-number {
  margin-bottom: 4.7rem;
  color: #697381;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-card-wide .card-number {
  margin-bottom: 2rem;
}

.feature-card h3 {
  max-width: 420px;
  margin-bottom: 0.9rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.feature-card > p:last-child,
.feature-card > div > p:last-child {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 230px;
  padding: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mini-bar {
  width: 8.333%;
  height: var(--height);
  min-height: 8px;
  border-radius: 8px 8px 2px 2px;
  background: currentColor;
  box-shadow: 0 0 18px color-mix(in srgb, currentColor 30%, transparent);
}

.complication-preview {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 96px;
  margin-bottom: 2.2rem;
}

.complication-round {
  display: grid;
  width: 92px;
  height: 92px;
  border: 6px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(50, 237, 154, 0.18);
  place-content: center;
}

.complication-round strong {
  font-size: 1.6rem;
  letter-spacing: -0.06em;
}

.complication-round span {
  color: var(--muted);
  font-size: 0.65rem;
  text-align: center;
}

.complication-inline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #020306;
  color: var(--muted);
  font-size: 0.73rem;
}

.complication-inline b {
  color: var(--yellow);
}

.region-mark,
.offline-mark {
  display: grid;
  width: 104px;
  height: 104px;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(22, 137, 255, 0.28), rgba(22, 137, 255, 0.04) 55%, transparent 56%);
  color: var(--cyan);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  place-content: center;
}

.band-pills {
  display: flex;
  gap: 0.55rem;
  min-height: 104px;
  align-items: center;
  margin-bottom: 2rem;
}

.band-pills span {
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
  font-weight: 750;
}

.band-pills span:nth-child(1) { color: var(--green); }
.band-pills span:nth-child(2) { color: var(--yellow); }
.band-pills span:nth-child(3) { color: var(--red); }

.feature-card-dark {
  background:
    radial-gradient(circle at 86% 6%, rgba(50, 237, 154, 0.08), transparent 15rem),
    #070a10;
}

.offline-mark {
  border-color: rgba(50, 237, 154, 0.25);
  background: rgba(50, 237, 154, 0.04);
  color: var(--green);
  font-size: 2.5rem;
}

.privacy-promise {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 5rem;
  padding-block: 135px;
}

.privacy-promise > div:last-child {
  max-width: 650px;
}

.privacy-promise h2 {
  margin-bottom: 1.5rem;
}

.privacy-promise p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.promise-icon {
  display: grid;
  width: min(100%, 300px);
  aspect-ratio: 1;
  border: 1px solid rgba(50, 237, 154, 0.17);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(50, 237, 154, 0.10), transparent 55%);
  place-items: center;
}

.promise-icon::before {
  width: 72px;
  height: 88px;
  border: 8px solid var(--green);
  border-radius: 34px 34px 42px 42px;
  box-shadow: 0 0 35px rgba(50, 237, 154, 0.2);
  content: "";
  clip-path: polygon(0 0, 100% 0, 100% 68%, 50% 100%, 0 68%);
}

.text-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.6rem;
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  color: var(--green);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.coming-soon {
  padding-block: 100px;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 50%, rgba(22, 137, 255, 0.14), transparent 25rem),
    var(--panel);
}

.coming-soon-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.coming-soon img {
  border-radius: 25%;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.coming-soon h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 4.6vw, 4.2rem);
}

.coming-soon p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding-block: 60px 30px;
  background: #020306;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding-bottom: 3.5rem;
}

.footer-grid > div:first-child > p {
  max-width: 450px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.footer-legal p {
  margin: 0;
  color: #707987;
  font-size: 0.72rem;
}

.legal-main {
  padding-block: 85px 130px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8rem;
}

.legal-header {
  position: sticky;
  top: 50px;
  align-self: start;
}

.legal-header h1 {
  margin-bottom: 1.5rem;
}

.legal-header > p:not(.eyebrow, .updated) {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-header .updated {
  margin-top: 2rem;
  color: #747e8b;
  font-size: 0.78rem;
}

.legal-content {
  max-width: 720px;
}

.legal-content section {
  padding-block: 2.2rem;
  border-top: 1px solid var(--line);
}

.legal-content section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-content h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li {
  color: #b3bbc6;
}

.legal-content li + li {
  margin-top: 0.5rem;
}

.legal-content a:not(.button) {
  color: var(--cyan);
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.privacy-summary p {
  display: flex;
  flex-direction: column;
  min-height: 155px;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.privacy-summary strong {
  margin-bottom: 1rem;
  color: var(--green);
  font-size: 0.78rem;
}

.privacy-summary span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.legal-content .contact-panel {
  margin-top: 2.5rem;
  padding: 2rem;
  border: 1px solid rgba(16, 216, 245, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 95% 0%, rgba(16, 216, 245, 0.12), transparent 17rem),
    var(--panel);
}

.contact-panel h2 {
  margin-bottom: 0.75rem;
}

.contact-panel .button {
  margin-top: 0.6rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .watch-stage {
    min-height: 560px;
  }

  .section-heading,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-heading {
    column-gap: 0;
  }

  .section-heading > p:last-child {
    max-width: 580px;
  }

  .legal-header {
    position: static;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.83rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.8rem;
  }

  .hero {
    min-height: 0;
    padding-block: 62px 60px;
  }

  h1 {
    font-size: clamp(3rem, 15.2vw, 4.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .watch-stage {
    min-height: 500px;
    margin-top: 1rem;
  }

  .ambient-one {
    transform: translate(-15%, -24%);
  }

  .ambient-two {
    transform: translate(38%, 52%);
  }

  .watch {
    width: min(78vw, 330px);
  }

  .feature-section,
  .privacy-promise,
  .coming-soon {
    padding-block: 80px;
  }

  .feature-grid,
  .feature-card-wide,
  .privacy-promise {
    grid-template-columns: 1fr;
  }

  .feature-card-wide {
    gap: 2.5rem;
  }

  .feature-card {
    min-height: 345px;
    padding: 1.5rem;
  }

  .feature-card-wide {
    min-height: 650px;
  }

  .card-number {
    margin-bottom: 3.5rem;
  }

  .mini-chart {
    height: 200px;
    gap: 5px;
  }

  .privacy-promise {
    gap: 3rem;
  }

  .promise-icon {
    width: 210px;
    margin-inline: auto;
  }

  .coming-soon-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .coming-soon img {
    width: 90px;
    height: 90px;
  }

  .footer-grid,
  .footer-legal {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-grid {
    gap: 2.5rem;
  }

  .legal-main {
    padding-block: 60px 90px;
  }

  .legal-layout {
    gap: 4rem;
  }

  .privacy-summary {
    grid-template-columns: 1fr;
  }

  .privacy-summary p {
    min-height: 0;
  }
}

@media (max-width: 360px) {
  .shell {
    width: min(calc(100% - 20px), var(--shell));
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 0.75rem;
    gap: 0.65rem;
  }

  nav {
    width: 100%;
    padding-left: 2.9rem;
  }

  .hero {
    padding-top: 45px;
  }

  .watch-stage {
    min-height: 420px;
    overflow-x: clip;
    overflow-y: visible;
  }

  .ambient-one {
    width: 200px;
    height: 200px;
    transform: translate(-5%, -24%);
  }

  .ambient-two {
    width: 160px;
    height: 160px;
    transform: translate(20%, 52%);
  }

  .watch {
    width: min(84vw, 285px);
    border-radius: 65px;
  }

  .watch-screen {
    padding: 22px 18px 18px;
    border-radius: 53px;
  }

  .rate-row strong {
    font-size: 2.75rem;
  }

  .chart {
    height: 110px;
  }

  .feature-card {
    border-radius: 20px;
  }

  .complication-preview {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-card:has(.complication-preview) {
    min-height: 470px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
