/* ============================================================
   Oh my baby — Notion-style clean landing
   ============================================================ */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
  /* Classic Confetti palette */
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #191918;
  --ink-soft: #5f5e5b;
  --line: #ebebea;
  --accent: #191918;
  --accent-soft: #f5f4f2;
  --badge: #FF6B5A;
  --section-alt: #ffffff;
  --c1: #FFB627; /* yellow */
  --c2: #FF6B5A; /* coral */
  --c3: #21C5A3; /* teal */
  --c4: #8B7CF6; /* purple */

  --max-w: 720px;
  --gutter: 24px;
  --radius: 12px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
  line-height: 1.55;
  font-feature-settings: "ss01", "tnum";
}

body { padding-bottom: 80px; }

a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { opacity: 0.7; }

button {
  font-family: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

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

/* ----------------------------------------
   SECTION SHELL
---------------------------------------- */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--gutter);
}
.section-title {
  font-size: clamp(28px, 6.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  line-height: 1.2;
  color: var(--ink);
}
.section-sub {
  color: var(--ink-soft);
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.6;
}

/* ----------------------------------------
   HERO
---------------------------------------- */
.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-confetti {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 600px) {
  .hero-confetti svg {
    width: 100px !important;
    height: 40px !important;
  }
  .hero-confetti[data-pos="tl"] { top: 1% !important; left: 1% !important; }
  .hero-confetti[data-pos="tr"] { top: 2% !important; right: 1% !important; }
  .hero-confetti[data-pos="bl"] { bottom: 1% !important; left: 1% !important; }
  .hero-confetti[data-pos="br"] { bottom: 1% !important; right: 1% !important; }
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--gutter) 88px;
  text-align: center;
}

.badge-row { margin-bottom: 28px; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: -0.005em;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--badge);
}

.eyebrow {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0 0 14px;
  letter-spacing: 0;
}

