/* Zremi — public landing page
   Brand: navy #1B2A3A primary, light blue #5BA8E0 accent, warm cream surface.
   Typography: Source Serif 4 for display, Inter for UI.
*/

:root {
  --navy: #1B2A3A;
  --navy-soft: #2a3a4d;
  --blue: #5BA8E0;
  --blue-soft: #d8ebf8;
  --cream: #f6f3ec;
  --cream-2: #fbf9f4;
  --cream-3: #ede8de;
  --ink: #1B2A3A;
  --ink-muted: #5d6975;
  --ink-faint: #98a0a8;
  --border: #e3ddd1;
  --border-strong: #d6cfbf;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(27, 42, 58, 0.06);
  --shadow-md: 0 4px 16px rgba(27, 42, 58, 0.08);
  --shadow-lg: 0 16px 40px rgba(27, 42, 58, 0.12);

  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1120px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--blue); }

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

p { margin: 0; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 236, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.logo-mark {
  display: block;
  flex-shrink: 0;
}
.logo-lockup {
  display: block;
  height: 44px;
  width: auto;
  flex-shrink: 0;
  max-width: 70vw;
  object-fit: contain;
}
@media (min-width: 768px) {
  .logo-lockup { height: 52px; }
}
.logo-word {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 500;
}
.header-nav a:hover { color: var(--ink); }
.header-nav .nav-cta {
  color: #fff;
  background: var(--blue);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  font-weight: 600;
}
.header-nav .nav-cta:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.header-nav .nav-link {
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
}
.header-nav .nav-link:hover { color: var(--ink); }
.header-nav .nav-link-quiet {
  opacity: 0.7;
  font-size: 13px;
}

/* Hamburger menu */
.menu-wrap {
  position: relative;
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(21, 42, 59, 0.15);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.menu-toggle:hover {
  border-color: rgba(21, 42, 59, 0.35);
  background: rgba(21, 42, 59, 0.04);
}
.menu-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.menu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(21, 42, 59, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(21, 42, 59, 0.12);
  padding: 8px;
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.menu-dropdown[hidden] {
  display: none;
}
.header-nav .menu-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
}
.header-nav .menu-dropdown a:hover {
  background: var(--cream);
  color: var(--navy);
}

/* Hero */
.hero {
  padding: 64px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--cream-2);
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-bottom: 22px;
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--navy);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
  max-width: 18ch;
}
.lede {
  margin-top: 20px;
  max-width: 56ch;
  color: var(--ink-muted);
  font-size: 17.5px;
  line-height: 1.6;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-visual {
  position: relative;
}
.hero-image-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--cream-3);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 120ms ease;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-soft);
  color: #fff;
  border-color: var(--navy-soft);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--cream-2);
  border-color: var(--navy);
  color: var(--navy);
}
.btn-block { width: 100%; }

/* Section bands */
.band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream-2);
  padding: 64px 0;
}
.band-accent {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--blue-soft) 100%);
}
.section { padding: 80px 0; }

.band-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  font-weight: 500;
}
.band-head h2 {
  margin-top: 8px;
  font-size: clamp(1.6rem, 1rem + 1.6vw, 2.25rem);
  font-weight: 500;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.card h3 {
  font-size: 17px;
  font-family: var(--font-serif);
  font-weight: 500;
  margin-bottom: 6px;
}
.card p {
  font-size: 13px;
  color: var(--ink-muted);
}

/* Features */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.two-col h2 {
  margin-top: 8px;
  font-size: clamp(1.6rem, 1rem + 1.6vw, 2.25rem);
  font-weight: 500;
}
.muted {
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 15.5px;
  max-width: 52ch;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-grid li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.feature-icon {
  background: var(--blue-soft);
  color: var(--navy);
  border-radius: 8px;
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-label {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}
.feature-desc {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* Soft tag chip (e.g. "add-on") */
.tag-soft {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--blue-soft);
  border-radius: 999px;
  letter-spacing: 0.02em;
  vertical-align: 1px;
}

/* Memory horizon — "Why this matters" */
.memory-section {
  background: var(--cream);
}
.memory-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}
.memory-copy h2 {
  margin-top: 8px;
  font-size: clamp(1.7rem, 1rem + 1.8vw, 2.4rem);
  font-weight: 500;
  max-width: 18ch;
}
.memory-lede {
  margin-top: 18px;
}
.memory-quote {
  margin: 28px 0 24px;
  padding: 22px 24px;
  border-left: 3px solid var(--blue);
  background: var(--cream-2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
}
.memory-quote p {
  font-size: 17.5px;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
}
.memory-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 13px;
  color: var(--ink-muted);
}
.memory-stats {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  position: sticky;
  top: 96px;
}
.memory-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.memory-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border-strong);
}
.memory-timeline li {
  position: relative;
  padding: 0 0 22px 28px;
}
.memory-timeline li:last-child { padding-bottom: 4px; }
.memory-timeline li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--cream-2);
  border: 2px solid var(--navy);
  box-sizing: border-box;
}
.memory-timeline .memory-final::before {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(91, 168, 224, 0.18);
}
.memory-when {
  font-family: var(--font-sans);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  font-weight: 500;
}
.memory-what {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 2px;
}
.memory-final .memory-what { color: var(--navy); }
.memory-timeline li p {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.55;
}
.memory-source {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.55;
}
.memory-source strong {
  color: var(--ink);
  font-weight: 500;
}

