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

:root {
  --bg:      #0d0c0b;
  --bg2:     #131210;
  --surface: #1a1815;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --gold:    #c9a96e;
  --gold-l:  #e0c48a;
  --text:    #f2ede8;
  --muted:   #6b6560;
  --muted2:  #a09890;
}

html { scroll-behavior: smooth; }

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

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  width: 0%;
  z-index: 10000;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(201,169,110,0.5);
}

/* ── GRAIN TEXTURE ── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
}

/* ── SCROLL ANIMATIONS ── */
[data-fade] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-fade].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-fade][data-delay="100"] { transition-delay: 0.1s; }
[data-fade][data-delay="200"] { transition-delay: 0.2s; }
[data-fade][data-delay="300"] { transition-delay: 0.3s; }
[data-fade][data-delay="400"] { transition-delay: 0.4s; }
[data-fade][data-delay="1"]   { transition-delay: 0.12s; }
[data-fade][data-delay="2"]   { transition-delay: 0.24s; }
[data-fade][data-delay="3"]   { transition-delay: 0.36s; }

/* hero on-load reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s ease, transform 1s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* diary lines — appear word-by-word via JS */
.diary-line {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.55;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 1.8rem;
  letter-spacing: -0.2px;
}
.diary-line .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.diary-line.in .w {
  opacity: 1;
  transform: translateY(0);
}
.diary-line.muted {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--muted2);
  font-weight: 300;
  font-style: normal;
  line-height: 1.8;
  margin-top: 2.5rem;
  letter-spacing: 0.1px;
}
.diary-line.emphasize {
  font-style: italic;
  color: var(--gold-l);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  margin-top: 2.5rem;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(13,12,11,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: var(--muted2);
}
.nav-cta {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-cta:hover { color: var(--text); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 100px;
  overflow: hidden;
}

/* huge serif watermark behind hero text */
.hero-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.hero-watermark span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(8rem, 22vw, 22rem);
  color: var(--gold);
  opacity: 0.04;
  letter-spacing: -8px;
  white-space: nowrap;
  user-select: none;
  transform: translateY(0);
  will-change: transform;
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-pre {
  font-size: 0.72rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-h1 {
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 36px;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.word-line {
  display: block;
  overflow: hidden;
}
.word-line .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero.loaded .word-line .word { opacity: 1; transform: translateY(0); }
.hero.loaded .word-line:nth-child(1) .word:nth-child(1) { transition-delay: 0.05s; }
.hero.loaded .word-line:nth-child(1) .word:nth-child(2) { transition-delay: 0.18s; }
.hero.loaded .word-line:nth-child(2) .word:nth-child(1) { transition-delay: 0.32s; }
.hero.loaded .word-line:nth-child(2) .word:nth-child(2) { transition-delay: 0.42s; }
.hero.loaded .word-line:nth-child(2) .word:nth-child(3) { transition-delay: 0.52s; }
.hero.loaded .word-line:nth-child(3) .word:nth-child(1) { transition-delay: 0.78s; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted2);
  line-height: 1.75;
  margin-bottom: 42px;
  font-weight: 300;
}

.hero-illustration {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(220px, 36vw, 360px);
  color: var(--gold);
  opacity: 0.32;
  z-index: 1;
  pointer-events: none;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  z-index: 2;
}
.scroll-hint span {
  display: block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin: -2px 0 0 -1.5px;
  animation: scroll-dot 2.5s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 0; }
  20%      { opacity: 1; }
  80%      { opacity: 1; }
  100%     { transform: translateY(28px); opacity: 0; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: transparent;
  color: var(--gold) !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 13px 30px;
  border-radius: 3px;
  border: 1px solid var(--gold);
  text-decoration: none !important;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--bg) !important;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  padding: 13px 26px;
  border-radius: 3px;
  border: 1px solid var(--border2);
  color: var(--muted2) !important;
  text-decoration: none !important;
  letter-spacing: 0.3px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--text) !important;
  transform: translateY(-1px);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.cta-row.center { justify-content: center; }

/* ── DIARY: intro ── */
.diary-intro {
  padding: 180px 32px 100px;
  text-align: center;
}
.container.narrow { max-width: 720px; margin: 0 auto; }

/* ── CHAPTER ── */
.chapter {
  padding: 100px 32px;
}
.chapter-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.chapter-meta {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1);
}
.chapter-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 4rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.chapter-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.5s ease;
}
/* active chapter — when section is in focus */
.chapter.active .chapter-num {
  opacity: 1;
  transform: scale(1.06);
}
.chapter.active .chapter-title {
  color: var(--gold);
}
.chapter-body { max-width: 620px; }

