/* ═══════════════════════════════════════════════════════════
   BUNNEFIT — styles.css
   Brand color: #875cfe (violet)
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --violet:   #875cfe;
  --violet-d: #6a3fe0;
  --violet-l: #ede6ff;
  --violet-m: #c4adff;
  --cream:    #faf8f5;
  --warm:     #f2ede6;
  --blush:    #f0dbd5;
  --stone:    #e8e2da;
  --ink:      #1e1a26;
  --ink-m:    #4a4257;
  --ink-l:    #8a7f9a;
  --white:    #ffffff;
  --peach:    #f0956e;
  --sage:     #8fbfa8;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --mono:   'DM Mono', monospace;

  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   40px;

  --shadow-sm: 0 2px 8px rgba(30,26,38,0.07);
  --shadow-md: 0 8px 28px rgba(30,26,38,0.10);
  --shadow-lg: 0 24px 60px rgba(30,26,38,0.13);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.serif { font-family: var(--serif); }
h1, h2, h3 { font-family: var(--serif); line-height: 1.1; font-weight: 700; }

/* ── UTILITY ─────────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--violet-l);
  color: var(--violet-d);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.tag--dark {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(135,92,254,0.28);
}
.btn--primary:hover { background: var(--violet-d); box-shadow: 0 10px 30px rgba(135,92,254,0.36); }

.btn--ghost {
  background: transparent;
  color: var(--violet);
  border: 1.5px solid var(--violet-m);
}
.btn--ghost:hover { background: var(--violet-l); border-color: var(--violet); }

.btn--white {
  background: var(--white);
  color: var(--violet);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover { background: var(--violet-l); box-shadow: var(--shadow-md); }

.btn--sm { padding: 9px 20px; font-size: 0.82rem; }

/* ── FADE-UP ANIMATION ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(250,248,245,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(135,92,254,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(30,26,38,0.07); }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 32px;
  width: auto;
}
.nav__logo-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--violet);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-m);
  padding: 6px 14px;
  border-radius: 100px;
  transition: color 0.18s, background 0.18s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--violet); background: var(--violet-l); }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── Mobile nav drawer ───────────────────────────────────── */
.nav__drawer {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  padding: 16px 24px 24px;
  z-index: 199;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-m);
  padding: 11px 16px;
  border-radius: var(--r-sm);
  transition: background 0.15s, color 0.15s;
}
.nav__drawer a:hover, .nav__drawer a.active { background: var(--violet-l); color: var(--violet); }
.nav__drawer .drawer-dl {
  margin-top: 8px;
  padding: 14px 16px;
  background: var(--violet);
  color: var(--white);
  border-radius: var(--r-md);
  font-weight: 500;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO BANNER (inner pages)
   ══════════════════════════════════════════════════════════ */
.page-banner {
  padding: 130px 48px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner__glow {
  position: absolute;
  width: 640px; height: 640px;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--violet-l) 0%, transparent 68%);
  pointer-events: none;
}
.page-banner h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: var(--ink);
}
.page-banner h1 em { font-style: italic; color: var(--violet); }
.page-banner .sub {
  color: var(--ink-l);
  font-size: 1rem;
  max-width: 480px;
  margin: 14px auto 0;
  position: relative;
  z-index: 1;
}
.page-banner .tag { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════════
   PAGE CONTENT WRAPPER
   ══════════════════════════════════════════════════════════ */
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 48px 120px;
}
.page-content--wide { max-width: 1080px; }

