/* =============================================
   GNOS — Landing Page Styles
   Sepia palette, literary & clean
   ============================================= */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@700,600,500&f[]=satoshi@700,600,500,400&f[]=author@600,500,400&f[]=erode@400,300&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=britney@600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #f4efe6;
  --surface:      #faf6ef;
  --surface-alt:  #ede7db;
  --border:       #ddd5c5;
  --border-subtle:#e8e2d8;
  --text:         #3b2f20;
  --text-dim:     #6b5a4a;
  --text-muted:   #9c8a7a;
  --accent:       #8b5e3c;
  --accent-hover: #7a5234;
  --accent-light: #f0e5d8;

  /* Brand typography */
  --font-display:  Georgia, 'Clash Display', sans-serif;   /* Bold titles H1/H2 */
  --font-subhead:  'Satoshi', -apple-system, sans-serif;   /* Sub-headers H3 */
  --font-body:     'Author', -apple-system, sans-serif;    /* Navigation, UI, source */
  --font-liveview: 'Erode', Georgia, serif;                /* Live/rendered text, descriptions */
  --font-logo:     'Britney', Georgia, serif;               /* Wordmark only */

  /* Aliases so existing selectors resolve correctly */
  --font-serif:   var(--font-display);
  --font-sans:    var(--font-body);

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;

  --shadow-sm:    0 1px 3px rgba(59,47,32,.08), 0 1px 2px rgba(59,47,32,.04);
  --shadow:       0 4px 16px rgba(59,47,32,.10), 0 1px 4px rgba(59,47,32,.06);
  --shadow-lg:    0 12px 40px rgba(59,47,32,.14), 0 4px 12px rgba(59,47,32,.08);

  --nav-h:        64px;
  --max-w:        1120px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-liveview);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(244, 239, 230, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 213, 197, 0.6);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.nav-logo-mark svg {
  width: 16px;
  height: 17px;
}

.nav-logo-name {
  font-family: var(--font-logo);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: color .18s;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: #faf6ef;
}

.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover { background: var(--accent-light); }

.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: var(--radius); }


/* ── HERO ── */
.hero {
  padding: 96px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139,94,60,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px 4px 8px;
  background: var(--accent-light);
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 24px;
}

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

.hero-word-cycle {
  color: var(--accent);
  font-style: inherit;
  border-right: 2.5px solid var(--accent);
  padding-right: 3px;
  animation: cursor-blink 0.65s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { border-color: var(--accent); }
  50% { border-color: transparent; }
}

.hero-sub {
  font-family: var(--font-liveview);
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  font-family: var(--font-body);
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.hero-mockup {
  margin-top: 80px;
  position: relative;
  width: 100%;
  /* no container constraints — parent section handles width */
}

.hero-mockup-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.window-bar {
  height: 40px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.window-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border);
}

.window-dot:nth-child(1) { background: #f59898; }
.window-dot:nth-child(2) { background: #f5cf98; }
.window-dot:nth-child(3) { background: #a8d98a; }

.window-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-right: 40px;
}

.mock-library {
  padding: 24px;
  min-height: 260px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}

.mock-book {
  border-radius: 8px;
  aspect-ratio: 2/3;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 4px 12px rgba(59,47,32,.18);
}

.mock-book-cover {
  width: 100%; height: 100%;
  object-fit: cover;
}

.mock-book-color {
  width: 100%; height: 100%;
}

.mock-book-tag {
  position: absolute;
  top: 6px; right: 6px;
  background: rgba(139,94,60,.9);
  color: #faf6ef;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mock-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.25);
}

.mock-progress-fill {
  height: 100%;
  background: var(--accent);
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-family: var(--font-liveview);
  font-size: 17px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FEATURES ── */
.features { padding: 96px 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background .18s;
}

.feature-card:hover { background: var(--surface-alt); }

.feature-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(139,94,60,.15);
}

.feature-title {
  font-family: var(--font-subhead);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.feature-desc {
  font-family: var(--font-liveview);
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── SHOWCASE ── */
.showcase { padding: 0; background: var(--surface); overflow: hidden; }

.showcase-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  align-items: center;
}

.showcase-split.reverse {
  grid-template-columns: 2fr 3fr;
}

.showcase-split.reverse > .showcase-visual { order: 2; }
.showcase-split.reverse > .showcase-text { order: 1; }

.showcase-visual {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--surface-alt);
}

.showcase-visual-flush.showcase-visual {
  border-radius: 0;
  background: transparent;
}

.showcase-text-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.showcase-text {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.showcase-text p {
  font-family: var(--font-liveview);
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-liveview);
  font-size: 15px;
  color: var(--text-dim);
}

.showcase-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Mock reader inside showcase */
.mock-reader {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text);
  position: relative;
}

.mock-reader-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.mock-reader-chapter {
  font-family: var(--font-liveview);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
}

.mock-reader p { margin-bottom: 12px; }

.mock-highlight {
  background: rgba(139,94,60,.18);
  border-radius: 2px;
  padding: 0 1px;
}

.mock-reader-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.mock-reader-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
}

