/* ==========================================================================
   Vital Check-In — Shared Styles
   Typography: Cormorant Garamond (display) + DM Mono (mono/body)
   Palette from Brand Voice Guide 2025
   ========================================================================== */

:root {
  --ink: #0f0e0d;
  --ink-soft: #1a1917;
  --paper: #f7f4f0;
  --warm: #f0ebe3;
  --warm-deep: #e8e1d5;
  --accent: #c0392b;
  --accent-hot: #d64435;
  --accent-soft: #e8d5d3;
  --sage: #5a7a6a;
  --sage-light: #d8e4df;
  --gold: #b8956a;
  --muted: #8a8480;
  --muted-ink: #b5afa9;
  --border: #ddd9d4;
  --border-dark: #2a2825;

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Mono', ui-monospace, monospace;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

::selection { background: var(--accent); color: var(--paper); }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

.serif { font-family: 'Cormorant Garamond', 'Times New Roman', serif; }
.mono { font-family: 'DM Mono', ui-monospace, monospace; }

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
}

@media (min-width: 768px) {
  .eyebrow { font-size: 14px; letter-spacing: 0.18em; }
}

.eyebrow.accent { color: var(--accent); }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; letter-spacing: -0.01em; }

/* Italic accent on display headings — the brand signature */
h1 em, h2 em, h3 em, h4 em { font-style: italic; color: var(--accent); }

/* Em inside body / lists / leads stays accent-colored but NOT italic
   — italic in body contexts reads precious and tanks mobile readability */
p em, li em, .body em, .lead em, .sliver-body em, .pillar-body em,
.feature-list li em, .faq-a-inner em, .resource-desc em, .cta-side p em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}

.display-xl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 11vw, 168px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.display-l {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.display-m {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.display-s {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.15;
}

.lead {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  color: #2a2826;
  max-width: 62ch;
}

@media (min-width: 768px) {
  .lead {
    font-size: 18px;
    line-height: 1.6;
  }
}

p.body { font-size: 15px; line-height: 1.75; max-width: 62ch; color: #2a2826; }

.small { font-size: 14px; color: var(--muted); }

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow { max-width: 880px; }
.container-wide { max-width: 1440px; }

.section { padding: 120px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-lg { padding: 160px 0; }

.section.dark { background: var(--ink); color: var(--paper); }
.section.dark p.body, .section.dark .lead { color: var(--muted-ink); }
.section.dark .eyebrow { color: var(--muted-ink); }
.section.warm { background: var(--warm); }

.divider { width: 48px; height: 2px; background: var(--accent); margin: 24px 0; border: none; }
.divider-long { width: 100%; height: 1px; background: var(--border); border: none; }
.section.dark .divider-long { background: var(--border-dark); }

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 240, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.005em;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo mark — flat accent-red checkmark.
   Replaces the previous pulsing-dot bullseye, which read as location-tracking. */
.nav-logo .dot {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c0392b' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='4.5 12.5 10 18 19.5 6.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 0;
  position: relative;
  flex-shrink: 0;
}

.nav-logo .dot::after { content: none; animation: none; }

/* Pulse-dot utility — preserved for use elsewhere (active-status indicators,
   "live" badges, etc.). Drop <span class="pulse-dot"></span> wherever you want
   a small red dot with a pulsing ring. Sized at 8px to match the original. */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  position: relative;
  vertical-align: middle;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.4;
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

.nav-logo .check {
  width: 24px;
  height: 24px;
  background-image: url("favicon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 4px;  /* optional: rounds the wine square slightly */
}

.nav-logo .check::after { content: none; animation: none; }

.nav-logo em { font-style: italic; color: var(--accent); font-weight: 400; margin-left: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-links a:hover { color: var(--ink); background: var(--warm); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: var(--accent);
  margin: 3px auto 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

.nav-burger {
  display: none;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav.open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 2px;
  }
  .nav.open .nav-links a { padding: 12px 14px; }
  .nav.open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: 78px;
    right: 16px;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}

.btn-primary { background: var(--accent); color: var(--paper); }
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); }

.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--accent); transform: translateY(-1px); }

.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--accent); color: var(--paper); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.section.dark .btn-ghost { color: var(--paper); border-color: var(--paper); }
.section.dark .btn-ghost:hover { background: var(--paper); color: var(--ink); }

.btn-arrow::after { content: "→"; font-size: 14px; letter-spacing: 0; transition: transform 0.2s var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }

.btn-pair { display: inline-flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}

.hero-eyebrow { margin-bottom: 20px; }

.hero-title {
  margin-bottom: 32px;
  max-width: 14ch;
}

.hero-lead { margin-bottom: 40px; }

.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-meta span strong { color: var(--ink); font-weight: 500; display: block; font-size: 13px; letter-spacing: 0.02em; text-transform: none; margin-top: 2px; }

/* Hero watermark timestamp */
.hero-stamp {
  position: absolute;
  top: 110px;
  right: 32px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-align: right;
  line-height: 1.9;
  pointer-events: none;
}

.hero-stamp .tick {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  margin-right: 6px;
  animation: breathe 2.4s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes breathe {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.3); }
}