/* ── DROP CAP ── */
.diary-line.dropcap::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 3.6em;
  line-height: 0.85;
  float: left;
  margin: 0.12em 0.12em 0 -0.02em;
  color: var(--gold);
}

/* ── SVG DIVIDER ── */
.svg-divider {
  padding: 0 32px;
  display: flex;
  justify-content: center;
}
.svg-divider svg {
  display: block;
  width: 100%;
  max-width: 240px;
  height: 24px;
}
.svg-divider .divider-line {
  stroke: var(--border2);
  stroke-width: 0.5;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.2,0.7,0.2,1);
}
.svg-divider .divider-dot {
  fill: var(--gold);
  opacity: 0;
  transition: opacity 0.8s ease 0.9s;
}
.svg-divider.in .divider-line { stroke-dashoffset: 0; }
.svg-divider.in .divider-dot  { opacity: 0.9; }

/* ── ABOUT / WHY ── */
.about-section {
  padding: 130px 32px 100px;
  text-align: center;
}
.about-section h2 {
  margin-bottom: 40px;
}
.about-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.65;
  color: var(--text);
  margin: 0 auto 1.4em;
  max-width: 640px;
  font-weight: 400;
}
.about-text em {
  font-style: italic;
  color: var(--gold-l);
}
.about-text.muted-text {
  color: var(--muted2);
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 2.4em;
}
.signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 1.6em;
  opacity: 0.8;
}

/* ── VIDEO ── */
.video-section {
  padding: 60px 32px 100px;
  border-top: 1px solid var(--border);
}
.video-frame {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--border2);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg2);
}
.video-el {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 14px 20px 18px;
  font-weight: 300;
  letter-spacing: 0.2px;
}

/* ── PULL QUOTE ── */
.pull-quote {
  padding: 110px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  text-align: center;
  position: relative;
}
.pull-quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 20px;
}
.pull-quote cite {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* CREAM variant — light, paper-like, breaks the dark rhythm */
.pull-quote.cream {
  background: #ede4d2;
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.pull-quote.cream::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,0,0,0.04), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,0,0,0.06), transparent 70%);
  pointer-events: none;
}
.pull-quote.cream blockquote {
  color: #2a2520;
}
.pull-quote.cream cite {
  color: #7a6f60;
}
/* (paper-corner decoration removed per design feedback) */
.cream-corners { display: none; }

/* ── BOT PREVIEW (Telegram-style chat inside iPhone frame) ── */
.bot-preview {
  padding: 100px 32px;
  text-align: center;
}
.preview-sub {
  font-size: 1rem;
  color: var(--muted2);
  margin-bottom: 56px;
  font-weight: 300;
  margin-top: -40px;
}

/* phone wrap + frame */
.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 19.5;
  background: #1a1a1d;
  border-radius: 42px;
  padding: 8px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 0 6px #0c0c0d,
    0 0 0 7px rgba(255,255,255,0.05);
}
/* hardware buttons on the side */
.phone-side {
  position: absolute;
  width: 3px;
  background: #2a2a2e;
  border-radius: 2px;
}
.phone-side-l { left: -3px; top: 110px; height: 32px; }
.phone-side-l::before, .phone-side-l::after {
  content: ""; position: absolute; left: 0;
  width: 3px; background: #2a2a2e; border-radius: 2px;
}
.phone-side-l::before { top: 50px; height: 56px; }
.phone-side-l::after  { top: 120px; height: 56px; }
.phone-side-r { right: -3px; top: 130px; height: 90px; }