.mock-reader-dot.active { background: var(--accent); }

/* Mock notebook */
.mock-notebook {
  font-family: var(--font-sans);
}

.mock-notebook-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.mock-nb-tag {
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 500;
  background: var(--surface-alt);
  color: var(--text-dim);
  border: 1px solid var(--border-subtle);
}

.mock-nb-tag.active { background: var(--accent); color: #faf6ef; border-color: var(--accent); }

.mock-nb-body { font-size: 13px; line-height: 1.75; color: var(--text); }
.mock-nb-body h3 { font-family: var(--font-subhead); font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.mock-nb-body p { margin-bottom: 10px; color: var(--text-dim); }

.mock-nb-math {
  background: var(--surface-alt);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: monospace;
  font-size: 13px;
  color: var(--accent);
  margin: 10px 0;
}

/* ── SOCIAL PROOF ── */
.social-proof { padding: 96px 0; }

.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 4px;
}

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

.quote-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
}

.quote-text {
  font-family: var(--font-liveview);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 18px;
  font-style: italic;
}

.quote-text::before { content: '"'; }
.quote-text::after { content: '"'; }

.quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
  border: 1px solid rgba(139,94,60,.15);
}

.quote-name { font-size: 14px; font-weight: 500; color: var(--text); }
.quote-role { font-size: 12px; color: var(--text-muted); }

/* ── PLATFORMS ── */
.platforms { padding: 80px 0; background: var(--surface); text-align: center; }

.platform-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.platform-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg);
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.platform-chip-icon { font-size: 18px; line-height: 1; }

.os-logo {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
  opacity: .85;
}

.os-logo-apple { filter: brightness(0) opacity(0.6); }

/* Single-card pricing layout */
.pricing-grid-single {
  max-width: 440px;
  margin: 0 auto;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 96px 0;
  text-align: center;
}

.cta-banner-inner {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  color: #faf6ef;
  margin-bottom: 16px;
  position: relative;
  letter-spacing: -0.01em;
}

.cta-banner p {
  font-family: var(--font-liveview);
  color: rgba(250,246,239,.75);
  font-size: 17px;
  margin-bottom: 36px;
  position: relative;
}

.cta-banner-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-cream {
  background: #faf6ef;
  color: var(--accent);
}

.btn-cream:hover { background: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: #faf6ef;
  border: 1.5px solid rgba(250,246,239,.5);
}

.btn-ghost:hover { background: rgba(250,246,239,.1); border-color: rgba(250,246,239,.8); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--surface);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-family: var(--font-liveview);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 10px;
  max-width: 240px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col a {
  text-decoration: none;
  font-family: var(--font-liveview);
  font-size: 14px;
  color: var(--text-dim);
  transition: color .15s;
}

