:root {
  --cream: #FDF6EE;
  --warm-white: #FFFCF8;
  --deep: #2A1810;
  --body: #4A3728;
  --muted: #8B7565;
  --coral: #D4725C;
  --coral-hover: #C4624C;
  --coral-light: #F5E0DA;
  --sage: #7A9B71;
  --sage-light: #E8F0E6;
  --gold: #C4953A;
  --gold-light: #FFF3D6;
  --shadow: rgba(42, 24, 16, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--body); background: var(--cream); line-height: 1.7; font-weight: 400; overflow-x: hidden; }

/* NOTIF BAR */
.notif-bar { background: var(--deep); color: #fff; text-align: center; padding: 10px 16px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; position: sticky; top: 0; z-index: 100; }
.notif-bar span { color: var(--gold); font-weight: 700; }

/* TICKER */
.ticker-wrap { background: var(--coral-light); overflow: hidden; padding: 8px 0; position: sticky; top: 38px; z-index: 99; }
.ticker { display: flex; gap: 60px; animation: tickerScroll 28s linear infinite; width: max-content; }
.ticker-item { white-space: nowrap; font-size: 0.78rem; font-weight: 500; color: var(--coral); letter-spacing: 0.02em; }
.ticker-item::before { content: "\2726 "; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* UTILITY */
.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.text-center { text-align: center; }
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--deep); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.4rem); font-weight: 600; margin-bottom: 16px; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin-bottom: 16px; font-size: 1.05rem; }
.subtext { color: var(--muted); font-size: 0.95rem; }
.strikethrough { text-decoration: line-through; color: var(--muted); opacity: 0.7; }