@media (max-width: 640px) { .hero-stamp { display: none; } }

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 22px 0;
  background: var(--warm);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll-x 48s linear infinite;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--ink);
}

.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after {
  content: "✕";
  color: var(--accent);
  font-style: normal;
  font-size: 0.7em;
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee:hover .marquee-track { animation-play-state: paused; }

/* ==========================================================================
   STATEMENT STRIP — big editorial moments
   ========================================================================== */

.statement {
  padding: 140px 0;
  text-align: left;
}

.statement .eyebrow { margin-bottom: 28px; }

.statement-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 18ch;
}

.statement-text em { color: var(--accent); font-style: italic; }

.statement-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
}

.section:not(.dark) .statement-meta { border-top-color: var(--border); }

.statement-meta div strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 6px;
}

.statement-meta div span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-ink);
}

.section:not(.dark) .statement-meta div span { color: var(--muted); }

@media (max-width: 640px) {
  .statement-meta { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================================
   SLIVERS
   ========================================================================== */

.slivers-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

@media (max-width: 820px) {
  .slivers-intro { grid-template-columns: 1fr; gap: 20px; }
}

.slivers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.section.dark .slivers-grid { background: var(--border-dark); border-color: var(--border-dark); }

@media (max-width: 980px) { .slivers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .slivers-grid { grid-template-columns: 1fr; } }

.sliver {
  background: var(--paper);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  min-height: 380px;
  transition: background 0.3s var(--ease);
}

.section.dark .sliver { background: var(--ink); }
.section.dark .sliver:hover { background: var(--ink-soft); }
.sliver:hover { background: var(--warm); }

.sliver-number {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.sliver-when {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.sliver-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.section.dark .sliver-name { color: var(--paper); }

.sliver-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 22ch;
}

.section.dark .sliver-headline { color: var(--paper); }

.sliver-body {
  font-size: 13px;
  line-height: 1.7;
  color: #3a3835;
  flex: 1;
}

.section.dark .sliver-body { color: var(--muted-ink); }

.sliver-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  margin-top: auto;
}

.section.dark .sliver-check { border-top-color: var(--border-dark); color: var(--muted-ink); }

.sliver-check .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  display: inline-block;
  animation: breathe 2.4s ease-in-out infinite;
}

/* ==========================================================================
   STEPS
   ========================================================================== */

.steps-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

@media (max-width: 820px) {
  .steps-intro { grid-template-columns: 1fr; gap: 20px; }
}

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

@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 32px; } }

.step {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  position: relative;
}

.section.dark .step { border-top-color: var(--border-dark); }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}