.footer-col a:hover,
.footer-col a.active { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ── ABOUT PAGE ── */
.about-hero { padding: 88px 0 64px; }

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

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

.about-hero-text p {
  font-family: var(--font-liveview);
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-visual {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.about-visual-icon { margin-bottom: 16px; display: flex; justify-content: center; }

.about-visual h3 {
  font-family: var(--font-logo);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.about-visual p {
  font-size: 14px;
  color: var(--text-dim);
  font-style: italic;
}

.about-principles { padding: 80px 0; background: var(--surface); }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.principle-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
}

.principle-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: rgba(139,94,60,.2);
  line-height: 1;
  margin-bottom: 12px;
}

.principle-title {
  font-family: var(--font-subhead);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.principle-desc { font-family: var(--font-liveview); font-size: 15px; color: var(--text-dim); line-height: 1.75; }

.about-roadmap { padding: 80px 0; }

/* ── ROADMAP VOTE LIST ── */
.vote-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vote-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: var(--bg);
  transition: background .15s;
}

.vote-item:hover { background: var(--surface); }

.vote-item-text { flex: 1; min-width: 0; }

.vote-item-title {
  font-family: var(--font-subhead);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.vote-item-desc {
  font-family: var(--font-liveview);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

.vote-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 52px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-dim);
  font-family: var(--font-body);
  cursor: pointer;
  transition: all .18s;
  flex-shrink: 0;
}

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

.vote-btn.voted {
  border-color: var(--accent);
  background: var(--accent);
  color: #faf6ef;
  cursor: default;
  transform: none;
}

.vote-btn.voted:hover {
  background: var(--accent);
  color: #faf6ef;
  transform: none;
}

.vote-arrow {
  width: 13px;
  height: 13px;
  display: block;
}

.vote-count {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.vote-coming-soon {
  max-width: 680px;
  margin: 0 auto;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
}

.vote-coming-soon-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.vote-note {
  text-align: center;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 500px) {
  .vote-item { padding: 18px 16px; gap: 14px; }
  .vote-item-title { font-size: 15px; }
}

/* ── PRICING PAGE ── */
.pricing-hero { padding: 88px 0 64px; text-align: center; }

.pricing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.pricing-hero p {
  font-family: var(--font-liveview);
  font-size: 18px;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-cards { padding: 0 0 96px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card > .btn { margin-top: auto; }

.pricing-card.featured {
  background: var(--accent);
  border-color: var(--accent);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
}

.pricing-plan {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1;
}

.pricing-card.featured .pricing-plan { color: #faf6ef; }

.pricing-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--text);
}

.pricing-card.featured .pricing-price { color: #faf6ef; }

.pricing-price sup { font-size: 24px; font-weight: 400; vertical-align: top; margin-top: 10px; }

.pricing-period {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-period { color: rgba(250,246,239,.65); }

.pricing-divider {
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-divider { background: rgba(250,246,239,.2); }

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features-list li {
  display: flex;
  gap: 10px;
  font-family: var(--font-liveview);
  font-size: 15px;
  color: var(--text-dim);
}

.pricing-card.featured .pricing-features-list li { color: rgba(250,246,239,.85); }

.pf-check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .pf-check { color: rgba(250,246,239,.9); }

/* Donation widget */
.donation-section { padding: 0 0 96px; }

.donation-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.donation-icon { font-size: 48px; margin-bottom: 16px; }

.donation-card h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.donation-card p {
  font-family: var(--font-liveview);
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.donation-amounts {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.donation-amount-btn {
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all .18s;
}

.donation-amount-btn:hover,
.donation-amount-btn.selected {
  background: var(--accent-light);
  color: var(--accent);
}

.donation-custom {
  display: flex;
  gap: 10px;
  max-width: 320px;
  margin: 0 auto 28px;
}

.donation-input-wrap {
  position: relative;
  flex: 1;
}

.donation-input-wrap::before {
  content: '$';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 15px;
}

.donation-input {
  width: 100%;
  padding: 11px 14px 11px 28px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color .18s;
}

.donation-input:focus { border-color: var(--accent); }
.donation-input::placeholder { color: var(--text-muted); }

.stripe-info {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.stripe-info svg { width: 16px; height: 16px; opacity: .6; }

/* ── SCREENSHOT IMAGES ── */

/* Hero — full-width screenshot with macOS chrome already baked in */
.hero-screenshot {
  width: auto;
  max-width: 320px;
  display: block;
  margin: 0 auto;
}

/* Showcase sections — screenshot fills the card flush */
.showcase-visual-flush {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.showcase-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* Themes section — full-bleed side-by-side */
.themes-section {
  padding: 96px 0 0;
  background: var(--surface);
  overflow: hidden;
}

.themes-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  background: var(--border-subtle);
}

.themes-screenshot-wrap {
  position: relative;
  overflow: hidden;
}

.themes-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-block;
  padding: 5px 14px;
  background: rgba(244,239,230,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.themes-label-dark {
  background: rgba(20,20,20,.75);
  color: rgba(255,255,255,.8);
}

.themes-img {
  width: 100%;
  display: block;
  border-radius: 0;
  transition: transform .6s ease;
}

.themes-screenshot-wrap:hover .themes-img {
  transform: scale(1.015);
}

.themes-screenshot-light { padding-bottom: 0; }

@media (max-width: 700px) {
  .hide-on-mobile { display: none; }
  .themes-screenshots { grid-template-columns: 1fr; }
}

/* ── BETA SIGNUP FORM ── */
.beta-form { width: 100%; max-width: 520px; margin: 0 auto; }

.beta-form-input-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.beta-email-input {
  flex: 1;
  padding: 13px 18px;
  border: none;
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: box-shadow .18s;
  min-width: 0;
}

.beta-email-input::placeholder { color: var(--text-muted); }

.beta-email-input:focus {
  box-shadow: 0 0 0 3px rgba(139,94,60,.12);
}

/* Dark variant (inside the accent-colored CTA banner) */
.beta-email-input-dark {
  background: rgba(250,246,239,.12);
  border: none;
  color: #faf6ef;
}

.beta-email-input-dark::placeholder { color: rgba(250,246,239,.5); }

.beta-email-input-dark:focus {
  box-shadow: 0 0 0 3px rgba(250,246,239,.1);
}

/* Success state */
.beta-success { width: 100%; max-width: 520px; margin: 0 auto; }

.beta-success-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--accent-light);
  border-radius: var(--radius);
  text-align: left;
}

.beta-success-inner-dark {
  background: rgba(250,246,239,.15);
  border-color: rgba(250,246,239,.25);
}

.beta-success-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--accent);
  color: #faf6ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.beta-success-inner-dark .beta-success-icon {
  background: rgba(250,246,239,.9);
  color: var(--accent);
}

.beta-success-inner strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}

.beta-success-inner-dark strong { color: #faf6ef; }

.beta-success-inner span {
  font-size: 13px;
  color: var(--text-dim);
}

.beta-success-inner-dark span { color: rgba(250,246,239,.7); }

/* Mobile: stack input + button */
@media (max-width: 500px) {
  .beta-form-input-row { flex-direction: column; align-items: stretch; }
  .beta-form-input-row .btn { width: 100%; justify-content: center; }
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .showcase-split { grid-template-columns: 1fr !important; gap: 0; }
  .showcase-split.reverse > .showcase-visual { order: 0; }
  .showcase-split.reverse > .showcase-text { order: 0; }
  .showcase-text { padding: 40px 28px; }
  .quotes-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .mock-library { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 64px 0 56px; }
  .mock-library { grid-template-columns: repeat(2, 1fr); }
  .donation-card { padding: 32px 24px; }
  .cta-banner-inner { padding: 48px 24px; }
  .stats-row { gap: 28px; }
}

/* ── FEATURE SUITE ROW (homepage → subpages) ── */
.feature-suite-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
  background: var(--border-subtle);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.feature-suite-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  transition: background .18s;
}

.feature-suite-card:hover { background: var(--accent-light); }

.feature-suite-icon {
  font-size: 26px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139,94,60,.15);
}

.feature-suite-card h4 {
  font-family: var(--font-subhead);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text);
}

.feature-suite-card p {
  font-family: var(--font-liveview);
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

.feature-suite-arrow {
  margin-left: auto;
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform .18s;
}

.feature-suite-card:hover .feature-suite-arrow { transform: translateX(3px); }

@media (max-width: 600px) {
  .feature-suite-row { grid-template-columns: 1fr; }
}

/* ── FEATURE PLACEHOLDER (image coming soon) ── */
.feature-placeholder {
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px;
  text-align: center;
}

.feature-placeholder span {
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dim);
}

.feature-placeholder p {
  font-family: var(--font-liveview);
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ── PRICING DUAL LAYOUT ── */
.pricing-grid-dual {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.pricing-card-keystone {
  background: var(--text);
  border-color: var(--text);
}

.pricing-card-keystone .pricing-plan { color: #faf6ef; }
.pricing-card-keystone .pricing-price { color: #faf6ef; }
.pricing-card-keystone .pricing-period { color: rgba(250,246,239,.6); }
.pricing-card-keystone .pricing-divider { background: rgba(250,246,239,.15); }
.pricing-card-keystone .pricing-features-list li { color: rgba(250,246,239,.8); font-family: var(--font-liveview); }
.pricing-card-keystone .pf-check { color: rgba(250,246,239,.85); }

.pricing-future-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(250,246,239,.15);
  border: 1px solid rgba(250,246,239,.25);
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250,246,239,.65);
  margin-bottom: 14px;
}

.pricing-prelaunch-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 20px;
  padding: 14px 16px;
  background: rgba(250,246,239,.08);
  border: 1px solid rgba(250,246,239,.15);
  border-radius: var(--radius);
}

.pricing-prelaunch-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-prelaunch-note p {
  font-family: var(--font-liveview);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(250,246,239,.75);
  margin: 0;
}

.pricing-prelaunch-note p strong {
  color: rgba(250,246,239,.95);
}

.pricing-keystone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: rgba(250,246,239,.15);
  border: 1px solid rgba(250,246,239,.2);
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250,246,239,.7);
  margin-bottom: 16px;
}

@media (max-width: 700px) {
  .pricing-grid-dual { grid-template-columns: 1fr; max-width: 440px; }
}

/* ── CHANGELOG PAGE ── */
.changelog-hero {
  padding: 88px 0 64px;
  text-align: center;
}

.changelog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.changelog-hero p {
  font-family: var(--font-liveview);
  font-size: 18px;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.changelog-section {
  padding: 0 0 96px;
}

.changelog-entries {
  max-width: 740px;
  margin: 0 auto;
}

/* Each changelog entry */
.cl-entry {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cl-entry:first-child { padding-top: 0; }
.cl-entry:last-child  { border-bottom: none; padding-bottom: 0; }

/* Left column: version + date */
.cl-entry-aside {
  padding-top: 4px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.cl-version {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent-light);
  border: 1px solid rgba(139,94,60,.18);
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cl-date {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-left: 2px;
}

/* Right column: content */
.cl-entry-body {
  border-left: 2px solid var(--border-subtle);
  padding-left: 32px;
}

.cl-entry-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}

.cl-entry-summary {
  font-family: var(--font-liveview);
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}

.cl-group {
  margin-bottom: 16px;
}

.cl-group:last-child { margin-bottom: 0; }

.cl-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cl-tag-new      { background: #e8f3e8; color: #3a7a3a; border: 1px solid rgba(58,122,58,.2); }
.cl-tag-improved { background: var(--accent-light); color: var(--accent); border: 1px solid rgba(139,94,60,.2); }
.cl-tag-fixed    { background: #eef3fa; color: #3a5a8a; border: 1px solid rgba(58,90,138,.2); }

.cl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cl-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--font-liveview);
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}

.cl-list li::before {
  content: '–';
  color: var(--text-muted);
  flex-shrink: 0;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .cl-entry {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 36px 0;
  }

  .cl-entry-aside {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-right: 0;
  }

  .cl-entry-body {
    border-left: none;
    border-top: 2px solid var(--border-subtle);
    padding-left: 0;
    padding-top: 20px;
  }
}

/* ── FEATURE PAGE HERO ── */
.feature-page-hero {
  padding: 88px 0 72px;
  text-align: center;
}

.feature-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.08;
}

.feature-page-hero p {
  font-family: var(--font-liveview);
  font-size: 18px;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}
