:root {
  color-scheme: dark;
  --bg: #0c0d0b;
  --bg-soft: #121310;
  --panel: #16181400;
  --surface: #1a1c18;
  --surface-strong: #23251f;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f5ee;
  --muted: #adb3a4;
  --muted-2: #7e8474;
  --accent: #b8ed4f;
  --accent-soft: rgba(184, 237, 79, 0.16);
  --accent-glow: rgba(184, 237, 79, 0.32);
  --danger: #ff684f;
  --amber: #f4c659;
  --shadow: rgba(0, 0, 0, 0.5);
  --max: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --font: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font);
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.005em;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 70% -10%, rgba(184, 237, 79, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 30%, rgba(184, 237, 79, 0.06), transparent 60%),
    linear-gradient(180deg, #0c0d0b 0%, #0a0b09 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 65%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s var(--ease);
}

a:hover {
  color: var(--accent);
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent);
  color: #0e0e0d;
  font-weight: 900;
}

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

/* -- Header / Nav ----------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 13, 11, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.nav-shell,
.site-footer,
.hero,
.features,
.watch-band,
.widget-band,
.workflow,
.privacy-band,
.cta-band,
.document-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.brand-link:hover,
.footer-brand:hover {
  color: var(--text);
}

.brand-link img,
.footer-brand img {
  border-radius: 8px;
  box-shadow: 0 6px 18px var(--shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a:hover {
  color: var(--text);
}

/* -- Buttons / App Store badge --------------------------------------- */

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
}

.button-primary {
  background: var(--accent);
  color: #0e0e0d;
  box-shadow: 0 10px 32px var(--accent-glow);
}

.button-primary:hover {
  color: #0e0e0d;
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--text);
}

.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 18px;
  border-radius: 12px;
  background: #f4f5ee;
  color: #0a0b09;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease);
  font-family: var(--font);
}

.appstore-badge:hover {
  background: #ffffff;
  color: #0a0b09;
  transform: translateY(-1px);
}

.appstore-badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #0a0b09;
}

.appstore-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: left;
}

.appstore-badge__text small {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2a2c25;
}

