/* ============================================================================
   Polyglot — design system
   Editorial publication meets Bauhaus. Fraunces serif + Geist sans.
   Midnight blue with mustard gold accents on warm off-white.
   ========================================================================= */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Geist:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  /* Palette */
  --bg:           #faf8f3;
  --bg-tint:     #f3efe5;
  --paper:        #ffffff;
  --ink:          #0f1417;
  --ink-soft:     #4a5258;
  --ink-faint:    #8a8e92;
  --line:         #e6e0d3;
  --line-strong:  #c8bfac;

  --primary:      #1f3a5f;     /* midnight blue */
  --primary-deep: #14263d;
  --primary-soft: #e8edf3;
  --gold:         #e5b14a;     /* mustard accent */
  --gold-soft:    #faedc8;
  --gold-deep:    #b88a2c;
  --coral:        #dd6b5c;     /* live/now indicator */
  --success:      #2f7f4f;
  --error:        #b03b2f;

  /* Typography */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows — soft, layered */
  --shadow-sm: 0 1px 2px rgba(15, 20, 23, 0.04), 0 1px 1px rgba(15, 20, 23, 0.03);
  --shadow-md: 0 4px 12px rgba(15, 20, 23, 0.05), 0 2px 4px rgba(15, 20, 23, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 20, 23, 0.08), 0 4px 8px rgba(15, 20, 23, 0.04);
  --shadow-glow: 0 0 0 1px rgba(31, 58, 95, 0.08), 0 12px 32px rgba(31, 58, 95, 0.12);

  /* Easings */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Layout */
  --max-width: 1200px;
  --max-width-text: 720px;
}

/* ===== Reset & base ===== */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss02", "cv01", "cv02";
}

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

/* The HTML `hidden` attribute should always win, even when the element's
   CSS sets a non-`none` display. Without this rule, declarations like
   `display: grid` override `hidden` and elements stay visible. */
[hidden] { display: none !important; }

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

a { color: inherit; }

::selection {
  background: var(--gold-soft);
  color: var(--ink);
}

/* ===== Typography utilities ===== */

.serif { font-family: var(--font-display); }
.mono { font-family: var(--font-mono); }

/* Display headings: Fraunces with optical sizing for big impact */
.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-variation-settings: "opsz" 96;
}
.h-card {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
  font-variation-settings: "opsz" 36;
}

/* Eyebrow labels — small, uppercase, tracked */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow--gold { color: var(--gold-deep); }
.eyebrow--primary { color: var(--primary); }

/* Number labels (Bauhaus-y "01 / 02") */
.numeral {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s var(--ease-out),
    background 0.2s var(--ease-out),
    color 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover:not(:disabled) {
  background: var(--primary-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover:not(:disabled) {
  background: var(--gold-deep);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.btn--outline {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--outline:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--lg { font-size: 16px; padding: 16px 28px; }
.btn--sm { font-size: 13px; padding: 8px 14px; }

.btn--icon-end::after {
  content: "→";
  font-size: 1.1em;
  transition: transform 0.2s var(--ease-out);
}
.btn--icon-end:hover::after { transform: translateX(3px); }

/* ===== Form inputs (basic) ===== */
.input {
  width: 100%;
  font: inherit;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}
.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

/* ===== Containers ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
}
.container--narrow {
  max-width: var(--max-width-text);
}

/* ===== Cards ===== */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}
.card--hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

/* ===== Badges / pills ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--bg-tint);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.badge--gold { background: var(--gold-soft); color: var(--gold-deep); border-color: transparent; }
.badge--primary { background: var(--primary-soft); color: var(--primary); border-color: transparent; }
.badge--coral {
  background: rgba(221, 107, 92, 0.12);
  color: var(--coral);
  border-color: transparent;
  position: relative;
  padding-left: 22px;
}
.badge--coral::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.5; transform: translateY(-50%) scale(1.4); }
}

/* ============================================================================
   Reveal animation — applied to elements with [data-reveal]
   IntersectionObserver toggles .is-visible on scroll
   ========================================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================================
   LANDING PAGE
   ========================================================================= */

/* Atmosphere — subtle gradient mesh in the background */
.landing {
  background:
    radial-gradient(1200px circle at 10% -10%, rgba(31, 58, 95, 0.06), transparent 60%),
    radial-gradient(900px circle at 110% 30%, rgba(229, 177, 74, 0.08), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

/* === Top nav === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.nav--scrolled {
  border-color: var(--line);
  background: rgba(250, 248, 243, 0.95);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, var(--gold) 50%);
  opacity: 0.9;
  z-index: 0;
}
.brand__mark span { position: relative; z-index: 1; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.2s var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__cta { display: flex; align-items: center; gap: 12px; }

@media (max-width: 768px) {
  .nav__links { display: none; }
}

/* === Hero === */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow { margin-bottom: 24px; }

.hero__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero__headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__headline-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-word-in 0.8s var(--ease-out) forwards;
}
@keyframes hero-word-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 36px;
  opacity: 0;
  animation: hero-sub-in 0.6s var(--ease-out) 0.6s forwards;
}
@keyframes hero-sub-in {
  to { opacity: 1; }
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-sub-in 0.6s var(--ease-out) 0.8s forwards;
}

.hero__meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-faint);
  opacity: 0;
  animation: hero-sub-in 0.6s var(--ease-out) 1s forwards;
}
.hero__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-faint);
}

