/* ============================================================
   TWINE — assets/css/home.css
   Homepage-only styles. Loaded only on index.php.
============================================================ */

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

/* Glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}
.hero-glow-1 {
  width: 700px; height: 500px;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(212,96,122,0.16) 0%, transparent 65%);
}
.hero-glow-2 {
  width: 400px; height: 300px;
  bottom: 5%; right: 5%;
  background: radial-gradient(ellipse, rgba(100,80,180,0.09) 0%, transparent 65%);
}

.hero > * { position: relative; z-index: 1; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose-dim);
  border: 1px solid var(--rose-bd);
  border-radius: var(--rpill);
  padding: 6px 14px 6px 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--rose-h);
  margin-bottom: 36px;
  animation: fade-up 500ms ease both;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
  position: relative;
}
.hero-pill-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--rose);
  animation: pulse-ring 1.6s ease-out infinite;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  animation: fade-up 550ms 80ms ease both;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--t2);
  max-width: 460px;
  margin: 0 auto 38px;
  line-height: 1.7;
  animation: fade-up 550ms 160ms ease both;
}

.hero-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 550ms 240ms ease both;
}

.hero-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--t3);
  animation: fade-up 550ms 320ms ease both;
}
.hero-note span { color: var(--t2); }

/* ─── Hero Visual ────────────────────────────────────────── */
.hero-visual {
  margin-top: 72px;
  position: relative;
  width: 100%;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  animation: fade-up 700ms 400ms ease both;
  z-index: 1;
}

/* Phone frame */
.phone-frame {
  background: var(--surface);
  border: 1px solid var(--bd2);
  border-radius: 28px;
  padding: 20px;
  max-width: 320px;
  margin: 0 auto;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 100px rgba(0,0,0,0.6),
    0 0 60px rgba(212,96,122,0.07);
  position: relative;
  z-index: 2;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.phone-logo {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--t1);
}
.phone-avatars { display: flex; }
.phone-av {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: grid; place-items: center;
  margin-left: -6px;
  flex-shrink: 0;
}
.phone-av:first-child { margin-left: 0; }

.phone-date-label {
  font-size: 10px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-weight: 600;
}

.phone-memory-card {
  background: var(--surface3);
  border-radius: var(--r2);
  overflow: hidden;
  margin-bottom: 10px;
}
.phone-memory-img {
  height: 96px;
  background: linear-gradient(135deg, #1A0F1E 0%, #251530 50%, #1A1230 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  position: relative;
}
.phone-memory-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 36px;
  background: linear-gradient(transparent, var(--surface3));
}
.phone-memory-body { padding: 10px 12px; }
.phone-memory-title {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 2px;
}
.phone-memory-meta { font-size: 11px; color: var(--t3); }

.phone-letter-row {
  background: var(--surface3);
  border-radius: var(--r2);
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--rose-bd);
}
.phone-letter-icon { font-size: 18px; }
.phone-letter-info { flex: 1; min-width: 0; }
.phone-letter-title { font-size: 12px; font-weight: 600; color: var(--t1); }
.phone-letter-sub   { font-size: 11px; color: var(--t3); }

/* Floating cards */
.float-cluster {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.fc {
  position: absolute;
  background: var(--surface2);
  border: 1px solid var(--bd2);
  border-radius: var(--r3);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
}
.fc-memory {
  width: 200px;
  left: -10px; top: 20px;
  border-color: var(--rose-bd);
  animation: bob 6s ease-in-out infinite alternate;
}
.fc-streak {
  width: 130px;
  right: -5px; top: 10px;
  text-align: center;
  animation: bob 5.5s ease-in-out infinite alternate;
  animation-delay: 1.5s;
}
.fc-letter {
  width: 180px;
  right: 0px; bottom: 40px;
  animation: bob 7s ease-in-out infinite alternate;
  animation-delay: 0.8s;
}

.fc-label { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--t3); margin-bottom: 5px; }
.fc-title { font-family: 'Fraunces', serif; font-size: 13px; font-weight: 600; color: var(--t1); margin-bottom: 3px; line-height: 1.3; }
.fc-meta  { font-size: 11px; color: var(--t2); }
.fc-chip  {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--rose-dim); border: 1px solid var(--rose-bd);
  border-radius: var(--rpill); padding: 2px 8px;
  font-size: 10px; color: var(--rose-h); font-weight: 500;
  margin-top: 7px;
}
.fc-streak-num {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 700;
  color: var(--rose); line-height: 1;
}
.fc-streak-sub { font-size: 10px; color: var(--t3); margin-top: 2px; }

