:root {
  color-scheme: light;
  --ink-950: #071220;
  --ink-900: #0d1b2a;
  --ink-800: #17324d;
  --ink-700: #35516b;
  --ink-600: #557089;
  --ink-500: #6d8499;
  --blue-700: #0066d6;
  --blue-600: #087aea;
  --blue-500: #0a84ff;
  --blue-200: #cfe8ff;
  --blue-100: #eaf5ff;
  --green-700: #08783b;
  --green-600: #0f9f4f;
  --green-500: #30d158;
  --green-200: #c8f2d5;
  --green-100: #ebf9ef;
  --orange-500: #ff9f0a;
  --red-500: #ff453a;
  --white: #ffffff;
  --canvas: #f5f7f9;
  --canvas-blue: #f2f7fc;
  --line: #dce5ec;
  --line-strong: #c7d4df;
  --shadow-sm: 0 1px 2px rgba(7, 18, 32, 0.06), 0 8px 24px rgba(7, 18, 32, 0.05);
  --shadow-md: 0 18px 48px rgba(9, 35, 58, 0.12), 0 4px 14px rgba(9, 35, 58, 0.06);
  --shadow-lg: 0 36px 90px rgba(4, 32, 59, 0.18), 0 8px 24px rgba(4, 32, 59, 0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --content: 1180px;
  --reading-progress: 0%;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-900);
  background: var(--canvas);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue-700);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--blue-600);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(10, 132, 255, 0.45);
  outline-offset: 4px;
  border-radius: 8px;
}

::selection {
  color: var(--ink-950);
  background: var(--green-200);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink-950);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

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

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

.reading-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--blue-500) var(--reading-progress), transparent 0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(245, 247, 249, 0.86);
  border-bottom: 1px solid rgba(199, 212, 223, 0.72);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
}

.nav-row {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-950);
  text-decoration: none;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 5px 16px rgba(0, 102, 214, 0.18);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav > a:not(.button) {
  color: var(--ink-700);
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
}

.desktop-nav > a:not(.button):hover,
.desktop-nav > a[aria-current="page"] {
  color: var(--ink-950);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 76px 0 0;
  padding: 28px 20px;
  background: rgba(245, 247, 249, 0.98);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding-inline: 12px;
  color: var(--ink-900);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
}

.mobile-menu .button {
  justify-content: center;
  margin-top: 22px;
  color: var(--white);
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 19px;
  color: var(--white);
  background: var(--ink-950);
  border: 1px solid var(--ink-950);
  border-radius: 15px;
  box-shadow: 0 10px 26px rgba(7, 18, 32, 0.16);
  text-decoration: none;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--ink-800);
  box-shadow: 0 14px 34px rgba(7, 18, 32, 0.22);
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border-color: var(--blue-600);
  box-shadow: 0 12px 30px rgba(10, 132, 255, 0.28);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
}