/* ══════════════════════════════════════════════════════════
   HOME — HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 110px 48px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
  position: relative;
  overflow: hidden;
}
.hero__glow-a {
  position: absolute;
  width: 720px; height: 720px;
  top: -180px; right: -200px;
  background: radial-gradient(circle, var(--violet-l) 0%, transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}
.hero__glow-b {
  position: absolute;
  width: 480px; height: 480px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 65%);
  opacity: 0.7;
  pointer-events: none;
}

.hero__eyebrow { margin-bottom: 22px; }
.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 1.04;
  margin-bottom: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero__title em { font-style: italic; color: var(--violet); }
.hero__sub {
  font-size: 1.05rem;
  color: var(--ink-m);
  max-width: 420px;
  margin-bottom: 38px;
  line-height: 1.72;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__social-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}
.hero__social-hint span { font-size: 0.78rem; color: var(--ink-l); letter-spacing: 0.06em; text-transform: uppercase; }
.hero__social-hint a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--stone);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-m);
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.hero__social-hint a:hover { border-color: var(--violet); color: var(--violet); background: var(--violet-l); }
.hero__social-hint svg { width: 14px; height: 14px; fill: currentColor; }

/* Phone mockup */
.hero__visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.phone {
  width: 245px;
  background: var(--ink);
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 50px 100px rgba(30,26,38,0.22), 0 0 0 1px rgba(255,255,255,0.06) inset;
  position: relative;
}
.phone__bar {
  width: 72px; height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  margin: 0 auto 10px;
}
.phone__screen {
  width: 100%;
  border-radius: 32px;
  aspect-ratio: 9/19;
  object-fit: cover;
  background: var(--blush);
  display: block;
}

/* Floating badges */
.badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 11px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatY 4s ease-in-out infinite;
}
.badge--left  { left: -56px; bottom: 100px; animation-delay: 0.3s; }
.badge--right { right: -40px; top: 90px;  animation-delay: 1.1s; }
.badge__icon { font-size: 1.25rem; }
.badge__text { font-size: 0.75rem; font-weight: 500; color: var(--violet); line-height: 1.3; }
.badge__text small { display: block; color: var(--ink-l); font-weight: 300; font-size: 0.68rem; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* ── Ticker strip ────────────────────────────────────────── */
.ticker {
  background: var(--violet);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker__inner {
  display: flex;
  gap: 0;
  animation: tickerScroll 28s linear infinite;
  width: max-content;
}
.ticker__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0.92;
}
.ticker__item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--violet-m); flex-shrink: 0; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   HOME — SECTIONS
   ══════════════════════════════════════════════════════════ */
.section { padding: 96px 48px; }
.section--white { background: var(--white); }
.section--warm  { background: var(--warm); }
.section--violet { background: var(--violet); color: var(--white); }

.section__header { text-align: center; margin-bottom: 60px; }
.section__header h2 { font-size: clamp(1.9rem, 3.2vw, 3rem); margin-top: 12px; color: var(--ink); }
.section__header h2 em { font-style: italic; color: var(--violet); }
.section--violet .section__header h2 { color: var(--white); }
.section--violet .section__header .tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

/* Feature cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.feat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  border: 1px solid var(--stone);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative;
  overflow: hidden;
}
.feat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--violet);
  opacity: 0;
  transition: opacity 0.22s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--violet-m); }
.feat-card:hover::after { opacity: 1; }
.feat-card__icon { font-size: 1.9rem; margin-bottom: 14px; }
.feat-card__title { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.feat-card__body { font-size: 0.87rem; color: var(--ink-m); line-height: 1.62; }

/* Two-col feature block */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 88px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block--flip { }
.feature-block--flip .feature-block__visual { order: -1; }

.feature-block__tag { margin-bottom: 14px; }
.feature-block__title { font-size: clamp(1.6rem, 2.4vw, 2.2rem); margin-bottom: 16px; }
.feature-block__title em { font-style: italic; color: var(--violet); }
.feature-block__body { color: var(--ink-m); font-size: 0.93rem; line-height: 1.75; margin-bottom: 14px; }