.step-body { font-size: 13px; line-height: 1.7; color: #3a3835; max-width: 40ch; }
.section.dark .step-body { color: var(--muted-ink); }

/* ==========================================================================
   PHILOSOPHY / MANIFESTO
   ========================================================================== */

.manifesto {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: start;
}

.manifesto-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 16px;
}

.manifesto-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--paper);
  max-width: 30ch;
}

.manifesto-text em { color: var(--accent); font-style: italic; }

@media (max-width: 820px) {
  .manifesto { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================================
   FEATURE GRID (features page)
   ========================================================================== */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child { border-bottom: none; }

.feature-row.reverse .feature-visual { order: -1; }

@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; padding: 60px 0; }
  .feature-row.reverse .feature-visual { order: 0; }
}

.feature-copy .eyebrow { margin-bottom: 16px; }

.feature-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  max-width: 14ch;
}

.feature-copy h3 em { color: var(--accent); font-style: italic; }

.feature-copy p { font-size: 14px; line-height: 1.75; color: #3a3835; max-width: 50ch; margin-bottom: 14px; }

.feature-list { list-style: none; padding: 0; margin-top: 24px; }
.feature-list li {
  font-size: 13px;
  line-height: 1.7;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}
.feature-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

/* Phone mockup */
.phone {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 9 / 19;
  border-radius: 42px;
  background: var(--ink);
  padding: 12px;
  box-shadow: 0 24px 60px -20px rgba(15, 14, 13, 0.35), 0 0 0 1px rgba(0,0,0,0.08);
  position: relative;
}

.phone::before {
  content: "";
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 24px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 2;
}

.phone-screen {
  background: var(--paper);
  border-radius: 32px;
  width: 100%;
  height: 100%;
  padding: 56px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  position: relative;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
  position: absolute;
  top: 18px; left: 24px; right: 24px;
}

.phone-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

.phone-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.phone-title em { color: var(--accent); font-style: italic; }

.phone-card {
  background: var(--warm);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 11px;
  line-height: 1.55;
  color: var(--ink);
}

.phone-card .k {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.phone-card .v { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; }

.phone-timer {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0;
}

.phone-timer strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.phone-timer span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.phone-btn {
  background: var(--ink);
  color: var(--paper);
  padding: 14px;
  border-radius: 999px;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: auto;
}

.phone-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  margin-right: 6px;
  vertical-align: middle;
  animation: breathe 2.4s ease-in-out infinite;
}

/* ==========================================================================
   ACCORDION (FAQ)
   ========================================================================== */

.faq-group { margin-bottom: 56px; }

.faq-category {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--accent);
  display: inline-block;
  padding-right: 24px;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}

.faq-q:hover { color: var(--accent); }

.faq-q .plus {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  font-weight: 300;
}

.faq-item.open .faq-q .plus { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-a { max-height: 500px; }

.faq-a-inner {
  padding: 0 0 28px;
  font-size: 13.5px;
  line-height: 1.75;
  color: #3a3835;
  max-width: 60ch;
}

/* ==========================================================================
   ABOUT — Pillars
   ========================================================================== */

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

@media (max-width: 680px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  background: var(--paper);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
}

.pillar-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.005em;
}

.pillar-title em { color: var(--accent); font-style: italic; }

.pillar-body { font-size: 13px; line-height: 1.7; color: #3a3835; max-width: 36ch; }

/* ==========================================================================
   QUOTE BLOCK
   ========================================================================== */

.quote-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 80px 0;
}

.quote-block .eyebrow { padding-top: 10px; }

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  max-width: 32ch;
}

.quote-text::before { content: "\201C"; color: var(--accent); margin-right: 4px; font-size: 1.3em; line-height: 0; }
.quote-text::after  { content: "\201D"; color: var(--accent); margin-left: 2px;  font-size: 1.3em; line-height: 0; }

.quote-attr {
  margin-top: 18px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 640px) {
  .quote-block { grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */

.cta-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
  text-align: left;
}

.cta-strip .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: end;
}