/* How it works */
.how-section {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.how-grid li {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.how-step {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.how-grid h3 {
  font-size: 17px;
  font-family: var(--font-serif);
  font-weight: 500;
}
.how-grid p {
  font-size: 14.5px;
  color: var(--ink-muted);
  margin: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.contact-copy h2 {
  margin-top: 8px;
  font-size: clamp(1.7rem, 1rem + 1.8vw, 2.4rem);
  font-weight: 500;
}
.inline-link {
  color: var(--navy);
  border-bottom: 1px solid currentColor;
}
.inline-link:hover { color: var(--blue); }

.contact-form {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 14px;
  position: relative;
}
.form-row { display: grid; gap: 6px; }
.form-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  width: 100%;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(91, 168, 224, 0.25);
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-note {
  margin-top: 6px;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}
.form-note-success {
  background: #e9f3ec;
  color: #2c5d3b;
}
.form-note-error {
  background: #fbe9e7;
  color: #8a2a1f;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--cream);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-muted);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--ink-muted);
}
.footer-links a:hover { color: var(--navy); }

/* Responsive */
@media (max-width: 880px) {
  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .memory-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .memory-stats {
    position: static;
  }
  .hero { padding: 40px 0 32px; }
  .section { padding: 56px 0; }
  .band { padding: 48px 0; }
  .header-nav { gap: 16px; }
  .header-nav > a:not(.nav-cta) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ─── Hero life album preview frame ─────────────────────────────────── */
.hero-image-frame--memorial {
  background: var(--cream);
  padding: 6px;
  box-shadow: 0 30px 60px -30px rgba(27, 42, 58, 0.35), 0 8px 20px -10px rgba(27, 42, 58, 0.15);
  border-radius: 14px;
}
.hero-image-frame--memorial img {
  border-radius: 10px;
  display: block;
  width: 100%;
  height: auto;
  /* show only the top portion so the hero stays compact */
  aspect-ratio: 4/3.4;
  object-fit: cover;
  object-position: top center;
}
.hero-image-caption {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}
.hero-image-caption:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ─── Founding-partners banner ────────────────────────────────────── */
.band-sub {
  margin-top: 12px;
  max-width: 640px;
  font-size: 15px;
}
.founding-banner {
  margin-top: 32px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  background: rgba(91, 168, 224, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.founding-banner p {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
  flex: 1 1 320px;
  min-width: 240px;
}

/* ─── Pricing section ─────────────────────────────────────────────── */
.pricing-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-grid {
  margin-top: 36px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.pricing-card--primary {
  border-color: var(--navy);
  box-shadow: 0 1px 0 var(--navy);
}
.pricing-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.pricing-amount {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--navy);
}
.pricing-price {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1;
}
.pricing-cadence {
  font-size: 14px;
  color: var(--ink-muted);
}
.pricing-tag {
  margin: 14px 0 18px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
}
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.pricing-list li {
  position: relative;
  padding-left: 22px;
}
.pricing-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.pricing-foot {
  margin-top: auto;
  font-size: 13px;
}

/* ─── Legal pages ─────────────────────────────────────────────────── */
.legal-page {
  background: var(--cream);
  padding: 56px 0 80px;
  min-height: 70vh;
}
.legal-page .container {
  max-width: 760px;
}
.legal-page h1 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 36px;
  margin: 0 0 8px;
}
.legal-page .legal-meta {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 36px;
}
.legal-page h2 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 22px;
  margin: 32px 0 10px;
}
.legal-page h3 {
  font-size: 15px;
  margin: 24px 0 6px;
  color: var(--navy);
}
.legal-page p, .legal-page li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}
.legal-page ul {
  padding-left: 22px;
  margin: 8px 0 16px;
}
.legal-page a { color: var(--blue); }
.legal-page a:hover { color: var(--navy); }

/* Trial ribbon on primary pricing card */
.pricing-card { position: relative; }
.pricing-card-ribbon {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(27, 42, 58, 0.18);
}

/* Consent block on contact form */
.consent-block {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 8px;
  background: #fafaf7;
}
.consent-legend {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0 6px;
}
.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
  margin-top: 12px;
  cursor: pointer;
}
.consent-row input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
}
.consent-row strong { color: var(--navy); }
.consent-foot {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.55;
  border-top: 1px dashed var(--border);
  padding-top: 10px;
}

/* ============================================================
   Now vs. Later — MVP framing band
   ============================================================ */
.nowlater-section {
  background: linear-gradient(180deg, var(--cream) 0%, #f6f1e7 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nowlater-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 760px) {
  .nowlater-grid { grid-template-columns: 1fr; }
}
.nowlater-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(27, 42, 58, 0.04);
}
.nowlater-card h3 {
  font-family: var(--display, "Source Serif Pro", Georgia, serif);
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--navy);
  margin: .6rem 0 1rem;
  font-weight: 600;
}
.nowlater-sub {
  display: block;
  font-family: inherit;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: #5b6b7d;
  margin-top: .15rem;
}
.nowlater-pill {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 999px;
  font-weight: 600;
}
.nowlater-pill--now {
  background: var(--navy);
  color: #fff;
}
.nowlater-pill--later {
  background: rgba(91, 168, 224, 0.15);
  color: #1d6296;
  border: 1px solid rgba(91, 168, 224, 0.4);
}
.nowlater-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nowlater-list li {
  position: relative;
  padding: .55rem 0 .55rem 1.4rem;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink);
  border-bottom: 1px dashed var(--border);
}
.nowlater-list li:last-child { border-bottom: none; }
.nowlater-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent, #5BA8E0);
}
.nowlater-now .nowlater-list li::before { background: var(--navy); }
.nowlater-foot {
  margin-top: 1.5rem;
  font-size: .9rem;
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================================================
   Waitlist pivot additions (May 2026)
   - hero-copy / hero-trust
   - scarcity band
   - pricing banner
   - checkbox row, form promise
   =========================================================== */

.hero-copy { max-width: 36rem; }
.hero-copy .pill { display: inline-flex; align-items: center; gap: .5rem; }
.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 1rem 0 1rem;
  color: var(--ink);
}
.hero-copy .lede {
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 34rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.25rem 0 1rem; }

