:root {
  --ink: #17181c;
  --ink-soft: #3d4350;
  --muted: #69707d;
  --faint: #9ba3af;
  --accent: #2563eb;
  --accent-deep: #174ea6;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --sage: #0f9f80;
  --sage-soft: rgba(15, 159, 128, 0.12);
  --gold: #c78b16;
  --gold-soft: rgba(199, 139, 22, 0.14);
  --paper: #f7f8f5;
  --paper-strong: #ffffff;
  --paper-warm: #eceff3;
  --line: rgba(23, 24, 28, 0.12);
  --line-strong: rgba(23, 24, 28, 0.2);
  --night: #17181c;
  --night-lift: #262b35;
  --shadow-soft: 0 18px 45px rgba(25, 32, 46, 0.09);
  --shadow: 0 32px 90px rgba(25, 32, 46, 0.15);
  --max: 1180px;
  --radius-xl: 48px;
  --radius-lg: 34px;
  --radius-md: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "SF Pro Rounded", "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 36%),
    linear-gradient(225deg, rgba(15, 159, 128, 0.08), transparent 34%),
    linear-gradient(180deg, #fbfcfd 0%, #f3f5f7 48%, #e7ebef 100%);
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 24, 28, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(23, 24, 28, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.06em;
  line-height: 0.95;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 24, 28, 0.08);
  background: rgba(251, 252, 253, 0.82);
  backdrop-filter: blur(24px);
}

.nav-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(145deg, #17181c, #2563eb);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.18);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 820;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.hero {
  padding: 82px 0 54px;
}

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

.eyebrow,
.section-kicker,
.plan-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  padding: 10px 14px;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

h1 {
  max-width: 790px;
  margin-top: 22px;
  font-size: clamp(3.55rem, 7vw, 7.3rem);
}

.hero-lede {
  max-width: 640px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.25);
}