/* ─── Two Things section ─────────────────────────────────── */
.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.two-card {
  background: var(--surface);
  border: 1px solid var(--bd);
  border-radius: var(--r4);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease-slow), transform var(--ease-slow);
}
.two-card:hover { border-color: var(--rose-bd); transform: translateY(-3px); }
.two-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(212,96,122,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.two-card-icon { font-size: 28px; margin-bottom: 18px; display: block; }
.two-card .label { margin-bottom: 10px; }
.two-card .t-h2  { margin-bottom: 11px; }
.two-card p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Memory mini list */
.mini-memories { display: flex; flex-direction: column; gap: 7px; }
.mini-mem {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface2); border: 1px solid var(--bd);
  border-radius: var(--r2); padding: 9px 12px;
  transition: border-color var(--ease);
  cursor: default;
}
.mini-mem:hover { border-color: var(--rose-bd); }
.mini-mem-emoji { font-size: 15px; min-width: 22px; text-align: center; }
.mini-mem-info  { flex: 1; min-width: 0; }
.mini-mem-title { font-size: 12.5px; font-weight: 600; color: var(--t1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-mem-date  { font-size: 11px; color: var(--t3); margin-top: 1px; }
.mini-mem-heart { color: var(--rose); font-size: 13px; opacity: 0.7; }
.mini-mem--add  {
  border-style: dashed !important;
  border-color: rgba(255,255,255,0.08) !important;
  justify-content: center;
  color: var(--t3);
  gap: 6px;
  font-size: 12.5px;
}

/* Letter mini */
.mini-letter {
  background: var(--surface2);
  border: 1px solid var(--bd);
  border-radius: var(--r2);
  padding: 16px;
}
.mini-letter-top {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.mini-letter-from { font-size: 11px; color: var(--t3); }
.mini-letter-badge {
  font-size: 10px; font-weight: 600;
  color: var(--gold-h);
  background: var(--gold-dim);
  border: 1px solid var(--gold-bd);
  border-radius: var(--rpill);
  padding: 2px 8px;
}
.mini-letter-preview {
  font-family: 'Fraunces', serif;
  font-size: 13.5px; font-style: italic;
  color: var(--t2); line-height: 1.5;
  margin-bottom: 10px;
}
.mini-letter-blur {
  height: 9px;
  background: var(--surface3);
  border-radius: 3px;
  margin: 5px 0;
  opacity: 0.5;
}
.mini-letter-locked {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--gold); font-weight: 500;
  margin-top: 10px;
}

/* ─── How It Works ───────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--bd);
  border-radius: var(--r4);
  overflow: hidden;
  border: 1px solid var(--bd);
}
.step {
  background: var(--surface);
  padding: 34px 30px;
  transition: background var(--ease);
}
.step:hover { background: var(--surface2); }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 44px; font-weight: 700;
  color: var(--rose-bd);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px; font-weight: 600;
  color: var(--t1);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.step p { font-size: 14px; color: var(--t2); line-height: 1.65; }

/* ─── Love Story Book section ────────────────────────────── */
.lsb-inner {
  background: var(--surface);
  border: 1px solid var(--bd);
  border-radius: var(--r4);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lsb-text {
  padding: 52px 48px;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative;
}
.lsb-text::before {
  content: '';
  position: absolute;
  top: -80px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(184,146,74,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.lsb-text .label--gold { margin-bottom: 14px; }
.lsb-text .t-h2        { margin-bottom: 11px; }
.lsb-text > p          { font-size: 14px; color: var(--t2); line-height: 1.7; margin-bottom: 24px; }

.lsb-steps { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.lsb-step  { display: flex; align-items: flex-start; gap: 11px; }
.lsb-step-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--gold-dim); border: 1px solid var(--gold-bd);
  display: grid; place-items: center;
  font-size: 13px; flex-shrink: 0;
}
.lsb-step-title { font-size: 13px; font-weight: 600; color: var(--t1); margin-bottom: 2px; }
.lsb-step-sub   { font-size: 12px; color: var(--t2); }
.lsb-sub-note   { font-size: 12px; color: var(--t3); margin-top: 10px; }

/* Book visual */
.lsb-visual {
  background: linear-gradient(160deg, #100D18, #0A0A14);
  padding: 36px;
  display: flex; align-items: center; justify-content: center;
  min-height: 440px;
  position: relative;
  overflow: hidden;
}
.lsb-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(184,146,74,0.08) 0%, transparent 60%);
}

.book-wrap { position: relative; z-index: 2; }
.book-bg {
  position: absolute;
  background: var(--surface2);
  border: 1px solid var(--bd2);
  border-radius: 3px 14px 14px 3px;
  opacity: 0.45;
}
.book-bg-1 { width: 210px; height: 286px; top: 50%; left: 50%; transform: translate(-46%, -50%) rotate(4deg); }
.book-bg-2 { width: 210px; height: 286px; top: 50%; left: 50%; transform: translate(-54%, -50%) rotate(-3deg); }

.book {
  width: 200px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 44px rgba(0,0,0,0.6));
  animation: bob 7s ease-in-out infinite alternate;
}
.book-spine {
  position: absolute;
  left: -7px; top: 0; bottom: 0;
  width: 9px;
  background: linear-gradient(90deg, #080610, #100d1c);
  border-radius: 2px 0 0 2px;
  border: 1px solid rgba(184,146,74,0.15);
  border-right: none;
}
.book-cover {
  background: linear-gradient(145deg, #1a1428, #120f1e);
  border: 1px solid rgba(184,146,74,0.28);
  border-radius: 3px 14px 14px 3px;
  padding: 24px 20px;
  min-height: 280px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.book-cover::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 8px;
  background: linear-gradient(90deg, rgba(184,146,74,0.3), rgba(184,146,74,0.07));
  border-right: 1px solid rgba(184,146,74,0.15);
}
.book-ornament { text-align: center; font-size: 18px; margin-bottom: 6px; opacity: 0.5; }
.book-title    { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; font-style: italic; color: var(--gold-h); text-align: center; margin-bottom: 3px; }
.book-subtitle { font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--t3); text-align: center; margin-bottom: 16px; }
.book-photos   { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin: 10px 0; }
.book-photo    { height: 48px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.book-photo:nth-child(1) { background: linear-gradient(135deg, #1e1028, #2a1635); }
.book-photo:nth-child(2) { background: linear-gradient(135deg, #0e1828, #122035); }
.book-photo:nth-child(3) { background: linear-gradient(135deg, #1a1220, #261830); grid-column: span 2; height: 38px; }
.book-footer   { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid rgba(184,146,74,0.1); }
.book-couple   { font-size: 9px; color: var(--t3); }
.book-year     { font-size: 9px; color: var(--gold); font-weight: 600; }

/* LSB floating badges */
.lsb-badge {
  position: absolute;
  background: var(--surface2); border: 1px solid var(--bd2);
  border-radius: var(--r2); padding: 9px 13px;
  z-index: 3; font-size: 12px; font-weight: 500;
  color: var(--t2); display: flex; align-items: center;
  gap: 7px; box-shadow: var(--shadow-md);
}
.lsb-badge-count { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.lsb-badge-sub   { font-size: 10px; color: var(--t3); display: block; }
.lsb-badge-1 { top: 36px; left: 20px; animation: bob 6s ease-in-out infinite alternate; }
.lsb-badge-2 { bottom: 46px; right: 16px; animation: bob 7.5s ease-in-out infinite alternate; animation-delay: 1s; }

/* ─── Daily Questions (secondary) ───────────────────────── */
.questions-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.questions-text .label   { margin-bottom: 14px; }
.questions-text .t-h2    { margin-bottom: 11px; }
.questions-text p        { font-size: 14px; color: var(--t2); line-height: 1.7; margin-bottom: 18px; }
.q-secondary-note {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--t3);
  background: var(--surface2); border: 1px solid var(--bd);
  border-radius: var(--rpill); padding: 5px 12px;
}

.q-mock { display: flex; flex-direction: column; gap: 10px; }
.q-card {
  background: var(--surface);
  border: 1px solid var(--bd);
  border-radius: var(--r3); padding: 18px 20px;
}
.q-card-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--t3); margin-bottom: 9px; }
.q-card-text  { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 600; color: var(--t1); line-height: 1.4; margin-bottom: 14px; }
.q-answers    { display: flex; flex-direction: column; gap: 7px; }
.q-ans        { border-radius: var(--r2); padding: 9px 13px; font-size: 13px; line-height: 1.5; }
.q-ans-name   { font-size: 9.5px; color: var(--t3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.q-ans.yours  { background: var(--rose-dim); border: 1px solid var(--rose-bd); color: var(--t1); align-self: flex-end; max-width: 88%; }
.q-ans.theirs { background: var(--surface2); border: 1px solid var(--bd); color: var(--t2); align-self: flex-start; max-width: 88%; }

/* ─── Testimonials ───────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.testi {
  background: var(--surface);
  border: 1px solid var(--bd);
  border-radius: var(--r3); padding: 26px;
  display: flex; flex-direction: column;
  transition: border-color var(--ease-slow), transform var(--ease-slow);
}
.testi:hover { border-color: var(--rose-bd); transform: translateY(-3px); }
.testi-stars  { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text   { font-family: 'Fraunces', serif; font-size: 14px; font-style: italic; color: var(--t1); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-name   { font-size: 13px; font-weight: 600; color: var(--t1); }
.testi-loc    { font-size: 11px; color: var(--t3); margin-top: 1px; }
.testi-disclaimer {
  text-align: center;
  font-size: 12px; color: var(--t3);
  display: flex; align-items: center; justify-content: center; gap: 7px;
}

/* ─── Pricing section ────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--surface2);
  border: 1px solid var(--bd2);
  border-radius: var(--rpill);
  padding: 4px;
  width: fit-content;
  margin: 18px auto 44px;
}
.tog-btn {
  padding: 7px 20px;
  border-radius: var(--rpill);
  font-size: 13px; font-weight: 600;
  cursor: pointer; border: none;
  font-family: 'Inter', sans-serif;
  color: var(--t3); background: transparent;
  transition: all var(--ease);
}
.tog-btn.active {
  background: var(--surface);
  color: var(--t1);
  border: 1px solid var(--bd2);
  box-shadow: var(--shadow-sm);
}
.tog-save {
  font-size: 10px; font-weight: 600;
  color: var(--rose); background: var(--rose-dim);
  border: 1px solid var(--rose-bd);
  border-radius: var(--rpill);
  padding: 1px 7px;
  margin-left: 3px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
}
.pc {
  background: var(--surface);
  border: 1px solid var(--bd);
  border-radius: var(--r4); padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: all 280ms ease;
  position: relative;
}
.pc:hover { transform: translateY(-4px); border-color: var(--bd2); }
.pc.featured {
  border-color: var(--rose-bd);
  background: linear-gradient(170deg, rgba(212,96,122,0.04), var(--surface));
  box-shadow: 0 0 0 1px rgba(212,96,122,0.08), 0 20px 60px rgba(212,96,122,0.07);
  padding-top: 42px;
}
.pc-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 14px; border-radius: var(--rpill);
  white-space: nowrap;
}
.pc-plan    { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--t2); margin-bottom: 9px; }
.pc.featured .pc-plan { color: var(--rose); }
.pc-price   { display: flex; align-items: baseline; gap: 3px; margin-bottom: 3px; }
.pc-cur     { font-size: 17px; font-weight: 600; color: var(--t1); margin-top: 5px; }
.pc-num     { font-family: 'Fraunces', serif; font-size: 46px; font-weight: 700; color: var(--t1); line-height: 1; }
.pc-period  { font-size: 13px; color: var(--t2); margin-bottom: 4px; }
.pc-annual  { font-size: 12px; color: var(--t2); margin-bottom: 5px; min-height: 18px; }
.pc-save    { color: var(--success); font-weight: 600; }
.pc-desc    { font-size: 13px; color: var(--t2); line-height: 1.55; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--bd); }
.pc-features{ flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pc-feat    { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--t2); line-height: 1.4; }
.pc-feat-y  { color: var(--success); flex-shrink: 0; margin-top: 2px; font-size: 12px; }
.pc-feat-n  { color: var(--t3); flex-shrink: 0; margin-top: 2px; font-size: 12px; }
.pc-cta     { width: 100%; padding: 12px; border-radius: var(--r2); font-size: 14px; font-weight: 600; cursor: pointer; border: none; font-family: 'Inter', sans-serif; transition: all var(--ease); }
.pc-cta.p   { background: var(--rose); color: #fff; }
.pc-cta.p:hover { background: var(--rose-h); }
.pc-cta.s   { background: transparent; color: var(--t2); border: 1px solid var(--bd2); }
.pc-cta.s:hover { border-color: var(--rose-bd); color: var(--t1); }
.pc-cta.g   { background: transparent; color: var(--gold); border: 1px solid var(--gold-bd); }
.pc-cta.g:hover { background: var(--gold-dim); }
.pricing-footnote { text-align: center; font-size: 12px; color: var(--t3); margin-top: 24px; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 7px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--bd);
  border-radius: var(--r2); overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item.open { border-color: var(--rose-bd); }
.faq-q {
  padding: 17px 20px;
  font-size: 14px; font-weight: 600;
  color: var(--t1); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none; gap: 14px;
  transition: color var(--ease);
}
.faq-item.open .faq-q { color: var(--rose); }
.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--surface2); border: 1px solid var(--bd2);
  display: grid; place-items: center;
  font-size: 14px; color: var(--t3);
  flex-shrink: 0;
  transition: transform 300ms, color var(--ease), background var(--ease), border-color var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--rose); background: var(--rose-dim); border-color: var(--rose-bd); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 20px;
  font-size: 14px; color: var(--t2); line-height: 1.7;
  transition: max-height 380ms ease, padding 280ms;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 16px; }

/* ─── Final CTA ──────────────────────────────────────────── */
.final-cta-card {
  background: var(--surface);
  border: 1px solid var(--rose-bd);
  border-radius: var(--r4); padding: 68px 36px;
  max-width: 660px; margin: 0 auto;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta-card::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,96,122,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-card .label  { justify-content: center; margin-bottom: 18px; }
.final-cta-card .t-h1   { margin-bottom: 12px; }
.final-cta-card > p     { font-size: 15px; color: var(--t2); margin-bottom: 32px; line-height: 1.6; }
.final-cta-sub          { margin-top: 16px; font-size: 12px; color: var(--t3); }
.final-cta-sub span     { color: var(--t2); }

/* ─── Footer ─────────────────────────────────────────────── */
.home-footer {
  border-top: 1px solid var(--bd);
  padding: 36px 28px;
}
.home-footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
}
.footer-logo-link {
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 700;
  color: var(--t2); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.footer-links-list { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links-list a { font-size: 12.5px; color: var(--t3); text-decoration: none; transition: color var(--ease); }
.footer-links-list a:hover { color: var(--t2); }
.footer-copy { font-size: 12px; color: var(--t3); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .two-grid         { grid-template-columns: 1fr; }
  .steps-grid       { grid-template-columns: 1fr; }
  .lsb-inner        { grid-template-columns: 1fr; }
  .lsb-text         { padding: 32px 28px; }
  .lsb-visual       { min-height: 320px; }
  .questions-inner  { grid-template-columns: 1fr; gap: 32px; }
  .testi-grid       { grid-template-columns: 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .fc-memory,.fc-streak,.fc-letter { display: none; }
}
@media (max-width: 600px) {
  .hero             { padding: 96px 20px 60px; }
  .hero-visual      { margin-top: 48px; }
  .two-card         { padding: 26px 22px; }
  .lsb-text         { padding: 26px 20px; }
  .step             { padding: 26px 22px; }
  .final-cta-card   { padding: 44px 22px; }
  .home-footer-inner{ flex-direction: column; align-items: flex-start; }
}