.hero-trust {
  list-style: none;
  padding: 0;
  margin: .75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  color: var(--ink-muted);
  font-size: .92rem;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.hero-trust li span[aria-hidden="true"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 600;
}
.hero-trust--block {
  flex-direction: column;
  gap: .5rem;
  margin: 1rem 0 1.25rem;
}
.hero-trust--block li { font-size: .98rem; color: var(--ink); }

/* Scarcity band */
.scarcity-band {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.scarcity-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.scarcity-stat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.scarcity-num {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.scarcity-num #claimed-count { color: var(--navy); }
.scarcity-of {
  font-size: 1.1rem;
  color: var(--ink-faint);
  font-weight: 400;
}
.scarcity-label {
  font-size: .9rem;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
}
.scarcity-meter {
  height: 8px;
  border-radius: 999px;
  background: var(--cream-3);
  overflow: hidden;
  min-width: 140px;
}
.scarcity-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: 999px;
  transition: width .6s ease;
}
.scarcity-note {
  max-width: 22rem;
  font-size: .9rem;
  text-align: right;
}
@media (max-width: 760px) {
  .scarcity-inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 1rem;
  }
  .scarcity-note { text-align: left; }
}

/* Pricing banner (no-card / no-payment reminder above pricing grid) */
.pricing-banner {
  background: var(--blue-soft);
  border: 1px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 1.5rem auto 2rem;
  max-width: 44rem;
  text-align: center;
  font-size: .98rem;
  color: var(--ink);
  line-height: 1.55;
}
.pricing-banner strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: .15rem;
}
.pricing-fineprint {
  display: block;
  margin-top: .55rem;
  padding-top: .55rem;
  border-top: 1px dashed rgba(0,0,0,.12);
  font-size: .85rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
}
.founding-banner p.founding-fineprint {
  flex: 1 0 100%;
  width: 100%;
  max-width: 52rem;
  margin: .85rem auto 0;
  padding-top: .75rem;
  border-top: 1px dashed rgba(0,0,0,.12);
  text-align: center;
  font-size: .88rem;
  line-height: 1.55;
}

