:root {
  --navy: #0A1628;
  --navy-2: #0E1C32;
  --charcoal: #16263A;
  --charcoal-2: #1B2E45;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  /* Accent — copper variant baked in (was tweaks accent: copper) */
  --amber: #C97B3F;
  --amber-2: #DA9258;
  --blue: #4A90D9;
  --blue-2: #6FA9E5;
  --text: #F2F4F8;
  --text-dim: #9BA8BC;
  --text-mute: #5E6B80;
  --danger: #E25A4A;
  --green: #4CAF8A;
  --display: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  /* iOS Safari needs both html and body to clip horizontally — body alone is
     not enough when descendants escape via negative offsets / pseudo-elements. */
  overflow-x: clip;
  max-width: 100%;
}
body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ----- Layout ----- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ----- Nav ----- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: rgba(10, 22, 40, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand-mark {
  width: 32px; height: 32px;
  background: url('/app-icon.png') center / contain no-repeat;
  border-radius: 7px;
  flex-shrink: 0;
}
.brand-mark::before, .brand-mark::after { display: none; }
.ft-col .brand-mark { width: 28px; height: 28px; border-radius: 6px; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px;
  color: var(--text-dim);
}
.nav-links a:hover { color: var(--text); }
.lang {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-left: 8px;
}
.lang a {
  padding: 6px 9px;
  color: var(--text-mute);
  border-right: 1px solid var(--line);
  transition: all 0.15s;
  text-transform: uppercase;
}
.lang a:last-child { border-right: none; }
.lang a[aria-current="true"] {
  background: var(--amber);
  color: var(--navy);
  font-weight: 600;
}
.lang a:not([aria-current="true"]):hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.nav-cta {
  background: var(--text);
  color: var(--navy);
  padding: 9px 16px;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--amber); color: var(--navy); }
@media (max-width: 860px) {
  .nav-link-text { display: none; }
}

/* ----- HERO ----- */
.hero {
  padding: 96px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 56px 0 64px; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--amber);
}
.h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.h1 .accent {
  color: var(--amber);
  font-style: normal;
  position: relative;
}
.h1 .accent::after {
  content: '.';
  color: var(--amber);
}
.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 0 40px;
}
.lede strong { color: var(--text); font-weight: 600; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  position: relative;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 0 0 1px rgba(201, 123, 63, 0.4), 0 12px 32px -8px rgba(201, 123, 63, 0.45);
}
.btn-primary:hover {
  background: var(--amber-2);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(218, 146, 88, 0.5), 0 16px 36px -8px rgba(201, 123, 63, 0.55);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.22); color: var(--text); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

.hero-meta {
  display: flex; gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.hero-meta span { color: var(--text-dim); }
.hero-meta .dot { color: var(--amber); }

/* ----- Phone mockup ----- */
.phone-wrap {
  display: flex; justify-content: center;
  position: relative;
}
.phone-wrap::before {
  content: ''; position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(74, 144, 217, 0.18) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
/* On viewports where the hero stacks (single column), the glow's negative
   inset is what was causing horizontal scroll on mobile. Pull it inside. */
@media (max-width: 960px) {
  .phone-wrap::before { inset: 0; }
}
.phone {
  position: relative;
  width: 320px; height: 640px;
  background: #050B14;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 60px -10px rgba(74, 144, 217, 0.2);
  z-index: 1;
}
.phone::before {
  content: ''; position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #050B14;
  border-radius: 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #0F1E36 0%, #0A1628 50%, #0E1C32 100%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px 0;
  font-size: 12px; font-weight: 600;
  color: var(--text);
}
.phone-status-icons { display: flex; gap: 4px; align-items: center; font-size: 10px; }
.phone-content {
  flex: 1;
  padding: 56px 24px 24px;
  display: flex; flex-direction: column;
}
.phase-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.phase-title {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.phase-sub {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 28px;
}
.phase-day {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.phase-day b { color: var(--text); font-weight: 500; font-size: 12px; }
.phase-ring {
  width: 100%; aspect-ratio: 1; max-width: 220px;
  margin: 0 auto 24px;
  position: relative;
}
.phase-ring svg { width: 100%; height: 100%; }
.phase-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.phase-center .num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.phase-center .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 4px;
}
.phase-action {
  margin-top: auto;
  padding: 14px 16px;
  background: rgba(201, 123, 63, 0.08);
  border: 1px solid rgba(201, 123, 63, 0.25);
  border-radius: 10px;
  display: flex; align-items: center; gap: 12px;
}
.phase-action-icon {
  width: 32px; height: 32px;
  background: var(--amber);
  color: var(--navy);
  display: grid; place-items: center;
  border-radius: 6px;
  flex-shrink: 0;
  font-weight: 700;
}
.phase-action-text {
  font-size: 12px;
  line-height: 1.35;
}
.phase-action-text b { display: block; color: var(--text); font-weight: 600; }
.phase-action-text span { color: var(--text-dim); }

.phone-pill {
  position: absolute;
  background: rgba(20, 30, 48, 0.92);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.6);
  z-index: 3;
  display: flex; align-items: center; gap: 10px;
}
.phone-pill .dot-g { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); }
.phone-pill .dot-a { width: 8px; height: 8px; background: var(--amber); border-radius: 50%; box-shadow: 0 0 8px var(--amber); }
.pill-1 { top: 80px; right: -40px; }
.pill-2 { bottom: 100px; left: -50px; }
@media (max-width: 960px) {
  .pill-1 { right: -10px; }
  .pill-2 { left: -10px; }
}
@media (max-width: 480px) {
  .phone { width: 280px; height: 560px; }
  .pill-1, .pill-2 { display: none; }
}

/* ----- Section header ----- */
section { position: relative; z-index: 1; }
.section { padding: 96px 0; border-top: 1px solid var(--line); }
@media (max-width: 720px) { .section { padding: 64px 0; } }
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .sec-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; } }
.sec-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.sec-desc {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 440px;
  line-height: 1.55;
}