.feature-list { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 28px; }
.feature-list li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 0.88rem; color: var(--ink-m); line-height: 1.55;
}
.feature-list li strong { color: var(--ink); font-weight: 500; }
.feature-list__icon { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

.feature-block__visual img {
  width: 100%;
  border-radius: var(--r-lg);
  background: var(--blush);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* Why cards */
.why-card {
  border-radius: var(--r-lg);
  padding: 36px 30px;
  display: flex;
  gap: 18px;
}
.why-card:nth-child(1) { background: var(--blush); }
.why-card:nth-child(2) { background: var(--violet-l); }
.why-card:nth-child(3) { background: #e6f2ec; }
.why-card:nth-child(4) { background: var(--warm); border: 1.5px solid var(--stone); }
.why-card__icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.why-card__title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 7px; }
.why-card__body { font-size: 0.87rem; color: var(--ink-m); line-height: 1.62; }

/* Screenshots showcase */
.screenshots-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
}
.shot-wrap {
  width: 168px;
  background: rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 10px;
}
.shot-wrap img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 9/19;
  object-fit: cover;
  background: rgba(255,255,255,0.15);
}
.shot-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-align: center; margin-top: 10px; }
.shot-wrap:nth-child(2) { margin-bottom: 32px; }
.shot-wrap:nth-child(4) { margin-bottom: 32px; }

/* Newsletter */
.newsletter { text-align: center; }
.newsletter h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--ink); margin: 12px 0 14px; }
.newsletter__sub { color: var(--ink-m); max-width: 460px; margin: 0 auto 36px; }

.email-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  border: 1.5px solid var(--stone);
  border-radius: 100px;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 0.88rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s;
}
.email-form input::placeholder { color: var(--ink-l); }
.email-form input:focus { border-color: var(--violet); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.45);
  padding: 64px 48px 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer__logo img { height: 28px; width: auto; }
.footer__logo-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer__tagline { font-size: 0.82rem; line-height: 1.65; margin-bottom: 22px; }

.footer__socials {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.footer__social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.footer__social-link:hover {
  border-color: var(--violet);
  color: var(--white);
  background: var(--violet);
}
.footer__social-link svg { width: 15px; height: 15px; fill: currentColor; }

.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.18s;
}
.footer__col ul li a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.76rem;
}
.footer__bottom em { font-style: italic; opacity: 0.4; }

/* ══════════════════════════════════════════════════════════
   FEATURES PAGE
   ══════════════════════════════════════════════════════════ */
.slideshow {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16/7;
  margin-bottom: 80px;
  box-shadow: var(--shadow-lg);
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; opacity: 0.65; }
.slide-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.slide-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slide-dot.active { background: var(--white); transform: scale(1.3); }

.coming-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.coming-card {
  background: rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  padding: 26px 22px;
  border: 1px solid rgba(255,255,255,0.08);
}
.coming-card__icon { font-size: 1.7rem; margin-bottom: 11px; }
.coming-card__title { font-family: var(--serif); font-size: 1rem; font-weight: 600; margin-bottom: 7px; color: var(--white); }
.coming-card__body { font-size: 0.83rem; color: rgba(255,255,255,0.58); line-height: 1.58; }

.privacy-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #e6f2ec;
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.81rem;
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════ */
.maker-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 80px;
}
.maker-photo { position: sticky; top: 92px; }
.maker-photo img {
  width: 100%;
  border-radius: var(--r-xl);
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--blush);
  box-shadow: var(--shadow-md);
}
.maker-photo__cap { text-align: center; font-size: 0.78rem; color: var(--ink-l); margin-top: 10px; }

.maker-bio h2 { font-size: clamp(1.55rem, 2.5vw, 2.1rem); margin-bottom: 20px; }
.maker-bio h2 em { font-style: italic; color: var(--violet); }
.maker-bio p { color: var(--ink-m); line-height: 1.78; margin-bottom: 16px; }
.maker-bio p strong { color: var(--ink); font-weight: 500; }

.skill-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 32px; }
.skill-chip {
  background: var(--violet-l);
  color: var(--violet-d);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
}

.pull-quote {
  background: var(--violet);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  margin: 64px 0;
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 9rem;
  line-height: 0.8;
  color: rgba(255,255,255,0.1);
  position: absolute;
  top: 28px; left: 32px;
  pointer-events: none;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.48;
  position: relative;
  z-index: 1;
}
.pull-quote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.support-banner {
  background: var(--blush);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 64px;
}
.support-banner h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; margin-bottom: 7px; }
.support-banner p { color: var(--ink-m); font-size: 0.88rem; }

