/* Home page */

.section-title { font-size: clamp(34px, 4.6vw, 54px); max-width: 16ch; }
.section-lede { font-size: 19px; color: var(--ink-2); max-width: 520px; margin: 18px 0 0; }
.lr-eyebrow.on-dark { color: #f0a47f; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(28px, 6vw, 72px); }
.hero::before { /* paper grain */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.13 0 0 0 0 0.1 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(54px, 8.4vw, 112px); line-height: .92; letter-spacing: -0.025em; }
.hero h1 em { font-style: normal; color: var(--clay); position: relative; white-space: nowrap; }
.hero h1 em::after { /* hand-drawn underline */
  content: ""; position: absolute; left: 2%; right: 4%; bottom: -.08em; height: .14em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M2 14 C 60 4, 120 4, 170 10 S 260 16, 298 6' fill='none' stroke='%23c4552b' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  transform-origin: left; animation: draw .9s .5s cubic-bezier(.6,0,.2,1) both;
}
.lede { font-size: clamp(18px, 1.6vw, 21px); color: var(--ink-2); max-width: 30em; margin: 26px 0 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; padding: 0; margin: 22px 0 0; font-size: 15px; color: var(--muted); }
.hero-facts li::before { content: "✓"; color: var(--go); font-weight: 700; margin-right: 7px; }

.hero-visual { position: relative; }
.reel-card {
  position: relative; background: var(--dark); border-radius: 22px; padding: 10px 10px 0; color: var(--on-dark-muted);
  box-shadow: 0 50px 80px -40px rgba(31,26,23,.55), 0 2px 0 rgba(0,0,0,.05);
  transform: rotate(1.2deg); animation: rise .9s .15s cubic-bezier(.2,.8,.2,1) both;
}
.reel-bar { display: flex; align-items: center; gap: 6px; padding: 4px 8px 12px; font-size: 12px; }
.reel-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--dark-line); }
.reel-bar b { font-weight: 500; margin-left: 10px; color: var(--on-dark-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.reel-screen { aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: #000; }
.reel-screen video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-meta { display: flex; gap: 16px; padding: 12px 10px 14px; font-size: 12.5px; }
.reel-meta .ok { margin-left: auto; color: #7fd6a9; }
.reel-meta .ok::before { content: "● "; }
.hero-caption { font-size: 13px; color: var(--muted); text-align: right; margin: 18px 6px 0; }

/* film strip that runs under the hero */
.strip {
  position: relative; margin-top: clamp(40px, 7vw, 80px); background: var(--dark); padding: 26px 0; overflow: hidden;
  transform: rotate(-1.4deg) scale(1.03);
}
.strip::before, .strip::after { /* sprocket holes */
  content: ""; position: absolute; left: 0; right: 0; height: 10px;
  background: radial-gradient(circle at 50% 50%, var(--paper) 0 3.5px, transparent 4px) 0 0 / 22px 10px repeat-x;
  opacity: .8;
}
.strip::before { top: 8px; } .strip::after { bottom: 8px; }
.strip-track { display: flex; gap: 12px; width: max-content; animation: roll 60s linear infinite; }
.strip-track img { height: clamp(110px, 16vw, 180px); aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px; filter: saturate(.92); }

/* ---------- how ---------- */
.how { padding-block: clamp(80px, 12vw, 150px) clamp(60px, 9vw, 110px); }
.steps { list-style: none; padding: 0; margin: 56px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); counter-reset: none; }
.step { position: relative; }
.step .num { font: 400 18px/1 var(--display); color: var(--clay); display: block; margin-bottom: 14px; }
.step h3 { font-size: 30px; margin: 22px 0 10px; }
.step p { color: var(--ink-2); margin: 0; font-size: 16.5px; }
.step-art { position: relative; aspect-ratio: 4 / 3; border-radius: 16px; background: var(--paper-2); overflow: hidden; }

.art-add img { position: absolute; width: 58%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; border: 4px solid #fff; box-shadow: 0 12px 30px -12px rgba(31,26,23,.4); }
.art-add img:nth-child(1) { left: 8%;  top: 22%; transform: rotate(-7deg); }
.art-add img:nth-child(2) { left: 24%; top: 14%; transform: rotate(3deg); }
.art-add img:nth-child(3) { left: 36%; top: 30%; transform: rotate(-1deg); }
.step:hover .art-add img:nth-child(1) { transform: rotate(-10deg) translateX(-6px); }
.step:hover .art-add img:nth-child(3) { transform: rotate(2deg) translateX(8px); }
.art-add img { transition: transform .35s cubic-bezier(.2,.8,.2,1); }

.art-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.art-frame .box { position: absolute; border: 2.5px solid; border-radius: 3px; aspect-ratio: 1; }
.art-frame .box b { position: absolute; top: -1px; left: -1px; font: 700 9.5px/1 var(--body); letter-spacing: .08em; color: #fff; padding: 3px 5px; border-bottom-right-radius: 4px; }
.art-frame .start { border-color: var(--go); left: 9%; top: 8%; height: 84%; }
.art-frame .start b { background: var(--go); }
.art-frame .end { border-color: var(--stop); left: 17%; top: 24%; height: 44%; animation: breathe 4s ease-in-out infinite; }
.art-frame .end b { background: var(--stop); }

.art-done { display: grid; place-items: center; background: linear-gradient(160deg, var(--paper-2), #e6dccb); }
.done-card { background: var(--card); border-radius: 14px; padding: 16px 18px; width: 72%; box-shadow: 0 18px 40px -18px rgba(31,26,23,.35); font-size: 13px; }
.done-card b { font-size: 13.5px; }
.done-card ul { list-style: none; padding: 0; margin: 10px 0 12px; display: grid; gap: 4px; color: var(--ink-2); }
.done-card li::before { content: "✓ "; color: var(--go); font-weight: 700; }
.done-card .dl { display: block; text-align: center; background: var(--clay); color: #fff; border-radius: 8px; padding: 8px; font-weight: 700; }

/* ---------- privacy ---------- */
.private { background: var(--dark); color: var(--on-dark); padding-block: clamp(80px, 11vw, 140px); position: relative; overflow: hidden; }
.private::after { /* a lens-like glow */
  content: ""; position: absolute; width: 60vw; height: 60vw; right: -20vw; top: -25vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,85,43,.22), transparent 62%); pointer-events: none;
}
.private-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.private h2 { font-size: clamp(40px, 5.6vw, 72px); color: var(--on-dark); }
.private-points p { color: var(--on-dark-muted); font-size: 17.5px; margin: 0 0 22px; padding-left: 22px; border-left: 2px solid var(--dark-line); }
.private-points b { color: var(--on-dark); display: block; font-size: 19px; margin-bottom: 4px; }

/* ---------- rules ---------- */
.rules { padding-block: clamp(80px, 11vw, 140px); }
.rules-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.checklist { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.checklist li { padding: 20px 0 20px 46px; border-bottom: 1px solid var(--line); position: relative; color: var(--ink-2); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 18px; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; background: #e2f3ea; color: var(--go); font-weight: 700;
}
.checklist b { color: var(--ink); }

/* ---------- plans ---------- */
.plans { padding-block: 0 clamp(80px, 11vw, 140px); }
.plan-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 18px; margin-top: 40px; }
.plan { background: var(--card); border: 1.5px solid var(--line); border-radius: 22px; padding: 28px; }
.plan.pro { border-color: var(--clay); background: linear-gradient(180deg, #fff8f3, var(--card)); }
.plan h3 { font-size: 30px; }
.plan .price { margin: 8px 0 6px; color: var(--muted); }
.plan .price b { font: 400 44px/1 var(--display); color: var(--ink); }
.plan p { color: var(--ink-2); }
.plan .lr-btn { margin-top: 8px; }

/* ---------- faq ---------- */
.faq { background: var(--paper-2); padding-block: clamp(70px, 10vw, 120px); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; font-weight: 700; font-size: 18.5px; padding: 20px 40px 20px 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 14px; font: 400 28px/1 var(--display); color: var(--clay); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 22px; color: var(--ink-2); max-width: 60ch; }

/* ---------- final ---------- */
.final { background: var(--clay); color: #fff; padding-block: clamp(60px, 9vw, 110px); }
.final-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.final h2 { font-size: clamp(38px, 5.4vw, 68px); max-width: 14ch; }
.lr-btn-light { background: #fff; color: var(--clay-dark); }
.lr-btn-light:hover { background: var(--paper); transform: translateY(-1px); }

/* ---------- motion ---------- */
@keyframes draw { from { transform: scaleX(0); } }
@keyframes rise { from { opacity: 0; transform: rotate(1.2deg) translateY(24px); } }
@keyframes roll { to { transform: translateX(-50%); } }
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(.82) translate(12%, 10%); } }
.hero-copy > * { animation: rise-copy .7s cubic-bezier(.2,.8,.2,1) both; }
.hero-copy > :nth-child(2) { animation-delay: .06s; } .hero-copy > :nth-child(3) { animation-delay: .12s; }
.hero-copy > :nth-child(4) { animation-delay: .18s; } .hero-copy > :nth-child(5) { animation-delay: .24s; }
@keyframes rise-copy { from { opacity: 0; transform: translateY(14px); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- narrow ---------- */
@media (max-width: 900px) {
  .hero-grid, .private-grid, .rules-grid, .faq-grid { grid-template-columns: 1fr; }
  .reel-card { transform: none; max-width: 520px; }
  .hero-caption { text-align: left; }
  .steps { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 560px) {
  .plan-cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 52px; }
}