/* ----- Card grid ----- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) { .grid-2 { grid-template-columns: 1fr; } }
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(28, 43, 64, 0.6) 0%, rgba(22, 38, 58, 0.4) 100%);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
  color: inherit;
}
.card:hover {
  border-color: rgba(201, 123, 63, 0.35);
  transform: translateY(-2px);
  color: inherit;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 1px;
  background: var(--amber);
}
.card-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: var(--amber);
}
.card-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.card-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  text-wrap: balance;
  color: var(--text);
}
.card-text {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
.card-link {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
.card-link:hover { color: var(--amber-2); }

/* ----- Timeline ----- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(22, 38, 58, 0.4) 0%, rgba(14, 28, 50, 0.3) 100%);
}
@media (max-width: 960px) { .timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; } }
.tl-item {
  padding: 32px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.2s;
}
.tl-item:last-child { border-right: none; }
@media (max-width: 960px) {
  .tl-item:nth-child(2) { border-right: none; }
  .tl-item:nth-child(1), .tl-item:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .tl-item { border-right: none; border-bottom: 1px solid var(--line); }
  .tl-item:last-child { border-bottom: none; }
}
.tl-item:hover { background: rgba(255, 255, 255, 0.02); }
.tl-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.tl-num .ph {
  color: var(--text-mute);
  font-size: 10px;
}
.tl-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--text);
}
.tl-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.tl-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  text-wrap: balance;
}
.tl-text {
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}
.tl-progress {
  display: flex; gap: 4px;
  margin-bottom: 24px;
}
.tl-progress span {
  flex: 1; height: 2px; background: var(--line);
}
.tl-progress span.on { background: var(--amber); }

/* ----- FAQ ----- */
.faq {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.15s;
}
.faq-q:hover { color: var(--amber); }
.faq-q-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 32px;
}
.faq-q-text { flex: 1; text-wrap: balance; }
.faq-toggle {
  width: 32px; height: 32px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all 0.2s;
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: ''; position: absolute;
  background: var(--text);
  transition: transform 0.25s;
}
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-toggle {
  background: var(--amber);
  border-color: var(--amber);
}
.faq-item.open .faq-toggle::before, .faq-item.open .faq-toggle::after { background: var(--navy); }
.faq-item.open .faq-toggle::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 56px 28px 32px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
  max-width: 720px;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ----- CTA ----- */
