:root {
  color-scheme: dark;
  --bg: #08111f;
  --ink: #f8fafc;
  --muted: #c7d0dc;
  --soft: #8ea0b8;
  --line: rgba(148, 163, 184, .22);
  --panel: rgba(13, 24, 39, .82);
  --panel-strong: rgba(18, 31, 49, .94);
  --teal: #29e3d0;
  --blue: #4aa3ff;
  --amber: #f5b942;
  --green: #66e08f;
  --red: #ff6b78;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); overflow-x: hidden; }
body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(41, 227, 208, .08), transparent 34%),
    linear-gradient(240deg, rgba(74, 163, 255, .08), transparent 38%),
    linear-gradient(180deg, #08111f 0%, #0b1422 42%, #08111f 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(148, 163, 184, .16);
  background: rgba(8, 17, 31, .78);
  backdrop-filter: blur(22px);
}
.nav {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 190px; }
.brand img { width: 40px; height: 40px; border-radius: 9px; box-shadow: 0 16px 36px rgba(0,0,0,.32); }
.brand-name { font-weight: 850; font-size: 18px; }
.brand-sub { display: block; color: var(--soft); font-size: 12px; font-weight: 650; margin-top: -3px; }
.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 10px;
  border-radius: 7px;
}
.nav-links a:hover { color: var(--ink); background: rgba(148, 163, 184, .12); }
main { width: min(var(--max), calc(100vw - 32px)); margin: 0 auto; }
.hero {
  min-height: 650px;
  position: relative;
  display: grid;
  align-items: end;
  padding: 64px 0 34px;
}
.hero-media {
  position: absolute;
  inset: 28px 0 26px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,17,31,.9), rgba(8,17,31,.36) 54%, rgba(8,17,31,.9)),
    linear-gradient(180deg, rgba(13,24,39,.65), rgba(3,7,13,.95));
  box-shadow: 0 34px 110px rgba(0,0,0,.42);
}
.flight-deck {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(41,227,208,.11), transparent 32%),
    linear-gradient(245deg, rgba(245,185,66,.12), transparent 30%);
}
.radar-panel {
  position: absolute;
  left: 28px;
  top: 30px;
  width: 310px;
  height: 190px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  opacity: .62;
}
.radar-panel span {
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(41,227,208,.14), rgba(74,163,255,.08));
}
.device-row {
  position: absolute;
  right: 70px;
  bottom: 38px;
  display: flex;
  align-items: flex-end;
  gap: 28px;
}
.phone-frame {
  width: 285px;
  height: 568px;
  border: 8px solid #111827;
  border-radius: 42px;
  background: #050911;
  box-shadow: 0 28px 70px rgba(0,0,0,.54);
  padding: 12px;
}
.device-screen {
  height: 100%;
  border-radius: 30px;
  padding: 18px;
  background: linear-gradient(180deg, #0d1827, #080d15);
  border: 1px solid rgba(255,255,255,.08);
}
.screen-bar { display: flex; justify-content: space-between; align-items: center; color: #fff; font-size: 13px; }
.screen-bar strong { font-size: 24px; }
.route-card {
  margin: 24px 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,.035);
}
.route-card strong { font-size: 32px; }
.route-card span { color: var(--soft); font-size: 11px; font-weight: 800; }
.status-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.status-pair div {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,.035);
}
.status-pair span { display: block; color: var(--soft); font-size: 11px; font-weight: 850; }
.status-pair strong { display: block; margin-top: 7px; font-size: 20px; }
.ok { color: var(--green); }
.warn { color: var(--amber); }
.info { color: var(--blue); }
.timeline {
  height: 92px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 38px 18px;
}
.timeline span { display: block; height: 7px; border-radius: 999px; background: linear-gradient(90deg, var(--teal), var(--amber) 64%, rgba(148,163,184,.32) 64%); }
.watch-frame {
  width: 150px;
  height: 190px;
  border: 7px solid #111827;
  border-radius: 34px;
  background: #050911;
  box-shadow: 0 22px 54px rgba(0,0,0,.48);
  padding: 10px;
}
.watch-screen {
  height: 100%;
  border-radius: 24px;
  padding: 14px;
  display: grid;
  gap: 8px;
  background: linear-gradient(180deg, #0d1827, #070b12);
}
.watch-screen strong { font-size: 17px; }
.watch-screen span {
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 7px;
  padding: 6px 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 610px;
  padding: 0 0 44px 42px;
}
.product-hero { min-height: 720px; align-items: center; }
.product-hero .hero-copy { max-width: 410px; }
.product-hero .lede { max-width: 390px; }
.actual-media {
  inset: 36px 0 36px;
  display: block;
  background:
    linear-gradient(90deg, rgba(8,17,31,.96), rgba(8,17,31,.55) 48%, rgba(8,17,31,.92)),
    linear-gradient(180deg, rgba(13,24,39,.8), rgba(3,7,13,.98));
}
.showcase-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.hero-screenshot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(226,232,240,.16);
  background: #0b1220;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.hero-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-ipad {
  right: 34px;
  bottom: 34px;
  width: min(55vw, 650px);
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}
.hero-ipad img { object-position: top center; }
.hero-watch {
  right: 70px;
  bottom: 70px;
  width: 168px;
  height: 204px;
  border-radius: 34px;
  padding: 0;
  background: #000;
}
.hero-watch img { object-fit: contain; background: #000; }
.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 7px;
  background: rgba(18,31,49,.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.kicker { color: var(--teal); font-weight: 850; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
h1 { font-size: clamp(58px, 10vw, 118px); line-height: .9; margin: 12px 0 18px; letter-spacing: 0; }
.product-hero h1 {
  max-width: 390px;
  font-size: clamp(48px, 5.8vw, 76px);
  line-height: .95;
}
.lede { color: var(--muted); font-size: 21px; max-width: 640px; margin: 0 0 26px; }
.actions, .guide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: normal;
}
.button.primary { background: var(--teal); color: #061018; }
.button.secondary { color: var(--ink); border-color: rgba(148, 163, 184, .28); background: rgba(18,31,49,.76); }
.button.disabled {
  cursor: default;
  opacity: .72;
  pointer-events: none;
}
.section { padding: 52px 0; border-top: 1px solid rgba(148, 163, 184, .14); }
.section h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.04; margin: 8px 0 14px; letter-spacing: 0; }
.section h2 { max-width: 100%; }
.section p { color: var(--muted); margin: 0; }
.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 30px;
  align-items: center;
}
.download-band > * { min-width: 0; }
.download-panel {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  padding: 20px;
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}
.download-panel img { width: 64px; height: 64px; border-radius: 14px; }
.download-panel strong { display: block; font-size: 20px; }
.download-panel span { display: block; color: var(--muted); font-size: 14px; margin-top: 3px; }
.download-panel .button { grid-column: 1 / -1; width: 100%; }
.intro-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 30px;
  align-items: center;
}
.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.metric-strip div, .feature, .release-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}
.metric-strip div { padding: 18px; min-height: 96px; }
.metric-strip span, .version { color: var(--soft); font-size: 12px; text-transform: uppercase; font-weight: 850; letter-spacing: .08em; }
.metric-strip strong { display: block; margin-top: 9px; font-size: 18px; }
.section-head { max-width: 720px; margin-bottom: 24px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.feature { padding: 20px; min-height: 250px; }
.feature-icon { display: inline-flex; width: 38px; height: 32px; align-items: center; justify-content: center; border: 1px solid rgba(41,227,208,.42); border-radius: 7px; color: var(--teal); font-weight: 850; font-size: 12px; }
.feature h3 { margin: 18px 0 8px; font-size: 19px; line-height: 1.16; }
.feature p { font-size: 15px; }
.rich-features { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.screenshot-story .section-head { max-width: 790px; }
.showcase-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}
.showcase-card img {
  display: block;
  width: 100%;
  height: auto;
}
.showcase-card figcaption {
  padding: 15px 18px 17px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  border-top: 1px solid rgba(148,163,184,.14);
}
.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: 16px;
  align-items: stretch;
}
.screenshot-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}
.screenshot-grid figure:nth-child(2),
.screenshot-grid figure:nth-child(3) { min-height: 240px; }
.screenshot-grid .screen-large { grid-row: span 2; }
.screenshot-grid img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  object-position: top center;
}
.screenshot-grid figure:nth-child(3) img {
  object-fit: contain;
  background: #000;
  padding: 18px;
}
.screenshot-grid figcaption {
  padding: 13px 15px 15px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  border-top: 1px solid rgba(148,163,184,.14);
}
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.text-stack { display: grid; gap: 18px; }
.boundary-band { background: rgba(13,24,39,.35); padding-left: 20px; padding-right: 20px; border-radius: 8px; }
.doc { max-width: 860px; padding: 54px 0 76px; }
.doc h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 14px; }
.doc h2 { margin-top: 36px; font-size: 26px; letter-spacing: 0; }
.doc p, .doc li { color: var(--muted); }
.doc li { margin: 7px 0; }
.meta { color: var(--soft); font-size: 14px; margin-bottom: 28px; }
ul, ol { margin: 12px 0 0; padding-left: 22px; color: var(--muted); }
.notice { border-left: 3px solid var(--amber); padding: 13px 15px; background: rgba(245,185,66,.09); color: var(--muted); border-radius: 0 7px 7px 0; }
.link-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.link-list a { border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; background: rgba(18,31,49,.72); text-decoration: none; font-weight: 800; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; margin-top: 16px; }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid rgba(148,163,184,.16); }
th { color: var(--ink); background: rgba(148,163,184,.08); }
td { color: var(--muted); }
.release-card { padding: 22px; margin-top: 22px; }
.release-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.release-head h2 { margin-top: 4px; }
.date { color: var(--soft); font-weight: 800; }
.muted-card { background: rgba(18,31,49,.55); }
.site-footer { border-top: 1px solid rgba(148,163,184,.14); margin-top: 22px; }
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--soft);
  font-size: 13px;
}
.footer-inner a { color: var(--muted); text-decoration: none; }
@media (max-width: 980px) {
  .hero { min-height: 780px; align-items: start; padding-top: 34px; }
  .hero-media { inset: 260px 0 26px; }
  .hero-copy { padding: 0 12px; }
  .device-row { right: 28px; bottom: 28px; transform: scale(.82); transform-origin: bottom right; }
  .product-hero { min-height: 820px; }
  .actual-media { inset: 300px 0 26px; }
  .showcase-media { padding: 10px; }
  .hero-ipad { width: calc(100% - 34px); right: 17px; bottom: 24px; }
  .hero-watch { right: 34px; bottom: 34px; width: 140px; height: 170px; }
  .intro-band, .split, .download-band { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screenshot-grid { grid-template-columns: 1fr; }
  .screenshot-grid .screen-large { grid-row: auto; }
}
@media (max-width: 680px) {
  .nav { min-height: 64px; align-items: flex-start; flex-direction: column; justify-content: center; padding: 12px 0; }
  .brand-sub { display: none; }
  .nav-links { justify-content: flex-start; width: 100%; gap: 1px; }
  .nav-links a { padding: 6px 5px; font-size: 12px; }
  .hero { min-height: 700px; }
  .hero-media { inset: 300px 0 24px; }
  .hero-copy { padding-top: 14px; }
  .lede { font-size: 18px; }
  .device-row { right: -8px; bottom: 12px; transform: scale(.58); }
  .product-hero { min-height: 790px; }
  .actual-media { inset: 390px 0 24px; }
  .showcase-media img { object-position: 42% center; }
  .hero-ipad { width: 125%; right: -44%; bottom: 18px; }
  .hero-watch { left: 18px; right: auto; bottom: 34px; width: 116px; height: 142px; border-radius: 26px; }
  .radar-panel { display: none; }
  .metric-strip, .feature-grid, .link-list { grid-template-columns: 1fr; }
  .download-panel { grid-template-columns: 54px minmax(0, 1fr); padding: 16px; }
  .download-panel img { width: 54px; height: 54px; border-radius: 12px; }
  .screenshot-grid img { max-height: 520px; }
  .section h2 { font-size: 24px; line-height: 1.12; overflow-wrap: anywhere; max-width: 330px; }
  .section p { max-width: 330px; }
  .footer-inner { flex-direction: column; }
}