.appstore-badge__text strong {
  margin-top: 3px;
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.appstore-badge--sm {
  padding: 7px 14px 7px 12px;
  border-radius: 10px;
  gap: 9px;
}

.appstore-badge--sm svg {
  width: 22px;
  height: 22px;
}

.appstore-badge--sm .appstore-badge__text small {
  font-size: 0.55rem;
}

.appstore-badge--sm .appstore-badge__text strong {
  font-size: 0.95rem;
}

.appstore-badge--lg {
  padding: 14px 26px 14px 22px;
  border-radius: 14px;
  gap: 14px;
}

.appstore-badge--lg svg {
  width: 34px;
  height: 34px;
}

.appstore-badge--lg .appstore-badge__text small {
  font-size: 0.7rem;
}

.appstore-badge--lg .appstore-badge__text strong {
  font-size: 1.45rem;
}

.link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 6px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.link-secondary svg {
  width: 16px;
  transition: transform 0.2s var(--ease);
}

.link-secondary:hover {
  color: var(--accent);
}

.link-secondary:hover svg {
  transform: translateX(4px);
}

/* -- Typography helpers --------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* -- Hero ------------------------------------------------------------ */

.hero {
  padding: 84px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 56px;
}

.hero-copy h1 {
  margin-top: 22px;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.hero-copy h1 em {
  display: inline-block;
  color: var(--accent);
  font-style: normal;
}

.hero-lede {
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.55;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-meta li {
  position: relative;
  padding-left: 16px;
}

.hero-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 12px var(--accent-glow);
}

.hero-meta strong {
  color: var(--text);
  font-weight: 850;
}

/* -- Device frames --------------------------------------------------- */

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 60% 50%, var(--accent-glow), transparent 55%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.device {
  position: relative;
  z-index: 1;
}

.device-iphone {
  width: 320px;
  aspect-ratio: 1320 / 2868;
  padding: 12px;
  border-radius: 50px;
  background: linear-gradient(150deg, #2a2c27 0%, #0a0b09 35%, #1a1c18 65%, #050505 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 0 2px rgba(0, 0, 0, 0.6),
    0 30px 70px rgba(0, 0, 0, 0.6),
    0 60px 120px rgba(0, 0, 0, 0.4);
}

.device-iphone img {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  object-fit: cover;
  display: block;
}

.hero-iphone {
  width: 360px;
  transform: rotate(-2deg) translateY(-8px);
  transition: transform 0.4s var(--ease);
}

.hero-iphone:hover {
  transform: rotate(-2deg) translateY(-14px);
}

.device-watch {
  width: 200px;
  aspect-ratio: 416 / 496;
  padding: 6px;
  border-radius: 44px;
  background: linear-gradient(140deg, #3a3d35 0%, #0a0b09 40%, #1a1c18 65%, #050505 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 0 2px rgba(0, 0, 0, 0.6),
    0 24px 60px rgba(0, 0, 0, 0.55);
}

.device-watch img {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  object-fit: cover;
  display: block;
}

.hero-watch {
  position: absolute;
  right: -10px;
  bottom: 40px;
  width: 184px;
  transform: rotate(6deg);
  z-index: 2;
}

/* -- Section headings ------------------------------------------------ */

.section-hd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 56px;
}

.section-hd h2 {
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.section-hd p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
  font-weight: 600;
}

.section-hd.compact {
  margin-bottom: 38px;
}

/* -- Feature rows ---------------------------------------------------- */

.features {
  padding: 60px 0 40px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  padding: 50px 0;
  border-top: 1px solid var(--line);
}

.feature-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-visual {
  order: 1;
}

.feature-copy {
  max-width: 480px;
}

.feature-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-copy h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.feature-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 600;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.feature-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  stroke-width: 2.5;
}

.feature-list.compact {
  margin-top: 20px;
}

.feature-visual {
  display: grid;
  place-items: center;
  position: relative;
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at center, rgba(184, 237, 79, 0.1), transparent 55%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

.feature-visual .device-iphone {
  width: 290px;
}

/* -- Watch band ------------------------------------------------------ */

.watch-band {
  padding: 80px 0;
}

.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 56px;
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(184, 237, 79, 0.14), transparent 60%),
    linear-gradient(180deg, #15171300, #15171396);
  overflow: hidden;
  position: relative;
}

.watch-band h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.watch-band p {
  margin-top: 18px;
  max-width: 460px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 600;
}

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

.watch-hero {
  width: 240px;
  transform: rotate(-4deg);
  z-index: 2;
}

.watch-hero--back {
  position: absolute;
  width: 200px;
  transform: rotate(8deg) translate(70px, 30px);
  opacity: 0.4;
  filter: blur(1px);
  z-index: 1;
}

/* -- Widget band ----------------------------------------------------- */

.widget-band {
  padding: 40px 0 80px;
}

.widget-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}

.widget-band h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.widget-band p {
  margin-top: 18px;
  max-width: 480px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 600;
}

.widget-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.widget-card {
  width: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #1a1c18, #0d0e0c);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
  transform: rotate(-3deg);
}

.widget-card--alt {
  position: absolute;
  transform: rotate(6deg) translate(80px, 40px);
  z-index: 1;
  opacity: 0.55;
  filter: blur(0.5px);
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.widget-header strong {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 950;
}

.widget-header span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.widget-card p {
  margin-top: 16px !important;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
}

.widget-target {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.widget-target span {
  color: var(--text);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 950;
}

.widget-target small {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 900;
}

.widget-load {
  display: block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* -- Workflow rail --------------------------------------------------- */

.workflow {
  padding: 40px 0 80px;
}

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.workflow-rail li {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(26, 28, 24, 0.7), rgba(13, 14, 12, 0.7));
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.workflow-rail li:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.step-num {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.workflow-rail h3 {
  margin-top: 28px;
  font-size: 1.3rem;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.workflow-rail p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

/* -- Privacy band ---------------------------------------------------- */

.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  margin: 40px auto;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(184, 237, 79, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(26, 28, 24, 0.7), rgba(13, 14, 12, 0.7));
}

.privacy-band h2 {
  margin-top: 12px;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.privacy-band p {
  margin-top: 14px;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 600;
}

.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* -- Final CTA band -------------------------------------------------- */

.cta-band {
  margin: 80px auto;
  padding: 84px 32px;
  border: 1px solid var(--accent-soft);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(184, 237, 79, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(26, 28, 24, 0.85), rgba(13, 14, 12, 0.85));
  text-align: center;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.cta-band p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 600;
}

.cta-band .appstore-badge {
  margin-top: 14px;
}

/* -- Footer ---------------------------------------------------------- */

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 36px;
  padding: 50px 0 56px;
  color: var(--muted);
}

.footer-brand-block p {
  margin-top: 10px;
  max-width: 380px;
  line-height: 1.5;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  font-weight: 800;
  font-size: 0.92rem;
}

.copyright {
  text-align: right;
  font-size: 0.85rem;
  font-weight: 600;
}

/* -- Document / Privacy / Support pages ------------------------------ */

.page-legal,
.page-support {
  background:
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(184, 237, 79, 0.1), transparent 50%),
    var(--bg);
}

.document-shell {
  padding: 56px 0 64px;
}

.document-card,
.support-hero,
.faq-section {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(26, 28, 24, 0.8), rgba(13, 14, 12, 0.8));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.document-card {
  max-width: 860px;
  padding: 48px;
}

.document-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-card h1 {
  margin-top: 12px;
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.updated {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.document-card section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.document-card h2 {
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.document-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
  font-weight: 600;
}

.document-card a,
.support-card a,
.faq-list a {
  color: var(--accent);
  font-weight: 800;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 44px;
}

.support-hero h1 {
  margin-top: 12px;
  font-size: clamp(2rem, 3.6vw, 2.5rem);
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.support-hero p {
  margin-top: 14px;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 600;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.support-card {
  padding: 26px;
}

.support-card > svg {
  width: 28px;
  color: var(--accent);
}

.support-card h2 {
  margin-top: 18px;
  font-size: 1.18rem;
  font-weight: 950;
}

.support-card p {
  margin-top: 12px;
  color: var(--text);
  font-weight: 800;
}

.support-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9rem;
  font-weight: 600;
}

.faq-section {
  margin-top: 18px;
  padding: 40px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s var(--ease);
}

.faq-list details[open] {
  border-color: var(--line-strong);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  color: var(--accent);
}

.faq-list p {
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

.compact-footer {
  grid-template-columns: 1fr auto auto;
}

/* -- Responsive ------------------------------------------------------ */

@media (max-width: 1080px) {
  .hero-grid {
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  }

  .hero-iphone {
    width: 320px;
  }

  .hero-watch {
    width: 162px;
    right: -4px;
  }

  .feature-row {
    gap: 40px;
  }

  .watch-grid,
  .widget-grid {
    gap: 36px;
  }

  .watch-grid {
    padding: 48px;
  }
}

@media (max-width: 880px) {
  .nav-shell {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand-link {
    margin-right: auto;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.88rem;
  }

  .hero {
    padding: 56px 0 44px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .hero-stage {
    min-height: 0;
    padding: 24px 0 8px;
  }

  .hero-iphone {
    width: 280px;
  }

  .hero-watch {
    width: 142px;
    right: 14%;
    bottom: 20px;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 0;
  }

  .feature-row .feature-copy,
  .feature-row .feature-visual,
  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-visual {
    order: initial;
  }

  .feature-row .feature-visual,
  .feature-row.reverse .feature-visual {
    order: 1;
  }

  .feature-row .feature-copy,
  .feature-row.reverse .feature-copy {
    order: 2;
  }

  .feature-visual .device-iphone {
    width: 260px;
  }

  .watch-grid,
  .widget-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .watch-grid {
    padding: 36px;
  }

  .widget-stage {
    order: 2;
  }

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

  .privacy-band {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .band-actions {
    justify-content: flex-start;
  }

  .cta-band {
    padding: 56px 24px;
  }

  .support-hero {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .document-card {
    padding: 32px;
  }

  .site-footer,
  .compact-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .appstore-badge--sm {
    display: none;
  }

  .hero-meta {
    gap: 16px;
  }

  .hero-meta li {
    flex: 1 1 100%;
  }

  .hero-iphone {
    width: 240px;
  }

  .hero-watch {
    width: 122px;
    right: 6%;
    bottom: 12px;
  }

  .feature-visual .device-iphone {
    width: 220px;
  }

  .watch-hero {
    width: 200px;
  }

  .watch-hero--back {
    width: 168px;
    transform: rotate(8deg) translate(46px, 22px);
  }

  .widget-card {
    width: 210px;
  }

  .widget-card--alt {
    transform: rotate(6deg) translate(46px, 22px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .hero-iphone {
    transform: rotate(-2deg);
  }
}