/* CTA */
.cta-btn { display: inline-block; background: var(--coral); color: #fff; padding: 18px 48px; border-radius: 60px; font-size: 1.1rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(212,114,92,0.35); letter-spacing: 0.02em; position: relative; overflow: hidden; }
.cta-btn:hover { background: var(--coral-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,114,92,0.45); }
.cta-btn::after { content: ''; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transform: skewX(-20deg); animation: btnSheen 3s ease-in-out infinite; }
@keyframes btnSheen { 0%, 100% { left: -60%; } 50% { left: 120%; } }
.cta-sub { display: block; margin-top: 10px; font-size: 0.82rem; color: var(--muted); }

/* HERO */
.hero { padding: 90px 0 70px; text-align: center; position: relative; background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%); }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 20%, rgba(212,114,92,0.06) 0%, transparent 60%), radial-gradient(ellipse at 70% 80%, rgba(122,155,113,0.05) 0%, transparent 50%); pointer-events: none; }
.hero-eyebrow { display: inline-block; background: var(--gold-light); color: var(--gold); padding: 6px 20px; border-radius: 40px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--coral); position: relative; }
.hero h1 em::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 8px; background: var(--coral-light); z-index: -1; border-radius: 4px; }
.hero-desc { max-width: 580px; margin: 0 auto 36px; font-size: 1.12rem; color: var(--muted); line-height: 1.85; }
.hero-trust { display: flex; justify-content: center; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.trust-item { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.trust-item strong { color: var(--deep); font-size: 1.1rem; display: block; }

/* URGENCY */
.urgency-banner { background: linear-gradient(135deg, var(--deep) 0%, #3D2B1F 100%); color: #fff; padding: 36px 24px; text-align: center; }
.urgency-banner h3 { color: #fff; font-size: 1.05rem; font-weight: 500; margin-bottom: 16px; }
.countdown { display: flex; justify-content: center; gap: 16px; margin-bottom: 12px; }
.countdown-unit { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 12px 18px; min-width: 70px; }
.countdown-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.countdown-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; margin-top: 4px; display: block; }
.urgency-sub { font-size: 0.85rem; opacity: 0.7; }
.urgency-sub span { color: var(--gold); font-weight: 600; opacity: 1; }

/* STORY SECTIONS */
.story { background: var(--warm-white); border-top: 1px solid rgba(42,24,16,0.05); }
.story-inner { max-width: 620px; margin: 0 auto; }
.story-inner p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 18px; }
.story-inner .story-short { font-size: 1.08rem; line-height: 1.6; margin-bottom: 8px; }
.story-inner .story-emphasis { font-size: 1.15rem; font-weight: 600; color: var(--deep); margin: 24px 0; }
.story-list { list-style: none; margin: 20px 0; padding-left: 0; }
.story-list li { padding: 6px 0 6px 28px; position: relative; font-style: italic; color: var(--muted); font-size: 1rem; }
.story-list li::before { content: '\00B7'; position: absolute; left: 0; color: var(--coral); font-weight: 700; font-size: 1.2rem; }
.tried-list { list-style: none; margin: 16px 0; }
.tried-list li { padding: 8px 0 8px 32px; position: relative; font-size: 1rem; }
.tried-list li::before { content: '\2717'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }

/* CYCLE CALLOUT */
.cycle-box { background: var(--coral-light); border-radius: 14px; padding: 24px 28px; margin: 28px 0; text-align: center; font-weight: 600; color: var(--deep); font-size: 1.05rem; letter-spacing: 0.01em; }
.cycle-box span { color: var(--coral); }

/* ACCUTANE HIGHLIGHT */
.accutane-highlight { background: var(--gold-light); border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 28px 0; }
.accutane-highlight p { margin-bottom: 8px; font-size: 0.98rem; }
.accutane-highlight p:last-child { margin-bottom: 0; }

/* WHAT'S INSIDE */
.whats-inside { background: var(--cream); }
.inside-card { background: var(--warm-white); border: 1px solid rgba(42,24,16,0.06); border-radius: 16px; padding: 24px 28px; margin-bottom: 14px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.inside-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow); }
.inside-card h3 { margin-bottom: 6px; font-size: 1.12rem; }
.inside-card p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

/* GOLDEN RULES */
.rules { background: var(--warm-white); }
.rule-card { display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start; }
.rule-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--coral-light); line-height: 1; flex-shrink: 0; min-width: 40px; }
.rule-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.rule-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* FOR YOU / NOT FOR YOU */
.for-you-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.for-card { border-radius: 16px; padding: 28px; }
.for-card.yes { background: var(--sage-light); border: 1px solid rgba(122,155,113,0.2); }
.for-card.no { background: var(--coral-light); border: 1px solid rgba(212,114,92,0.15); }
.for-card h3 { margin-bottom: 16px; font-size: 1.1rem; }
.for-card ul { list-style: none; }
.for-card ul li { padding: 8px 0 8px 28px; position: relative; font-size: 0.93rem; line-height: 1.6; }
.for-card.yes li::before { content: '\2714'; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.for-card.no li::before { content: '\2716'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }

/* OFFER */
.offer { background: var(--cream); }
.offer-box { text-align: center; padding: 48px 36px; background: linear-gradient(135deg, var(--gold-light) 0%, #FFF8EC 100%); border-radius: 20px; border: 2px dashed var(--gold); }
.offer-box .price-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; }
.offer-box .price-big { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 700; color: var(--deep); margin: 8px 0; }
.offer-includes { text-align: left; max-width: 440px; margin: 20px auto 28px; }
.offer-includes li { padding: 6px 0 6px 28px; position: relative; font-size: 0.95rem; list-style: none; }
.offer-includes li::before { content: '\2713'; position: absolute; left: 0; color: var(--sage); font-weight: 700; }

/* GUARANTEE */
.guarantee { background: var(--warm-white); }
.guarantee-box { max-width: 600px; margin: 0 auto; text-align: center; background: var(--cream); border: 2px solid var(--sage); border-radius: 20px; padding: 44px 36px; }
.guarantee-badge { width: 72px; height: 72px; background: var(--sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.8rem; }
.guarantee-badge span { filter: grayscale(1) brightness(10); }
.guarantee-box h2 { font-size: 1.5rem; margin-bottom: 12px; }
.guarantee-box p { color: var(--muted); font-size: 0.95rem; max-width: 440px; margin: 0 auto; }

/* BEFORE/AFTER */
.before-after { padding: 80px 0; background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; max-width: 640px; margin-left: auto; margin-right: auto; }
.ba-card { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 30px var(--shadow); position: relative; }
.ba-face { width: 100%; aspect-ratio: 3/4; position: relative; display: flex; align-items: center; justify-content: center; }
.ba-before .ba-face { background: linear-gradient(160deg, #f0ddd5, #e8cfc4, #dfc2b5); }
.face-shape { width: 60%; height: 70%; border-radius: 50% 50% 45% 45%; position: relative; }
.ba-before .face-shape { background: linear-gradient(180deg, #f2d5c7, #e8c4b4); box-shadow: inset 0 -10px 30px rgba(180,120,100,0.15); }
.spot { position: absolute; border-radius: 50%; background: radial-gradient(circle, #d48a7a 30%, #c97a6a 60%, transparent 70%); }
.spot-1 { width: 14px; height: 14px; top: 38%; left: 22%; } .spot-2 { width: 10px; height: 10px; top: 42%; right: 25%; }
.spot-3 { width: 16px; height: 16px; top: 55%; left: 30%; } .spot-4 { width: 11px; height: 11px; top: 60%; right: 30%; }
.spot-5 { width: 9px; height: 9px; top: 48%; left: 45%; } .spot-6 { width: 13px; height: 13px; top: 68%; left: 40%; }
.spot-7 { width: 8px; height: 8px; top: 35%; left: 55%; } .spot-8 { width: 12px; height: 12px; top: 72%; right: 38%; }
.spot-9 { width: 7px; height: 7px; top: 44%; left: 60%; } .spot-10 { width: 10px; height: 10px; top: 62%; left: 20%; }
.redness { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(210,130,115,0.3) 0%, transparent 70%); }
.redness-1 { width: 60px; height: 50px; top: 50%; left: 15%; } .redness-2 { width: 55px; height: 45px; top: 50%; right: 18%; } .redness-3 { width: 40px; height: 35px; top: 65%; left: 35%; }
.ba-after .ba-face { background: linear-gradient(160deg, #fceee7, #f8e0d5, #f5d8cb); }
.ba-after .face-shape { background: linear-gradient(180deg, #fce4d8, #f8d8c8); box-shadow: inset 0 -10px 30px rgba(248,210,190,0.2), 0 0 40px rgba(248,220,200,0.3); }
.glow-ring { position: absolute; width: 75%; height: 80%; border-radius: 50%; background: radial-gradient(circle, rgba(255,240,230,0.4) 0%, transparent 70%); top: 10%; left: 12.5%; animation: softGlow 3s ease-in-out infinite alternate; }
@keyframes softGlow { 0% { opacity: 0.5; transform: scale(1); } 100% { opacity: 1; transform: scale(1.03); } }
.sparkle { position: absolute; width: 6px; height: 6px; background: white; border-radius: 50%; box-shadow: 0 0 8px rgba(255,255,255,0.8); animation: sparkleAnim 2s ease-in-out infinite; }
.sparkle-1 { top: 30%; left: 25%; } .sparkle-2 { top: 45%; right: 22%; animation-delay: 0.6s; } .sparkle-3 { top: 60%; left: 38%; animation-delay: 1.2s; }
@keyframes sparkleAnim { 0%, 100% { opacity: 0; transform: scale(0.5); } 50% { opacity: 1; transform: scale(1); } }
.ba-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px 20px; text-align: center; background: linear-gradient(180deg, transparent, rgba(42,24,16,0.65)); }
.ba-label-tag { display: inline-block; padding: 4px 16px; border-radius: 30px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.ba-before .ba-label-tag { background: rgba(212,114,92,0.9); color: #fff; }
.ba-after .ba-label-tag { background: rgba(122,155,113,0.9); color: #fff; }
.ba-label-name { display: block; color: #fff; font-size: 0.85rem; margin-top: 6px; font-weight: 500; }
.ba-caption { text-align: center; margin-top: 24px; font-size: 0.85rem; color: var(--muted); font-style: italic; }

/* FINAL CTA */
.final-cta { background: linear-gradient(180deg, var(--warm-white), var(--cream)); text-align: center; padding: 90px 0; position: relative; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(212,114,92,0.05) 0%, transparent 70%); pointer-events: none; }
.final-cta h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin-bottom: 16px; }
.final-cta h2 em { color: var(--coral); font-style: italic; }
.buyers-live { display: inline-flex; align-items: center; gap: 8px; background: var(--sage-light); color: var(--sage); padding: 6px 16px; border-radius: 40px; font-size: 0.82rem; font-weight: 600; margin-bottom: 24px; }
.live-dot { width: 8px; height: 8px; background: var(--sage); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

/* FAQ */
.faq { background: var(--warm-white); }
.faq-list { max-width: 620px; margin: 36px auto 0; }
.faq-item { border-bottom: 1px solid rgba(42,24,16,0.08); }
.faq-question { width: 100%; background: none; border: none; padding: 18px 0; text-align: left; font-size: 1.02rem; font-weight: 500; color: var(--deep); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'DM Sans', sans-serif; }
.faq-question:hover { color: var(--coral); }
.faq-icon { font-size: 1.4rem; transition: transform 0.3s ease; color: var(--coral); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 18px; color: var(--muted); font-size: 0.93rem; line-height: 1.7; }

/* FOOTER */
footer { background: var(--deep); color: rgba(255,255,255,0.5); text-align: center; padding: 36px 24px; font-size: 0.82rem; line-height: 1.8; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer a:hover { color: #fff; }
.social-links { display: flex; justify-content: center; gap: 16px; margin-bottom: 12px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); transition: all 0.3s ease; }
.social-links a:hover { color: #fff; border-color: var(--coral); background: rgba(212,114,92,0.2); transform: translateY(-2px); }
.social-handle { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 16px; letter-spacing: 0.02em; }

/* STICKY */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(253,246,238,0.95); backdrop-filter: blur(12px); padding: 12px 20px; display: none; align-items: center; justify-content: space-between; z-index: 100; border-top: 1px solid rgba(42,24,16,0.08); box-shadow: 0 -4px 20px var(--shadow); }
.sticky-cta .sticky-info { font-size: 0.85rem; font-weight: 600; color: var(--deep); }
.sticky-cta .sticky-info .old { text-decoration: line-through; color: var(--muted); font-weight: 400; margin-right: 6px; font-size: 0.8rem; }
.sticky-cta .cta-btn { padding: 12px 28px; font-size: 0.9rem; }

/* POPUP */
.purchase-popup { position: fixed; bottom: 90px; right: 24px; z-index: 200; background: var(--warm-white); border: 1px solid rgba(42,24,16,0.08); border-radius: 16px; padding: 18px 22px 18px 18px; box-shadow: 0 12px 40px var(--shadow); display: flex; align-items: center; gap: 14px; min-width: 280px; max-width: 340px; transform: translateX(120%); opacity: 0; transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease; pointer-events: none; border-left: 3px solid var(--coral); }
.purchase-popup.show { transform: translateX(0); opacity: 1; pointer-events: auto; }
.popup-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: var(--warm-white); flex-shrink: 0; background: var(--coral); font-family: 'Playfair Display', serif; }
.popup-content { flex: 1; }
.popup-name { font-weight: 600; font-size: 0.9rem; color: var(--deep); font-family: 'DM Sans', sans-serif; }
.popup-action { font-size: 0.8rem; color: var(--body); margin-top: 2px; font-family: 'DM Sans', sans-serif; }
.popup-time { font-size: 0.72rem; color: var(--coral); font-weight: 500; margin-top: 4px; font-family: 'DM Sans', sans-serif; }
.popup-close { position: absolute; top: 8px; right: 10px; background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.9rem; line-height: 1; opacity: 0.5; transition: opacity 0.2s; }
.popup-close:hover { opacity: 1; color: var(--coral); }
.popup-verified { display: inline-block; font-size: 0.65rem; background: var(--coral-light); color: var(--coral); padding: 1px 6px; border-radius: 10px; font-weight: 600; margin-left: 4px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { padding: 70px 0 60px; }
  .countdown-unit { padding: 10px 12px; min-width: 58px; }
  .countdown-num { font-size: 1.5rem; }
  .cta-btn { padding: 16px 36px; font-size: 1rem; width: 100%; text-align: center; }
  .hero-trust { gap: 20px; }
  .for-you-grid { grid-template-columns: 1fr; }
  .ba-grid { gap: 16px; }
  .offer-box { padding: 32px 20px; }
  .guarantee-box { padding: 32px 24px; }
  .sticky-cta { display: flex; }
  .final-cta { padding-bottom: 110px; }
  .purchase-popup { bottom: 90px; right: 12px; left: 12px; max-width: none; min-width: 0; }
  .rule-card { flex-direction: column; gap: 8px; }
}