.phone-screen {
  background: #18191f;
  border-radius: 36px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
}
.phone-caption {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.2px;
  font-style: italic;
  max-width: 380px;
  text-align: center;
}

/* iOS status bar */
.ios-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #f1f1f1;
  position: relative;
  z-index: 3;
  background: #1c1d24;
}
.ios-time { font-variant-numeric: tabular-nums; letter-spacing: 0.2px; }
.ios-notch {
  position: absolute;
  left: 50%; top: 4px;
  transform: translateX(-50%);
  width: 86px; height: 22px;
  background: #000;
  border-radius: 14px;
}
.ios-right {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #f1f1f1;
}
.ios-icon { width: 17px; height: 11px; fill: currentColor; }
.ios-text { font-size: 0.7rem; font-weight: 600; }
.ios-battery { width: 24px; height: 11px; color: #f1f1f1; }

/* Telegram-style header */
.tg-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 12px;
  background: #1c1d24;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
}
.tg-back {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6ab0ff;        /* Telegram-blue */
  flex-shrink: 0;
}
.tg-back svg { width: 11px; height: 18px; }
.tg-back-label {
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: -0.2px;
}
.tg-title {
  flex: 1;
  text-align: center;
  margin-right: -28px;     /* compensate avatar width for true centering */
}
.tg-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.2px;
}
.tg-presence {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 1px;
}
.tg-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4b783, #8d7548);
  color: #14110b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Telegram body with subtle ornamental pattern */
.tg-body {
  flex: 1;
  padding: 12px 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #0e0f14;
  position: relative;
  overflow: hidden;
}
.tg-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(106,176,255,0.06), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(201,169,110,0.06), transparent 28%),
    radial-gradient(circle at 45% 55%, rgba(255,255,255,0.015), transparent 50%);
}
.tg-day {
  text-align: center;
  align-self: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  text-transform: lowercase;
  position: relative;
  z-index: 1;
}

/* messages */
.tg-msg {
  position: relative;
  z-index: 1;
  max-width: 78%;
  padding: 6px 9px 5px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.35;
  font-family: 'Inter', -apple-system, sans-serif;
  word-wrap: break-word;
  display: inline-block;
  margin-bottom: 1px;
}
.tg-msg.out {
  align-self: flex-end;
  background: linear-gradient(180deg, #2b5278 0%, #2d6394 100%);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}
.tg-msg.out.grouped-first { border-bottom-right-radius: 12px; }
.tg-msg.out.grouped-last  { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
.tg-msg.in {
  align-self: flex-start;
  background: #212329;
  color: #e8e6e0;
  border-bottom-left-radius: 4px;
}
.tg-text {
  display: inline;
}
.tg-meta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  margin-left: 8px;
  vertical-align: bottom;
  white-space: nowrap;
  position: relative;
  bottom: -1px;
}
.tg-msg.in .tg-meta { color: rgba(255,255,255,0.35); }
.tg-checks {
  display: inline-flex;
  color: #8bbcfb;        /* Telegram-blue "read" */
}
.tg-checks svg {
  width: 14px; height: 10px;
  display: block;
}

/* reaction chip */
.tg-reaction {
  display: inline-block;
  background: rgba(43,82,120,0.4);
  border: 1px solid rgba(139,188,251,0.25);
  color: #d4d0c8;
  font-size: 0.7rem;
  padding: 1px 7px 2px;
  border-radius: 10px;
  margin-top: 4px;
  margin-left: 4px;
}

/* typing indicator */
.tg-typing-msg {
  padding: 9px 11px;
}
.tg-typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.tg-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: tg-typing 1.4s infinite ease-in-out;
}
.tg-typing span:nth-child(2) { animation-delay: 0.18s; }
.tg-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes tg-typing {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40%           { transform: translateY(-2px); opacity: 1; }
}

/* input bar */
.tg-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 8px;
  background: #1c1d24;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.tg-input-icon {
  width: 22px; height: 22px;
  color: #7a7e8a;
  flex-shrink: 0;
}
.tg-input-icon.mic { color: #6ab0ff; }
.tg-input-text {
  flex: 1;
  font-size: 0.86rem;
  color: #6b6f7a;
  font-style: normal;
}

/* iOS home indicator */
.ios-home {
  height: 28px;
  background: #1c1d24;
  position: relative;
}
.ios-home::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 8px;
  transform: translateX(-50%);
  width: 110px; height: 4px;
  background: #ffffff;
  border-radius: 2px;
  opacity: 0.6;
}