.button-secondary {
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover {
  color: var(--ink-950);
  background: var(--white);
}

.button-compact {
  min-height: 44px;
  padding: 10px 15px;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 15px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(48, 209, 88, 0.13);
}

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

h1,
h2,
h3 {
  color: var(--ink-950);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 820;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 11px;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  font-weight: 760;
  letter-spacing: -0.03em;
}

.lede {
  color: var(--ink-700);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.58;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 110px;
  background:
    radial-gradient(circle at 8% 12%, rgba(48, 209, 88, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(10, 132, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #f8fbfd 0%, #eef5fa 100%);
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(10, 132, 255, 0.12);
  border-radius: 50%;
}

.hero::before {
  width: 660px;
  height: 660px;
  top: -330px;
  right: -160px;
}

.hero::after {
  width: 430px;
  height: 430px;
  bottom: -270px;
  left: -170px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
  gap: clamp(48px, 8vw, 108px);
}

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

.hero h1 span {
  color: var(--blue-700);
}

.hero-copy .lede {
  max-width: 680px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-row li,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(199, 212, 223, 0.82);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 680;
}

.trust-row li::before {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  content: "";
  background: var(--green-500);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.app-icon-float {
  position: absolute;
  z-index: 4;
  top: 9%;
  right: 1%;
  width: 112px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  transform: rotate(5deg);
}

.app-icon-float img {
  display: block;
  border-radius: 22px;
}

.phone {
  position: absolute;
  overflow: hidden;
  width: min(72%, 344px);
  padding: 10px;
  background: #0b1017;
  border: 1px solid #263646;
  border-radius: 48px;
  box-shadow: var(--shadow-lg);
}

.phone::after {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 31%;
  height: 28px;
  content: "";
  background: #05080c;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone img {
  display: block;
  width: 100%;
  border-radius: 39px;
}

.phone-primary {
  z-index: 3;
  top: 14px;
  left: 13%;
  transform: rotate(-3.5deg);
}

.phone-secondary {
  z-index: 1;
  top: 120px;
  right: 2%;
  transform: rotate(7deg) scale(0.86);
  filter: saturate(0.92);
}

.floating-note {
  position: absolute;
  z-index: 5;
  max-width: 230px;
  padding: 14px 16px;
  color: var(--ink-800);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(199, 212, 223, 0.8);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.38;
}

.floating-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--green-700);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.note-location {
  right: 2%;
  bottom: 22%;
}

.note-steps {
  left: 0;
  bottom: 5%;
}

.section {
  padding: 112px 0;
}

.section-tight {
  padding: 78px 0;
}

.section-white {
  background: var(--white);
}

.section-blue {
  background: var(--canvas-blue);
}

.section-dark {
  color: #dfeaf4;
  background:
    radial-gradient(circle at 82% 10%, rgba(10, 132, 255, 0.25), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(48, 209, 88, 0.12), transparent 28%),
    var(--ink-950);
}

.section-dark h2,
.section-dark h3,
.section-dark .eyebrow,
.section-dark .lede {
  color: var(--white);
}

.section-dark p {
  color: #b9ccdc;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading .lede {
  margin-bottom: 5px;
}

.center-heading {
  max-width: 800px;
  margin: 0 auto 54px;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

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

.feature-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.feature-panel h3 {
  max-width: 470px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.feature-panel p {
  max-width: 540px;
  color: var(--ink-700);
}

.feature-panel-walk {
  background:
    radial-gradient(circle at 84% 94%, rgba(48, 209, 88, 0.22), transparent 34%),
    linear-gradient(160deg, #ffffff, #f1faf4);
}

.feature-panel-share {
  background:
    radial-gradient(circle at 84% 94%, rgba(10, 132, 255, 0.22), transparent 34%),
    linear-gradient(160deg, #ffffff, #eef7ff);
}

.mini-dashboard {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-metric {
  padding: 17px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(199, 212, 223, 0.74);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.mini-metric span {
  display: block;
  color: var(--ink-600);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mini-metric strong {
  display: block;
  margin-top: 4px;
  color: var(--ink-950);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.share-control-list {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  gap: 10px;
}

.share-control {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(199, 212, 223, 0.8);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 720;
}

.share-control.is-selected {
  color: var(--blue-700);
  background: var(--blue-100);
  border-color: rgba(10, 132, 255, 0.34);
}

.control-dot {
  width: 14px;
  height: 14px;
  background: var(--line-strong);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-strong);
}

.is-selected .control-dot {
  background: var(--blue-500);
  box-shadow: 0 0 0 1px var(--blue-500);
}

.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(46px, 8vw, 104px);
}

.screen-stage {
  position: relative;
  min-height: 720px;
}

.screen-stage .phone {
  top: 0;
  left: 50%;
  width: min(78%, 360px);
  transform: translateX(-50%) rotate(2deg);
}

.screen-stage::before {
  position: absolute;
  inset: 6% 4% 14%;
  content: "";
  background: linear-gradient(145deg, rgba(48, 209, 88, 0.2), rgba(10, 132, 255, 0.13));
  border-radius: 46% 54% 52% 48%;
  filter: blur(1px);
  transform: rotate(-7deg);
}

.check-list,
.plain-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0 0 0 34px;
  margin-bottom: 17px;
  color: var(--ink-700);
}

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  color: var(--green-700);
  content: "✓";
  background: var(--green-100);
  border: 1px solid var(--green-200);
  border-radius: 50%;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--blue-700);
  font-weight: 760;
  text-decoration: none;
}

.text-link:hover {
  gap: 10px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-card {
  position: relative;
  min-height: 278px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
}

.process-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--green-500));
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(10, 132, 255, 0.25);
  place-items: center;
  font-size: 15px;
  font-weight: 850;
}

.process-card h3 {
  color: var(--white);
}

.process-card p {
  margin-bottom: 0;
  color: #b9ccdc;
  font-size: 15px;
}

.consent-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 8vw, 98px);
}

.consent-stack {
  display: grid;
  gap: 14px;
}

.consent-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.consent-card:nth-child(2) {
  transform: translateX(28px);
}

.consent-card:nth-child(3) {
  transform: translateX(7px);
}

.consent-icon,
.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 17px;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
}

.consent-card h3 {
  margin-bottom: 4px;
  font-size: 19px;
}

.consent-card p {
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 14px;
}

.privacy-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.proof-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.proof-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 19px;
}

.proof-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.watch-art {
  position: relative;
  min-height: 500px;
}

.watch-halo {
  position: absolute;
  inset: 8% 5%;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.2), rgba(48, 209, 88, 0.08) 55%, transparent 72%);
  border-radius: 50%;
}

