/* TrustRoute marketing — editorial, dock-nav, no feature-grid clichés */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;1,6..72,400&display=swap');

/* Matches mobile lightPalette (WelcomeScreen / ThemeProvider) */
:root {
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #22c55e;
  --green: var(--primary);
  --green-d: var(--primary-dark);
  --green-glow: rgba(22, 163, 74, 0.35);
  --green-soft: rgba(22, 163, 74, 0.08);
  --ink: #111827;
  --ink-2: #374151;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --cream: #f5f4f0;
  --cream-2: #eceae4;
  --paper: #ffffff;
  --grad-top: #f0fdf4;
  --coral: #dc2626;
  --amber: #d97706;
  --blue: #2563eb;
  --border: #eceae4;
  --radius: 20px;
  --radius-lg: 32px;
  --brand-h: 64px;
  --dock-h: 88px;
  --font: 'Nunito', system-ui, sans-serif;
  --serif: 'Newsreader', Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme='dark'] {
  --ink: #f9fafb;
  --ink-2: #e5e7eb;
  --muted: #9ca3af;
  --muted-2: #6b7280;
  --cream: #0a0b1a;
  --cream-2: #141528;
  --paper: #1e2040;
  --border: #2a2d55;
  --grad-top: #0f172a;
  --green-glow: rgba(34, 197, 94, 0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  padding-top: var(--brand-h);
  padding-bottom: var(--dock-h);
  overflow-x: hidden;
}

/* Brand lockup — matches WelcomeScreen (green shield + white logo) */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 55%, var(--primary-dark) 100%);
  box-shadow: 0 8px 24px var(--green-glow);
}
.brand-mark img {
  object-fit: contain;
  filter: none;
}
.brand-mark--sm {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  padding: 7px;
}
.brand-mark--md {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  padding: 9px;
}
.brand-mark--lg {
  width: 88px;
  height: 88px;
  border-radius: 26px;
  padding: 14px;
}
.brand-mark--hero {
  width: 100px;
  height: 100px;
  border-radius: 30px;
  padding: 16px;
}
.brand-wordmark {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.brand-wordmark--sm { font-size: 1.15rem; }
.brand-wordmark--md { font-size: 1.35rem; }
.brand-wordmark--lg { font-size: 2rem; }
.brand-wordmark--hero { font-size: clamp(2rem, 6vw, 2.75rem); }
.brand-accent { color: var(--primary); }

.site-brand {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  height: var(--brand-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.site-brand .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 92vw);
  margin-inline: auto;
}
.site-brand-tagline {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: none;
}
@media (min-width: 720px) {
  .site-brand-tagline { display: block; }
}
.brand-lockup--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.hero-brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-brand-stack .brand-tagline-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
  max-width: 28ch;
}
.site-foot-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--green); color: #fff; }