@media (max-width: 820px) {
  .cta-strip .container { grid-template-columns: 1fr; gap: 32px; }
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--paper);
  max-width: 16ch;
}

.cta-title em { color: var(--accent); font-style: italic; }

.cta-side { display: flex; flex-direction: column; gap: 16px; max-width: 360px; }

.cta-side p { color: var(--muted-ink); font-size: 13px; line-height: 1.7; margin-bottom: 12px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--warm);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.footer-brand .nav-logo { font-size: 28px; margin-bottom: 16px; }

.footer-brand p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; color: #3a3835; max-width: 28ch; line-height: 1.4; }

.footer h5 {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a {
  font-size: 13px;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.footer a:hover { color: var(--accent); }

.footer-base {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 820px) { .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 32px; } }

.spacer-24 { height: 24px; }
.spacer-48 { height: 48px; }
.spacer-80 { height: 80px; }

.text-accent { color: var(--accent); }
.text-muted  { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Small screen hero adjustments */
@media (max-width: 640px) {
  .hero { padding: 56px 0 48px; }
  .section { padding: 72px 0; }
  .statement { padding: 80px 0; }
  .cta-strip { padding: 80px 0; }
}

/* ==========================================================================
   LEGAL PAGES (Terms, Privacy)
   ========================================================================== */

.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}

.legal > p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: #3a3835;
  padding-bottom: 40px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
  max-width: 56ch;
}

.legal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin-top: 72px;
  margin-bottom: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  scroll-margin-top: 80px;
  color: var(--ink);
}

.legal h2:first-of-type { border-top: none; padding-top: 40px; }

.legal h2 em { color: var(--accent); font-style: italic; }

.legal h2 .sec-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  font-style: normal;
  font-weight: 400;
}

.legal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 36px;
  margin-bottom: 10px;
  color: var(--ink);
}

.legal h3 .sub-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-style: normal;
  font-weight: 400;
  margin-right: 10px;
  vertical-align: middle;
}

.legal p {
  font-size: 14.5px;
  line-height: 1.78;
  color: #2a2826;
  margin-bottom: 14px;
  max-width: 62ch;
}

.legal ul, .legal ol {
  margin: 12px 0 18px 24px;
  font-size: 14px;
  line-height: 1.75;
  max-width: 60ch;
}

.legal li { margin-bottom: 10px; padding-left: 6px; }
.legal li::marker { color: var(--accent); }
.legal li strong { color: var(--ink); font-weight: 500; }

.legal strong { color: var(--ink); font-weight: 500; }

.legal a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-soft);
  transition: border-color 0.2s var(--ease);
}
.legal a:hover { border-bottom-color: var(--accent); }

.legal .callout {
  background: var(--warm);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 4px 4px 0;
}

.legal .callout p { margin-bottom: 0; font-size: 14px; max-width: none; }

.legal .callout .k {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.legal .rules {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  border-top: 1px solid var(--border);
}

.legal .rules li {
  border-bottom: 1px solid var(--border);
  padding: 18px 0 18px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 0;
}

.legal .rules li::before {
  content: "✕";
  font-family: 'DM Mono', monospace;
  color: var(--accent);
  font-size: 14px;
  line-height: 1.6;
}

.legal .rules li strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}

.legal .stamp {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 96px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  text-transform: uppercase;
}

.legal .disclaimer {
  font-family: 'DM Mono', monospace;
  font-size: 11.5px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--warm-deep);
  padding: 20px 24px;
  border-radius: 4px;
  margin: 16px 0;
  max-width: none;
  text-transform: uppercase;
}

/* Plain-English summary box at top of legal hero */
.legal-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

@media (max-width: 780px) {
  .legal-summary-grid { grid-template-columns: 1fr; gap: 20px; }
}

.legal-summary-grid p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  color: #3a3835;
  max-width: 44ch;
}

.legal-summary-grid .meta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.9;
}

.legal-summary-grid .meta strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* ==========================================================================
   APP STORE BUTTONS — iOS + Android
   ========================================================================== */