/* Checkbox row (demo opt-in) */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .9rem 1rem;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin: .25rem 0 .5rem;
  cursor: pointer;
  font-size: .95rem;
  color: var(--ink);
  line-height: 1.4;
}
.checkbox-row input[type="checkbox"] {
  margin-top: .15rem;
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  flex-shrink: 0;
}
.checkbox-row:hover {
  border-color: var(--blue);
  background: #fff;
}

/* Form promise (final reassurance directly above submit) */
.form-promise {
  margin: .75rem 0 0;
  padding: .85rem 1rem;
  background: var(--cream-3);
  border-left: 3px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.5;
}
.form-promise strong { color: var(--navy); }

/* Live counter additions */
.scarcity-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
  animation: zremi-pulse 2s infinite;
}
@keyframes zremi-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
.is-full .live-dot { background: #c0392b; }
.is-full .live-dot { animation: none; box-shadow: none; }

/* Recent signups ticker */
.ticker-wrap {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}
.ticker-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: .5rem;
  font-weight: 500;
}
.ticker-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .6rem;
}
.ticker-list li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .7rem .35rem .55rem;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--ink-muted);
  line-height: 1.3;
  animation: zremi-fadein .4s ease;
}
.ticker-list li strong { color: var(--ink); font-weight: 600; }
.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
@keyframes zremi-fadein {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Full-state visual hint on scarcity meter */
.is-full .scarcity-fill {
  background: linear-gradient(90deg, #c0392b 0%, #1B2A3A 100%);
}

/* Charter Partner footnote on Founding Partner pricing card */
.pricing-charter-note {
  margin-top: .75rem;
  padding: .7rem .85rem;
  background: var(--cream-3);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  line-height: 1.5;
  color: var(--ink-muted);
  border-left: 3px solid var(--blue);
}
.pricing-charter-note strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   Tip Jar — hidden by default; revealed when feature flag is on
   ============================================================ */

/* Footer link */
#tip-footer-link {
  color: var(--ink-muted);
}
#tip-footer-link:hover {
  color: var(--blue);
}

/* Modal shell */
.tip-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: zremi-fadein .18s ease-out;
}
.tip-modal[hidden] {
  display: none;
}
.tip-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 42, 58, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.tip-modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 20px 60px rgba(27, 42, 58, 0.35);
  border: 1px solid var(--cream-3);
}
.tip-modal-close {
  position: absolute;
  top: .5rem;
  right: .65rem;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-muted);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.tip-modal-close:hover {
  background: var(--cream-3);
  color: var(--ink);
}
.tip-modal-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 .65rem;
  letter-spacing: -0.01em;
}
.tip-modal-lead {
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

/* Amount buttons */
.tip-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .55rem;
  margin: 0 0 1.1rem;
}
.tip-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem .5rem;
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .08s, color .15s;
}
.tip-btn:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--navy);
}
.tip-btn:active {
  transform: translateY(1px);
}
.tip-btn-custom {
  font-size: .92rem;
}

/* Disclaimer */
.tip-disclaimer {
  margin: 0;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--ink-faint);
  text-align: center;
}

/* Inline prompt under signup success */
.tip-inline-prompt {
  margin-top: .65rem;
  padding: .7rem .9rem;
  background: var(--cream-3);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  line-height: 1.5;
  color: var(--ink-muted);
  border-left: 3px solid var(--blue);
}
.tip-inline-text {
  color: var(--ink-muted);
}
.tip-inline-link {
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
}
.tip-inline-link:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .tip-amounts {
    grid-template-columns: repeat(2, 1fr);
  }
  .tip-modal-card {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .tip-modal-title {
    font-size: 1.3rem;
  }
}