.wrap { width: min(1120px, 92vw); margin-inline: auto; }
.serif { font-family: var(--serif); font-weight: 400; }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
h1, h2, h3 { font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
.display { font-size: clamp(2.6rem, 8vw, 5.2rem); }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: var(--muted); max-width: 52ch; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 40px var(--green-glow);
}
.btn-primary:hover { background: var(--green-d); }
.btn-ghost {
  border: 2px solid var(--ink);
  color: var(--ink);
}
[data-theme='dark'] .btn-ghost { border-color: var(--ink-2); }
.btn-coral { background: var(--coral); color: #fff; }

/* grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay='1'] { transition-delay: 0.12s; }
[data-reveal-delay='2'] { transition-delay: 0.24s; }
[data-reveal-delay='3'] { transition-delay: 0.36s; }

/* dock nav — bottom center */
.dock {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  width: min(96vw, 640px);
}
.dock-pill {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.45rem 0.55rem;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  border-radius: 999px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}
[data-theme='dark'] .dock-pill {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.dock-link {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.5rem 0.35rem;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.dock-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  overflow: visible;
}
.dock-theme svg {
  stroke-width: 2.25;
}
.dock-link span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.dock-link:hover { color: var(--ink); background: color-mix(in srgb, var(--green) 12%, transparent); }
.dock-link.is-active {
  color: var(--green);
  background: color-mix(in srgb, var(--green) 18%, transparent);
}
.dock-theme { flex: 0 0 auto; }

/* sheet */
.sheet { position: fixed; inset: 0; z-index: 9500; }
.sheet[hidden] { display: none; }
.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.28s;
}
.sheet-panel {
  position: absolute;
  bottom: calc(var(--dock-h) + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(24px);
  width: min(92vw, 360px);
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  opacity: 0;
  transition: transform 0.32s var(--ease), opacity 0.32s;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}
.sheet.is-open .sheet-backdrop { opacity: 1; }
.sheet.is-open .sheet-panel { transform: translateX(-50%) translateY(0); opacity: 1; }
.sheet-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.sheet-close { font-size: 1.5rem; line-height: 1; color: var(--muted); }
.sheet-links { display: flex; flex-direction: column; gap: 0.35rem; }
.sheet-links a {
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  transition: background 0.2s;
}
.sheet-links a:hover { background: var(--cream-2); }

/* hero home */
.hero-canvas {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0 6rem;
  overflow: hidden;
}
.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--green) 25%, transparent);
  pointer-events: none;
}
.hero-orbit-1 { width: 120vw; height: 120vw; top: -40%; left: -30%; opacity: 0.5; }
.hero-orbit-2 { width: 80vw; height: 80vw; bottom: -20%; right: -25%; opacity: 0.35; }
.hero-blob {
  position: absolute;
  width: 55vw;
  max-width: 520px;
  aspect-ratio: 1;
  right: -8%;
  top: 18%;
  background: radial-gradient(circle at 30% 30%, var(--green-glow), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--paper);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.hero-device {
  position: relative;
  justify-self: center;
  width: min(280px, 75vw);
}
.phone-frame {
  background: var(--ink);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.25);
  transform: rotate(-4deg);
  animation: float-phone 6s ease-in-out infinite;
}
@keyframes float-phone {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-12px); }
}
.phone-screen {
  background: linear-gradient(180deg, var(--grad-top) 0%, var(--paper) 55%);
  border-radius: 34px;
  overflow: hidden;
  aspect-ratio: 9/19;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.phone-screen .brand-mark--md { margin: 0 auto 0.5rem; }
.phone-screen .brand-wordmark--sm { justify-content: center; }
.phone-screen .brand-tagline-mini {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 0.25rem;
}
.phone-ui-trust {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
}
.phone-ui-handle { font-size: 0.85rem; font-weight: 700; color: var(--muted); }
.phone-ui-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--cream-2);
  overflow: hidden;
  margin-top: 0.5rem;
}
.phone-ui-bar span { display: block; height: 100%; width: 78%; background: var(--green); border-radius: 4px; }
.phone-ui-modes { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.phone-ui-mode {
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  background: var(--paper);
  border: 1px solid var(--cream-2);
}

/* marquee */
.marquee {
  overflow: hidden;
  padding: 1.25rem 0;
  border-block: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  background: var(--ink);
  color: var(--cream);
}
.marquee-inner { display: flex; width: max-content; }
.marquee-track {
  display: flex;
  gap: 3rem;
  padding-right: 3rem;
  animation: marquee 28s linear infinite;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* proof strip */
.proof-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: color-mix(in srgb, var(--ink) 10%, transparent);
  margin: 4rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 700px) { .proof-band { grid-template-columns: repeat(4, 1fr); } }
.proof-cell {
  background: var(--paper);
  padding: 2rem 1.5rem;
  text-align: center;
}
.proof-cell strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.04em;
}
.proof-cell span { font-size: 0.82rem; color: var(--muted); font-weight: 600; }