.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid var(--paper);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
              color 0.2s var(--ease), border-color 0.2s var(--ease);
  text-decoration: none;
  min-width: 180px;
}

.store-btn:hover {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.store-btn svg { flex-shrink: 0; }

.store-btn .pre {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 2px;
}

.store-btn .name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.005em;
}

/* Dark variant — for use on light backgrounds */
.store-btn-dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.store-btn-dark:hover {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}

/* Table of contents (side links) — optional */
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  max-width: 780px;
}

.legal-toc li { margin: 0; padding: 0; }

.legal-toc a {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid var(--border);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.legal-toc a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--paper);
}

/* ==========================================================================
   PARCHMENT THEME — Vital Check-In Marketing Pages
   Palette drawn from VCI Flutter app theme (vci_parchment_theme.dart)
   Cream/Wine/Coral warm palette. Used on home.html and features_parchment.html
   ========================================================================== */

:root {
  --cream:        #FCF0E0;
  --cream-deep:   #F5E2C8;
  --cream-mid:    #EDD4B0;
  --wine:         #7A2418;
  --wine-dark:    #3A0E06;
  --wine-light:   #A83828;
  --coral:        #C84830;
  --coral-light:  #F08070;
  --charcoal:     #1C0A06;
  --ash:          #6B4438;
  --ash-light:    #9C7060;

  /* Font stacks for parchment pages */
  --font-serif-p: "DM Serif Display", Georgia, serif;
  --font-sans-p:  "DM Sans", system-ui, sans-serif;
  --font-mono-p:  "DM Mono", monospace;
}

/* ── PARCHMENT BODY ── */
.parchment-page {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans-p);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── PARCHMENT NAV ── */
.pnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-mid);
  padding: 0 40px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pnav-logo {
  font-family: var(--font-serif-p);
  font-size: 18px;
  color: var(--charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}
.pnav-logo em { color: var(--wine); font-style: italic; }
.pnav-logo img { width: 30px; height: 30px; border-radius: 7px; display: block; flex-shrink: 0; }
.pnav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.pnav-links a { font-size: 13px; font-weight: 500; color: var(--ash); text-decoration: none; transition: color 0.2s; }
.pnav-links a:hover { color: var(--charcoal); }
.pnav-cta {
  background: var(--wine);
  color: var(--cream) !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.2s;
}
.pnav-cta:hover { background: var(--wine-dark) !important; }

/* ── PARCHMENT TYPOGRAPHY ── */
.p-serif { font-family: var(--font-serif-p); }
.p-mono  { font-family: var(--font-mono-p); }
.p-sans  { font-family: var(--font-sans-p); }

.p-label {
  font-family: var(--font-mono-p);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash-light);
}