/* Contact form */
.contact-form-section h2 { font-size: clamp(1.4rem, 2vw, 1.9rem); margin-bottom: 8px; }
.contact-form-section > p { color: var(--ink-m); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.78rem; font-weight: 500; color: var(--ink-m); letter-spacing: 0.05em; text-transform: uppercase; }
.form-input,
.form-textarea {
  border: 1.5px solid var(--stone);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(135,92,254,0.12); }
.form-textarea { resize: vertical; min-height: 140px; }

/* ══════════════════════════════════════════════════════════
   FAQ PAGE
   ══════════════════════════════════════════════════════════ */
.faq-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-btn {
  border: 1.5px solid var(--stone);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.81rem;
  font-weight: 400;
  background: none;
  color: var(--ink-m);
  cursor: pointer;
  transition: all 0.18s;
}
.cat-btn.active, .cat-btn:hover { background: var(--violet); color: var(--white); border-color: var(--violet); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--stone); }
.faq-item:first-child { border-top: 1px solid var(--stone); }

.faq-q {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 22px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.18s;
}
.faq-q:hover, .faq-q.open { color: var(--violet); }
.faq-q__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--stone);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.28s, background 0.18s, border-color 0.18s;
}
.faq-q.open .faq-q__icon { transform: rotate(45deg); background: var(--violet); border-color: var(--violet); }
.faq-q__icon svg { width: 11px; height: 11px; stroke: var(--ink-m); transition: stroke 0.18s; fill: none; stroke-width: 1.8; stroke-linecap: round; }
.faq-q.open .faq-q__icon svg { stroke: var(--white); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease, padding 0.28s; }
.faq-a.open { max-height: 260px; padding-bottom: 22px; }
.faq-a p { font-size: 0.92rem; color: var(--ink-m); line-height: 1.76; }
.faq-a strong { color: var(--ink); font-weight: 500; }

.faq-cta {
  background: var(--violet);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  text-align: center;
  color: var(--white);
  margin-top: 64px;
}
.faq-cta h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin: 12px 0 12px; }
.faq-cta p { color: rgba(255,255,255,0.62); margin-bottom: 28px; }

/* ══════════════════════════════════════════════════════════
   SUBSCRIBE PAGE
   ══════════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 72px; }
.pricing-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  border: 1.5px solid var(--stone);
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  background: var(--ink);
  border-color: var(--violet);
  box-shadow: 0 0 0 1px var(--violet);
}
.featured-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--violet);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-tier { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-l); margin-bottom: 14px; font-weight: 500; }
.pricing-card--featured .plan-tier { color: rgba(255,255,255,0.4); }
.plan-price { font-family: var(--serif); font-size: 3rem; font-weight: 700; line-height: 1; color: var(--ink); margin-bottom: 4px; }
.plan-price sup { font-size: 1.1rem; vertical-align: top; padding-top: 10px; display: inline-block; font-weight: 400; }
.pricing-card--featured .plan-price { color: var(--white); }
.plan-cadence { font-size: 0.8rem; color: var(--ink-l); margin-bottom: 28px; }
.pricing-card--featured .plan-cadence { color: rgba(255,255,255,0.42); }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: var(--ink-m); line-height: 1.45; }
.pricing-card--featured .plan-features li { color: rgba(255,255,255,0.7); }
.plan-check { color: var(--violet); font-size: 0.88rem; flex-shrink: 0; margin-top: 1px; }
.pricing-card--featured .plan-check { color: var(--violet-m); }
.plan-btn {
  width: 100%;
  padding: 12px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.18s;
  border: 1.5px solid var(--stone);
  background: none;
  color: var(--violet);
}
.plan-btn:hover { background: var(--violet-l); border-color: var(--violet-m); }
.plan-btn--primary { background: var(--violet); color: var(--white); border-color: var(--violet); }
.plan-btn--primary:hover { background: var(--violet-d); }

.perk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 72px; }
.perk-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 26px 22px;
  border-top: 3px solid var(--violet-m);
}
.perk-card:nth-child(2) { border-color: var(--sage); }
.perk-card:nth-child(3) { border-color: var(--peach); }
.perk-card:nth-child(4) { border-color: var(--blush); }
.perk-card:nth-child(5) { border-color: var(--violet); }
.perk-card:nth-child(6) { border-color: var(--violet-m); }
.perk-icon { font-size: 1.7rem; margin-bottom: 11px; }
.perk-card h3 { font-family: var(--serif); font-size: 0.98rem; font-weight: 600; margin-bottom: 7px; }
.perk-card p { font-size: 0.83rem; color: var(--ink-m); line-height: 1.58; }

.shot-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 72px;
  scrollbar-width: none;
}
.shot-strip::-webkit-scrollbar { display: none; }
.shot-strip .shot-frame {
  flex-shrink: 0;
  width: 170px;
  background: var(--ink);
  border-radius: 26px;
  padding: 10px;
}
.shot-strip .shot-frame img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 9/19;
  object-fit: cover;
  background: var(--blush);
}

.in-app-cta {
  background: var(--violet);
  border-radius: var(--r-xl);
  padding: 60px 48px;
  text-align: center;
  color: var(--white);
}
.in-app-cta h2 { font-size: clamp(1.7rem, 2.8vw, 2.5rem); margin: 12px 0 14px; color: var(--white); }
.in-app-cta p { color: rgba(255,255,255,0.62); margin-bottom: 32px; max-width: 420px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════════════════
   DATA DELETION PAGE
   ══════════════════════════════════════════════════════════ */