.watch-case {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 268px;
  height: 320px;
  padding: 30px;
  background: linear-gradient(145deg, #293643, #080d13 65%);
  border: 8px solid #65727e;
  border-radius: 74px;
  box-shadow: var(--shadow-lg);
  place-items: center;
  transform: translate(-50%, -50%) rotate(-4deg);
}

.watch-case::before,
.watch-case::after {
  position: absolute;
  left: 50%;
  width: 148px;
  height: 120px;
  content: "";
  background: #19242e;
  border: 1px solid #3a4651;
  transform: translateX(-50%);
}

.watch-case::before {
  top: -108px;
  border-radius: 24px 24px 14px 14px;
}

.watch-case::after {
  bottom: -108px;
  border-radius: 14px 14px 24px 24px;
}

.watch-case img {
  position: relative;
  z-index: 2;
  width: 154px;
  border-radius: 36px;
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.3);
}

.watch-note {
  position: absolute;
  z-index: 4;
  right: 1%;
  bottom: 12%;
  padding: 14px 16px;
  color: var(--orange-500);
  background: var(--ink-900);
  border: 1px solid #33475a;
  border-radius: 17px;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  font-weight: 760;
}

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

.feature-card {
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.feature-card .feature-icon {
  margin-bottom: 28px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 15px;
}

.screenshot-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
}

.screenshot-card {
  padding: 14px 14px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-md);
}

.screenshot-card:nth-child(2) {
  transform: translateY(-24px);
}

.screenshot-card img {
  display: block;
  width: 100%;
  border-radius: 25px;
}

.screenshot-card figcaption {
  padding: 15px 7px 0;
  color: var(--ink-600);
  font-size: 14px;
}

.screenshot-card figcaption strong {
  display: block;
  color: var(--ink-950);
  font-size: 16px;
}

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