.p-h1 {
  font-family: var(--font-serif-p);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.p-h2 {
  font-family: var(--font-serif-p);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.p-h1 em, .p-h2 em { font-style: italic; color: var(--wine); }

/* ── PARCHMENT LAYOUT ── */
.p-container { max-width: 860px; margin: 0 auto; padding: 0 40px; }
.p-section { padding: 72px 0; border-bottom: 1px solid var(--cream-mid); }
.p-section:last-of-type { border-bottom: none; }

/* ── PARCHMENT BUTTONS ── */
.p-btn-primary {
  display: inline-block;
  background: linear-gradient(to right, var(--wine-dark), var(--wine), var(--coral));
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.p-btn-primary:hover { opacity: 0.88; }

.p-btn-ghost {
  display: inline-block;
  border: 1.5px solid var(--cream-mid);
  color: var(--ash);
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.p-btn-ghost:hover { border-color: var(--ash); color: var(--charcoal); }

/* ── PARCHMENT TAGS / PILLS ── */
.p-pill {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid var(--cream-mid);
  color: var(--ash);
  background: var(--cream-deep);
  display: inline-block;
}
.p-pill.on { border-color: var(--wine); color: var(--wine); background: rgba(122,36,24,0.06); }

.p-tag {
  font-family: var(--font-mono-p);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}
.p-tag-adventure { background: rgba(122,36,24,0.08); color: var(--wine-light); border: 1px solid rgba(122,36,24,0.15); }
.p-tag-all       { background: rgba(107,68,56,0.08); color: var(--ash);        border: 1px solid var(--cream-mid); }

/* ── PARCHMENT CARDS ── */
.p-card {
  background: var(--cream-deep);
  border: 1px solid var(--cream-mid);
  border-radius: 14px;
  padding: 24px;
}
.p-card-dark {
  background: var(--wine-dark);
  border-radius: 20px;
  padding: 44px;
  color: var(--cream);
}

/* ── PARCHMENT DISCLAIMER ── */
.p-disclaimer {
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(237,212,176,0.5);
  border-left: 3px solid var(--coral);
  border-radius: 0 6px 6px 0;
  font-size: 12px;
  color: var(--ash);
  line-height: 1.55;
}
.p-disclaimer strong { color: var(--coral); }

/* ── PARCHMENT SMS NOTE ── */
.p-sms-note {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(237,212,176,0.4);
  border: 1px solid var(--cream-mid);
  border-radius: 10px;
  font-size: 12px;
  color: var(--ash);
  line-height: 1.6;
}
.p-sms-note strong { color: var(--wine); }

/* ── PARCHMENT PHONE MOCKUP ── */
.p-phone-wrap { display: flex; justify-content: center; padding-top: 8px; }
.p-phone {
  width: 200px;
  background: var(--wine-dark);
  border-radius: 32px;
  padding: 14px 12px;
  box-shadow: 0 24px 60px rgba(58,14,6,0.25), 0 4px 12px rgba(58,14,6,0.15);
}
.p-phone::before {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  margin: 0 auto 10px;
}
.p-phone-screen {
  background: var(--cream);
  border-radius: 22px;
  padding: 16px 14px;
  min-height: 270px;
}
.p-phone-time { font-family: var(--font-mono-p); font-size: 10px; color: var(--ash-light); margin-bottom: 10px; }
.p-phone-lbl  { font-family: var(--font-mono-p); font-size: 8px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash-light); margin-bottom: 12px; }
.p-phone-card { background: var(--cream-deep); border: 1px solid var(--cream-mid); border-radius: 10px; padding: 10px 12px; margin-bottom: 8px; }
.p-phone-card-lbl { font-family: var(--font-mono-p); font-size: 8px; color: var(--ash-light); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.08em; }
.p-phone-card-val { font-size: 12px; font-weight: 600; color: var(--charcoal); }
.p-phone-card-val.wine { color: var(--wine); }
.p-phone-timer { text-align: center; padding: 14px 0 8px; }
.p-phone-timer .big { font-family: var(--font-serif-p); font-size: 36px; letter-spacing: -0.03em; color: var(--wine); line-height: 1; }
.p-phone-timer .unit { font-family: var(--font-mono-p); font-size: 9px; color: var(--ash-light); letter-spacing: 0.1em; }
.p-phone-btn-primary {
  display: block; width: 100%; text-align: center; padding: 10px; border-radius: 10px;
  font-size: 11px; font-weight: 600; margin-top: 10px;
  background: linear-gradient(to right, var(--wine-dark), var(--wine), var(--coral));
  color: var(--cream);
}
.p-phone-btn-ghost {
  display: block; width: 100%; text-align: center; padding: 9px; border-radius: 10px;
  font-size: 10px; color: var(--ash); margin-top: 6px; border: 1px solid var(--cream-mid);
}
.p-phone-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--cream-mid); }
.p-phone-row:last-child { border-bottom: none; }
.p-phone-row .name { font-weight: 600; color: var(--charcoal); font-size: 11px; }
.p-phone-row .role { font-size: 9px; color: var(--ash-light); font-family: var(--font-mono-p); }
.p-badge { font-size: 8px; padding: 2px 7px; border-radius: 4px; font-family: var(--font-mono-p); font-weight: 500; }
.p-badge-wine { background: rgba(122,36,24,0.10); color: var(--wine); }
.p-badge-ash  { background: rgba(107,68,56,0.08); color: var(--ash-light); }
.p-priv-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--cream-mid); font-size: 10px; }
.p-priv-row:last-child { border-bottom: none; }
.p-priv-key { color: var(--ash); }
.p-priv-val { font-family: var(--font-mono-p); font-size: 9px; }
.pv-wine  { color: var(--wine); }
.pv-coral { color: var(--coral); }
.pv-ash   { color: var(--ash-light); }