/* ====================================================== */
/* NEW LANDING PAGE STYLES — 2026-05-17 PIVOT             */
/* ====================================================== */

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

.section-light { background: #FBFBF8; color: #1B2A3A; }
.section-dark  { background: #1B2A3A; color: #F5F2EC; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #F5F2EC; }
.section-dark a { color: #5BA8E0; }
.section-dark a:hover { color: #8BC4ED; }

.section h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.section h3.subhead {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2rem 0 0.5rem;
}
.section p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.section-lede {
  font-size: 1.25rem;
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 2rem;
}
.callout {
  font-size: 1.15rem;
  line-height: 1.65;
  margin: 1.5rem 0;
}
.emphasis {
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  margin: 2rem 0;
  color: inherit;
}
.section-dark .emphasis { color: #F5F2EC; }

/* Stats list */
.stat-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stat-list li {
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border-left: 3px solid #5BA8E0;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(27, 42, 58, 0.06);
}
.stat-list .source {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  opacity: 0.7;
}
.stat-list .source a {
  color: #1B2A3A;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* Pull quote */
.pull-quote {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.5;
  font-style: italic;
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid #5BA8E0;
  background: rgba(91, 168, 224, 0.08);
}
.pull-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  font-style: normal;
  opacity: 0.8;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  top: 0;
  color: #5BA8E0;
  font-size: 1.25rem;
  font-weight: bold;
}

/* Pricing cards — new 3-tier grid */
.section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.price-card {
  background: #FFFFFF;
  border: 1px solid rgba(27, 42, 58, 0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(27, 42, 58, 0.04);
}
.price-card h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 1rem;
}
.price-card .price {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #1B2A3A;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.price-card .price-unit {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}
.price-card .price-sub {
  font-size: 0.95rem;
  opacity: 0.75;
  margin: 0 0 1.25rem;
}
.price-card .price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  border-top: 1px solid rgba(27, 42, 58, 0.08);
  padding-top: 1rem;
}
.price-card .price-features li {
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0.4rem 0;
  color: rgba(27, 42, 58, 0.85);
}
.price-card .price-features li + li {
  border-top: 1px solid rgba(27, 42, 58, 0.05);
}
.price-card .price-cta {
  margin: 1.25rem 0 0;
  text-align: center;
}
.price-card .price-cta a {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

/* Footnotes / fine print */
.footnote-emphasis {
  font-size: 0.95rem;
  opacity: 0.75;
  font-style: italic;
  margin-top: 1.5rem;
}
.hero-fineprint {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* Signature */
.signature {
  margin-top: 2.5rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
}
.signature-title {
  font-size: 0.95rem;
  opacity: 0.75;
  font-style: normal;
}

/* Buttons — keeping consistent with existing brand */
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  background: transparent;
  color: #1B2A3A;
  border: 1px solid #1B2A3A;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover {
  background: #1B2A3A;
  color: #FFFFFF;
}
.section-dark .btn-secondary {
  color: #F5F2EC;
  border-color: #F5F2EC;
}
.section-dark .btn-secondary:hover {
  background: #F5F2EC;
  color: #1B2A3A;
}

/* Soft divider */
.soft-divider {
  border: 0;
  border-top: 1px solid rgba(27, 42, 58, 0.12);
  margin: 3rem 0 2rem;
}

/* Footer fine print */
.footer-fineprint {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-fineprint p { margin: 0; max-width: 760px; }

/* Hero adjustments for new copy */
.hero .lede strong { font-weight: 600; }

/* Hero image */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(27, 42, 58, 0.18);
  max-width: 100%;
}
.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image { order: -1; max-width: 100%; }
}

/* Self-contained button styles for the new landing page */
.section .btn-primary,
.hero a.btn-primary,
a.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  background: #1B2A3A;
  color: #FFFFFF;
  border: 1px solid #1B2A3A;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  transition: background 0.15s ease, transform 0.12s ease;
}
.section .btn-primary:hover,
.hero a.btn-primary:hover,
a.btn-primary:hover {
  background: #2A3F55;
  color: #FFFFFF;
  text-decoration: none;
}

/* Honeypot field — visually hidden but present in DOM for bot detection */
.form-row.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
