:root {
  --bg: #030915;
  --bg-2: #06162e;
  --panel: rgba(8, 26, 56, 0.76);
  --panel-strong: rgba(6, 20, 44, 0.94);
  --line: rgba(35, 214, 255, 0.18);
  --text: #f7fbff;
  --muted: rgba(247, 251, 255, 0.74);
  --soft: rgba(247, 251, 255, 0.48);
  --cyan: #1be6ff;
  --blue: #1292ff;
  --mint: #63ffbb;
  --green: #53f17a;
  --yellow: #f6d84f;
  --orange: #ff9a2a;
  --radius: 28px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(27, 230, 255, 0.17), transparent 27rem),
    radial-gradient(circle at 92% 14%, rgba(99, 255, 187, 0.12), transparent 22rem),
    radial-gradient(circle at 65% 60%, rgba(10, 79, 176, 0.13), transparent 35rem),
    linear-gradient(155deg, #020612 0%, #031024 48%, #020915 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.16;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.page-glow {
  position: fixed;
  inset: auto -8% -18% -8%;
  height: 38vh;
  transform: perspective(760px) rotateX(72deg);
  background: repeating-radial-gradient(circle at center, rgba(27,230,255,0.12) 0 2px, transparent 2px 18px);
  opacity: 0.2;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header,
main,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  background: rgba(3, 9, 21, 0.76);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand img,
.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(27,230,255,0.34);
}
.brand strong,
.footer-brand strong {
  display: block;
  font-size: clamp(1.25rem, 1.5vw, 1.7rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.brand strong span,
.hero h1 span,
.section-copy h2 span { 
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  -webkit-background-clip: text;
  color: transparent;
}
.brand em,
.footer-brand span {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.62);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.76);
}
.desktop-nav a:hover { color: var(--cyan); }

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.header-cta,
.button.primary {
  color: white;
  background: linear-gradient(135deg, #0a68ff 0%, #0bbcff 100%);
  box-shadow: 0 14px 34px rgba(12, 136, 255, 0.26), inset 0 0 0 1px rgba(255,255,255,0.16);
}
.button.secondary {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 98px) 0 54px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.route-meter {
  position: relative;
  width: 92px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8bf9a2 0%, #f1d550 55%, #ff5c50 100%);
}
.route-meter i {
  position: absolute;
  left: 8px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(139,249,162,0.28);
}
.green b { color: var(--green); }

h1, h2, h3, p, ul { margin-top: 0; }
.hero h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.075em;
}
.hero-text,
.section-copy p,
.watch-copy p,
.section-heading p,
.cta-copy p,
.site-footer p {
  font-size: clamp(1.05rem, 1.4vw, 1.16rem);
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions,
.hero-points,
.watch-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-actions { margin: 32px 0 22px; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-points li,
.watch-points span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame {
  position: relative;
  background: #050505;
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.phone-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.09);
  pointer-events: none;
}
.phone-notch {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: 136px;
  height: 28px;
  border-radius: 18px;
  background: #020202;
  z-index: 2;
}
.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 32px;
}
.hero-phone.large {
  width: min(100%, 430px);
  transform: translateX(28px);
}
.section-phone,
.shot-phone,
.grid-phone { width: min(100%, 360px); }
.section-phone.giant { width: min(100%, 420px); }
.tallest { width: min(100%, 390px); }