/* split paths — not a grid */
.path-duo {
  display: grid;
  gap: 1.5rem;
  margin: 5rem 0;
}
@media (min-width: 800px) { .path-duo { grid-template-columns: 1fr 1fr; } }
.path-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.path-card:hover { transform: translateY(-6px); }
.path-card-you {
  background: linear-gradient(165deg, #0d2818 0%, #16a34a 55%, #4ade80 100%);
  color: #fff;
}
.path-card-biz {
  background: linear-gradient(165deg, #1a1208 0%, #d97706 50%, #fbbf24 100%);
  color: #fff;
}
.path-card h3 { font-size: 2rem; margin-bottom: 0.75rem; }
.path-card p { opacity: 0.9; max-width: 32ch; margin-bottom: 1.5rem; font-weight: 500; }
.path-card .btn { align-self: flex-start; background: #fff; color: var(--ink); }
.path-deco {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 120px;
  height: 120px;
  opacity: 0.2;
}

/* editorial stack */
.editorial {
  padding: 5rem 0;
}
.editorial-row {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}
@media (min-width: 860px) {
  .editorial-row { grid-template-columns: 1fr 1fr; }
  .editorial-row.flip { direction: rtl; }
  .editorial-row.flip > * { direction: ltr; }
}
.editorial-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--paper);
  min-height: 320px;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}
.editorial-visual svg { width: 100%; height: auto; }

/* story page */
.story-layout { display: grid; gap: 0; }
@media (min-width: 900px) {
  .story-layout { grid-template-columns: 72px 1fr; }
}
.story-rail {
  position: sticky;
  top: 2rem;
  height: fit-content;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 0;
}
@media (min-width: 900px) { .story-rail { display: flex; } }
.story-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--muted-2);
  margin: 0 auto;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  cursor: pointer;
}
.story-dot.is-active {
  border-color: var(--green);
  background: var(--green);
  transform: scale(1.25);
}
.story-chapter {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 6%, transparent);
}
.story-chapter-inner { max-width: 640px; }
.story-chapter .display { margin: 1rem 0 1.5rem; }
.story-num {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: color-mix(in srgb, var(--green) 15%, transparent);
  letter-spacing: -0.06em;
}

/* diptych pages */
.diptych-hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 5rem 0 4rem;
  position: relative;
}
.diptych-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--cream) 100%);
  pointer-events: none;
}
.diptych-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
}
.diptych-hero .wrap { position: relative; z-index: 1; }

.layer-stack { margin: 4rem 0; }
.layer-item {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  margin-bottom: 1rem;
  background: var(--paper);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}
@media (min-width: 700px) {
  .layer-item { grid-template-columns: 100px 1fr; align-items: start; }
}
.layer-tier {
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

/* testimonials */
.quote-stage {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}
.quote-slide {
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  position: relative;
}
.quote-slide::before {
  content: '"';
  position: absolute;
  top: -0.2em;
  left: 1.5rem;
  font-size: 8rem;
  font-family: var(--serif);
  color: color-mix(in srgb, var(--green) 20%, transparent);
  line-height: 1;
}
.quote-slide blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.45;
  padding-top: 2rem;
}
.quote-meta { margin-top: 1.5rem; font-weight: 700; color: var(--muted); }

/* use case scroll */
.use-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2rem 0 3rem;
  -webkit-overflow-scrolling: touch;
}
.use-scroll::-webkit-scrollbar { height: 6px; }
.use-scroll::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }
.use-card {
  flex: 0 0 min(85vw, 340px);
  scroll-snap-align: start;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--ink) 6%, transparent);
}
.use-card h3 { font-size: 1.35rem; margin: 0.75rem 0; }
.use-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  background: color-mix(in srgb, var(--green) 15%, transparent);
  color: var(--green);
}

/* legal */
.legal {
  padding: 3rem 0 5rem;
  max-width: 720px;
}
.legal h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.legal p, .legal li { color: var(--muted); margin-bottom: 0.75rem; }
.legal ul { padding-left: 1.25rem; }

/* contact */
.contact-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0 5rem;
}
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 2px solid color-mix(in srgb, var(--ink) 10%, transparent);
  background: var(--paper);
  color: var(--ink);
  margin-bottom: 1rem;
  font-family: inherit;
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* footer mini */
.site-foot {
  text-align: center;
  padding: 2rem 0 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.site-foot a { color: var(--green); font-weight: 700; }

/* compare table — minimal */
.compare-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 3rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: color-mix(in srgb, var(--ink) 8%, transparent);
}
.compare-row > div {
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  font-size: 0.9rem;
}
.compare-row.head > div {
  font-weight: 800;
  background: var(--ink);
  color: var(--cream);
}
.compare-bad { color: var(--coral); font-weight: 600; }
.compare-good { color: var(--green); font-weight: 700; }

/* page header */
.page-top {
  padding: 2rem 0 2rem;
}
.page-top .display { margin-top: 0.75rem; }
.page-top .brand-lockup { margin-bottom: 1rem; }
.page-brand-inline {
  margin-bottom: 1.25rem;
}

/* download */
.dl-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  margin: 2rem 0;
}
.dl-card .brand-lockup {
  display: inline-flex;
}
.diptych-hero .page-brand-inline {
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}
.dl-qr {
  width: 140px;
  height: 140px;
  margin: 1.5rem auto;
  background: var(--cream-2);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 700;
}
