/* Dialed — Marketing site
   Purple palette. Minimal. Lexend + Inter. Pill-first. No emojis.
   ------------------------------------------------------------ */

:root {
  --violet-50:  #f7f5ff;
  --violet-100: #ede9fe;
  --violet-200: #ddd3fd;
  --violet-300: #c4b4fb;
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --violet-700: #6d28d9;
  --violet-800: #5b21b6;
  --violet-900: #4c1d95;

  --ink-900: #14111f;
  --ink-800: #1f1b2e;
  --ink-700: #2e2942;
  --ink-600: #4a4462;
  --ink-500: #6b6785;
  --ink-400: #9490aa;
  --ink-300: #c6c2d6;
  --ink-200: #e4e1ee;
  --ink-100: #f1eff7;
  --ink-50:  #faf9fd;

  --bg: #fbfaff;
  --surface: #ffffff;
  --border: #eae6f3;
  --border-strong: #d9d3e8;

  --green: #10b981;
  --amber: #f59e0b;
  --rose:  #f43f5e;

  --shadow-sm: 0 2px 8px rgba(23, 16, 50, 0.04);
  --shadow-md: 0 8px 24px rgba(23, 16, 50, 0.06);
  --shadow-lg: 0 20px 48px rgba(76, 29, 149, 0.12);
  --shadow-glow: 0 20px 60px -20px rgba(124, 58, 237, 0.45);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --font-display: "Lexend", "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", "Lexend", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --content-width: 1140px;
}

* { box-sizing: border-box; }
*::selection { background: var(--violet-200); color: var(--ink-900); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

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

a { color: var(--violet-700); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--violet-900); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 1.75vw, 1.375rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--ink-700); }

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ─── Nav ───────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 250, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--violet-500) 0%, var(--violet-700) 100%);
  border-radius: 9px;
  position: relative;
  box-shadow: var(--shadow-glow);
}
.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
}
.logo-mark::before { top: 7px; left: 7px; right: 7px; height: 3px; }
.logo-mark::after  { bottom: 7px; left: 7px; right: 7px; height: 3px; }

.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  color: var(--ink-600);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--ink-900); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
}

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

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--violet-600);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 6px 20px -6px rgba(124, 58, 237, 0.55);
  white-space: nowrap;
}
.btn:hover { background: var(--violet-700); transform: translateY(-1px); box-shadow: 0 10px 28px -8px rgba(124, 58, 237, 0.6); }
.btn:active { transform: translateY(0); }

.btn-lg { height: 54px; padding: 0 28px; font-size: 1rem; }

.btn-ghost {
  background: transparent;
  color: var(--ink-800);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--ink-100); transform: none; box-shadow: none; }

.btn-outline {
  background: transparent;
  color: var(--violet-700);
  border: 1px solid var(--violet-200);
  box-shadow: none;
}
.btn-outline:hover { background: var(--violet-50); border-color: var(--violet-300); transform: none; box-shadow: none; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -120px 0 auto 0;
  height: 720px;
  background:
    radial-gradient(600px 320px at 85% 10%, rgba(167, 139, 250, 0.28), transparent 70%),
    radial-gradient(520px 280px at 10% 20%, rgba(196, 180, 251, 0.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .hero { padding: 40px 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  height: 30px;
  padding: 0 14px;
  background: var(--violet-100);
  color: var(--violet-700);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 99px;
  background: var(--violet-600);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2);
}

.hero h1 {
  margin: 20px 0 16px;
  max-width: 12ch;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--violet-600) 0%, var(--violet-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-600);
  max-width: 52ch;
  margin: 0 0 28px;
  line-height: 1.55;
}

/* Waitlist form */
.form-row {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  max-width: 460px;
}
.form-row input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 18px;
  border: 0;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}
.form-row input::placeholder { color: var(--ink-400); }
.form-row .btn { height: 46px; padding: 0 20px; box-shadow: none; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: 16px;
  color: var(--ink-500);
  font-size: 0.88rem;
}
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row .check {
  width: 16px; height: 16px; border-radius: 99px;
  background: var(--violet-100);
  color: var(--violet-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.7rem;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  margin-top: 8px;
}

.form-feedback.show { display: block; }

.form-feedback.success {
  background: var(--violet-50);
  border: 1px solid var(--violet-200);
  color: var(--violet-800);
}

.form-feedback.error {
  background: #fff1f3;
  border: 1px solid #fecdd3;
  color: #9f1239;
}

/* ─── Phone mockup ──────────────────────────────────────────── */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 520px;
}
.phone {
  position: relative;
  width: 300px;
  aspect-ratio: 9 / 19;
  background: #0e0b1a;
  border-radius: 46px;
  padding: 11px;
  box-shadow:
    0 50px 80px -30px rgba(76, 29, 149, 0.35),
    0 20px 40px -10px rgba(14, 11, 26, 0.25),
    inset 0 0 0 2px rgba(255,255,255,0.06);
  transform: rotate(-1.5deg);
}
.phone::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #0e0b1a;
  border-radius: 99px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: #fbfaff;
  border-radius: 36px;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 46px 18px 18px;
  gap: 14px;
}