.floating-label,
.mini-card,
.feature-grid article,
.dynamic-band,
.watch-section,
.shot,
.cta-panel,
.dashboard-section,
.weather-band {
  background: linear-gradient(180deg, rgba(8, 26, 56, 0.84), rgba(5, 16, 35, 0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.floating-label {
  position: absolute;
  left: 0;
  top: 54px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 280px;
  padding: 18px;
  border-radius: 22px;
  z-index: 3;
}
.label-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(27,230,255,0.12);
  color: var(--cyan);
  font-weight: 900;
}
.floating-label strong,
.mini-title,
.feature-grid h2,
.dynamic-copy h2,
.cta-copy h2,
.section-heading h2,
.section-copy h2,
.watch-copy h2 {
  font-weight: 900;
  letter-spacing: -0.05em;
}
.floating-label small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.55;
}

.mini-card {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: min(100%, 430px);
  padding: 22px;
  border-radius: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 18px;
  align-items: center;
}
.mini-card-copy h2 {
  margin: 6px 0 10px;
  font-size: 1.85rem;
  line-height: 1.02;
}
.mini-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.mini-title {
  margin: 0;
  color: var(--cyan);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.mini-phone {
  padding: 10px;
  border-radius: 28px;
}
.mini-phone::before { inset: 5px; border-radius: 23px; }
.mini-phone .phone-notch {
  width: 74px;
  height: 18px;
  top: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 12px 0 74px;
}
.feature-grid article {
  border-radius: 24px;
  padding: 24px;
}
.feature-badge {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(27,230,255,0.12);
  color: var(--cyan);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feature-grid h2 {
  margin-bottom: 10px;
  font-size: 1.42rem;
}
.feature-grid p { margin: 0; line-height: 1.7; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 32px;
  margin: 0 0 34px;
}
.split.reverse { grid-template-columns: minmax(340px, 420px) minmax(0, 1fr); }
.split.reverse > :first-child { order: 2; }
.split.reverse > :last-child { order: 1; }
.section-copy h2,
.watch-copy h2,
.dynamic-copy h2,
.section-heading h2,
.cta-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  line-height: 1;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mint);
  font-weight: 900;
}
.device-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-stage.emphasis { align-items: flex-end; }

.dynamic-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 24px;
  align-items: center;
  border-radius: 30px;
  padding: 28px 30px;
  margin: 0 0 34px;
}
.dynamic-stack {
  display: grid;
  gap: 12px;
  justify-content: end;
}

.watch-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  border-radius: 32px;
  padding: clamp(28px, 4vw, 40px);
  margin-bottom: 74px;
}
.watch-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 22px;
}
.watch-device {
  position: relative;
  width: 204px;
  padding: 12px;
  border-radius: 48px;
  background: linear-gradient(180deg, #3d424d, #181c23);
  box-shadow: 0 28px 48px rgba(0,0,0,0.34);
}
.watch-device.second { transform: translateY(24px); }
.watch-screen {
  overflow: hidden;
  border-radius: 36px;
  background: #000;
}
.watch-screen img {
  width: 100%;
  height: auto;
  display: block;
}
.watch-crown,
.watch-button {
  position: absolute;
  right: -10px;
  background: linear-gradient(180deg, #6d727d, #232831);
}
.watch-crown {
  top: 72px;
  width: 16px;
  height: 42px;
  border-radius: 10px;
}
.watch-button {
  top: 124px;
  width: 11px;
  height: 28px;
  border-radius: 8px;
}

.screenshots-section { margin-bottom: 74px; }
.section-heading.centered {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}
.screenshot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 22px;
  align-items: start;
}
.side-shots {
  display: grid;
  gap: 22px;
}
.shot {
  border-radius: 28px;
  padding: 20px;
}
.shot.main-shot {
  padding: 24px;
}
.shot figure { margin: 0; }
.shot figcaption {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}
.main-shot .shot-phone { margin-inline: auto; }
.side-shots .shot-phone { width: min(100%, 280px); margin-inline: auto; }

.cta-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 28px 30px;
  border-radius: 30px;
  margin-bottom: 40px;
}
.cta-panel > img {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  box-shadow: 0 0 34px rgba(27,230,255,0.24);
}
.large-button { min-width: 260px; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0 48px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.site-footer p {
  max-width: 680px;
  margin: 0;
  font-size: 0.98rem;
}

@media (max-width: 1120px) {
  .hero,
  .feature-grid,
  .watch-section,
  .dynamic-band,
  .cta-panel,
  .screenshot-layout,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child,
  .split.reverse > :last-child {
    order: initial;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 26px;
    padding-bottom: 250px;
  }

  .hero-phone.large { transform: none; }
  .floating-label { position: absolute; top: 0; left: 0; }
  .mini-card { position: absolute; right: 0; bottom: 0; }
  .dynamic-stack { justify-content: start; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-panel { text-align: center; }
  .cta-panel > img,
  .large-button { justify-self: center; }
}

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .site-header { padding-top: 16px; padding-bottom: 16px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .watch-gallery { flex-wrap: wrap; }
  .feature-grid { grid-template-columns: 1fr; }
  .floating-label,
  .mini-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }
  .hero-visual {
    padding-bottom: 0;
    display: grid;
    gap: 18px;
  }
  .mini-card { grid-template-columns: 1fr; }
  .hero-phone.large,
  .section-phone.giant,
  .section-phone,
  .tallest {
    width: min(100%, 360px);
    margin-inline: auto;
  }
  .cta-panel {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .site-header,
  main,
  .site-footer {
    width: min(var(--max), calc(100% - 22px));
  }
  .brand img,
  .footer-brand img { width: 48px; height: 48px; }
  .brand em,
  .footer-brand span { font-size: 0.58rem; letter-spacing: 0.22em; }
  .header-cta { display: none; }
  .hero h1 { font-size: 2.55rem; }
  .split,
  .watch-section,
  .dynamic-band,
  .cta-panel,
  .feature-grid article,
  .shot { padding: 20px; }
  .watch-device { width: 172px; }
}

/* Privacy and support pages */
.legal-hero {
  max-width: 880px;
  padding: clamp(48px, 7vw, 96px) 0 28px;
}
.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5.6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  font-weight: 900;
}
.legal-hero p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}
.legal-card,
.support-grid article {
  background: linear-gradient(180deg, rgba(8, 26, 56, 0.84), rgba(5, 16, 35, 0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 30px;
}
.legal-card {
  max-width: 980px;
  padding: clamp(24px, 4vw, 42px);
  margin: 0 0 34px;
}
.legal-card h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 {
  margin: 28px 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}
.legal-card a {
  color: var(--cyan);
  font-weight: 800;
}
.legal-card ul {
  margin: 12px 0 0;
  padding-left: 1.2rem;
}
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 34px;
}
.support-grid article {
  padding: 24px;
}
.support-grid h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}
.support-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.72);
}
.footer-links a:hover { color: var(--cyan); }