.button-soft {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero-note {
  display: grid;
  gap: 5px;
  max-width: 580px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.hero-note strong {
  color: var(--ink);
}

.hero-note span {
  color: var(--muted);
  line-height: 1.5;
}

.hero-product {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 58px;
  background:
    radial-gradient(circle at 30% 14%, rgba(255, 255, 255, 0.84), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.11), transparent 48%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(233, 238, 244, 0.9));
  box-shadow: var(--shadow);
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-orbit-one {
  width: 340px;
  height: 340px;
  right: -105px;
  top: 42px;
  background: rgba(37, 99, 235, 0.12);
}

.hero-orbit-two {
  width: 390px;
  height: 390px;
  left: -120px;
  bottom: -140px;
  background: rgba(15, 159, 128, 0.13);
}

.device-stage {
  position: absolute;
  inset: 94px 0 54px;
}

.device-card {
  position: absolute;
  overflow: hidden;
  padding: 10px;
  border-radius: 48px;
  background: #17181c;
  box-shadow: 0 34px 82px rgba(25, 32, 46, 0.28);
}

.device-card img {
  width: 100%;
  border-radius: 38px;
}

.device-card-front {
  z-index: 2;
  right: 78px;
  top: 12px;
  width: 330px;
}

.device-card-back {
  z-index: 1;
  left: 70px;
  top: 146px;
  width: 282px;
  opacity: 0.64;
  transform: rotate(-6deg);
}

.product-tag {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(25, 32, 46, 0.12);
  backdrop-filter: blur(16px);
}

.product-tag span,
.product-tag strong {
  display: block;
}

.product-tag span {
  color: var(--muted);
  line-height: 1.45;
}

.tag-live {
  top: 30px;
  left: 30px;
  padding: 16px 18px;
}

.tag-live span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-live strong {
  margin-top: 6px;
  font-size: 1.18rem;
}

.tag-context {
  right: 30px;
  bottom: 30px;
  max-width: 340px;
  padding: 18px 20px;
}

.tag-context strong {
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.section {
  padding: 62px 0;
}

.intro-panel,
.privacy-grid,
.premium-panel,
.final-cta {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.76), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(234, 239, 245, 0.9));
  box-shadow: var(--shadow-soft);
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  padding: 42px;
}

.intro-panel p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

h2 {
  margin-top: 16px;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
}

h3 {
  font-size: 1.65rem;
}

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

.value-card,
.feature-tile,
.screen-card,
.plan-card,
.final-links a,
.privacy-list div,
.legal-panel,
.support-panel,
.support-note,
.app-store-link {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
}

.value-card {
  min-height: 254px;
  padding: 26px;
  border-radius: 32px;
}

.value-card span {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.value-card h3 {
  margin-top: 46px;
}

.value-card p {
  margin-top: 12px;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.product-panel-copy {
  max-width: 720px;
}

.product-panel-copy h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.product-panel-copy p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.loop-section {
  padding-top: 42px;
}

.loop-panel {
  overflow: hidden;
  padding: 46px;
  border-radius: 54px;
  background:
    radial-gradient(circle at 86% 8%, rgba(37, 99, 235, 0.24), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(15, 159, 128, 0.18), transparent 30%),
    linear-gradient(145deg, var(--night-lift), var(--night));
  box-shadow: 0 34px 92px rgba(25, 32, 46, 0.26);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

.centered-heading .section-kicker {
  margin-inline: auto;
}

.section-heading p,
.final-copy p,
.privacy-grid p {
  margin-top: 16px;
  font-size: 1.08rem;
}

.loop-panel h2,
.loop-panel h3,
.loop-panel .step-number {
  color: #ffffff;
}

.loop-panel p {
  color: rgba(255, 250, 244, 0.72);
}

.section-kicker-dark {
  color: #ffd9ca;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

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

.loop-steps article {
  position: relative;
  min-height: 252px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
}

.step-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.loop-steps h3 {
  margin-top: 48px;
}

.loop-steps p {
  margin-top: 12px;
}

.screen-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.screen-card {
  display: flex;
  min-height: 650px;
  margin: 0;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 236, 224, 0.92));
}

.screen-card-large {
  min-height: 650px;
}

.screen-image {
  display: grid;
  min-height: 0;
  place-items: start center;
  padding: 28px 28px 0;
  overflow: hidden;
}

.screen-card img {
  width: min(100%, 340px);
  border-radius: 32px;
  box-shadow: 0 26px 60px rgba(25, 32, 46, 0.14);
}

.screen-card-large img {
  width: min(100%, 340px);
}

.screen-card figcaption {
  padding: 24px 26px 28px;
}

.screen-card figcaption span,
.feature-tile span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-card figcaption strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

.screen-card figcaption p {
  margin-top: 10px;
}

.feature-board {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: start;
}

.feature-board-heading {
  position: sticky;
  top: 104px;
}

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

.feature-tile {
  min-height: 230px;
  padding: 26px;
  border-radius: 32px;
}

.feature-tile h3 {
  margin-top: 22px;
}

.feature-tile p {
  margin-top: 12px;
}

.tile-wide {
  grid-column: span 2;
  min-height: 260px;
  background:
    radial-gradient(circle at 82% 10%, rgba(37, 99, 235, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.68);
}

.tile-accent {
  border-color: rgba(15, 159, 128, 0.18);
  background:
    radial-gradient(circle at 18% 10%, rgba(15, 159, 128, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.66);
}

.privacy-section {
  padding-top: 36px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
}

.privacy-list {
  display: grid;
  gap: 14px;
}

.privacy-list div {
  padding: 18px;
  border-radius: 24px;
}

.privacy-list strong,
.privacy-list span {
  display: block;
}

.privacy-list span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.learn-teaser,
.learn-hero-panel,
.checklist-hero,
.mini-cta,
.article-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.9), rgba(246, 234, 222, 0.92));
  box-shadow: var(--shadow-soft);
}

.learn-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 42px;
}

.learn-teaser p,
.learn-hero-panel p,
.checklist-hero p,
.article-hero-panel p,
.mini-cta p {
  margin-top: 16px;
  font-size: 1.08rem;
}

.learn-teaser-links {
  display: grid;
  gap: 12px;
}

.learn-teaser-links a {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-weight: 850;
  padding: 16px 18px;
  box-shadow: 0 14px 34px rgba(25, 32, 46, 0.08);
  transition: transform 0.18s ease, background 0.18s ease;
}

.learn-teaser-links a:hover,
.learn-teaser-links a:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.learn-hero,
.article-hero {
  padding: 76px 0 28px;
}

.learn-hero-panel,
.article-hero-panel {
  padding: 44px;
}

.learn-hero-panel h1,
.article-hero-panel h1,
.checklist-hero h1 {
  max-width: 980px;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
}

.learn-hero-panel p,
.article-hero-panel p,
.checklist-hero p {
  max-width: 820px;
}

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

.learn-card,
.download-card,
.article-card,
.article-sidebar,
.source-box,
.checklist-preview {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.learn-card {
  display: block;
  min-height: 270px;
  border-radius: 34px;
  padding: 28px;
  transition: transform 0.18s ease, background 0.18s ease;
}

.learn-card:hover,
.learn-card:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.learn-card span,
.download-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.learn-card h2,
.download-card h2 {
  margin-top: 44px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.learn-card p,
.download-card p {
  margin-top: 14px;
}

.learn-card-featured,
.learn-card-download {
  background:
    radial-gradient(circle at 86% 10%, rgba(37, 99, 235, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.7);
}

.article-copy {
  padding: 22px 0 64px;
}

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

.article-sidebar {
  position: sticky;
  top: 104px;
  border-radius: 28px;
  padding: 22px;
}

.article-sidebar strong,
.article-sidebar a {
  display: block;
}

.article-sidebar p {
  margin-top: 10px;
}

.article-sidebar a {
  width: fit-content;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
  padding: 11px 15px;
}

.article-body {
  display: grid;
  gap: 28px;
}

.article-body section {
  border-bottom: 1px solid rgba(23, 24, 28, 0.1);
  padding-bottom: 28px;
}

.article-body section:last-child {
  border-bottom: none;
}

.article-body h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.article-body p {
  max-width: 820px;
  margin-top: 14px;
  font-size: 1.06rem;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.article-card {
  display: grid;
  gap: 8px;
  border-radius: 24px;
  padding: 18px;
}

.article-card strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.article-card span {
  color: var(--muted);
  line-height: 1.48;
}

.example-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.example-list div {
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  line-height: 1.55;
  padding: 15px 18px;
}

.source-box {
  border-radius: 30px;
  padding: 24px;
}

.source-box ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.source-box a {
  color: var(--accent-deep);
  font-weight: 850;
}

.checklist-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  gap: 34px;
  align-items: center;
  padding: 44px;
}

.checklist-preview {
  display: grid;
  gap: 12px;
  border-radius: 34px;
  padding: 26px;
}

.checklist-preview span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checklist-preview strong {
  border-radius: 18px;
  background: rgba(244, 232, 220, 0.82);
  padding: 14px 16px;
}

.checklist-preview p {
  font-size: 0.98rem;
}

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

.download-card {
  border-radius: 34px;
  padding: 28px;
}

.download-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.mini-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 38px;
}

.premium-panel {
  padding: 42px;
}

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

.plan-card {
  padding: 30px;
  border-radius: 34px;
}

.plan-card h3 {
  margin-top: 16px;
}

.plan-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.plan-card li + li {
  margin-top: 8px;
}

.plan-card-premium {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.24), transparent 34%),
    linear-gradient(145deg, #4b3934, #2f2422);
}

.plan-card-premium h3,
.plan-card-premium li {
  color: #ffffff;
}

.plan-card-premium .plan-label {
  color: #ffd9ca;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.final-section {
  padding-bottom: 74px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.74fr);
  gap: 28px;
  align-items: stretch;
  padding: 42px;
}

.final-links {
  display: grid;
  gap: 14px;
}

.final-links a {
  display: block;
  padding: 18px;
  border-radius: 24px;
}

.final-links strong,
.final-links span {
  display: block;
}

.final-links span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row a,
.footer-social a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 850;
  padding: 0 14px;
  transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.social-row a:hover,
.social-row a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}