.phone-topbar {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem;
  color: var(--ink-500);
  font-weight: 600;
  margin-bottom: -4px;
}

.phone-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.phone-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.72rem;
  color: var(--violet-700);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.phone-card-q {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.3;
  min-height: 58px;
}

.phone-progress {
  height: 6px;
  background: var(--ink-100);
  border-radius: 99px;
  overflow: hidden;
}
.phone-progress-bar {
  width: 68%; height: 100%;
  background: linear-gradient(90deg, var(--violet-500), var(--violet-400));
  border-radius: 99px;
}

.phone-rating {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.phone-rating button {
  border: 0;
  background: var(--ink-50);
  color: var(--ink-700);
  border-radius: 12px;
  padding: 8px 0;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
}
.phone-rating .good { background: var(--violet-100); color: var(--violet-800); }

.phone-footer {
  margin-top: auto;
  font-size: 0.68rem;
  color: var(--ink-400);
  text-align: center;
  letter-spacing: 0.02em;
}

/* Floating feature chips */
.feature-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-800);
  max-width: 200px;
}
.feature-chip .chip-ico {
  width: 28px; height: 28px;
  background: var(--violet-100); color: var(--violet-700);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.feature-chip .chip-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-500);
  margin-top: 1px;
}
.chip-1 { top: 60px; right: -30px; }
.chip-2 { top: 240px; right: -40px; }
.chip-3 { top: 430px; right: -10px; }

@media (max-width: 900px) {
  .phone-stage { transform: scale(0.92); }
  .chip-1, .chip-2, .chip-3 { display: none; }
}

/* ─── Social proof strip ────────────────────────────────────── */
.proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  padding: 28px 0;
}
.proof-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  margin-bottom: 16px;
}

.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  width: max-content;
  will-change: transform;
}

.logo-item {
  --focus-scale: 0.9;
  --focus-opacity: 0.34;
  flex: 0 0 auto;
  width: clamp(120px, 14vw, 190px);
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center;
  transform: scale(var(--focus-scale));
  opacity: var(--focus-opacity);
  transition: transform 220ms cubic-bezier(0.33, 1, 0.68, 1), opacity 220ms cubic-bezier(0.33, 1, 0.68, 1);
}

@media (prefers-reduced-motion: reduce) {
  .logo-item img {
    transform: none;
    opacity: 0.9;
    transition: none;
  }
}

/* ─── Generic section ───────────────────────────────────────── */
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p {
  color: var(--ink-600);
  font-size: 1.05rem;
  margin-top: 10px;
}

/* ─── Steps ─────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--violet-200);
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.step-ico {
  width: 44px; height: 44px;
  background: var(--violet-100);
  color: var(--violet-700);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-600); margin: 0; font-size: 0.98rem; }

/* ─── Science cards ─────────────────────────────────────────── */
.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .science-grid { grid-template-columns: 1fr; } }