.steps-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone);
}
.steps-card h2 { font-size: 1.45rem; margin-bottom: 32px; }
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--stone); align-items: flex-start; }
.step:last-child { border-bottom: none; }
.step__num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--violet); color: var(--white);
  font-family: var(--serif); font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step__body { padding-top: 5px; }
.step__body strong { font-size: 0.92rem; font-weight: 500; display: block; margin-bottom: 3px; }
.step__body span { font-size: 0.85rem; color: var(--ink-m); }

.warn-box {
  background: #fff4f1;
  border: 1.5px solid #f0a58a;
  border-radius: var(--r-md);
  padding: 22px 26px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.warn-box p { font-size: 0.88rem; line-height: 1.7; }
.warn-box strong { color: #c0392b; }
.warn-icon { font-size: 1.4rem; flex-shrink: 0; }

.policy-link-card {
  background: var(--violet);
  border-radius: var(--r-xl);
  padding: 38px 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.policy-link-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 5px; }
.policy-link-card p { color: rgba(255,255,255,0.58); font-size: 0.86rem; }
.policy-link-card a {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.18s;
}
.policy-link-card a:hover { background: rgba(255,255,255,0.24); }

/* ══════════════════════════════════════════════════════════
   PRIVACY POLICY PAGE
   ══════════════════════════════════════════════════════════ */
.privacy-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 44px; }
.privacy-summary-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--stone);
}
.privacy-summary-card .p-icon { font-size: 1.8rem; margin-bottom: 9px; }
.privacy-summary-card h4 { font-family: var(--serif); font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; }
.privacy-summary-card p { font-size: 0.78rem; color: var(--ink-m); line-height: 1.55; }

.toc {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 26px;
  margin-bottom: 44px;
  border-left: 3px solid var(--violet);
  border: 1px solid var(--stone);
  border-left: 3px solid var(--violet);
}
.toc h3 { font-family: var(--sans); font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--violet); margin-bottom: 16px; }
.toc ol { padding-left: 18px; display: flex; flex-direction: column; gap: 7px; }
.toc ol li a { font-size: 0.86rem; color: var(--ink-m); transition: color 0.15s; }
.toc ol li a:hover { color: var(--violet); }