/* ── FAQ ── */
.faq-section {
  padding: 100px 32px;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 56px;
}
.faq-section .overline {
  text-align: center;
}
.faq-item {
  border-top: 1px solid var(--border2);
  padding: 22px 0;
  cursor: pointer;
}
.faq-item:last-of-type {
  border-bottom: 1px solid var(--border2);
}
.faq-item summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
  letter-spacing: -0.2px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item:hover summary { color: var(--gold-l); }
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  font-size: 0.98rem;
  color: var(--muted2);
  line-height: 1.75;
  margin-top: 14px;
  font-weight: 300;
  max-width: 720px;
  animation: faq-fade 0.4s ease;
}
.faq-item p em { color: var(--gold-l); font-style: italic; }
.faq-item p strong { color: var(--text); font-weight: 500; }
.faq-item p a { color: var(--gold-l); text-decoration: none; border-bottom: 1px solid currentColor; }
@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTIONS ── */
.section { padding: 100px 32px; }
.container { max-width: 1000px; margin: 0 auto; }

.overline {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 56px;
  color: var(--text);
}
h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

/* ── FEATURES ── */
.features-section { background: var(--bg2); }
.features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feat {
  background: var(--bg2);
  padding: 38px 30px;
  transition: background 0.2s;
}
.feat:hover { background: var(--surface); }
.feat h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feat p {
  font-size: 0.88rem;
  color: var(--muted2);
  line-height: 1.75;
  font-weight: 300;
}
.feat strong { color: var(--text); font-weight: 500; }

/* ── DISCLAIMER ── */
.disclaimer-inner { max-width: 680px; }
.disclaimer-text {
  font-size: 1rem;
  color: var(--muted2);
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}
.hotline {
  margin-top: 36px;
  padding: 22px 26px;
  border: 1px solid var(--border2);
  border-left: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hotline-label {
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.hotline-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
}
.hotline-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── FINAL ── */
.final { text-align: center; padding: 130px 32px; border-top: 1px solid var(--border); }
.final h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.final-sub {
  color: var(--muted2);
  margin-bottom: 40px;
  font-size: 1rem;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
footer p {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .features { grid-template-columns: 1fr 1fr; }
  .chapter-grid { grid-template-columns: 1fr; gap: 32px; }
  .chapter-meta { position: static; flex-direction: row; align-items: baseline; gap: 18px; }
  .chapter-num { font-size: 2.6rem; }
}

@media (max-width: 720px) {
  .nav-inner { padding: 14px 20px; }
  .hero { padding: 100px 20px 80px; }
  .hero-h1 { letter-spacing: -1.5px; }
  .hero-illustration { width: 70vw; bottom: 70px; }
  .section { padding: 64px 20px; }
  .diary-intro { padding: 100px 20px 60px; }
  .chapter { padding: 64px 20px; }
  .video-section { padding: 40px 20px 64px; }
  .features { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pull-quote { padding: 60px 20px; }
  .cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-row.center { align-items: center; }
}

@media (max-width: 480px) {
  .btn-primary, .btn-secondary { display: block; text-align: center; }
  .hotline { padding: 18px 20px; }
}