.site-footer {
  color: var(--muted);
  padding: 0 0 48px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(23, 24, 28, 0.12);
  padding-top: 24px;
}

.footer-links,
.footer-meta,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.legal-hero,
.support-hero {
  padding: 76px 0 24px;
}

.legal-panel,
.support-panel {
  padding: 36px;
  border-radius: 38px;
}

.legal-panel h1,
.support-panel h1 {
  font-size: clamp(3rem, 8vw, 6.6rem);
}

.legal-panel p,
.support-panel p {
  max-width: 860px;
  margin-top: 18px;
  font-size: 1.07rem;
}

.legal-copy,
.support-copy {
  padding: 22px 0 54px;
}

.legal-section,
.support-section {
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 24, 28, 0.1);
}

.legal-section:last-child,
.support-section:last-child {
  border-bottom: none;
}

.legal-section h2,
.support-section h2 {
  font-size: 1.75rem;
}

.legal-section p,
.support-section p,
.support-section li {
  max-width: 900px;
}

.legal-section p + p,
.support-section p + p {
  margin-top: 10px;
}

.support-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
}

.download-panel {
  margin: 22px 0 18px;
}

.app-store-link {
  display: block;
  padding: 18px 20px 20px;
  border-radius: 24px;
}

.app-store-eyebrow,
.app-store-link strong,
.app-store-link span {
  display: block;
}