.policy-section { margin-bottom: 44px; scroll-margin-top: 90px; }
.policy-section h2 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--stone);
  letter-spacing: 0.02em;
}
.policy-section h3 { font-family: var(--sans); font-size: 0.92rem; font-weight: 500; margin: 18px 0 7px; }
.policy-section p { font-size: 0.9rem; color: var(--ink-m); line-height: 1.8; margin-bottom: 11px; }
.policy-section p strong { color: var(--ink); font-weight: 500; }
.policy-section ul { padding-left: 18px; display: flex; flex-direction: column; gap: 7px; margin-bottom: 11px; }
.policy-section ul li { font-size: 0.9rem; color: var(--ink-m); line-height: 1.72; }
.policy-section ul li strong { color: var(--ink); font-weight: 500; }
.policy-section a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }

.last-updated-tag {
  display: inline-block;
  background: #e6f2ec;
  color: #3a7a5a;
  font-size: 0.76rem;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 36px;
}

.contact-box {
  background: var(--violet);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  color: var(--white);
  margin-top: 48px;
}
.contact-box h3 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 9px; }
.contact-box p { color: rgba(255,255,255,0.62); font-size: 0.88rem; margin-bottom: 5px; }
.contact-box a { color: var(--violet-m); text-decoration: underline; text-underline-offset: 3px; }

/* ══════════════════════════════════════════════════════════
   DOWNLOAD LANDING PAGE (Google Ads)
   ══════════════════════════════════════════════════════════ */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: rgba(250,248,245,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(135,92,254,0.08);
}
.lp-nav__logo { display: flex; align-items: center; gap: 10px; }
.lp-nav__logo img { height: 30px; width: auto; }
.lp-nav__logo-text { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--violet); }

.lp-hero {
  min-height: 100vh;
  padding: 100px 48px 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}
.lp-hero__glow {
  position: absolute;
  width: 700px; height: 700px;
  top: -160px; right: -180px;
  background: radial-gradient(circle, var(--violet-l) 0%, transparent 65%);
  opacity: 0.55;
  pointer-events: none;
}
.lp-hero__tag { margin-bottom: 20px; }
.lp-hero__title {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--ink);
}
.lp-hero__title em { font-style: italic; color: var(--violet); }
.lp-hero__sub {
  font-size: 1.05rem;
  color: var(--ink-m);
  line-height: 1.74;
  max-width: 430px;
  margin-bottom: 36px;
}
.lp-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--violet);
  color: var(--white);
  padding: 16px 34px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--sans);
  box-shadow: 0 8px 28px rgba(135,92,254,0.32);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
}
.lp-dl-btn:hover { background: var(--violet-d); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(135,92,254,0.40); }
.lp-dl-btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.lp-trust-note { margin-top: 14px; font-size: 0.77rem; color: var(--ink-l); letter-spacing: 0.04em; }

.lp-hero__visual { position: relative; z-index: 1; display: flex; justify-content: center; }

.lp-trust-bar {
  background: var(--white);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: 18px 48px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.lp-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--ink-m); }
.lp-trust-item strong { color: var(--ink); font-weight: 500; }

.lp-section { padding: 88px 48px; max-width: 1100px; margin: 0 auto; }
.lp-section--warm { background: var(--warm); max-width: none; padding-left: 0; padding-right: 0; }
.lp-section--warm .lp-section-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.lp-section__header { text-align: center; margin-bottom: 52px; }
.lp-section__header .tag { margin-bottom: 12px; }
.lp-section__header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--ink); margin-top: 10px; }
.lp-section__header h2 em { font-style: italic; color: var(--violet); }
.lp-section__header p { color: var(--ink-m); margin-top: 10px; font-size: 0.95rem; }