/* ── PARCHMENT ARCH CARD (server-side flow) ── */
.p-arch-card { background: var(--wine-dark); border-radius: 22px; padding: 20px 18px; width: 200px; }
.p-arch-lbl  { font-family: var(--font-mono-p); font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(252,240,224,0.3); margin-bottom: 16px; }
.p-arch-step { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.p-arch-step:last-child { margin-bottom: 0; }
.p-adot { width: 7px; height: 7px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.p-adot-go    { background: #4ade80; }
.p-adot-wait  { background: var(--coral-light); }
.p-adot-ok    { background: #4ade80; }
.p-adot-alert { background: #ff6b6b; }
.p-arch-text  { font-size: 11px; line-height: 1.5; color: rgba(252,240,224,0.5); }
.p-arch-text strong { color: var(--cream); display: block; font-size: 10px; font-family: var(--font-mono-p); letter-spacing: 0.04em; margin-bottom: 1px; }
.p-arch-hr { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 12px 0; }

/* ── PARCHMENT FEATURE ROWS ── */
.p-features-wrap { max-width: 860px; margin: 0 auto; padding: 0 40px 80px; }
.p-feature {
  padding: 56px 0;
  border-bottom: 1px solid var(--cream-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.p-feature:last-child { border-bottom: none; }
.p-feat-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.p-feat-num  { font-family: var(--font-mono-p); font-size: 10px; color: var(--ash-light); letter-spacing: 0.1em; }
.p-feat-copy h2 { margin-bottom: 12px; }
.p-feat-copy p  { font-size: 14px; color: var(--ash); line-height: 1.72; margin-bottom: 18px; }
.p-feat-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.p-feat-list li { font-size: 13px; color: var(--ash); padding-left: 18px; position: relative; line-height: 1.5; }
.p-feat-list li::before { content: "—"; position: absolute; left: 0; color: var(--ash-light); font-size: 11px; }

/* ── PARCHMENT VIGNETTE CARDS ── */
.p-vignette {
  background: var(--cream-deep);
  border: 1px solid var(--cream-mid);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.p-vignette::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--wine), var(--coral));
}

/* ── PARCHMENT PRICING CARDS ── */
.p-price-card {
  background: var(--cream-deep);
  border: 1px solid var(--cream-mid);
  border-radius: 16px;
  padding: 28px;
}
.p-price-card.featured {
  border-color: var(--wine);
  position: relative;
}
.p-price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -11px; left: 24px;
  background: var(--wine);
  color: var(--cream);
  font-family: var(--font-mono-p);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px;
}

/* ── PARCHMENT STATS ROW ── */
.p-stats { display: flex; gap: 0; flex-wrap: wrap; border-top: 1px solid var(--cream-mid); border-bottom: 1px solid var(--cream-mid); }
.p-stat  { flex: 1; min-width: 120px; padding: 20px 24px; border-right: 1px solid var(--cream-mid); }
.p-stat:last-child { border-right: none; }
.p-stat-num { font-family: var(--font-serif-p); font-size: 28px; color: var(--wine); letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; }
.p-stat-lbl { font-size: 11px; color: var(--ash-light); line-height: 1.4; }

/* ── PARCHMENT TICKER ── */
.p-ticker-wrap { overflow: hidden; background: var(--wine-dark); padding: 12px 0; }
.p-ticker { display: flex; width: max-content; animation: p-ticker 36s linear infinite; }
@keyframes p-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.p-ticker-item { font-family: var(--font-mono-p); font-size: 11px; font-weight: 500; color: rgba(252,240,224,0.55); padding: 0 32px; white-space: nowrap; letter-spacing: 0.04em; }
.p-ticker-item.hi { color: rgba(240,128,112,0.8); }

/* ── PARCHMENT OMISSIONS (dark card) ── */
.p-omit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.p-omit-item { font-size: 13px; color: rgba(252,240,224,0.45); padding: 11px 0; border-top: 1px solid rgba(255,255,255,0.05); display: flex; gap: 10px; align-items: baseline; }
.p-omit-item::before { content: "✕"; color: rgba(255,255,255,0.12); font-size: 10px; flex-shrink: 0; }

/* ── PARCHMENT FOOTER ── */
.p-footer { background: var(--wine-dark); padding: 48px 40px 32px; }
.p-footer-inner { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.p-footer-brand .logo { font-family: var(--font-serif-p); font-size: 18px; color: var(--cream); margin-bottom: 10px; display: flex; align-items: center; gap: 9px; }
.p-footer-brand .logo em { color: var(--coral-light); font-style: italic; }
.p-footer-brand .logo img { width: 26px; height: 26px; border-radius: 6px; }
.p-footer-brand p { font-size: 13px; color: rgba(252,240,224,0.4); line-height: 1.6; }
.p-footer-col h4 { font-family: var(--font-mono-p); font-size: 9px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(252,240,224,0.3); margin-bottom: 14px; }
.p-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.p-footer-col a { font-size: 13px; color: rgba(252,240,224,0.55); text-decoration: none; }
.p-footer-col a:hover { color: var(--cream); }
.p-footer-copy { max-width: 860px; margin: 0 auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; font-size: 11px; color: rgba(252,240,224,0.3); font-family: var(--font-mono-p); letter-spacing: 0.04em; }

/* ── PARCHMENT SERVER CALLOUT (dark 2-col section) ── */
.p-server-inner {
  background: var(--wine-dark);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.p-server-copy p { font-size: 14px; color: rgba(252,240,224,0.65); line-height: 1.7; margin-bottom: 20px; }
.p-server-copy ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.p-server-copy li { font-size: 13px; color: rgba(252,240,224,0.6); padding-left: 16px; position: relative; line-height: 1.5; }
.p-server-copy li::before { content: "—"; position: absolute; left: 0; color: var(--coral-light); opacity: 0.6; font-size: 11px; }
.p-server-step { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.p-server-step:last-child { border-bottom: none; }
.p-step-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.p-step-dot.go    { background: #4ade80; }
.p-step-dot.wait  { background: var(--coral-light); }
.p-step-dot.ok    { background: #4ade80; }
.p-step-dot.alert { background: #ff6b6b; }
.p-step-title { font-family: var(--font-mono-p); font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); margin-bottom: 3px; }
.p-step-desc  { font-size: 12px; color: rgba(252,240,224,0.5); line-height: 1.55; }

/* ── PARCHMENT TAGLINE PILL ── */
.p-tagline-pill {
  display: inline-block;
  font-family: var(--font-mono-p);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--wine-light);
  background: rgba(122,36,24,0.07);
  border: 1px solid rgba(122,36,24,0.18);
  padding: 7px 16px;
  border-radius: 100px;
}

/* ── PARCHMENT RESPONSIVE ── */
@media (max-width: 720px) {
  .pnav { padding: 0 20px; }
  .pnav-links, .pnav-cta { display: none; }
  .p-container { padding: 0 20px; }
  .p-feature { grid-template-columns: 1fr; gap: 32px; }
  .p-server-inner { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
  .p-footer-inner { grid-template-columns: 1fr 1fr; }
  .p-omit-grid { grid-template-columns: 1fr; }
}