/* Hero showcase: a faux conversation card with audio waveform */
.hero__showcase {
  position: relative;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-glow);
  opacity: 0;
  transform: scale(0.95) rotate(-1deg);
  animation: showcase-in 0.9s var(--ease-out) 0.4s forwards;
}
@keyframes showcase-in {
  to { opacity: 1; transform: scale(1) rotate(-1deg); }
}
.hero__showcase::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--gold) 0%, transparent 30%);
  z-index: -1;
  opacity: 0.3;
}
.hero__showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hero__showcase-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
}
.hero__showcase-msg {
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}
.hero__showcase-msg--user {
  background: var(--ink);
  color: var(--bg);
  margin-left: 32px;
  border-bottom-right-radius: 4px;
}
.hero__showcase-msg--bot {
  background: var(--bg-tint);
  margin-right: 32px;
  border-bottom-left-radius: 4px;
}
.hero__showcase-msg-meta {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
  font-style: italic;
}

/* Audio waveform visual */
.hero__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
  padding: 0 4px;
}
.hero__wave span {
  display: block;
  width: 3px;
  background: var(--coral);
  border-radius: 2px;
  animation: wave 1.4s ease-in-out infinite;
}
.hero__wave span:nth-child(1)  { height: 30%; animation-delay: 0.0s; }
.hero__wave span:nth-child(2)  { height: 60%; animation-delay: 0.1s; }
.hero__wave span:nth-child(3)  { height: 90%; animation-delay: 0.2s; }
.hero__wave span:nth-child(4)  { height: 70%; animation-delay: 0.3s; }
.hero__wave span:nth-child(5)  { height: 50%; animation-delay: 0.4s; }
.hero__wave span:nth-child(6)  { height: 80%; animation-delay: 0.5s; }
.hero__wave span:nth-child(7)  { height: 40%; animation-delay: 0.6s; }
.hero__wave span:nth-child(8)  { height: 65%; animation-delay: 0.7s; }
.hero__wave span:nth-child(9)  { height: 95%; animation-delay: 0.8s; }
.hero__wave span:nth-child(10) { height: 55%; animation-delay: 0.9s; }
.hero__wave span:nth-child(11) { height: 75%; animation-delay: 1.0s; }
.hero__wave span:nth-child(12) { height: 35%; animation-delay: 1.1s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1.2); }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero { padding: 48px 0 72px; }
}

/* === Marquee of phrases === */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 48px;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 100;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee__item::after {
  content: "✦";
  color: var(--gold);
  font-style: normal;
}
@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* === Section wrappers === */
.section {
  padding: 96px 0;
  position: relative;
}
.section--tinted { background: var(--bg-tint); }
.section--ink { background: var(--ink); color: var(--bg); }
.section--ink .eyebrow { color: var(--gold); }
.section--ink .h-section { color: var(--bg); }
.section__head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section__head .eyebrow { margin-bottom: 16px; }
.section__head h2 { margin: 0 0 16px; }
.section__head p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.section--ink .section__head p { color: rgba(250, 248, 243, 0.7); }

/* === Features grid === */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .features { grid-template-columns: 1fr; }
}

.feature {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}
.feature__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-tint);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.feature:hover .feature__icon {
  background: var(--gold-soft);
  transform: scale(1.05) rotate(-3deg);
}
.feature__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.feature__body {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* === How it works === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "WONK" 1;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 8px;
  line-height: 1.2;
}
.step__body {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* === Pricing === */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .pricing { grid-template-columns: 1fr; }
}
.tier {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tier--featured {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  position: relative;
  transform: translateY(-8px);
}
.tier--featured:hover { transform: translateY(-12px); }
.tier--featured .tier__name { color: var(--gold); }
.tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.tier__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.tier__price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 4px;
  font-variation-settings: "opsz" 144;
}
.tier__price-suffix {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-faint);
}
.tier--featured .tier__price-suffix { color: rgba(250, 248, 243, 0.6); }
.tier__tagline {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 24px;
  min-height: 48px;
}
.tier--featured .tier__tagline { color: rgba(250, 248, 243, 0.75); }
.tier__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.tier__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 0;
  color: var(--ink-soft);
}
.tier--featured .tier__list li { color: rgba(250, 248, 243, 0.85); }
.tier__list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}
.tier__list li.tier__list-no::before {
  content: "—";
  color: var(--ink-faint);
}
.tier--featured .tier__list li::before { color: var(--gold); }

/* === FAQ === */
.faq {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  overflow: hidden;
  transition: border-color 0.2s var(--ease-out);
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.005em;
  transition: background 0.2s var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out);
  margin-left: 16px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { background: var(--bg-tint); }
.faq-item__body {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* === Final CTA === */
.cta-band {
  position: relative;
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(800px circle at 50% 0%, rgba(229, 177, 74, 0.15), transparent 60%),
    var(--ink);
  color: var(--bg);
  overflow: hidden;
}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin: 0 0 16px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-band__title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.cta-band__sub {
  font-size: 18px;
  color: rgba(250, 248, 243, 0.7);
  max-width: 540px;
  margin: 0 auto 36px;
}

/* === Footer === */
.footer {
  background: var(--bg-tint);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
.footer__brand-text {
  margin: 16px 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer__col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s var(--ease-out);
}
.footer__col a:hover { color: var(--primary); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-faint);
}
.footer__bottom a { color: var(--ink-soft); text-decoration: none; }
.footer__bottom a:hover { color: var(--ink); }