.lp-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-benefit {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  border: 1px solid var(--stone);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lp-benefit__icon { font-size: 1.9rem; margin-bottom: 14px; }
.lp-benefit__title { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.lp-benefit__body { font-size: 0.86rem; color: var(--ink-m); line-height: 1.64; }

.lp-screens-wrap {
  background: var(--violet);
  padding: 80px 48px;
}
.lp-screens-inner { max-width: 1100px; margin: 0 auto; }
.lp-screens-inner .lp-section__header h2 { color: var(--white); }
.lp-screens-inner .lp-section__header p { color: rgba(255,255,255,0.6); }
.lp-screens-inner .lp-section__header .tag { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.9); }

.lp-cta-wrap {
  background: var(--ink);
  padding: 96px 48px;
  text-align: center;
}
.lp-cta-wrap h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); color: var(--white); margin: 12px 0 14px; }
.lp-cta-wrap h2 em { font-style: italic; color: var(--violet-m); }
.lp-cta-wrap p { color: rgba(255,255,255,0.52); font-size: 0.95rem; max-width: 400px; margin: 0 auto 36px; line-height: 1.7; }
.lp-cta-wrap .lp-dl-btn { background: var(--white); color: var(--violet); box-shadow: none; font-size: 1rem; padding: 16px 36px; }
.lp-cta-wrap .lp-dl-btn:hover { background: var(--violet-l); transform: translateY(-2px); }
.lp-cta-wrap .lp-trust-note { color: rgba(255,255,255,0.35); margin-top: 16px; }

.lp-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.lp-footer a { color: rgba(255,255,255,0.38); transition: color 0.15s; }
.lp-footer a:hover { color: var(--white); }
.lp-footer .lp-sep { opacity: 0.2; }

@media (max-width: 900px) {
  .lp-nav { padding: 0 20px; }
  .lp-hero { grid-template-columns: 1fr; padding: 96px 24px 64px; text-align: center; gap: 52px; }
  .lp-hero__glow { display: none; }
  .lp-hero__sub { margin-left: auto; margin-right: auto; }
  .lp-hero__visual { order: -1; }
  .lp-trust-bar { gap: 18px; padding: 16px 24px; }
  .lp-section { padding: 64px 24px; }
  .lp-section--warm .lp-section-inner { padding: 0 24px; }
  .lp-benefits { grid-template-columns: 1fr 1fr; }
  .lp-screens-wrap { padding: 64px 24px; }
  .lp-cta-wrap { padding: 72px 24px; }
  .lp-footer { padding: 16px 24px; }
}
@media (max-width: 560px) {
  .lp-benefits { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   NEWSLETTER PAGE
   ══════════════════════════════════════════════════════════ */
.nl-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
}
.nl-icon { font-size: 3rem; margin-bottom: 18px; line-height: 1; }
.nl-card h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 10px; }
.nl-card h2 em { font-style: italic; color: var(--violet); }
.nl-card .nl-sub { color: var(--ink-m); font-size: 0.95rem; line-height: 1.72; margin-bottom: 32px; }
.nl-note { font-size: 0.78rem; color: var(--ink-l); margin-top: 16px; line-height: 1.55; }
.nl-archive { display: inline-block; margin-top: 28px; font-size: 0.85rem; color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav__links, .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; padding: 100px 24px 64px; text-align: center; gap: 48px; }
  .hero__sub { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__social-hint { justify-content: center; }
  .hero__glow-a, .hero__glow-b { display: none; }
  .badge { display: none; }

  .section { padding: 72px 24px; }
  .page-banner { padding: 108px 24px 60px; }
  .page-content { padding: 20px 24px 100px; }

  .cards-3 { grid-template-columns: 1fr 1fr; }
  .cards-2 { grid-template-columns: 1fr; }

  .feature-block { grid-template-columns: 1fr; gap: 36px; }
  .feature-block--flip .feature-block__visual { order: 0; }

  .maker-grid { grid-template-columns: 1fr; gap: 40px; }
  .maker-photo { position: static; }
  .maker-photo img { max-width: 260px; margin: 0 auto; }

  .support-banner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .perk-grid { grid-template-columns: 1fr 1fr; }
  .coming-grid { grid-template-columns: 1fr 1fr; }

  .policy-link-card { flex-direction: column; align-items: flex-start; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer { padding: 48px 24px 28px; }

  .in-app-cta { padding: 44px 24px; }
  .pull-quote { padding: 40px 28px; }
  .privacy-summary { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .cards-3 { grid-template-columns: 1fr; }
  .coming-grid { grid-template-columns: 1fr; }
  .perk-grid { grid-template-columns: 1fr; }
  .privacy-summary { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .steps-card { padding: 32px 22px; }
}