.science-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.science-card .science-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-700);
  font-weight: 700;
}
.science-card .stat {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  line-height: 1;
}
.science-card .stat .unit {
  color: var(--violet-600);
}
.science-card h3 {
  margin: 4px 0 2px;
}
.science-card p { color: var(--ink-600); margin: 0; font-size: 0.97rem; }
.science-card cite {
  display: block;
  color: var(--ink-400);
  font-size: 0.78rem;
  font-style: normal;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* ─── Quote ─────────────────────────────────────────────────── */
.quote-block {
  background: linear-gradient(135deg, var(--violet-900) 0%, var(--violet-700) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: "\201C";
  position: absolute;
  top: -30px; left: 24px;
  font-family: Georgia, serif;
  font-size: 16rem;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}
.quote-block blockquote {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  max-width: 34ch;
}
.quote-block cite {
  position: relative;
  display: block;
  margin-top: 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  font-style: normal;
  letter-spacing: 0.01em;
}

/* ─── Comparison ────────────────────────────────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }

.compare-col {
  border-radius: var(--radius-xl);
  padding: 36px;
  background: #fff;
  border: 1px solid var(--border);
}
.compare-col h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.compare-col.dialed {
  background: linear-gradient(160deg, var(--violet-50), #fff 60%);
  border-color: var(--violet-200);
  box-shadow: var(--shadow-md);
}
.compare-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.compare-col li {
  display: flex; gap: 10px;
  font-size: 0.98rem;
  color: var(--ink-700);
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.compare-col li:last-child { border-bottom: 0; }
.compare-col .mark {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 99px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.72rem;
  margin-top: 2px;
}
.compare-col .mark.x { background: var(--ink-100); color: var(--ink-500); }
.compare-col .mark.v { background: var(--violet-100); color: var(--violet-700); }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-list {
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 150ms ease;
}
.faq-item[open] { border-color: var(--violet-200); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink-900);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--violet-600);
  font-weight: 400;
  transition: transform 200ms ease;
  flex: none;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item .faq-a {
  padding: 0 24px 22px;
  color: var(--ink-600);
  line-height: 1.62;
}
.faq-item .faq-a p:last-child { margin-bottom: 0; }

/* ─── CTA block ─────────────────────────────────────────────── */
.cta-block {
  background: linear-gradient(160deg, var(--violet-600) 0%, var(--violet-800) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-block::before, .cta-block::after {
  content: "";
  position: absolute;
  border-radius: 99px;
  filter: blur(48px);
  opacity: 0.55;
  pointer-events: none;
}
.cta-block::before { width: 320px; height: 320px; background: var(--violet-400); top: -80px; right: -80px; }
.cta-block::after  { width: 240px; height: 240px; background: var(--violet-300); bottom: -80px; left: -40px; }
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { color: #fff; max-width: 18ch; margin: 0 auto 14px; }
.cta-block p { color: rgba(255,255,255,0.85); max-width: 48ch; margin: 0 auto 28px; }
.cta-block .form-row {
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 24px 48px -12px rgba(20, 10, 50, 0.5);
}
.cta-block .form-row input {
  color: #fff;
}
.cta-block .form-row input::placeholder { color: rgba(255,255,255,0.6); }
.cta-block .btn { background: #fff; color: var(--violet-800); }
.cta-block .btn:hover { background: var(--violet-50); color: var(--violet-900); }
.cta-block .trust-row { justify-content: center; color: rgba(255,255,255,0.7); margin-top: 18px; }
.cta-block .trust-row .check { background: rgba(255,255,255,0.15); color: #fff; }

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
  color: var(--ink-500);
  font-size: 0.92rem;
  background: #fff;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin: 0 0 14px;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--ink-600); }
.footer a:hover { color: var(--ink-900); }

.footer-tagline {
  color: var(--ink-500);
  margin-top: 14px;
  max-width: 26ch;
}
.footer-legal {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 24px;
  max-width: var(--content-width);
  margin-left: auto; margin-right: auto;
  padding-left: 24px; padding-right: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--ink-500);
  flex-wrap: wrap;
}

/* ─── Utility ───────────────────────────────────────────────── */
.center { text-align: center; }
.muted { color: var(--ink-500); }
.highlight {
  background: var(--violet-100);
  color: var(--violet-800);
  padding: 0 4px;
  border-radius: 4px;
}

/* ─── Article content pages ─────────────────────────────────── */
.article {
  padding: 64px 0 96px;
  max-width: 760px;
  margin: 0 auto;
}
.article-hero { text-align: center; margin-bottom: 48px; }
.article-hero .eyebrow { margin-bottom: 14px; }
.article-hero p { font-size: 1.1rem; color: var(--ink-600); max-width: 56ch; margin: 10px auto 0; }
.article h2 { margin-top: 56px; margin-bottom: 14px; font-size: 1.75rem; }
.article h3 { margin-top: 36px; margin-bottom: 10px; }
.article p { line-height: 1.72; }
.article ul, .article ol { line-height: 1.72; padding-left: 22px; margin: 0 0 1.25em; }
.article li { margin-bottom: 8px; }
.article blockquote {
  border-left: 3px solid var(--violet-400);
  margin: 24px 0;
  padding: 12px 20px;
  color: var(--ink-800);
  background: var(--violet-50);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

/* tiny inline icon utility (SVG sized) */
.ico { width: 18px; height: 18px; stroke-width: 2; }
.ico-sm { width: 14px; height: 14px; stroke-width: 2.2; }

/* animations */
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-6px) rotate(-1.5deg); }
}
.phone { animation: floaty 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .phone { animation: none; } }

@keyframes chip-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.feature-chip { animation: chip-in 600ms 200ms both ease-out; }
.chip-2 { animation-delay: 340ms; }
.chip-3 { animation-delay: 480ms; }