@media (max-width: 1120px) {
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { align-items: flex-start; }
}

@media (max-width: 720px) {
  .support-grid { grid-template-columns: 1fr; }
  .legal-card,
  .support-grid article { border-radius: 24px; }
  .footer-links { flex-wrap: wrap; }
}

/* V6 polished same-page legal/support sections */
.desktop-nav { flex-wrap: wrap; justify-content: flex-end; }
.polished-legal {
  scroll-margin-top: 96px;
  margin: 0 0 54px;
}
.legal-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(27,230,255,0.18), transparent 34rem),
    linear-gradient(145deg, rgba(8,26,56,0.94), rgba(4,13,30,0.96));
  border: 1px solid rgba(35, 214, 255, 0.24);
  box-shadow: 0 26px 80px rgba(0,0,0,0.42);
}
.legal-hero-split h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.4rem);
  line-height: .96;
  margin-bottom: 16px;
}
.legal-hero-split p:last-child { margin-bottom: 0; }
.legal-meta-card,
.support-card-small {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
.legal-meta-card span,
.support-card-small span {
  color: var(--cyan);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
}
.legal-meta-card strong {
  display: block;
  color: var(--text);
  font-size: 1.06rem;
  margin-bottom: 8px;
}
.support-card-small .button { width: 100%; }
.legal-grid {
  display: grid;
  gap: 18px;
  margin: 18px 0;
}
.legal-grid.two-column { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.legal-grid.three-column { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.legal-card.highlight-card {
  margin-top: 18px;
  background:
    radial-gradient(circle at top right, rgba(99,255,187,0.1), transparent 28rem),
    linear-gradient(180deg, rgba(8,26,56,0.9), rgba(5,16,35,0.94));
}
.mini-legal-card h2 { font-size: 1.35rem; }
.terms-support-section { margin-top: 34px; }
.improved-support-grid {
  margin-top: 18px;
  margin-bottom: 18px;
}
.faq-card h3 {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq-card h3:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.legal-card a,
.site-footer a { text-decoration: none; }
.footer-links {
  display: flex;
  gap: 14px;
}
.footer-links a {
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 920px) {
  .legal-hero-split,
  .legal-grid.two-column,
  .legal-grid.three-column {
    grid-template-columns: 1fr;
  }
}

/* V7 polished navigation */
.site-header {
  gap: 18px;
  padding: 16px 0;
}
.nav-shell {
  flex: 1 1 auto;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.nav-group {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025), 0 14px 32px rgba(0,0,0,0.18);
}
.nav-group a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(247,251,255,0.72);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.nav-group a:hover {
  color: white;
  background: rgba(27,230,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(27,230,255,0.24);
  transform: translateY(-1px);
}
.nav-group.utility-links {
  background: rgba(1,7,20,0.72);
  border-color: rgba(27,230,255,0.18);
}
.nav-group.utility-links a {
  color: rgba(247,251,255,0.66);
}
.nav-group.utility-links .nav-download {
  color: #00101c;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 10px 26px rgba(27,230,255,0.22);
}
.nav-group.utility-links .nav-download:hover {
  color: #00101c;
  background: linear-gradient(135deg, #63ffbb, #1be6ff);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 680px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(247,251,255,0.68);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: .84rem;
  font-weight: 800;
  white-space: nowrap;
}
.footer-links a:hover {
  color: white;
  background: rgba(27,230,255,0.12);
  border-color: rgba(27,230,255,0.26);
}
@media (max-width: 1180px) {
  .site-header {
    flex-wrap: wrap;
  }
  .brand {
    flex: 1 1 auto;
  }
  .nav-shell {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
  }
}
@media (max-width: 820px) {
  .desktop-nav.nav-shell {
    display: flex;
  }
  .nav-shell {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .nav-shell::-webkit-scrollbar { display: none; }
  .nav-group {
    flex: 0 0 auto;
  }
  .nav-group a {
    font-size: .78rem;
    padding: 0 10px;
  }
  .site-header {
    width: min(var(--max), calc(100% - 22px));
  }
}
@media (max-width: 560px) {
  .nav-group.utility-links a:not(.nav-download) {
    display: none;
  }
  .footer-links {
    justify-content: flex-start;
  }
}


.brand-showcase {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  margin: 0 0 34px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 50%, rgba(27, 230, 255, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(8, 24, 50, 0.78), rgba(5, 16, 35, 0.86));
  border: 1px solid rgba(35, 214, 255, 0.18);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.brand-showcase-logo {
  width: clamp(128px, 15vw, 190px);
  height: clamp(128px, 15vw, 190px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 28px 70px rgba(0,0,0,0.28);
}

.brand-showcase-logo img {
  width: 78%;
  height: 78%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 18px 48px rgba(27,230,255,0.18);
}

.brand-showcase-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.brand-showcase-copy p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.brand-showcase-points {
  display: grid;
  gap: 10px;
  min-width: 118px;
}

.brand-showcase-points span {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 800;
  text-align: center;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 940px) {
  .brand-showcase {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .brand-showcase-points {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-showcase-logo {
    margin-inline: auto;
  }

  .brand-showcase-points {
    grid-template-columns: 1fr;
  }
}


/* v10 professional logo treatment */
.professional-logo-panel {
  position: relative;
  overflow: hidden;
}

.professional-logo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.035), transparent 42%);
}

.refined-logo-lockup {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
  border-color: rgba(255,255,255,0.09);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.035),
    0 24px 58px rgba(0,0,0,0.26),
    0 0 34px rgba(27,230,255,0.08);
}

.refined-logo-lockup img {
  width: 82%;
  height: 82%;
  border-radius: 30px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 18px 44px rgba(0,0,0,0.28);
}

.refined-points {
  min-width: 170px;
}

.refined-points span {
  text-align: left;
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.075);
}

@media (max-width: 640px) {
  .refined-points span {
    text-align: center;
  }
}


/* v12 mobile navigation cleanup */
.mobile-nav {
  display: none;
  position: relative;
  z-index: 80;
}

.mobile-nav summary {
  list-style: none;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.01em;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.035);
}

.mobile-nav summary::-webkit-details-marker { display: none; }

.mobile-nav[open] summary {
  color: #00101c;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  border-color: transparent;
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(82vw, 310px);
  padding: 10px;
  border-radius: 22px;
  background: rgba(3, 12, 28, 0.98);
  border: 1px solid rgba(27,230,255,0.22);
  box-shadow: 0 28px 70px rgba(0,0,0,0.46), inset 0 0 0 1px rgba(255,255,255,0.035);
  backdrop-filter: blur(22px);
}

.mobile-nav-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  color: rgba(247,251,255,0.88);
  font-weight: 800;
  border: 1px solid transparent;
}

.mobile-nav-panel a + a { margin-top: 4px; }

.mobile-nav-panel a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}

.mobile-nav-panel a::after {
  content: "›";
  color: rgba(247,251,255,0.44);
  font-size: 1.3rem;
  line-height: 1;
}

.mobile-nav-panel .mobile-primary {
  color: #00101c;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  margin: 8px 0;
}

.mobile-nav-panel .mobile-primary::after { color: rgba(0,16,28,0.48); }

@media (min-width: 861px) {
  .mobile-nav { display: none !important; }
  .desktop-nav.nav-shell { display: flex !important; }
}

@media (max-width: 860px) {
  .site-header {
    width: min(var(--max), calc(100% - 24px));
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 14px 0 !important;
  }

  .desktop-nav,
  .desktop-nav.nav-shell,
  .nav-shell,
  .nav-group {
    display: none !important;
  }

  .mobile-nav { display: block !important; }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    flex: 0 0 auto;
  }

  .brand span { min-width: 0; }

  .brand strong {
    font-size: 1.18rem !important;
    line-height: 1 !important;
    white-space: nowrap;
  }

  .brand em {
    font-size: 0.52rem !important;
    letter-spacing: 0.18em !important;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .brand em { display: none !important; }
  .brand strong { font-size: 1.08rem !important; }
  .mobile-nav summary {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
  }
  .mobile-nav-panel {
    right: -2px;
    width: min(88vw, 292px);
  }
}

/* v13 professional refresh */
:root {
  --bg: #f4f8fc;
  --bg-2: #eaf3fb;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(42, 86, 126, 0.18);
  --text: #08172d;
  --muted: #50627a;
  --soft: #7a8797;
  --cyan: #0aaed0;
  --blue: #086bdc;
  --mint: #28c76f;
  --green: #1fa955;
  --yellow: #e0b81f;
  --orange: #ff8a2a;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(33, 62, 94, 0.16);
}

body {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(244,248,252,0.94) 34%, rgba(232,243,250,0.92)),
    radial-gradient(circle at 14% 8%, rgba(31, 169, 85, 0.12), transparent 23rem),
    radial-gradient(circle at 86% 10%, rgba(8, 107, 220, 0.13), transparent 26rem);
}

body::before,
.page-glow,
.phone-notch {
  display: none;
}

.site-header {
  background: rgba(245, 249, 253, 0.82);
  border-bottom: 1px solid rgba(42, 86, 126, 0.08);
}

.brand img,
.footer-brand img {
  box-shadow: 0 12px 28px rgba(8, 107, 220, 0.14);
}

.brand strong,
.footer-brand strong {
  letter-spacing: -0.03em;
}

.brand em,
.footer-brand span {
  color: #52637b;
}

.brand strong span,
.hero h1 span,
.section-copy h2 span {
  background: linear-gradient(90deg, #0874d9, #28c76f);
  -webkit-background-clip: text;
  color: transparent;
}

.nav-group {
  background: rgba(255,255,255,0.82);
  border-color: rgba(42, 86, 126, 0.12);
  box-shadow: 0 10px 28px rgba(33, 62, 94, 0.08);
}

.nav-group a,
.nav-group.utility-links a,
.footer-links a {
  color: #40536b;
}

.nav-group a:hover {
  color: #072042;
  background: rgba(8, 107, 220, 0.08);
  box-shadow: inset 0 0 0 1px rgba(8, 107, 220, 0.14);
}

.nav-group.utility-links {
  background: rgba(255,255,255,0.92);
  border-color: rgba(8, 107, 220, 0.14);
}

.nav-group.utility-links .nav-download,
.button.primary,
.header-cta {
  color: #fff;
  background: linear-gradient(135deg, #086bdc, #0aaed0);
  box-shadow: 0 16px 34px rgba(8, 107, 220, 0.18), inset 0 0 0 1px rgba(255,255,255,0.2);
}

.button.secondary {
  color: #10233d;
  background: rgba(255,255,255,0.86);
  border-color: rgba(42, 86, 126, 0.14);
}

.hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(410px, 0.9fr);
  min-height: calc(100vh - 92px);
  padding-top: clamp(44px, 6vw, 84px);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  letter-spacing: -0.055em;
}

.hero-text,
.section-copy p,
.watch-copy p,
.section-heading p,
.cta-copy p,
.site-footer p,
.legal-card p,
.legal-card li,
.support-grid p {
  color: var(--muted);
}

.eyebrow {
  color: #086bdc;
  letter-spacing: 0.14em;
}

.hero-points li,
.watch-points span,
.brand-showcase-points span {
  color: #20324b;
  background: rgba(255,255,255,0.86);
  border-color: rgba(42, 86, 126, 0.14);
}

.hero-visual {
  min-height: 720px;
}

.phone-frame {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(22, 45, 76, 0.22);
}

.phone-frame::before {
  display: none;
}

.phone-frame img {
  border-radius: 36px;
}

.hero-phone.large {
  width: min(100%, 410px);
  transform: rotate(1.5deg) translateX(18px);
}

.floating-label,
.mini-card,
.feature-grid article,
.dynamic-band,
.watch-section,
.shot,
.cta-panel,
.dashboard-section,
.weather-band,
.brand-showcase,
.legal-card,
.support-grid article,
.legal-hero-split {
  color: var(--text);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(42, 86, 126, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-label {
  top: 36px;
  left: 8px;
}

.label-icon,
.feature-badge {
  color: #086bdc;
  background: rgba(8, 107, 220, 0.1);
}

.floating-label small,
.mini-card-copy p,
.feature-grid p {
  color: var(--muted);
}

.floating-label strong,
.mini-title {
  letter-spacing: 0;
}

.mini-card {
  right: 10px;
  bottom: 34px;
  grid-template-columns: minmax(0, 1fr) 148px;
}

.mini-phone {
  border-radius: 24px;
}

.mini-phone img {
  border-radius: 24px;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  margin-top: 28px;
}

.feature-grid article,
.shot,
.legal-card,
.support-grid article {
  border-radius: 20px;
}

.split,
.watch-section,
.dynamic-band,
.brand-showcase,
.cta-panel,
.legal-hero-split {
  border-radius: 26px;
}

.section-copy h2,
.watch-copy h2,
.dynamic-copy h2,
.section-heading h2,
.cta-copy h2,
.brand-showcase-copy h2,
.legal-hero-split h2 {
  letter-spacing: -0.04em;
}

.check-list li {
  color: #17314f;
}

.check-list li::before {
  color: #28c76f;
}

.section-phone.giant {
  width: min(100%, 390px);
}

.dynamic-band {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

.dynamic-preview {
  justify-content: center;
}

.dynamic-preview img {
  width: min(100%, 340px);
  border-radius: 34px;
  box-shadow: 0 24px 64px rgba(22, 45, 76, 0.22);
}

.watch-device {
  background: linear-gradient(180deg, #4a515e, #171d27);
}

.watch-screen {
  background: #05080d;
}

.screenshot-layout {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
}

.shot {
  display: grid;
  align-content: start;
  gap: 14px;
}

.shot figcaption {
  margin-top: 0;
  color: var(--muted);
}

.main-shot .shot-phone {
  width: min(100%, 400px);
}

.side-shots {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.side-shots .shot-phone {
  width: min(100%, 235px);
}

.cta-panel > img {
  box-shadow: 0 14px 34px rgba(8, 107, 220, 0.18);
}

.legal-hero-split,
.legal-card.highlight-card {
  background: rgba(255,255,255,0.88);
}

.legal-meta-card,
.support-card-small {
  background: rgba(240, 247, 253, 0.9);
  border-color: rgba(42, 86, 126, 0.12);
}

.legal-meta-card span,
.support-card-small span {
  color: #086bdc;
}

.legal-meta-card strong {
  color: var(--text);
}

.legal-card a {
  color: #086bdc;
}

.faq-card h3 {
  border-top-color: rgba(42, 86, 126, 0.14);
}

.site-footer {
  border-top: 1px solid rgba(42, 86, 126, 0.12);
  padding-top: 28px;
}

.footer-links a {
  background: rgba(255,255,255,0.7);
  border-color: rgba(42, 86, 126, 0.12);
}

.footer-links a:hover {
  color: #072042;
  background: rgba(8, 107, 220, 0.08);
  border-color: rgba(8, 107, 220, 0.16);
}

.mobile-nav summary {
  color: #122640;
  background: rgba(255,255,255,0.9);
  border-color: rgba(42, 86, 126, 0.14);
}

.mobile-nav[open] summary {
  color: white;
  background: linear-gradient(135deg, #086bdc, #0aaed0);
}

.mobile-nav-panel {
  background: rgba(255,255,255,0.98);
  border-color: rgba(42, 86, 126, 0.14);
  box-shadow: 0 28px 70px rgba(33, 62, 94, 0.2);
}

.mobile-nav-panel a {
  color: #17314f;
}

.mobile-nav-panel a:hover {
  color: #072042;
  background: rgba(8, 107, 220, 0.08);
  border-color: rgba(8, 107, 220, 0.12);
}

.mobile-nav-panel a::after {
  color: rgba(23, 49, 79, 0.42);
}

.mobile-nav-panel .mobile-primary {
  color: white;
  background: linear-gradient(135deg, #086bdc, #0aaed0);
}

@media (max-width: 1120px) {
  .hero {
    min-height: 0;
  }

  .hero-phone.large {
    transform: none;
  }

  .side-shots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .mini-card {
    grid-template-columns: 1fr;
  }

  .mini-phone {
    width: min(100%, 220px);
    justify-self: center;
  }

  .dynamic-band,
  .screenshot-layout {
    grid-template-columns: 1fr;
  }

  .side-shots .shot-phone {
    width: min(100%, 280px);
  }
}

@media (max-width: 620px) {
  .side-shots {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .large-button {
    width: 100%;
  }

  .phone-frame,
  .phone-frame img {
    border-radius: 28px;
  }
}

/* v15 screenshot-led polish */
.mini-card,
.weather-band,
.dynamic-band,
.shot-dark {
  color: #f7fbff;
  background:
    radial-gradient(circle at 12% 0%, rgba(10, 174, 208, 0.24), transparent 20rem),
    linear-gradient(145deg, #071322 0%, #0a1f3c 58%, #06101e 100%);
  border-color: rgba(93, 231, 255, 0.2);
  box-shadow: 0 28px 80px rgba(5, 16, 30, 0.28);
}

.mini-card-copy p,
.weather-band .section-copy p,
.dynamic-band .dynamic-copy p,
.shot-dark figcaption {
  color: rgba(247,251,255,0.74);
}

.mini-title,
.weather-band .eyebrow,
.dynamic-band .eyebrow {
  color: #5de7ff;
}

.mini-card-copy h2,
.weather-band h2,
.dynamic-band h2 {
  color: #fff;
}

.weather-band .check-list li {
  color: rgba(247,251,255,0.9);
}

.weather-band .check-list li::before {
  color: #5de7ff;
}

.weather-band .phone-frame,
.shot-dark .phone-frame {
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(93, 231, 255, 0.12);
}

.feature-grid article {
  padding: 22px;
}

.feature-grid h2 {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.feature-grid p {
  line-height: 1.55;
}

.coming-soon-feature {
  position: relative;
  overflow: hidden;
}

.coming-soon-feature::after {
  content: "Coming soon";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #086bdc;
  background: rgba(8, 107, 220, 0.1);
  border: 1px solid rgba(8, 107, 220, 0.14);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coming-soon-feature p strong {
  color: #10233d;
}

.platform-note {
  margin-top: 24px;
  padding: 20px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(10, 174, 208, 0.16), transparent 12rem),
    linear-gradient(135deg, rgba(8, 107, 220, 0.09), rgba(255,255,255,0.84));
  border: 1px solid rgba(8, 107, 220, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}

.platform-note span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #086bdc;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(8, 107, 220, 0.12);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.platform-note strong {
  display: block;
  margin-bottom: 6px;
  color: #08172d;
  font-size: 1.28rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.platform-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-text {
  max-width: 620px;
  line-height: 1.62;
}

.hero-points li {
  padding: 9px 14px;
}

/* v16 lift hero message */
.hero {
  padding-top: clamp(20px, 3vw, 44px);
}

@media (max-width: 820px) {
  .hero {
    padding-top: 18px;
  }
}

/* v17 mobile polish */
@media (max-width: 860px) {
  body {
    background:
      linear-gradient(180deg, #f7fbff 0%, #edf6fd 48%, #f8fbfe 100%);
  }

  .site-header {
    top: 0;
    width: calc(100% - 20px) !important;
    padding: 10px 0 !important;
    background: rgba(247, 251, 255, 0.94);
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
  }

  .brand strong {
    font-size: 1.05rem !important;
    letter-spacing: -0.02em !important;
  }

  .brand em {
    display: none !important;
  }

  .mobile-nav summary {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.88rem;
  }

  .mobile-nav-panel {
    top: calc(100% + 8px);
    border-radius: 18px;
  }

  main,
  .site-footer {
    width: calc(100% - 22px);
  }

  section[id],
  .dashboard-section,
  .weather-band,
  .dynamic-band,
  .watch-section,
  .screenshots-section,
  .cta-panel {
    scroll-margin-top: 76px;
  }
}

@media (max-width: 820px) {
  .hero {
    display: block;
    padding: 18px 0 30px;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 0.66rem;
    line-height: 1.25;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    max-width: 11ch;
    margin-bottom: 12px;
    font-size: clamp(2.55rem, 12vw, 3.35rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .hero-text {
    max-width: 34rem;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .hero-actions {
    margin: 0 0 16px;
    gap: 10px;
  }

  .button {
    min-height: 48px;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 0.94rem;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points li {
    padding: 8px 11px;
    font-size: 0.86rem;
  }

  .hero-visual {
    display: block;
    min-height: 0;
    margin-top: 24px;
    padding: 0;
  }

  .floating-label,
  .mini-card {
    display: none;
  }

  .hero-phone.large {
    width: min(82vw, 315px);
    margin-inline: auto;
    transform: none;
  }

  .phone-frame,
  .phone-frame img {
    border-radius: 26px;
  }

  .brand-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
    text-align: left;
  }

  .brand-showcase-logo {
    width: 88px;
    height: 88px;
    margin: 0;
    border-radius: 24px;
  }

  .brand-showcase-logo img {
    border-radius: 20px;
  }

  .brand-showcase-copy h2,
  .section-copy h2,
  .watch-copy h2,
  .dynamic-copy h2,
  .section-heading h2,
  .cta-copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .brand-showcase-points {
    display: none;
  }

  .feature-grid {
    gap: 12px;
    margin: 18px 0 30px;
  }

  .feature-grid article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    padding: 16px;
  }

  .coming-soon-feature::after {
    top: 14px;
    right: 14px;
    font-size: 0.62rem;
  }

  .feature-badge {
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 13px;
    font-size: 1.08rem;
  }

  .feature-grid h2 {
    margin: 0 0 5px;
    font-size: 1.05rem;
  }

  .feature-grid p {
    grid-column: 2;
    font-size: 0.94rem;
  }

  .split,
  .watch-section,
  .dynamic-band,
  .cta-panel,
  .legal-hero-split {
    gap: 20px;
    padding: 20px;
    border-radius: 22px;
    margin-bottom: 22px;
  }

  .dashboard-section .device-stage {
    display: none;
  }

  .dashboard-section {
    padding-bottom: 18px;
  }

  .check-list {
    margin-top: 18px;
    gap: 9px;
  }

  .check-list li {
    padding-left: 24px;
    font-size: 0.95rem;
  }

  .section-phone,
  .section-phone.giant {
    width: min(78vw, 300px);
  }

  .dynamic-preview img {
    width: min(80vw, 310px);
    border-radius: 28px;
  }

  .watch-gallery {
    gap: 12px;
  }

  .platform-note {
    margin-top: 18px;
    padding: 15px;
  }

  .watch-device {
    width: min(42vw, 156px);
    border-radius: 38px;
  }

  .watch-device.second {
    transform: translateY(12px);
  }

  .watch-screen {
    border-radius: 28px;
  }
}

@media (max-width: 620px) {
  .screenshots-section {
    margin-bottom: 42px;
  }

  .section-heading.centered {
    margin-bottom: 20px;
    text-align: left;
  }

  .screenshot-layout,
  .side-shots {
    gap: 14px;
  }

  .shot,
  .shot.main-shot {
    padding: 14px;
    border-radius: 18px;
  }

  .main-shot .shot-phone,
  .side-shots .shot-phone,
  .tallest {
    width: min(70vw, 250px);
    margin-inline: auto;
  }

  .shot-phone img {
    max-height: 540px;
    object-fit: cover;
    object-position: top;
  }

  .shot figcaption {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-panel > img {
    width: 64px;
    height: 64px;
    justify-self: start;
    border-radius: 18px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .footer-links a {
    justify-content: center;
    padding-inline: 8px;
    font-size: 0.78rem;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-points li {
    font-size: 0.8rem;
  }

  .main-shot .shot-phone,
  .side-shots .shot-phone,
  .tallest {
    width: min(76vw, 238px);
  }
}