.app-store-eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-store-link strong {
  margin-top: 8px;
  font-size: 1.25rem;
}

.app-store-link span:last-child {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .intro-panel,
  .product-panel,
  .screen-showcase,
  .feature-board,
  .privacy-grid,
  .learn-teaser,
  .learn-grid,
  .article-layout,
  .checklist-hero,
  .checklist-grid,
  .comparison-grid,
  .final-cta,
  .value-row,
  .loop-steps {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-product {
    min-height: 700px;
  }

  .device-card-front {
    right: 16%;
  }

  .device-card-back {
    left: 12%;
  }

  .feature-board-heading {
    position: static;
  }

  .article-sidebar {
    position: static;
  }

  .value-card,
  .loop-steps article {
    min-height: auto;
  }

  .value-card h3,
  .loop-steps h3 {
    margin-top: 28px;
  }

  .product-panel-actions {
    justify-content: flex-start;
  }

  .screen-card,
  .screen-card-large {
    min-height: auto;
  }

  .screen-image {
    max-height: 640px;
  }
}

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

  .site-header {
    position: static;
  }

  .nav-row {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-links a {
    padding: 8px 10px;
  }

  .hero {
    padding: 46px 0 34px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.65rem);
  }

  h2 {
    font-size: clamp(2.18rem, 10vw, 3.25rem);
  }

  .hero-product {
    min-height: 620px;
    border-radius: 38px;
  }

  .device-stage {
    inset: 102px 0 74px;
  }

  .device-card-front {
    right: 50%;
    width: 270px;
    transform: translateX(50%);
  }

  .device-card-back {
    display: none;
  }

  .tag-live {
    top: 20px;
    left: 20px;
    right: 20px;
  }

  .tag-context {
    right: 20px;
    bottom: 20px;
    left: 20px;
    max-width: none;
  }

  .section {
    padding: 44px 0;
  }

  .intro-panel,
  .product-panel,
  .loop-panel,
  .privacy-grid,
  .learn-teaser,
  .learn-hero-panel,
  .article-hero-panel,
  .checklist-hero,
  .mini-cta,
  .premium-panel,
  .final-cta,
  .legal-panel,
  .support-panel {
    padding: 24px;
    border-radius: 32px;
  }

  .value-card,
  .feature-tile {
    min-height: auto;
  }

  .value-card h3,
  .loop-steps h3 {
    margin-top: 28px;
  }

  .product-panel-actions .button {
    width: 100%;
  }

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

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

  .mini-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .tile-wide {
    grid-column: auto;
  }

  .screen-card img,
  .screen-card-large img {
    width: min(100%, 270px);
  }

  .screen-image {
    padding: 22px 22px 0;
  }
}