.cta-section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201, 123, 63, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(74, 144, 217, 0.14) 0%, transparent 60%),
    linear-gradient(135deg, #0E1C32 0%, #16263A 100%);
  z-index: 0;
}
.cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black, transparent 80%);
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-eye {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.cta-sub {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 40px;
}
.stores {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  background: var(--text);
  color: var(--navy);
  border: 1px solid var(--text);
  transition: all 0.2s;
}
.store:hover {
  background: transparent;
  color: var(--text);
}
.store svg { width: 22px; height: 22px; }
.store .small { font-size: 10px; line-height: 1; opacity: 0.7; font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.store .big { font-size: 16px; font-weight: 700; line-height: 1.1; font-family: var(--display); letter-spacing: -0.01em; }
.store-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }

.price-tag {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 32px;
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  background: rgba(0, 0, 0, 0.3);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.price-tag b { color: var(--amber); font-weight: 600; }

/* ----- Footer ----- */
footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 56px;
  position: relative; z-index: 1;
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.ft-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 16px;
  font-weight: 500;
}
.ft-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ft-col a { color: var(--text-dim); font-size: 14px; }
.ft-col a:hover { color: var(--text); }
.ft-blurb {
  color: var(--text-dim); font-size: 14px; line-height: 1.6; max-width: 320px; margin: 16px 0 0;
}
.ft-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}

/* ----- Article body (long-form prose) ----- */
.article {
  padding: 64px 0 96px;
}
.article-head {
  max-width: 760px;
  margin: 0 auto 48px;
}
.article-meta {
  display: flex; gap: 16px; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.article-meta .tag-amber { color: var(--amber); }
.article h1 {
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.article-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}
.article-body h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 48px 0 16px;
  text-wrap: balance;
}
.article-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  margin: 32px 0 12px;
}
.article-body p, .article-body ul, .article-body ol {
  margin: 0 0 18px;
  color: var(--text-dim);
}
.article-body p strong { color: var(--text); font-weight: 600; }
.article-body ul, .article-body ol { padding-left: 1.2em; }
.article-body li { margin-bottom: 6px; }
.article-body li::marker { color: var(--amber); }
.article-body a { color: var(--amber); border-bottom: 1px solid rgba(201, 123, 63, 0.4); }
.article-body a:hover { border-bottom-color: var(--amber); }
.article-body em { color: var(--text); font-style: italic; }

/* ----- Articles hub ----- */
.hub-head {
  padding: 80px 0 48px;
  max-width: 760px;
  margin: 0 auto;
}
.hub-head .eyebrow { margin-bottom: 20px; }
.hub-head h1 {
  font-family: var(--display);
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.hub-head p {
  font-size: 18px;
  color: var(--text-dim);
  margin: 0;
}
.hub-cluster { padding: 32px 0 64px; }
.hub-cluster-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.hub-cluster-head h2 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.hub-cluster-head .count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
}

/* ----- Legacy compat for legal pages (privacy/terms/support) ----- */
.article.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}
@media (max-width: 720px) { .article.container { padding: 48px 20px 64px; } }
.article.container > header { margin-bottom: 32px; }
.article.container > header h1 {
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0 0 12px;
}
.muted {
  color: var(--text-mute);
  font-size: 14px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.article__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}
.article__body h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 48px 0 16px;
  text-wrap: balance;
}
.article__body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  margin: 32px 0 12px;
}
.article__body p, .article__body ul, .article__body ol {
  margin: 0 0 18px;
  color: var(--text-dim);
}
.article__body p strong { color: var(--text); font-weight: 600; }
.article__body ul, .article__body ol { padding-left: 1.2em; }
.article__body li { margin-bottom: 6px; }
.article__body li::marker { color: var(--amber); }
.article__body a { color: var(--amber); border-bottom: 1px solid rgba(201, 123, 63, 0.4); }
.article__body a:hover { border-bottom-color: var(--amber); }
.article__body em { color: var(--text); font-style: italic; }

/* ----- Coming-soon store button variant ----- */
.store--soon {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
  border-color: var(--line-2);
  cursor: default;
}
.store--soon:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
}
.store--soon .small { color: var(--text); opacity: 0.85; }
.store--soon .big { color: var(--amber); }

/* ----- Phone mockup with real app screenshot ----- */
.phone--shot::before { display: none; }
.phone--shot {
  padding: 8px;
  border-radius: 48px;
  width: 320px;
  height: 700px;
  overflow: hidden;
  background: #050B14;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
@media (max-width: 480px) {
  .phone--shot { width: 280px; height: 612px; }
}
.phone-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 40px;
}

/* ----- Related articles block at the end of article body ----- */
.article-related {
  max-width: 1040px;
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.article-related-h {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--text-mute);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
}