.guide-card {
  display: flex;
  min-height: 310px;
  padding: 26px;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.guide-card:hover {
  color: var(--ink-900);
  border-color: rgba(10, 132, 255, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.guide-card .pill {
  width: fit-content;
  margin-bottom: 42px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-color: var(--blue-200);
}

.guide-card p {
  color: var(--ink-600);
  font-size: 15px;
}

.guide-card .text-link {
  margin-top: auto;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  color: var(--ink-950);
  cursor: pointer;
  font-size: 20px;
  font-weight: 760;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--blue-700);
  content: "+";
  background: var(--blue-100);
  border-radius: 50%;
  place-items: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 760px;
  padding: 0 48px 26px 0;
  color: var(--ink-700);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: clamp(34px, 6vw, 68px);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 5%, rgba(48, 209, 88, 0.32), transparent 30%),
    linear-gradient(135deg, #075fad, #0a84ff 58%, #159f6e);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0, 102, 214, 0.26);
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.cta-panel h2 {
  max-width: 760px;
  margin-bottom: 13px;
}

.cta-panel p {
  max-width: 680px;
  margin-bottom: 0;
  opacity: 0.88;
}

.cta-panel .button {
  color: var(--ink-950);
  background: var(--white);
  border-color: var(--white);
  white-space: nowrap;
}

.site-footer {
  padding: 72px 0 30px;
  color: #abc0d2;
  background: var(--ink-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(130px, 0.6fr));
  gap: 46px;
  padding-bottom: 48px;
}

.footer-brand .brand {
  margin-bottom: 18px;
  color: var(--white);
}

.footer-brand p {
  max-width: 390px;
  font-size: 15px;
}

.footer-column h2 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: #abc0d2;
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 13px;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Editorial and secondary pages */
.page-hero {
  padding: 88px 0 68px;
  background:
    radial-gradient(circle at 85% 20%, rgba(10, 132, 255, 0.15), transparent 30%),
    radial-gradient(circle at 10% 15%, rgba(48, 209, 88, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fbfd, #eef5fa);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.9rem, 6vw, 5.3rem);
}

.page-hero .lede {
  max-width: 760px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 28px;
  color: var(--ink-600);
  list-style: none;
  font-size: 14px;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--line-strong);
  content: "/";
}

.breadcrumbs a {
  color: var(--ink-700);
  text-decoration: none;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: start;
  gap: 72px;
}

.article-body {
  min-width: 0;
}

.article-body > p:first-of-type {
  color: var(--ink-800);
  font-size: 21px;
  line-height: 1.62;
}

.article-body h2 {
  margin: 2.1em 0 0.65em;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.article-body h3 {
  margin: 1.8em 0 0.5em;
}

.article-body p,
.article-body li {
  color: var(--ink-700);
}

.article-body li {
  margin-bottom: 8px;
}

.article-body strong {
  color: var(--ink-900);
}

.article-aside {
  position: sticky;
  top: 106px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.article-aside h2 {
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-aside a {
  display: block;
  padding: 7px 0;
  color: var(--ink-700);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.article-aside a:hover {
  color: var(--blue-700);
}

.callout,
.honesty-note {
  padding: 24px;
  margin: 32px 0;
  color: var(--ink-800);
  background: var(--blue-100);
  border: 1px solid var(--blue-200);
  border-radius: 22px;
}

.callout-green {
  background: var(--green-100);
  border-color: var(--green-200);
}

.callout h2,
.callout h3,
.honesty-note h2,
.honesty-note h3 {
  margin: 0 0 9px;
  font-size: 20px;
}

.callout p:last-child,
.honesty-note p:last-child {
  margin-bottom: 0;
}

.comparison-table {
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.comparison-table table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  color: var(--ink-900);
  background: #eef4f8;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.legal-section {
  padding: 80px 0;
}

.legal-section h2 {
  margin-top: 1.9em;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.legal-section h3 {
  margin-top: 1.7em;
}

.legal-section p,
.legal-section li {
  color: var(--ink-700);
}

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

.support-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.support-card p {
  color: var(--ink-600);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .hero-grid,
  .steps-grid,
  .watch-grid,
  .consent-callout {
    gap: 54px;
  }

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

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

  .guide-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 0.6fr);
  }

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

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

  .hero-grid,
  .steps-grid,
  .watch-grid,
  .consent-callout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 670px;
    margin-top: 8px;
  }

  .phone-primary {
    left: 18%;
  }

  .phone-secondary {
    right: 8%;
  }

  .section,
  .section-tight {
    padding: 86px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-split {
    grid-template-columns: 1fr;
  }

  .screen-stage {
    min-height: 700px;
  }

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

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

  .screenshot-card:nth-child(2) {
    transform: none;
  }

  .screenshot-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }

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

  .cta-panel .button {
    width: fit-content;
  }

  .article-layout {
    gap: 40px;
  }

  .article-aside {
    position: static;
    order: -1;
  }
}

@media (max-width: 650px) {
  body {
    font-size: 16px;
  }

  .shell,
  .narrow-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .nav-row {
    min-height: 68px;
  }

  .mobile-menu {
    inset-block-start: 68px;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 13vw, 3.8rem);
  }

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

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

  .phone {
    width: min(76%, 308px);
    border-radius: 42px;
  }

  .phone img {
    border-radius: 33px;
  }

  .phone-primary {
    left: 3%;
  }

  .phone-secondary {
    right: 0;
  }

  .app-icon-float {
    width: 82px;
  }

  .floating-note {
    max-width: 180px;
    padding: 11px 13px;
    font-size: 12px;
  }

  .note-location {
    bottom: 17%;
  }

  .note-steps {
    bottom: 1%;
  }

  .section,
  .section-tight {
    padding: 72px 0;
  }

  .feature-panel {
    min-height: 500px;
    border-radius: 30px;
  }

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

  .mini-metric:last-child {
    display: none;
  }

  .screen-stage {
    min-height: 620px;
  }

  .process-grid,
  .feature-grid,
  .guide-grid,
  .support-grid,
  .screenshot-row {
    grid-template-columns: 1fr;
  }

  .guide-card:last-child:nth-child(odd),
  .screenshot-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .process-card {
    min-height: auto;
  }

  .process-number {
    margin-bottom: 24px;
  }

  .consent-card:nth-child(2),
  .consent-card:nth-child(3) {
    transform: none;
  }

  .watch-art {
    min-height: 470px;
  }

  .watch-case {
    width: 224px;
    height: 274px;
    border-radius: 62px;
  }

  .watch-case img {
    width: 126px;
  }

  .watch-case::before,
  .watch-case::after {
    width: 125px;
  }

  .watch-note {
    right: 0;
  }

  .cta-panel {
    border-radius: 30px;
  }

  .cta-panel .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .reading-progress,
  .article-aside,
  .cta-panel {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .section,
  .page-hero,
  .legal-section {
    padding: 24px 0;
  }

  a {
    color: #000;
  }
}