.h1 {
  margin: 0 0 24px;
  font-size: clamp(36px, 9vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1.06;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.h1-top, .h1-bot { color: var(--ink); }
.h1-bot { font-feature-settings: "tnum"; }

.hero-sub {
  margin: 0 auto 40px;
  font-size: clamp(16px, 4vw, 19px);
  color: var(--ink-soft);
  max-width: 38ch;
  line-height: 1.55;
  font-weight: 400;
  white-space: pre-line;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-price-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-strike {
  text-decoration: line-through;
  color: var(--ink-soft);
  font-size: 15px;
  opacity: 0.55;
}
.hero-now {
  color: var(--ink);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.025em;
}
.hero-off-badge {
  background: var(--c2);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.hero-count {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ----------------------------------------
   CTA BUTTON (shared)
---------------------------------------- */
.cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: 20px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .15s, opacity .15s;
  gap: 4px;
}
.cta-btn:hover { color: white; opacity: 0.9; }
.cta-btn:active { transform: translateY(1px); }
.cta-btn .cta-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-btn .cta-arrow { font-size: 17px; }
.cta-btn .cta-subline {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 2px;
}
.cta-btn--block {
  width: 100%;
  max-width: 360px;
}

/* ----------------------------------------
   PREVIEW VIDEO
---------------------------------------- */
.preview-section { text-align: center; }
.video-large {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 16px;
}
.video-large iframe,
.video-large video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--ink);
  object-fit: cover;
}

/* ----------------------------------------
   PROBLEM
---------------------------------------- */
.problem-section { background: var(--section-alt); max-width: none; padding-left: 0; padding-right: 0; }
.problem-stack {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.problem-line {
  font-size: clamp(19px, 4.6vw, 24px);
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.35;
}
.problem-line:nth-child(2) { opacity: 0.95; }
.problem-line:nth-child(3) { opacity: 0.9; }
.problem-cap {
  margin-top: 32px;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* ----------------------------------------
   PERSONAS
---------------------------------------- */
.persona-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.persona-card {
  background: transparent;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.persona-kicker {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  background: transparent;
  padding: 0;
  border-radius: 0;
  flex-shrink: 0;
  padding-top: 4px;
  letter-spacing: 0.04em;
}
.persona-text {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.015em;
  white-space: pre-line;
}

/* ----------------------------------------
   BENEFITS
---------------------------------------- */
.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.benefit-row {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.benefit-num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
  flex-shrink: 0;
  padding-top: 6px;
  letter-spacing: 0.06em;
  width: 32px;
}
.benefit-t {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.4;
}
.benefit-d {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ----------------------------------------
   STEPS
---------------------------------------- */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.step-row {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.step-t {
  margin: 4px 0 6px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.4;
}
.step-d {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ----------------------------------------
   SECTION DIVIDER (squiggle)
---------------------------------------- */
.section-divider {
  display: flex;
  pointer-events: none;
  margin: -12px 0 -8px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}
.section-divider--left { justify-content: flex-start; }
.section-divider--right { justify-content: flex-end; }
.section-divider--left svg { transform: rotate(-8deg); }
.section-divider--right svg { transform: rotate(10deg); }

/* ----------------------------------------
   SOCIAL PROOF
---------------------------------------- */
.proof-section { text-align: center; padding-top: 40px; padding-bottom: 40px; }
.proof-bigstat {
  position: relative;
  margin: 0 0 40px;
  padding: 24px 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.proof-deco {
  position: absolute;
  pointer-events: none;
  display: block;
  z-index: 0;
}
.proof-bigstat > .bigstat-num,
.proof-bigstat > .bigstat-cap { position: relative; z-index: 1; }

/* mirror-symmetric pairs: (1,2) top / (3,4) upper-mid / (5,6) lower-mid / (7,8) bottom */
.proof-deco--1 { top: 4%;     left: 14%;  transform: rotate(-12deg); }
.proof-deco--2 { top: 4%;     right: 14%; }
.proof-deco--3 { top: 38%;    left: 4%;   transform: rotate(15deg); }
.proof-deco--4 { top: 38%;    right: 4%;  transform: rotate(-8deg); }
.proof-deco--5 { bottom: 22%; left: 6%; }
.proof-deco--6 { bottom: 22%; right: 6%;  transform: rotate(20deg); }
.proof-deco--7 { bottom: 4%;  left: 22%;  transform: rotate(10deg); }
.proof-deco--8 { bottom: 4%;  right: 22%; }

@media (max-width: 600px) {
  .proof-deco--1 { width: 56px !important; height: 24px !important; top: 4%; left: 2%; }
  .proof-deco--2 { width: 44px !important; height: 44px !important; top: 0; right: 3%; }
  .proof-deco--3 { width: 32px !important; height: 32px !important; top: 22%; left: 5%; }
  .proof-deco--4 { width: 50px !important; height: 28px !important; top: 12%; right: 4%; }
  .proof-deco--5 { width: 32px !important; height: 32px !important; bottom: 22%; left: 3%; }
  .proof-deco--6 { width: 28px !important; height: 28px !important; bottom: 24%; right: 6%; }
  .proof-deco--7 { width: 44px !important; height: 20px !important; bottom: 2%; left: 14%; }
  .proof-deco--8 { width: 28px !important; height: 28px !important; bottom: 4%; right: 4%; }
}
.confetti-dots { display: block; margin: 0 auto 8px; max-width: 85%; }
.bigstat-num {
  font-size: clamp(96px, 24vw, 160px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--ink);
  font-feature-settings: "tnum";
  display: inline-flex;
  align-items: baseline;
}
.bigstat-count { display: inline-block; }
.bigstat-suffix {
  font-size: 0.28em;
  margin-left: 6px;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
  font-weight: 600;
}
.bigstat-cap {
  font-size: 17px;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0;
}
.reviews-grid {
  display: grid;
  gap: 0;
  text-align: left;
  border-top: 1px solid var(--line);
}
.review-card {
  margin: 0;
  padding: 28px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.review-card blockquote {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: pre-line;
}
.review-card figcaption {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
}

/* ----------------------------------------
   INCLUDED
---------------------------------------- */
.included-section { background: var(--section-alt); max-width: none; padding-left: 0; padding-right: 0; }
.included-section .section-title {
  max-width: var(--max-w); margin-left: auto; margin-right: auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}
.included-grid {
  max-width: var(--max-w);
  margin: 24px auto 0;
  padding: 0 var(--gutter);
  display: grid;
  gap: 12px;
}
.included-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.included-icon {
  font-size: 24px;
  margin-bottom: 16px;
  filter: grayscale(0.2);
}
.included-t {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.included-d {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ----------------------------------------
   PRICE
---------------------------------------- */
.price-section { text-align: center; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.price-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--accent-soft);
  padding: 7px 14px;
  border-radius: 999px;
}
.price-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--badge);
}
.price-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.price-strike {
  text-decoration: line-through;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 400;
}
.price-now {
  font-size: clamp(64px, 16vw, 96px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
  font-feature-settings: "tnum";
  display: inline-flex;
  align-items: baseline;
}
.price-now span {
  font-size: 0.38em;
  margin-left: 6px;
  font-weight: 600;
  color: var(--ink-soft);
}
.price-cap {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 400;
}
.price-foot {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ----------------------------------------
   CREDENTIALS
---------------------------------------- */
.creds-section { padding-top: 40px; padding-bottom: 40px; }
.creds-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  text-align: center;
}
.creds-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.creds-name {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.creds-desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.creds-line {
  height: 1px;
  background: var(--line);
  margin: 28px 0;
}
.creds-stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
}
.stamp-icon { font-size: 22px; }
.stamp-t {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.stamp-d {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ----------------------------------------
   FAQ
---------------------------------------- */
.faq-section { background: var(--section-alt); max-width: none; padding-left: 0; padding-right: 0; }
.faq-section .section-title,
.faq-section .faq-list,
.faq-section .faq-toggle {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}
.faq-section .section-title { margin-bottom: 32px; }
.faq-list { display: grid; gap: 0; }
.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
}
.faq-list .faq-item:first-child { border-top: 1px solid var(--line); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.45;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q-num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  flex-shrink: 0;
  padding-top: 2px;
  letter-spacing: 0.02em;
  min-width: 28px;
}
.faq-q-text { flex: 1; }
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  color: var(--ink-soft);
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1.3;
  margin-left: auto;
}
.faq-item[open] summary::after { content: "−"; }

.faq-a {
  padding: 0 0 22px 42px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
}
.faq-a p { margin: 0 0 12px; }
.faq-a p:last-child { margin: 0; }

.faq-rest { display: none; }
.faq-rest.is-open { display: grid; margin-top: 12px; }

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 2 * var(--gutter));
  margin: 24px auto 0;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.faq-toggle-arrow { transition: transform .2s; display: inline-block; }
.faq-toggle[aria-expanded="true"] .faq-toggle-arrow { transform: rotate(180deg); }

/* ----------------------------------------
   FINAL CTA
---------------------------------------- */
.final-section {
  background: var(--ink);
  max-width: none;
  padding-left: 0; padding-right: 0;
  color: #f5f4f2;
}
.final-card {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px var(--gutter);
  text-align: center;
}
.final-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 6.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: white;
}
.final-accent { color: var(--c1); }
.final-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 36px;
  line-height: 1.6;
}
.final-card .cta-btn {
  background: white;
  color: var(--ink);
}
.final-card .cta-btn:hover { background: var(--accent-soft); color: var(--ink); opacity: 1; }

.warning-box {
  margin-top: 36px;
  padding: 22px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: grid;
  gap: 12px;
  text-align: left;
}
.warn-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.warn-row span:first-child {
  color: var(--badge);
  font-size: 13px;
  flex-shrink: 0;
}

/* ----------------------------------------
   PS
---------------------------------------- */
.ps-card {
  background: transparent;
  border: 0;
  border-left: 2px solid var(--accent);
  border-radius: 0;
  padding: 4px 0 4px 20px;
}
.ps-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 10px;
}
.ps-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.ps-card strong { color: var(--ink); font-weight: 600; }
.ps-card a { font-weight: 600; color: var(--accent); }

/* ----------------------------------------
   FOOTER
---------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 48px var(--gutter) 32px;
  text-align: center;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 13px;
  margin-bottom: 12px;
  color: var(--ink);
}
.footer-meta {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-tiny {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  opacity: 0.6;
}

/* ----------------------------------------
   STICKY MOBILE CTA
---------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px var(--gutter);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform .3s ease;
  z-index: 100;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-price {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1.1;
}
.sticky-strike {
  font-size: 11px;
  color: var(--ink-soft);
  text-decoration: line-through;
}
.sticky-now {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.sticky-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white !important;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none !important;
  letter-spacing: -0.01em;
}

/* ----------------------------------------
   DESKTOP
---------------------------------------- */
@media (min-width: 720px) {
  :root { --max-w: 760px; --gutter: 32px; }

  .persona-grid {
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .persona-card {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding: 32px 24px;
    flex-direction: column;
    gap: 16px;
  }
  .persona-card:last-child { border-right: 0; }

  .included-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 0 32px; }

  .hero-inner { padding: 120px var(--gutter) 100px; }
  .section { padding: 100px var(--gutter); }

  body { padding-bottom: 0; }
  .sticky-cta { display: none; }
}

@media (min-width: 1100px) {
  :root { --max-w: 880px; }
}
