/* ============================================================
   DESTINY PALM — design tokens + base + components
   Mobile-first, 375–430px column. Gold / ivory / pastel.
   Ported from the Claude Design handoff (Destiny Palm/styles.css).
   ============================================================ */

:root {
  /* palette — goodface fresh matcha/sage (Gen-Z green-forward, soft luxe) */
  --paper:      #F4F8EF;   /* soft matcha-tinted ivory */
  --paper-2:    #E7F0DE;   /* pale sage */
  --card:       #FFFFFF;   /* clean white card */
  --ink:        #18271E;   /* deep forest ink */
  --ink-soft:   #51614F;   /* muted green-grey text */
  --ink-faint:  #8A9A86;

  /* signature green accents */
  --green:      #3FA06B;   /* primary emerald-sage */
  --green-soft: #BCE3C9;
  --green-deep: #2C7C4F;
  --green-wash: #E4F2E8;
  --blue:       #3FA06B;   /* alias → green (icons that referenced --blue) */
  --blue-soft:  #BCE3C9;
  --pink:       #E6A6C0;   /* soft secondary pop */
  --pink-soft:  #F4DCE7;
  --grad:       linear-gradient(120deg, #B9E6C8 0%, #74C79A 60%, #4FB084 100%);

  /* legacy gold tokens repointed to green so every accent flips */
  --gold:       #3FA06B;
  --gold-2:     #5BB585;
  --gold-deep:  #2C7C4F;
  --gold-wash:  #E4F2E8;

  --lavender:   #CFE6D2;   /* greenish pastels */
  --mint:       #C2E8D6;
  --peach:      #EFE6D2;

  --line:       #18271E;   /* thin dark outline */
  --line-soft:  rgba(24,39,30,.12);

  /* type */
  --serif: "Newsreader", Georgia, serif;
  --sans:  "Inter Tight", system-ui, sans-serif;

  /* shape */
  --r-sm: 14px;
  --r:    20px;
  --r-lg: 28px;
  --r-xl: 36px;

  --shadow-soft: 0 10px 30px -14px rgba(24,39,30,.18);
  --shadow-card: 0 1px 0 rgba(24,39,30,.10), 0 16px 40px -22px rgba(24,39,30,.26);
  --shadow-pop:  0 22px 60px -24px rgba(24,39,30,.36);

  --maxw: 430px;
}

/* Japanese locale — swap to Noto JP fonts */
.lang-ja {
  --serif: "Noto Serif JP", "Newsreader", Georgia, serif;
  --sans:  "Noto Sans JP", "Inter Tight", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(120% 60% at 50% -10%, #FAFDF4 0%, var(--paper) 42%, var(--paper-2) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* mobile = full-bleed (edge-to-edge); web/desktop = centered card on a soft textured field */
.stage {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background:
    repeating-linear-gradient(135deg, rgba(24,39,30,.018) 0 22px, transparent 22px 44px),
    linear-gradient(160deg, #DCEBCF, #C7DFB6);
}

.app {
  position: relative;
  width: 100%;
  height: 100dvh;
  background:
    radial-gradient(120% 40% at 50% -6%, #FBFDF6 0%, var(--paper) 46%, var(--paper-2) 100%);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  /* mobile: no max-width, no frame -> fills the whole screen */
}
@media (min-width: 640px) {
  /* web/desktop: the outlined card on the textured field (like the reference jpeg).
     Breakpoint = facecard's Tailwind `sm` (40rem/640px): below this the column stays
     FULL-BLEED edge-to-edge mobile (no frame); at/above it becomes the outlined card. */
  .stage { padding: 20px; }
  .app {
    max-width: var(--maxw);
    height: calc(100dvh - 40px);
    border-radius: 34px;
    box-shadow: 0 0 0 1px rgba(42,24,48,.06), 0 40px 90px -40px rgba(42,24,48,.45);
  }
}

[hidden] { display: none !important; }

/* ---------- typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; margin: 0; line-height: 1.04; letter-spacing: -.01em; }
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 6px;
}
.serif-italic { font-style: italic; }
p { margin: 0; }

/* ---------- buttons ---------- */
.btn {
  -webkit-appearance: none; appearance: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%;
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #fff;
  font-weight: 800;
  letter-spacing: .15px;
  background: linear-gradient(180deg, #54BD8B 0%, var(--green) 55%, var(--green-deep) 100%);
  border-color: var(--green-deep);
  box-shadow: 0 3px 0 var(--green-deep), 0 16px 30px -10px rgba(63,160,107,.55);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: gfBreathe 2.8s ease-in-out infinite;
}
/* periodic shine sweep to draw the eye toward the primary action */
.btn-primary::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: -60%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
  animation: gfShine 3.2s ease-in-out infinite;
  z-index: -1;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 0 var(--green-deep), 0 22px 40px -12px rgba(63,160,107,.7); }
.btn-primary:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--green-deep), 0 10px 20px -12px rgba(63,160,107,.6); animation: none; }
@keyframes gfShine { 0% { left: -60%; } 55%, 100% { left: 130%; } }
@keyframes gfBreathe { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(0) scale(1.012); } }
@media (prefers-reduced-motion: reduce) { .btn-primary { animation: none; } .btn-primary::before { animation: none; display: none; } }
.btn-ghost {
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 2px 0 var(--line);
}
.btn-ghost:hover { background: #fff; }
.btn-soft {
  border-color: var(--line-soft);
  background: rgba(42,24,48,.06);
  color: var(--ink-faint);
  font-weight: 700;
}
.btn[disabled] { opacity: .45; cursor: not-allowed; box-shadow: none; }
.btn[disabled]:active { transform: none; }

.btn-row { display: flex; gap: 10px; }
.btn-row .btn { width: auto; flex: 1; }

/* ---------- pills / chips / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1.4px solid var(--line);
  background: var(--card);
  white-space: nowrap;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(42,24,48,.045);
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ---------- generic card ---------- */
.card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
}
.card-soft {
  background: var(--card);
  border: 1.5px solid var(--line-soft);
  border-radius: var(--r);
  box-shadow: var(--shadow-soft);
}

/* tint backgrounds */
.t-pink     { background: var(--pink); }
.t-lavender { background: var(--lavender); }
.t-mint     { background: var(--mint); }
.t-peach    { background: var(--peach); }
.t-gold     { background: var(--gold-wash); }

/* ---------- decorative shapes layer ---------- */
.shape {
  position: absolute;
  pointer-events: none;
  color: var(--gold);
  opacity: .9;
  z-index: 0;
}
.shape svg { display: block; overflow: visible; }
.float-a { animation: floatA 7s ease-in-out infinite; }
.float-b { animation: floatB 9s ease-in-out infinite; }
.float-c { animation: floatC 6s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-10px) rotate(6deg)} }
@keyframes floatB { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(9px) rotate(-7deg)} }
@keyframes floatC { 0%,100%{transform:translateY(0) rotate(-4deg)} 50%{transform:translateY(-7px) rotate(5deg)} }

@keyframes twinkle { 0%,100%{opacity:.25; transform:scale(.85)} 50%{opacity:1; transform:scale(1.1)} }
.twinkle { animation: twinkle 2.6s ease-in-out infinite; }

/* ============================================================
   LANDING
   ============================================================ */
.wrap { position: relative; z-index: 1; padding: 0 18px 8px; }

/* header */
.app-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--serif); font-weight: 600; font-size: 19px; letter-spacing: -.01em; }
.logo .mark { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-wash); border: 1.4px solid var(--line); }
.header-links { display: flex; gap: 16px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.header-links a { cursor: pointer; }
.header-links a:hover { color: var(--ink); }

/* hero */
.hero { position: relative; padding: 26px 0 8px; text-align: center; }
.hero h1 { font-size: 41px; line-height: .98; letter-spacing: -.02em; }
.hero h1 em { color: var(--gold-deep); }
.hero .sub { margin: 16px auto 0; max-width: 33ch; color: var(--ink-soft); font-size: 15.5px; line-height: 1.5; }
.hero-cta { margin-top: 20px; }
.hero .micro { margin-top: 11px; font-size: 12.5px; color: var(--ink-faint); font-weight: 600; }

/* phone/report mockup */
.mock {
  position: relative;
  margin: 26px auto 0;
  width: 250px;
  border-radius: 30px;
  background: linear-gradient(170deg, #fffef9, #fff7e6);
  border: 1.6px solid var(--line);
  box-shadow: var(--shadow-pop);
  padding: 16px 14px 18px;
  z-index: 2;
}
.mock .scan {
  position: relative;
  height: 196px; border-radius: 20px;
  background: radial-gradient(80% 70% at 50% 35%, #fff3d6, #f7e3b6);
  border: 1.4px solid var(--line);
  overflow: hidden;
  display: grid; place-items: center;
}
.mock .scan::after {
  content:""; position:absolute; left:0; right:0; height: 40%;
  background: linear-gradient(180deg, rgba(232,184,78,0), rgba(232,184,78,.55), rgba(232,184,78,0));
  animation: sweep 2.8s ease-in-out infinite;
}
@keyframes sweep { 0%{transform:translateY(-60%)} 100%{transform:translateY(220%)} }
.mock .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.mock .tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: .02em;
  padding: 5px 9px; border-radius: 999px; border: 1.2px solid var(--line);
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
}
.mock-cap { margin-top: 11px; font-size: 11px; font-weight: 700; color: var(--ink-faint); text-align:center; letter-spacing:.06em; text-transform: uppercase; }

/* minimal report-cover preview (hero) */
.cover { text-align: center; padding: 2px 4px 4px; }
.cv-head { display: flex; align-items: center; justify-content: space-between; }
.cv-brand { display: inline-flex; align-items: center; gap: 5px; font-family: var(--serif); font-weight: 600; font-size: 13px; color: var(--ink); white-space: nowrap; }
.cv-pdf { font-size: 9px; font-weight: 800; letter-spacing: .12em; padding: 3px 8px; border-radius: 999px; border: 1.2px solid var(--line); background: var(--gold-wash); color: var(--ink); }
.cv-art { position: relative; margin: 16px auto 13px; width: 116px; height: 116px; display: grid; place-items: center; border-radius: 22px; background: radial-gradient(60% 60% at 50% 42%, #fff4d8, #f8e8c8); border: 1.3px solid var(--line); }
.cv-art::after { content: ""; position: absolute; width: 74px; height: 74px; border-radius: 50%; background: radial-gradient(circle, rgba(232,184,78,.5), transparent 70%); }
.cv-art svg { position: relative; z-index: 1; }
.cv-title { font-family: var(--serif); font-size: 20px; line-height: 1; }
.cv-sub { font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-faint); margin-top: 5px; }
.cv-chips { display: flex; justify-content: center; gap: 6px; margin-top: 13px; }
.cv-chips span { font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 999px; border: 1.2px solid var(--line); background: var(--card); }

/* badge strip */
.badge-strip { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 30px; }

/* social proof — outlined white badge */
.social { margin: 14px auto 0; display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 4px 8px; background: #fff; border: 1.4px solid var(--line); border-radius: 18px; padding: 8px 14px; box-shadow: 0 2px 0 var(--line); max-width: 100%; }
.social .stars { display: inline-flex; gap: 1px; font-size: 12px; line-height: 1; letter-spacing: 1px; }
.social .st { font-size: clamp(11px, 3.3vw, 12.5px); font-weight: 700; color: var(--ink-soft); text-align: center; }

/* scroll cue */
.see-wrap { text-align: center; margin-top: 22px; }
.see-more {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px; border-radius: 999px;
  border: 1.4px solid var(--line); background: var(--card);
  font-family: var(--sans); font-weight: 700; font-size: 12.5px; color: var(--ink);
  cursor: pointer; box-shadow: 0 2px 0 var(--line); white-space: nowrap;
}
.see-more:hover { background: #fff; }
.see-more .dn { display: inline-flex; animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(3px)} }

/* stat trio */
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(6px, 2vw, 9px); margin-top: 14px; }
.stat { text-align: center; padding: clamp(11px, 3.4vw, 15px) clamp(4px, 1.8vw, 8px); border-radius: var(--r); border: 1.5px solid var(--line); background: var(--card); box-shadow: var(--shadow-card); }
.stat .se { font-size: clamp(18px, 5.4vw, 22px); line-height: 1; margin-bottom: 7px; }

/* ---- what is Destiny Palm ---- */
.about { position: relative; overflow: hidden; padding: 26px 22px; border-radius: var(--r-lg); border: 1.5px solid var(--line); background: linear-gradient(158deg, var(--gold-wash), #fffdf6 68%); box-shadow: var(--shadow-card); }
.about-motif { position: absolute; right: -24px; bottom: -30px; opacity: .12; transform: rotate(-12deg); pointer-events: none; }
.about .eyebrow, .about h2, .about p { position: relative; z-index: 1; }
.about h2 { font-size: 25px; margin-top: 11px; letter-spacing: -.01em; line-height: 1.06; }
.about p { margin-top: 12px; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); max-width: 38ch; }
.stat .sn { font-family: var(--serif); font-size: clamp(16px, 5vw, 23px); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; overflow-wrap: anywhere; }
.stat .sl { margin-top: 6px; font-size: clamp(9.5px, 2.9vw, 11px); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-faint); line-height: 1.25; overflow-wrap: anywhere; }

/* section header */
.sec { margin-top: 46px; }
.sec-head { text-align: center; margin-bottom: 18px; }
.sec-head h2 { font-size: 28px; letter-spacing: -.015em; }
.sec-head p { margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; max-width: 32ch; margin-left:auto; margin-right:auto; }

/* privacy trio */
.trio { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 9px; }
.trio .card-soft { padding: 14px 10px; text-align: center; }
.trio .ic { width: 34px; height: 34px; margin: 0 auto 9px; display: grid; place-items: center; border-radius: 50%; border: 1.3px solid var(--line); }
.trio b { font-size: 12.5px; line-height: 1.25; display: block; }

/* steps */
.steps { display: grid; gap: 13px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  padding: 16px;
}
.step .num {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 19px;
  box-shadow: 0 2px 0 var(--gold-deep);
}
.step h3 { font-size: 18px; }
.step p { margin-top: 4px; color: var(--ink-soft); font-size: 13.5px; line-height: 1.45; }

/* report grid */
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.report-card { padding: 15px 14px; border-radius: var(--r); position: relative; overflow: hidden; }
.report-card .rc-ic { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; border: 1.3px solid var(--line); background: rgba(255,255,255,.55); margin-bottom: 10px; }
.report-card h3 { font-size: 15.5px; line-height: 1.1; }
.report-card p { margin-top: 5px; font-size: 12px; color: var(--ink-soft); line-height: 1.4; }

/* report-preview slideshow */
#preview { margin-top: 14px; }          /* sit right under the headline, no big gap */
.preview-panel {
  position: relative;
  max-width: 320px;                     /* compact, tidy teaser card (not a giant block) */
  margin-left: auto; margin-right: auto;
  padding: 12px 12px 12px;
  border-radius: var(--r-lg);
  background: linear-gradient(168deg, var(--card), var(--paper-2));
  border: 1.6px solid var(--line);
  box-shadow: var(--shadow-card);
}
.preview-panel .pv-head { text-align: center; margin-bottom: 9px; }
.preview-panel .pv-head .eyebrow {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9.5px; letter-spacing: .14em;
}
.preview-panel .pv-head h2 {
  margin-top: 4px; font-size: 14.5px; font-weight: 600;
  line-height: 1.2; letter-spacing: -.005em; color: var(--ink);
}
.slide-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;                  /* shorter than full A4 -> smaller, easier to show */
  border-radius: var(--r);
  overflow: hidden;
  border: 1.4px solid var(--line);
  background: radial-gradient(60% 60% at 50% 38%, #fff4d8, #f4e6c6);
  box-shadow: var(--shadow-soft);
}
.slide-stage .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;         /* show the report's title/header — the recognizable part */
  opacity: 0;
  transition: opacity .8s ease;
}
.slide-stage .slide.is-active { opacity: 1; }
/* soft gold vignette to frame the page edges */
.slide-stage::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(217,164,65,.35), inset 0 -40px 50px -30px rgba(42,24,48,.4);
}
@media (prefers-reduced-motion: reduce) {
  .slide-stage .slide { transition: none; }
}

/* recent-buyer social-proof toast */
.buyer-toast {
  position: fixed; left: 10px; top: 50%; bottom: auto; z-index: 25;
  display: flex; align-items: center; gap: 8px;
  max-width: 208px; padding: 7px 11px 7px 7px;
  border-radius: 13px;
  background: rgba(255,253,246,.92);
  -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px);
  border: 1.3px solid var(--line);
  box-shadow: 0 2px 0 rgba(42,24,48,.5), 0 14px 28px -14px rgba(42,24,48,.4);
  opacity: 0; transform: translate(-14px, -50%) scale(.96);
  transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;             /* never intercepts taps — zero burden */
}
.buyer-toast.is-show { opacity: 1; transform: translate(0, -50%) scale(1); }
.buyer-toast .bt-avatar {
  flex: none; width: 28px; height: 28px;
  display: grid; place-items: center; border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 25%, var(--gold-2), var(--gold-deep));
  color: #fff8e8; border: 1.3px solid var(--line);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.45);
}
.buyer-toast .bt-avatar svg { width: 15px; height: 15px; }
.buyer-toast .bt-body { min-width: 0; }
.buyer-toast .bt-head { display: flex; align-items: center; gap: 5px; }
.buyer-toast .bt-title {
  font-family: var(--serif); font-weight: 600; font-size: 10px;
  letter-spacing: .01em; color: var(--gold-deep);
  text-transform: uppercase;
}
.buyer-toast .bt-check {
  display: inline-grid; place-items: center; width: 12px; height: 12px;
  border-radius: 50%; background: #2e7d52; color: #fff;
}
.buyer-toast .bt-check svg { width: 9px; height: 9px; }
.buyer-toast .bt-text {
  margin: 1px 0 0; font-size: 11px; line-height: 1.28; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.buyer-toast .bt-ago {
  display: block; margin-top: 1px; font-size: 9.5px; color: var(--ink-faint);
}
.funnel-open .buyer-toast { display: none; }   /* silent during the questionnaire */
@media (prefers-reduced-motion: reduce) {
  .buyer-toast { transition: none; }
}

/* =========================== CHECKOUT / PAYWALL =========================== */
.checkout {
  display: flex; flex-direction: column; gap: 14px;
  padding: 16px 16px 24px;
}
.co-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 4px;
}
.co-head .logo {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--serif); font-weight: 600; font-size: 16px; letter-spacing: -.01em;
  color: var(--ink);
}
.co-head .co-mark {
  display: inline-grid; place-items: center; width: 26px; height: 26px;
  border-radius: 9px; color: var(--gold-deep);
  background: var(--gold-wash); border: 1.4px solid var(--line);
}
.co-progress {
  flex: 1; max-width: 130px; height: 7px; border-radius: 99px;
  background: #fff; border: 1.4px solid var(--line); overflow: hidden;
}
.co-progress span { display: block; height: 100%; width: 100%; background: var(--gold); }

/* countdown banner */
.co-timer {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 13px 14px 12px; border-radius: 16px; text-align: center;
  background: linear-gradient(100deg, #fff3d2, #ffe7c4);
  border: 1.4px solid var(--line);
  box-shadow: 0 2px 0 rgba(42,24,48,.55);
  transition: background .3s ease, border-color .3s ease;
}
.co-timer-row { display: flex; align-items: center; justify-content: center; gap: 7px; }
.co-timer-ic { display: inline-grid; place-items: center; color: var(--gold-deep); }
.co-timer-label {
  font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--gold-deep);
  text-transform: uppercase;
}
.co-timer-clock {
  margin: 3px 0 2px;
  font-family: var(--serif); font-weight: 800; font-size: 40px; line-height: 1;
  color: var(--gold-deep); letter-spacing: .03em;
  font-variant-numeric: tabular-nums; text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.co-timer-note {
  font-size: 12.5px; line-height: 1.45; font-weight: 600; color: var(--ink-soft);
}
.co-timer-was {
  font-weight: 900; font-size: 15px; color: #c0392b; white-space: nowrap;
}
/* standalone price highlight after the countdown — light, "cheap" feel, elegant */
.co-pricehit {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 9px 14px 8px; border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f6fbf8 140%);
  border: 1px solid #d6ecde; box-shadow: 0 2px 10px rgba(22,163,74,.06);
}
.co-pricehit-main { display: flex; align-items: baseline; justify-content: center; gap: 7px; }
.co-pricehit-note {
  font-size: 10.5px; font-weight: 700; color: #1aa653; letter-spacing: .01em;
}
.co-pricehit-pre { font-size: 12.5px; font-weight: 500; color: var(--ink-soft); }
.co-pricehit-now {
  font-size: 17px; font-weight: 600; color: #1aa653; letter-spacing: 0;
  font-variant-numeric: tabular-nums; animation: coPriceHit 2.6s ease-in-out infinite;
}
.co-pricehit::before {
  content: ""; position: absolute; top: 0; left: -55%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(26,166,83,.1), transparent);
  transform: skewX(-18deg); animation: coPriceShine 3.6s ease-in-out infinite; pointer-events: none;
}
@keyframes coPriceHit { 0%, 100% { opacity: .9; } 50% { opacity: 1; } }
@keyframes coPriceShine { 0% { left: -55%; } 55%, 100% { left: 130%; } }
@media (prefers-reduced-motion: reduce) {
  .co-pricehit-now { animation: none; } .co-pricehit::before { animation: none; opacity: 0; }
}
/* honest urgency: warning state in the final 5 minutes */
.co-timer.is-urgent {
  background: linear-gradient(100deg, #ffe1d6, #ffd2c4);
  border-color: #c0392b;
}
.co-timer.is-urgent .co-timer-clock { color: #c0392b; animation: coUrgent 1s ease-in-out infinite; }
.co-timer.is-urgent .co-timer-label,
.co-timer.is-urgent .co-timer-note,
.co-timer.is-urgent .co-timer-ic { color: #c0392b; }
@keyframes coUrgent { 0%,100% { opacity: 1; } 50% { opacity: .45; } }

/* heading */
.co-intro { margin-top: 2px; }
.co-h1 {
  font-family: var(--serif); font-weight: 600; font-size: 25px; line-height: 1.08;
  letter-spacing: -.01em; color: var(--ink); text-wrap: balance;
}
.co-sub {
  margin-top: 7px; font-size: 13px; line-height: 1.5; color: var(--ink-soft);
  text-align: justify; text-justify: inter-word;
}

/* shared card look */
.checkout .card {
  background: var(--card); border: 1.5px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-card);
}

/* benefit checklist */
.co-benefits { display: grid; gap: 9px; padding: 13px 14px; }
.co-benefit {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.co-check {
  flex: none; display: grid; place-items: center; width: 24px; height: 24px;
  border-radius: 50%; background: var(--gold); color: #fff8e8;
  border: 1.4px solid var(--line);
}

/* dynamic "we found…" findings teaser (premium, ruled list — easy to scan) */
.co-findings { display: block; padding: 12px 15px 13px; }
.co-find-head {
  margin: 0 0 5px; padding-bottom: 7px; border-bottom: 1px solid rgba(176,131,43,.16);
  font-size: 9.5px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-deep);
}
.co-find {
  display: flex; align-items: flex-start; gap: 11px; padding: 8px 0;
  font-size: 12.5px; font-weight: 600; color: var(--ink); line-height: 1.55;
}
.co-find + .co-find { border-top: 1px solid rgba(176,131,43,.12); }
.co-find:last-child { padding-bottom: 1px; }
.co-find-ic {
  flex: none; margin-top: 1px; display: grid; place-items: center; width: 22px; height: 22px;
  border-radius: 50%; background: var(--gold-wash, #f6e7c4); color: var(--gold-deep);
  border: 1.4px solid var(--gold);
}
.co-find-tx { flex: 1; }
.co-find-n { color: var(--gold-deep); font-weight: 900; }
/* locked value chip → blurred + animated, stays inline (never breaks the sentence) */
.co-lock {
  display: inline-flex; align-items: center; gap: 3px; vertical-align: baseline;
  white-space: nowrap; padding: 0 7px; margin: 0 1px; border-radius: 7px;
  background: var(--gold-wash, #f6e7c4); border: 1px solid var(--gold); color: var(--gold-deep);
  animation: coLockGlow 2s ease-in-out infinite;
}
.co-lock-ic { flex: none; opacity: .75; }
.co-lock-pre { font-weight: 900; margin-right: 1px; }
.co-lock-v { filter: blur(4px); font-weight: 900; user-select: none; letter-spacing: .04em; }
@keyframes coLockGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,164,65,0); }
  50% { box-shadow: 0 0 0 3px rgba(217,164,65,.2); }
}
@media (prefers-reduced-motion: reduce) {
  .co-lock { animation: none; }
}

/* ---- WhatsApp testimonial slider ---- */
.co-testi { text-align: center; padding: 16px 14px 15px; }
.co-testi-rating { display: inline-flex; align-items: baseline; gap: 7px; margin: 0 auto 7px; }
.co-testi-stars { color: #e8a91b; font-size: 14px; letter-spacing: 1.5px; }
.co-testi-rtxt { font-size: 12px; color: var(--ink-soft, #5b4a59); }
.co-testi-rtxt b { color: var(--ink, #2A1830); font-weight: 800; }
.co-testi-h {
  margin: 0 0 14px; font-family: var(--serif, Georgia, serif); font-weight: 600;
  font-size: 19px; line-height: 1.25; color: var(--ink, #2A1830);
}
.co-testi-stage { position: relative; }
.co-testi-viewport { overflow: hidden; border-radius: 22px; transition: height .4s cubic-bezier(.45,.05,.2,1); }
.co-testi-track { display: flex; align-items: flex-start; transition: transform .55s cubic-bezier(.45,.05,.2,1); }
/* tap left / right to change testimonial */
.co-testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line, #E7DCC4);
  background: rgba(255,253,246,.94); color: var(--ink, #2A1830); cursor: pointer;
  font: 22px/1 var(--serif, serif); display: grid; place-items: center; padding-bottom: 3px;
  box-shadow: 0 3px 10px rgba(42,24,48,.18); transition: transform .15s, background .15s; -webkit-tap-highlight-color: transparent;
}
.co-testi-arrow:hover { background: #fff; }
.co-testi-arrow:active { transform: translateY(-50%) scale(.9); }
.co-testi-arrow.prev { left: 6px; } .co-testi-arrow.next { right: 6px; }
.co-testi-slide { flex: 0 0 100%; min-width: 0; display: flex; padding: 3px; }
/* white testimonial card: quote title → screenshot → bonus badge (matches the reference) */
.testi-card {
  width: 100%; display: flex; flex-direction: column; align-items: center;
  background: var(--card, #FFFDF6); border: 1px solid var(--line, #E7DCC4); border-radius: 22px;
  box-shadow: 0 8px 22px rgba(42,24,48,.09); padding: 16px 15px 16px;
}
.testi-title {
  margin: 0 0 12px; min-height: 2.7em; display: flex; align-items: center; justify-content: center;
  text-align: center; font-family: var(--serif, Georgia, serif); font-weight: 700; font-size: 16.5px;
  line-height: 1.32; letter-spacing: -.01em; color: var(--ink, #2A1830);
}
.testi-shot {
  width: 100%; background: #0b141a; border-radius: 14px;
  overflow: hidden; box-shadow: 0 5px 16px rgba(42,24,48,.18);
}
.testi-img { display: block; width: 100%; height: auto; }
.testi-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 15px;
  background: linear-gradient(180deg, #fdeede, #f9ddc4); border: 1px solid #f1cfa8;
  color: #c9762b; font-weight: 800; font-size: 13px; padding: 8px 19px; border-radius: 999px;
  box-shadow: 0 3px 9px rgba(201,118,43,.16);
}
/* dark WhatsApp card sits flush inside the screenshot frame (no own border/shadow) */
.testi-shot .wa-card { width: 100%; display: flex; flex-direction: column; flex: 1; text-align: left; }
.wa-top { display: flex; align-items: center; gap: 10px; background: #1f2c34; padding: 10px 13px; }
.wa-av { position: relative; width: 37px; height: 37px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 15px; flex: none; }
.wa-on { position: absolute; right: -1px; bottom: -1px; width: 10px; height: 10px; border-radius: 50%; background: #25d366; border: 2px solid #1f2c34; }
.wa-id { display: flex; flex-direction: column; line-height: 1.32; flex: 1; min-width: 0; }
.wa-id b { display: flex; align-items: center; gap: 4px; color: #e9edef; font-size: 14.5px; font-weight: 600; }
.wa-vb { flex: none; }
.wa-id i { color: #8aa0ac; font-size: 11px; font-style: normal; }
.wa-icons { display: flex; gap: 15px; color: #8696a0; flex: none; }
.wa-body {
  flex: 1 1 auto; padding: 13px 13px 15px; background: #0b141a;
  background-image: radial-gradient(rgba(255,255,255,.022) 1px, transparent 1px); background-size: 16px 16px;
  display: flex; flex-direction: column; gap: 8px; min-height: 120px; justify-content: flex-end;
}
.wa-day {
  align-self: center; margin-bottom: 5px; background: #18242b; color: #8aa0ac; font-size: 9px; font-weight: 700;
  letter-spacing: .07em; padding: 3px 11px; border-radius: 8px;
}
.wa-bub {
  align-self: flex-end; max-width: 86%; background: #005c4b; color: #e9edef; font-size: 13.5px; line-height: 1.46;
  padding: 7px 11px 7px; border-radius: 11px 4px 11px 11px; box-shadow: 0 1px 1px rgba(0,0,0,.22);
}
.wa-meta { display: inline-block; margin-left: 8px; font-size: 10px; color: #93c9b8; vertical-align: bottom; white-space: nowrap; }
.wa-meta svg { vertical-align: -1px; margin-left: 2px; }
.wa-foot {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: #131f27; color: #8db9a6; font-size: 10.5px; font-weight: 600; padding: 8px 10px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.co-testi-dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
.co-testi-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line, #E7DCC4); transition: .35s; cursor: pointer; }
.co-testi-dot.on { background: var(--gold, #D9A441); width: 18px; border-radius: 3px; }
@media (prefers-reduced-motion: reduce) { .co-testi-track { transition: none; } }

/* premium-contents section */
.co-premium { overflow: hidden; padding: 0; }
.co-premium-head {
  padding: 14px 15px; border-bottom: 1.5px solid var(--line);
  background: linear-gradient(180deg, #fdeebf, #f9e2ad);
}
.co-eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep);
}
.co-premium-h {
  margin-top: 4px; font-family: var(--serif); font-weight: 600; font-size: 20px;
  line-height: 1.1; letter-spacing: -.01em; color: var(--ink);
}
.co-premium-sub {
  margin-top: 6px; font-size: 12px; line-height: 1.4; color: var(--ink-soft); text-wrap: pretty;
}
.co-pages {
  display: grid; grid-template-columns: 1fr;
}
.co-page {
  display: grid; grid-template-columns: 34px 1fr; gap: 11px;
  padding: 11px 14px; border-top: 1px solid var(--line-soft);
}
.co-page:first-child { border-top: 0; }
.co-num {
  display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: 9px; background: var(--ink); color: #fff7e6;
  font-size: 11px; font-weight: 800; font-variant-numeric: tabular-nums;
}
.co-page-t { font-size: 13px; font-weight: 700; line-height: 1.2; color: var(--ink); }
.co-page-d { margin-top: 3px; font-size: 11px; line-height: 1.35; color: var(--ink-faint); }
@media (min-width: 380px) {
  .co-pages { grid-template-columns: 1fr 1fr; }
  .co-page:nth-child(2) { border-top: 0; }
  .co-page:nth-child(even) { border-left: 1px solid var(--line-soft); }
}

/* personal-report preview (blurred teaser) */
.co-preview { padding: 14px; }
.co-preview-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.co-preview-eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep);
}
.co-preview-badge {
  display: grid; place-items: center; min-width: 30px; height: 26px; padding: 0 8px;
  border-radius: 9px; background: var(--ink); color: #fff7e6;
  font-family: var(--serif); font-weight: 600; font-size: 14px;
}
.co-preview-body {
  margin-top: 12px; display: grid; grid-template-columns: 0.9fr 1fr; gap: 12px; align-items: start;
}
.co-preview-thumb {
  border-radius: 14px; overflow: hidden; border: 1.4px solid var(--line);
  background: radial-gradient(60% 60% at 50% 35%, #fff4d8, #f1e2bf);
  aspect-ratio: 4 / 5;
}
.co-preview-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.co-preview-h {
  font-family: var(--serif); font-weight: 500; font-size: 21px; line-height: 1.05;
  color: var(--ink);
}
/* blurred placeholder bars */
.co-blur { display: grid; gap: 7px; }
.co-blur > span {
  height: 11px; border-radius: 99px; background: rgba(42,24,48,.5); filter: blur(2.2px);
}
.co-blur > span.w5 { width: 84%; background: rgba(42,24,48,.4); }
.co-blur > span.w4 { width: 78%; }
.co-blur > span.w3 { width: 62%; background: rgba(42,24,48,.32); }
.co-blur > span.sm { height: 8px; }
.co-blur > span.lg { height: 16px; background: rgba(42,24,48,.6); }
.co-preview-text .co-blur-lines { margin-top: 13px; }
.co-blur-cards { margin-top: 11px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.co-blur-cards > .co-blur {
  padding: 9px; border-radius: 12px; border: 1px solid var(--line-soft); background: rgba(255,255,255,.65);
}
.co-blur-wide {
  margin-top: 12px; padding: 11px 12px; border-radius: 13px;
  border: 1px solid var(--line-soft); background: rgba(255,255,255,.65);
}
.co-preview-tiles { margin-top: 11px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.co-tile {
  padding: 8px; border-radius: 12px; border: 1px solid var(--line-soft); background: var(--paper-2);
}
.co-tile-img { aspect-ratio: 4 / 3; border-radius: 8px; background: var(--green-wash, #E4F2E8); }
.co-tile .co-blur { margin-top: 8px; gap: 5px; }
.co-tile .co-blur > span { height: 7px; }

/* price + purchase */
.co-buy { margin-top: 2px; display: grid; gap: 10px; }

/* proof beside the CTA */
.co-trust {
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.co-stars { display: inline-flex; gap: 1px; color: var(--gold); line-height: 0; }
.co-stars svg { filter: drop-shadow(0 1px 0 rgba(181,131,43,.35)); }
.co-trust-text { font-size: 12px; font-weight: 700; color: var(--ink-soft); }

.co-pricehead { display: flex; flex-direction: column; gap: 6px; margin: 2px 0 2px; }
.co-price { display: flex; align-items: baseline; gap: 8px; justify-content: center; }
.co-was {
  font-size: 13px; font-weight: 700; color: var(--ink-faint);
  text-decoration: line-through; text-decoration-color: rgba(42,24,48,.4);
  font-variant-numeric: tabular-nums;
}
.co-now {
  font-family: var(--serif); font-weight: 600; font-size: 23px; letter-spacing: 0;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.co-off {
  font-size: 10.5px; font-weight: 800; letter-spacing: .04em; color: #fff;
  background: #c0392b; padding: 4px 8px; border-radius: 99px; border: 1.4px solid var(--line);
  align-self: center; animation: coPop .5s cubic-bezier(.16,1,.3,1) both;
}
.co-save {
  text-align: center; margin-top: -2px;
  font-size: 12px; font-weight: 800; letter-spacing: .01em; color: var(--gold-deep);
}
/* ---- order summary (RINCIAN PESANAN) ---- */
.co-rincian {
  border: 1.5px solid var(--line, #E7DCC4); border-radius: 16px; padding: 15px 16px 13px;
  background: #fffdf9; box-shadow: 0 4px 14px rgba(42,24,48,.05);
}
.co-rin-head {
  font-size: 12px; font-weight: 800; letter-spacing: .03em; color: var(--ink, #2A1830);
  text-decoration: underline; text-underline-offset: 3px; margin-bottom: 11px;
}
.co-rin-row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 6px 0; font-size: 14.5px; }
.co-rin-row span { color: var(--ink-soft, #5b4a59); }
.co-rin-row b {                                                   /* BIG value numbers → feels worth it */
  font-size: 18px; font-weight: 800; color: var(--ink, #2A1830); font-variant-numeric: tabular-nums; white-space: nowrap;
}
.co-rin-disc span { color: var(--ink, #2A1830); font-weight: 700; }
.co-rin-disc b { color: #1a9d57; font-size: 18px; font-weight: 800; }   /* BIG green discount */
.co-rin-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  margin-top: 9px; padding-top: 11px; border-top: 1px solid var(--line, #E7DCC4);
}
.co-rin-total span { font-size: 13px; font-weight: 600; color: var(--ink-soft, #5b4a59); }
.co-rin-total b {                                                  /* SMALL + light → feels cheap & affordable */
  font-size: 14px; font-weight: 400; color: var(--ink, #2A1830); font-variant-numeric: tabular-nums; white-space: nowrap;
}
/* order-bump upsell card (Weton 12-month add-on) — animated, high-conversion */
.co-bump {
  position: relative; display: flex; flex-direction: column; gap: 6px; cursor: pointer;
  margin-top: 8px; padding: 15px 15px 13px; border-radius: 18px; overflow: hidden;
  border: 2px dashed var(--gold); background: linear-gradient(180deg, #fffdf7 0%, var(--gold-wash, #f6e7c4) 140%);
  box-shadow: 0 6px 20px rgba(176,131,43,.14);
  animation: coBumpAttn 2.6s ease-in-out infinite, screenIn .5s ease both;
  transition: border-color .18s, box-shadow .18s, transform .18s, background .18s;
}
.co-bump:hover { transform: translateY(-1px); border-color: var(--gold-deep); }
.co-bump.is-on {
  border-style: solid; border-color: var(--gold-deep);
  background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
  box-shadow: 0 8px 26px rgba(176,131,43,.26); animation: screenIn .4s ease both, coBumpPop .42s ease;
}
/* shimmer sweep to catch the eye */
.co-bump::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); animation: coBumpShine 3.4s ease-in-out infinite; pointer-events: none;
}
.co-bump.is-on::before { animation: none; opacity: 0; }
.co-bump input { position: absolute; opacity: 0; width: 0; height: 0; }
.co-bump-badge {
  align-self: flex-start; font-size: 9.5px; font-weight: 900; letter-spacing: .09em;
  color: #fff; background: linear-gradient(90deg, var(--gold-deep), var(--gold, #d9a441));
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
  box-shadow: 0 2px 7px rgba(176,131,43,.3);
}
.co-bump-title { font-family: var(--serif, serif); font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1.28; }
.co-bump-desc { font-size: 12px; line-height: 1.5; color: var(--ink-soft); text-align: justify; text-justify: inter-word; }
.co-bump-pricing { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-top: 3px; }
.co-bump-was { color: var(--ink-faint); text-decoration: line-through; font-size: 13px; }
.co-bump-now { color: var(--gold-deep); font-weight: 900; font-size: 18px; letter-spacing: -.01em; }
.co-bump-save {
  font-size: 11px; font-weight: 800; color: #1f7a4d; background: #e6f6ec;
  padding: 3px 9px; border-radius: 999px;
}
/* the explicit opt-in row (mini-CTA) */
.co-bump-optin {
  display: flex; align-items: center; gap: 10px; margin-top: 9px; padding: 10px 12px;
  border-radius: 12px; background: #fff; border: 1.5px solid var(--gold);
  transition: background .18s, border-color .18s;
}
.co-bump.is-on .co-bump-optin { background: var(--gold-deep); border-color: var(--gold-deep); }
.co-bump-check {
  flex: none; width: 22px; height: 22px; border-radius: 7px;
  border: 2px solid var(--gold-deep); background: #fff;
  display: inline-grid; place-items: center; color: #fff;
  transition: background .15s, transform .15s; animation: coBumpCheckPulse 2.2s ease-in-out infinite;
}
.co-bump-check svg { opacity: 0; transition: opacity .15s; }
.co-bump.is-on .co-bump-check { background: #fff; border-color: #fff; color: var(--gold-deep); animation: none; transform: scale(1.05); }
.co-bump.is-on .co-bump-check svg { opacity: 1; }
.co-bump-optin-label { font-size: 13.5px; font-weight: 800; color: var(--gold-deep); }
.co-bump.is-on .co-bump-optin-label { color: #fff; }
/* cheap-anchor: price decomposition so the add-on feels trivial */
.co-bump-permonth {
  display: block; margin-top: 1px; font-size: 11.5px; font-weight: 700; color: var(--gold-deep);
  letter-spacing: .005em;
}
/* total intentionally small + light (de-emphasized → no sticker shock) */
.co-total {
  text-align: center; margin: 7px 0 -2px; font-size: 11.5px; font-weight: 500;
  color: var(--ink-faint, #9a8f80); letter-spacing: .01em;
}
@keyframes coBumpAttn {
  0%, 100% { box-shadow: 0 6px 20px rgba(176,131,43,.14); }
  50% { box-shadow: 0 6px 22px rgba(176,131,43,.16), 0 0 0 4px rgba(217,164,65,.18); }
}
@keyframes coBumpShine { 0% { left: -60%; } 55%, 100% { left: 130%; } }
@keyframes coBumpPop { 0% { transform: scale(.985); } 55% { transform: scale(1.018); } 100% { transform: scale(1); } }
@keyframes coBumpCheckPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176,131,43,.0); }
  50% { box-shadow: 0 0 0 5px rgba(217,164,65,.22); }
}
@media (prefers-reduced-motion: reduce) {
  .co-bump, .co-bump::before, .co-bump-check, .co-total { animation: none !important; }
}
.co-input {
  width: 100%; box-sizing: border-box;
  padding: 15px 16px; border-radius: 16px;
  border: 1.5px solid var(--line); background: #fff;
  font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-card); outline: none;
}
.co-input::placeholder { color: var(--ink-faint); font-weight: 500; }
.co-input:focus { box-shadow: 0 2px 0 var(--gold-deep), 0 14px 34px -18px rgba(42,24,48,.35); }
.co-cta {
  position: relative; overflow: hidden;
  width: 100%; padding: 17px 18px; border: 1.6px solid var(--line);
  border-radius: 99px; cursor: pointer;
  background: linear-gradient(168deg, var(--gold-2), var(--gold-deep));
  color: #fff8e8; font-family: var(--sans); font-weight: 800; font-size: 17px;
  letter-spacing: .005em; box-shadow: 0 3px 0 var(--line), 0 16px 34px -18px rgba(42,24,48,.5);
  transition: transform .12s ease, box-shadow .12s ease;
  animation: coPulse 2.6s ease-in-out infinite;
}
.co-cta:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--line), 0 10px 22px -16px rgba(42,24,48,.5); }
/* keep the label + price crisp above the shimmer sweep */
.co-cta-label, .co-cta-price { position: relative; z-index: 1; }
.co-cta-price { font-weight: 700; }
/* one-shot shimmer sweep to draw the eye */
.co-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: coShine 3.4s ease-in-out 1.2s infinite;
  pointer-events: none;
}
@keyframes coPulse {
  0%,100% { box-shadow: 0 3px 0 var(--line), 0 16px 34px -18px rgba(42,24,48,.5), 0 0 0 0 rgba(217,164,65,0); }
  50%     { box-shadow: 0 3px 0 var(--line), 0 16px 34px -18px rgba(42,24,48,.5), 0 0 0 7px rgba(217,164,65,.14); }
}
@keyframes coShine { 0% { transform: translateX(-120%); } 55%,100% { transform: translateX(120%); } }
@keyframes coPop { 0% { opacity: 0; transform: scale(.7); } 100% { opacity: 1; transform: scale(1); } }

/* risk-reversal chip under the CTA */
.co-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 12px; font-weight: 700; line-height: 1.3; color: var(--ink-soft);
  text-align: center;
}
.co-guarantee-ic { flex: none; display: inline-grid; place-items: center; color: var(--gold-deep); }

.co-foot {
  text-align: center; font-size: 11px; line-height: 1.5; font-weight: 600; color: var(--ink-faint);
}

/* ---- payment method picker (aligned rows; only our Xendit channels) ---- */
.co-pay { margin: 6px 0 2px; }
.co-pay-head { display: flex; align-items: center; gap: 12px; margin: 8px 0 12px; }
.co-pay-head span {
  font-family: var(--serif, Georgia, serif); font-weight: 700; font-size: 18px;
  color: var(--ink); white-space: nowrap;
}
.co-pay-head::after { content: ""; flex: 1; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-wash, #f6e7c4), rgba(176,131,43,0)); }
.co-pay-list { display: flex; flex-direction: column; gap: 9px; }
.pay-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; min-height: 54px;
  border: 1.5px solid var(--line, #E7DCC4); border-radius: 14px; background: #fffdf9;
  cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s;
  -webkit-tap-highlight-color: transparent;
}
.pay-row input {
  appearance: none; -webkit-appearance: none; flex: none; width: 21px; height: 21px; margin: 0;
  border: 2px solid #cabfa6; border-radius: 50%; position: relative; cursor: pointer; transition: border-color .15s;
}
.pay-row input:checked { border-color: var(--gold-deep, #b5832b); }
.pay-row input:checked::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--gold, #D9A441); }
.pay-ic { flex: none; width: 56px; height: 36px; display: grid; place-items: center; color: var(--gold-deep, #b5832b); }
.pay-logo { max-width: 100%; max-height: 26px; object-fit: contain; display: block; }
.pay-logo-lg { max-height: 34px; }   /* wordmark logos (Mandiri) render bigger, still inside the column */
.pay-tx { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; font-size: 14.5px; color: var(--ink); line-height: 1.28; }
.pay-tx b { font-weight: 700; }
.pay-tx small { font-size: 11.5px; font-weight: 500; color: var(--ink-soft); }
.pay-tag { flex: none; font-size: 10px; font-weight: 800; letter-spacing: .02em; color: #1a7f37;
  background: #e6f6ec; padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.pay-row:has(input:checked), .pay-row.is-sel {
  border-color: var(--gold, #D9A441); background: #fff6e9; box-shadow: 0 0 0 1px var(--gold, #D9A441) inset;
}
.co-pay-secure {
  display: flex; align-items: center; justify-content: center; gap: 6px; margin: 9px 0 0;
  font-size: 11.5px; font-weight: 600; color: var(--ink-soft, #8a7b88);
}
.co-pay-secure svg { flex: none; color: var(--gold-deep, #b5832b); }

/* sticky buy bar — fixed (out of flow, so it never reserves trailing space) */
.co-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px calc(11px + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-top: 1.5px solid var(--line);
  transform: translateY(120%); opacity: 0; pointer-events: none;
  transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .3s ease;
}
.co-sticky.is-show { transform: translateY(0); opacity: 1; pointer-events: auto; }
/* on the desktop card the page is short + the inline CTA is reachable → no sticky bar */
@media (min-width: 640px) { .co-sticky { display: none; } }
.co-sticky-price { display: flex; flex-direction: column; line-height: 1.05; }
.co-sticky-was {
  font-size: 11px; font-weight: 700; color: var(--ink-faint);
  text-decoration: line-through; font-variant-numeric: tabular-nums;
}
.co-sticky-now {
  font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.co-sticky-cta {
  flex: 1; min-width: 0; padding: 14px 16px; border: 1.6px solid var(--line);
  border-radius: 99px; cursor: pointer;
  background: linear-gradient(168deg, var(--gold-2), var(--gold-deep));
  color: #fff8e8; font-family: var(--sans); font-weight: 800; font-size: 15px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  box-shadow: 0 3px 0 var(--line), 0 14px 28px -18px rgba(42,24,48,.5);
  transition: transform .12s ease;
}
.co-sticky-cta:active { transform: translateY(2px); }

/* staggered entrance for the checkout column */
.checkout > .co-head { animation: screenIn .5s ease both; }
.checkout > .co-timer { animation: screenIn .5s ease .06s both; }
.checkout > .co-pricehit { animation: screenIn .5s ease .1s both; }
.checkout > .co-intro { animation: screenIn .5s ease .12s both; }
.checkout > .co-findings { animation: screenIn .5s ease .16s both; }
.checkout > .co-benefits { animation: screenIn .5s ease .2s both; }
.checkout > .co-premium { animation: screenIn .5s ease .24s both; }
.checkout > .co-preview { animation: screenIn .5s ease .30s both; }
.checkout > .co-buy { animation: screenIn .5s ease .36s both; }

@media (prefers-reduced-motion: reduce) {
  .co-cta, .co-sticky-cta { transition: none; animation: none; }
  .co-cta::before { animation: none; display: none; }
  .co-off, .co-save { animation: none; }
  .co-timer.is-urgent .co-timer-clock { animation: none; }
  .co-sticky { transition: opacity .2s ease; transform: none; }
  .checkout > * { animation: none !important; }
}

/* premium */
.premium {
  position: relative; overflow: hidden;
  padding: 24px 20px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, #2A1830, #3d2347 60%, #4a2a52);
  color: #fbf3e4;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-pop);
}
.premium h2 { color: #fff; font-size: 26px; }
.premium .lead { color: #e7d8c8; font-size: 14px; margin-top: 8px; }
.premium ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 11px; }
.premium li { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 600; }
.premium li .tick {
  width: 24px; height: 24px; flex: none; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  display: grid; place-items: center; color: var(--ink);
}
.premium .btn { margin-top: 20px; }
.premium .price-note { margin-top: 11px; text-align: center; font-size: 12px; color: #c9b3d6; }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq-item { padding: 0; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 16px; font-family: var(--sans); font-weight: 700; font-size: 14.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--ink);
}
.faq-q .pm { flex: none; width: 24px; height: 24px; border-radius: 50%; border: 1.3px solid var(--line); display: grid; place-items: center; transition: transform .25s ease; font-size: 16px; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--gold-wash); }
.faq-a { max-height: 0; opacity: 0; transition: max-height .3s ease, opacity .25s ease, padding .3s ease; padding: 0 16px; }
.faq-item.open .faq-a { max-height: 320px; opacity: 1; padding: 0 16px 16px; }
.faq-a p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

/* disclaimer */
.disclaimer { margin-top: 22px; font-size: 11.5px; color: var(--ink-faint); line-height: 1.5; text-align: center; padding: 0 6px; }
.foot { margin-top: 14px; margin-bottom: 6px; text-align: center; color: var(--ink-faint); font-size: 12px; }

/* sticky bottom CTA */
.sticky-cta {
  position: sticky; bottom: 0; z-index: 30;
  margin: 0 -18px; padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(255,248,232,0), var(--paper) 32%);
  transition: transform .3s ease, opacity .3s ease;
}
.sticky-cta.hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }

/* ============================================================
   QUESTIONNAIRE FUNNEL
   ============================================================ */
.funnel { position: relative; z-index: 1; min-height: 100%; display: flex; flex-direction: column; }

.funnel-top { position: sticky; top: 0; z-index: 20; padding: 14px 18px 12px; background: color-mix(in srgb, var(--paper) 86%, transparent); backdrop-filter: blur(8px); }
.funnel-top .row { display: flex; align-items: center; gap: 12px; }
.fn-back { width: 38px; height: 38px; flex: none; border-radius: 50%; border: 1.4px solid var(--line); background: var(--card); display: grid; place-items: center; cursor: pointer; color: var(--ink); }
.fn-back:hover { background: #fff; }
.fn-back[disabled] { opacity: .35; cursor: default; }
.fn-back[hidden] { visibility: hidden; display: grid !important; }
.fn-step-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); }
.fn-quit { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--ink-faint); cursor: pointer; background: none; border: 0; font-family: var(--sans); }
.progress-track { margin-top: 11px; height: 7px; border-radius: 999px; background: rgba(42,24,48,.10); overflow: hidden; }
.progress-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transition: width .45s cubic-bezier(.4,0,.2,1); box-shadow: 0 0 12px rgba(217,164,65,.6); }

/* sticky bottom CTA bar of the funnel */
.funnel-bottom {
  position: sticky; bottom: 0; top: auto; z-index: 20;
  border-top: 1px solid var(--line-soft);
  padding: 12px 18px calc(14px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(8px);
}
.fn-nav { display: flex; align-items: center; gap: 14px; }
.fn-circle {
  width: 52px; height: 52px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--card);
  display: grid; place-items: center; cursor: pointer; color: var(--ink);
  transition: transform .12s ease, background .18s ease, box-shadow .18s ease;
}
.fn-back-c:hover { background: #fff; }
.fn-next-c {
  margin-left: auto; background: var(--gold); border-color: var(--line);
  box-shadow: 0 4px 0 var(--gold-deep);
}
.fn-next-c:hover { background: var(--gold-2); }
.fn-circle:active { transform: translateY(2px); }
.fn-next-c:active { box-shadow: 0 2px 0 var(--gold-deep); }
.fn-circle[hidden] { display: none; }
.fn-circle[disabled] { opacity: .55; cursor: default; }
.fn-next-c.is-sending { opacity: .7; }

.funnel-body { flex: 1; padding: 22px 18px 26px; position: relative; }
.screen-anim { animation: screenIn .42s cubic-bezier(.2,.7,.2,1); }
@keyframes screenIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* screen show/hide (only the active step is shown) */
.screen { display: none; }
.screen.is-active { display: block; }

.q-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); }
.q-title { font-family: var(--serif); font-size: 26px; line-height: 1.08; margin-top: 8px; letter-spacing: -.01em; }
.q-help { margin-top: 9px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }

/* text fields */
.field { margin-top: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
.input {
  width: 100%; min-height: 54px; padding: 0 16px;
  border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--card); font-family: var(--sans); font-size: 16px; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.input::placeholder { color: var(--ink-faint); }
.input:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 4px rgba(217,164,65,.18); }
.input.err { border-color: #c0476b; box-shadow: 0 0 0 4px rgba(192,71,107,.15); }
.err-msg { margin-top: 6px; font-size: 12px; font-weight: 600; color: #c0476b; }

/* radio cards */
.options { margin-top: 18px; display: grid; gap: 10px; }
.opt {
  display: flex; align-items: center; gap: 13px;
  padding: 15px 15px; min-height: 58px;
  border-radius: var(--r-sm); border: 1.6px solid var(--line);
  background: var(--card); cursor: pointer; text-align: left;
  font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink);
  transition: transform .12s ease, background .18s ease, box-shadow .18s ease;
  width: 100%; position: relative;
}
.opt:hover { background: #fff; }
.opt:active { transform: scale(.99); }
.opt .lbl { flex: 1; min-width: 0; }
.opt .key {
  width: 30px; height: 30px; flex: none; border-radius: 9px;
  border: 1.4px solid var(--line); display: grid; place-items: center;
  font-weight: 800; font-size: 13px; background: rgba(42,24,48,.04);
  transition: background .18s, color .18s;
}
.opt .tickbox { margin-left: auto; width: 24px; height: 24px; flex: none; border-radius: 50%; border: 1.5px solid var(--line-soft); display: grid; place-items: center; transition: all .18s; color: var(--ink); }
.opt .tickbox svg { display: none; }
.opt.sel .tickbox svg { display: block; }
.opt.sel { box-shadow: 0 3px 0 var(--gold-deep); border-color: var(--gold-deep); }
.opt.sel.tint-pink     { background: color-mix(in srgb, var(--pink) 42%, #fff); }
.opt.sel.tint-lavender { background: color-mix(in srgb, var(--lavender) 40%, #fff); }
.opt.sel.tint-mint     { background: color-mix(in srgb, var(--mint) 46%, #fff); }
.opt.sel.tint-peach    { background: color-mix(in srgb, var(--peach) 48%, #fff); }
.opt.sel .key { background: var(--gold); color: var(--ink); border-color: var(--line); }
.opt.sel .tickbox { background: var(--gold); border-color: var(--line); color: var(--ink); }
/* hide the native radio input */
.opt input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }

/* compact gender picker — two tight pills side by side */
.options[data-gender] { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.options[data-gender] .opt {
  min-height: 0; padding: 11px 10px; gap: 8px;
  justify-content: center; text-align: center;
  font-size: 14px; border-radius: 12px;
}
.options[data-gender] .opt .lbl { flex: none; }
.options[data-gender] .opt .tickbox { display: none; }

/* upload */
.upload-card {
  margin-top: 18px; position: relative; display: block; width: 100%;
  border-radius: var(--r-lg); border: 2.4px dashed var(--gold);
  background: linear-gradient(180deg, #fffef9, #fff6e3);
  padding: 26px 18px; text-align: center; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.upload-card:hover { background: #fffdf2; border-color: var(--gold-deep); }
.upload-card .hand-ic { width: 72px; height: 72px; margin: 0 auto 12px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-wash); border: 1.4px solid var(--line); }
.upload-card h3 { font-family: var(--serif); font-size: 19px; }
.upload-card .uh { margin-top: 6px; font-size: 13px; color: var(--ink-soft); }
.upload-card .tap { margin-top: 12px; display: inline-flex; }
.upload-card input { position: absolute; opacity: 0; width: 0; height: 0; }

.guides { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }

/* upload preview + scan — true 9:16 portrait frame, full hand always visible */
.preview-card {
  margin: 18px auto 0; position: relative;
  width: 100%; max-width: calc(60vh * 9 / 16);   /* height-capped so it never overflows the screen */
  aspect-ratio: 9 / 16;                            /* responsive: scales with width, stays 9:16 */
  border-radius: var(--r-lg); overflow: hidden;
  border: 1.6px solid var(--line); box-shadow: var(--shadow-card); background:#000;
}
.preview-card img { width: 100%; height: 100%; object-fit: contain; display: block; }
.preview-card .scan-overlay { position: absolute; inset: 0; pointer-events: none; }
.preview-card .scan-overlay::after {
  content:""; position: absolute; left: 0; right: 0; height: 60%;
  background: linear-gradient(180deg, rgba(232,184,78,0), rgba(232,184,78,.5), rgba(232,184,78,0));
  animation: sweep 2.4s ease-in-out infinite;
}
.preview-card .done-badge { position: absolute; top: 12px; right: 12px; }
.preview-actions { margin-top: 12px; display: flex; gap: 10px; }

/* review */
.review-list { margin-top: 18px; display: grid; gap: 9px; }
.rev-row { display: flex; align-items: center; gap: 12px; padding: 13px 15px; }
.rev-row .rl { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-faint); }
.rev-row .rv { margin-left: auto; font-size: 14.5px; font-weight: 700; text-align: right; }
.rev-row .rv.ok { color: #2e8b6a; display: inline-flex; align-items: center; gap: 6px; }
.rev-thumbs { display:flex; gap:8px; margin-left:auto; }
.rev-thumbs img { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; border: 1.4px solid var(--line); }

/* loading */
.loader { min-height: 100dvh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; position: relative; z-index: 1; }
.loader > div { width: 100%; max-width: 320px; }
.loader-orb { width: 150px; height: 150px; margin: 0 auto 26px; position: relative; display: grid; place-items: center; }
.loader-orb .ring { position: absolute; inset: 0; border-radius: 50%; border: 2px dashed var(--gold); animation: spin 9s linear infinite; }
.loader-orb .ring.r2 { inset: 16px; border-style: solid; border-color: var(--line-soft); animation: spin 6s linear infinite reverse; }
.loader-orb .core { width: 86px; height: 86px; border-radius: 50%; background: radial-gradient(60% 60% at 50% 40%, #fff3d6, var(--gold)); border: 1.5px solid var(--line); display: grid; place-items: center; box-shadow: 0 0 40px rgba(217,164,65,.55); }
@keyframes spin { to { transform: rotate(360deg); } }
.loader h2 { font-size: 24px; margin-bottom: 8px; }
.loader .msg { font-size: 15px; color: var(--ink-soft); font-weight: 600; min-height: 22px; transition: opacity .3s; }
.loader .lbar { margin: 22px auto 0; width: 220px; height: 7px; border-radius: 999px; background: rgba(42,24,48,.1); overflow: hidden; }
.loader .lfill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transition: width .4s ease; }

/* ============================================================
   RESULT / DESTINY CARD
   ============================================================ */
.result { position: relative; z-index: 1; padding: 0 18px 40px; }
.result-hero { text-align: center; padding: 26px 0 6px; position: relative; }
.dcard {
  position: relative; margin: 18px auto 0; max-width: 330px;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1.6px solid var(--line); box-shadow: var(--shadow-pop);
  background: linear-gradient(165deg, #fffdf6, #fff3df);
}
.dcard .dc-top { position: relative; padding: 22px 20px 18px; background: linear-gradient(160deg, #3d2347, #2A1830); color: #fbf3e4; text-align: center; overflow: hidden; }
.dcard .dc-arch { font-family: var(--serif); font-size: 27px; line-height: 1.05; margin-top: 6px; color: #fff; }
.dcard .dc-sign { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); font-weight: 700; }
.dcard .dc-body { padding: 18px 18px 20px; }
.dc-trait { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.dc-trait:last-child { border-bottom: 0; }
.dc-trait .lab { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-faint); }
.dc-trait .val { margin-left: auto; font-weight: 700; font-size: 14.5px; font-family: var(--serif); }
.lucky-row { display: flex; gap: 8px; margin-top: 14px; }
.lucky { flex: 1; text-align: center; padding: 12px 6px; border-radius: var(--r-sm); border: 1.4px solid var(--line); }
.lucky .lk-ic { width: 30px; height: 30px; margin: 0 auto 6px; display: grid; place-items: center; border-radius: 50%; }
.lucky b { display: block; font-family: var(--serif); font-size: 16px; }
.lucky span { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-faint); }

.locked { position: relative; margin-top: 20px; }
.locked .blur { filter: blur(5px); opacity: .6; pointer-events: none; user-select: none; }
.locked .lock-over {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 18px;
}
.locked .lock-card { background: color-mix(in srgb, var(--paper) 88%, transparent); border: 1.5px solid var(--line); border-radius: var(--r); padding: 18px 16px; box-shadow: var(--shadow-pop); }
.locked .lock-ic { width: 44px; height: 44px; margin: 0 auto 10px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-wash); border: 1.4px solid var(--line); }

.affirm { margin-top: 20px; padding: 20px; text-align: center; border-radius: var(--r-lg); border: 1.5px solid var(--line); background: var(--gold-wash); }
.affirm .q { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.3; }

/* ---------- result: email-sent banner ---------- */
.res-email {
  display: flex; align-items: flex-start; gap: 11px;
  margin-top: 18px; padding: 13px 14px;
  border-radius: var(--r-lg); border: 1.5px solid var(--line);
  background: linear-gradient(180deg, #eafaef, #dff4e6);
  box-shadow: 0 2px 0 rgba(42,24,48,.5), 0 14px 28px -16px rgba(42,24,48,.4);
}
.res-email .re-ic {
  flex: 0 0 auto; display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: 50%; background: #1f9d55; color: #fff;
  box-shadow: 0 1px 0 rgba(42,24,48,.4);
}
.res-email .re-title {
  font-family: var(--serif); font-weight: 600; font-size: 15px; line-height: 1.25; color: var(--ink);
  overflow-wrap: anywhere;
}
.res-email .re-note {
  margin-top: 3px; display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; line-height: 1.35; color: var(--ink-soft);
}
.res-email .re-note svg { flex: 0 0 auto; color: var(--gold-deep); }

/* ---------- result 1: high-conversion "being finalized" waiting block ---------- */
.res-prep {
  position: relative; overflow: hidden; margin-top: 18px; padding: 26px 20px 24px; text-align: center;
  border-radius: var(--r-lg); border: 1.5px solid var(--line);
  background: linear-gradient(180deg, #fff8e8, #f6e7c4);
  box-shadow: 0 2px 0 rgba(42,24,48,.5), 0 18px 34px -18px rgba(42,24,48,.45);
}
.res-prep::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-100%); animation: rpShine 2.4s ease-in-out infinite;
}
@keyframes rpShine { to { transform: translateX(100%); } }
.res-prep > * { position: relative; }
.rp-orb { width: 78px; height: 78px; margin: 0 auto 14px; position: relative; display: grid; place-items: center; }
.rp-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px dashed var(--gold-deep); animation: spin 7s linear infinite; }
.rp-ring.rp-r2 { inset: 13px; border-style: solid; border-color: var(--gold); animation: spin 4s linear infinite reverse; }
.rp-core { width: 44px; height: 44px; border-radius: 50%; background: radial-gradient(60% 60% at 50% 40%, #fff, var(--gold)); display: grid; place-items: center; color: var(--ink); box-shadow: 0 0 26px rgba(217,164,65,.6); }
.rp-dots { display: flex; gap: 6px; justify-content: center; margin-bottom: 12px; }
.rp-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-deep); animation: rpDot 1.2s ease-in-out infinite; }
.rp-dots i:nth-child(2) { animation-delay: .18s; }
.rp-dots i:nth-child(3) { animation-delay: .36s; }
@keyframes rpDot { 0%, 100% { opacity: .3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-4px); } }
.rp-eyebrow { font-size: 11.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.rp-title { font-family: var(--serif); font-size: 22px; line-height: 1.2; margin-top: 8px; }
.rp-note { font-size: 13px; line-height: 1.5; color: var(--ink-soft); margin-top: 8px; }
.rp-bar { margin: 16px auto 0; width: 200px; height: 7px; border-radius: 999px; background: rgba(42,24,48,.12); overflow: hidden; }
.rp-fill { width: 8%; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transition: width 1.4s ease; }

/* ready badge inside the email banner */
.res-email .re-head { display: flex; align-items: flex-start; gap: 8px; }
.res-email .re-badge {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 3px; margin-left: auto;
  padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  color: #1f7a45; background: #c7f0d4; border: 1.2px solid #1f9d55;
}
.res-email .re-badge svg { color: #1f7a45; }

/* ---------- result: stage 1 (preparing & sending) ---------- */
.res-wait { min-height: 100dvh; display: flex; flex-direction: column; }
/* In /admin canvas (?edit=1) every phase is stacked & visible — don't let the
   full-height loading screen bury Result 1 / Result 2 below the fold. */
.dp-edit .res-wait { min-height: auto; }
.dp-edit .res-wait-body { padding: 20px 24px 24px; }
.dp-phase-tag {
  display: block; margin: 26px 0 10px; padding: 5px 11px; border-radius: 999px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #7a5a12; background: var(--gold-wash); border: 1.4px dashed var(--gold-deep);
  width: max-content; max-width: 100%;
}
.res-wait-body {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px 24px 80px;
}
.res-wait .loader-orb { margin: 0 auto 24px; }
.res-wait .loader-orb .core { color: var(--gold-deep); }
.rw-eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.rw-title { font-family: var(--serif); font-size: 25px; line-height: 1.18; margin-top: 10px; max-width: 320px; }
.rw-note { font-size: 14px; line-height: 1.5; color: var(--ink-soft); margin-top: 10px; max-width: 300px; }
.rw-email {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: 12.5px; font-weight: 600; color: var(--ink);
  padding: 7px 13px; border-radius: 999px; border: 1.4px solid var(--line); background: var(--card);
  overflow-wrap: anywhere;
}
.rw-email svg { flex: 0 0 auto; color: var(--gold-deep); }
.rw-bar { margin: 22px auto 0; width: 220px; height: 7px; border-radius: 999px; background: rgba(42,24,48,.1); overflow: hidden; }
.rw-fill { width: 8%; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transition: width 1.6s ease; }

/* ---------- result: premium-contents grid + download ---------- */
.res-premium { margin-top: 24px; }
.res-actions { margin-top: 18px; text-align: center; }
.res-download { width: 100%; justify-content: center; text-decoration: none; }
.res-dl-note {
  margin-top: 8px; font-size: 11.5px; font-weight: 600;
  letter-spacing: .02em; color: var(--ink-soft); text-align: center;
}

/* utility */
.center { text-align: center; }
.mt8 { margin-top: 8px; } .mt12 { margin-top: 12px; } .mt16 { margin-top: 16px; } .mt24 { margin-top: 24px; }
.hide { display: none !important; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── scroll-reveal: cards fade + rise into view (staggered) ── */
.reveal { opacity: 0; transform: translateY(18px); will-change: opacity, transform;
  transition: opacity .62s cubic-bezier(.16,1,.3,1), transform .62s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* ── premium value-stack (high-conversion) ── */
.premium-value { display:inline-block; margin:14px 0 4px; padding:7px 14px; border-radius:999px;
  font-family:var(--sans); font-weight:800; font-size:12.5px; letter-spacing:.2px; color:#0c2b1c;
  background:var(--grad); box-shadow:0 6px 18px -8px rgba(63,160,107,.6); }
.premium-guarantee { margin-top:12px; font-size:12.5px; color:rgba(255,255,255,.7); text-align:center; }
.premium-social { margin-top:8px; text-align:center; font-size:12.5px; color:rgba(255,255,255,.82); font-weight:600; }
.premium-social .stars { letter-spacing:1px; margin-right:5px; }
.premium #premiumList li { opacity:0; transform:translateX(-8px);
  transition:opacity .5s ease, transform .5s cubic-bezier(.16,1,.3,1); }
.premium.in #premiumList li { opacity:1; transform:none; }
.premium.in #premiumList li:nth-child(1){transition-delay:.05s}
.premium.in #premiumList li:nth-child(2){transition-delay:.11s}
.premium.in #premiumList li:nth-child(3){transition-delay:.17s}
.premium.in #premiumList li:nth-child(4){transition-delay:.23s}
.premium.in #premiumList li:nth-child(5){transition-delay:.29s}
.premium.in #premiumList li:nth-child(6){transition-delay:.35s}
.premium.in #premiumList li:nth-child(7){transition-delay:.41s}
.premium.in #premiumList li:nth-child(8){transition-delay:.47s}
@media (prefers-reduced-motion: reduce){ .premium #premiumList li{opacity:1;transform:none} }

/* ── trust band (HIPAA + institutions) ── */
.trust-band { margin:18px 0 4px; padding:18px 16px 16px; text-align:center;
  background:var(--card); border:1px solid var(--line-soft); border-radius:var(--r-lg);
  box-shadow:var(--shadow-soft); }
.trust-badge { display:inline-flex; align-items:center; gap:6px; padding:6px 13px; border-radius:999px;
  font-family:var(--sans); font-weight:800; font-size:11.5px; letter-spacing:.4px; text-transform:uppercase;
  color:var(--green-deep); background:var(--green-wash); border:1px solid var(--green-soft); }
.trust-badge svg { width:14px; height:14px; }
.trust-orgs { display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:6px 0;
  margin:13px 0 11px; }
.trust-orgs .org { font-family:var(--serif); font-size:12.5px; line-height:1.2; color:var(--ink-soft);
  padding:0 11px; position:relative; }
.trust-orgs .org + .org::before { content:""; position:absolute; left:0; top:50%; transform:translateY(-50%);
  width:1px; height:13px; background:var(--line-soft); }
.trust-text { margin:0; font-size:11.8px; line-height:1.6; color:var(--ink-faint); max-width:34ch;
  margin-left:auto; margin-right:auto; }

/* ── trust band v2: BOLD badge + institution marquee (high-conversion, animated) ── */
.trust-band { margin:18px 0 4px; padding:20px 0 18px; text-align:center; overflow:hidden;
  background:var(--card); border:1px solid var(--line-soft); border-radius:var(--r-lg); box-shadow:var(--shadow-soft); }
.trust-badge { display:inline-flex; align-items:center; gap:7px; padding:9px 17px; border-radius:999px;
  font-family:var(--sans); font-weight:800; font-size:12.5px; letter-spacing:.5px; text-transform:uppercase; color:#fff;
  background:linear-gradient(180deg,#54BD8B,var(--green) 60%,var(--green-deep));
  box-shadow:0 8px 22px -8px rgba(63,160,107,.65); position:relative; overflow:hidden; }
.trust-badge svg { width:15px; height:15px; }
.trust-badge::before { content:""; position:absolute; top:0; bottom:0; left:-60%; width:40%;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.6),transparent); transform:skewX(-18deg);
  animation:gfShine 3s ease-in-out infinite; }
.trust-marquee { position:relative; margin:15px 0 12px; overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent); }
.trust-track { display:inline-flex; align-items:center; gap:13px; white-space:nowrap; padding-left:13px;
  animation:trustMarquee 22s linear infinite; }
.trust-band:hover .trust-track { animation-play-state:paused; }
.trust-track .org { font-family:var(--serif); font-weight:700; font-size:15.5px; color:var(--ink); }
.trust-track .dot { font-size:7px; color:var(--green); transform:translateY(-2px); }
@keyframes trustMarquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.trust-text { margin:0 auto; max-width:36ch; padding:0 16px; font-size:12px; line-height:1.6; color:var(--ink-soft); font-weight:500; }
@media (prefers-reduced-motion: reduce) { .trust-track { animation:none; } .trust-badge::before { display:none; } }

/* ── trust-text: elegant editorial credential line ── */
.trust-band .trust-text {
  position:relative; margin:16px auto 2px; max-width:40ch; padding:16px 20px 0;
  font-family:var(--serif); font-style:italic; font-weight:500;
  font-size:13.5px; line-height:1.72; color:var(--ink-soft); letter-spacing:.1px;
}
.trust-band .trust-text::before {
  content:""; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:38px; height:2px; border-radius:2px;
  background:linear-gradient(90deg,var(--green-soft),var(--green),var(--green-soft));
}

/* ── trust-text: upright clean sans (not italic), higher-trust legibility ── */
.trust-band .trust-text {
  font-family:var(--sans); font-style:normal; font-weight:500;
  font-size:12.5px; line-height:1.66; letter-spacing:.1px; color:var(--ink-soft);
}

/* ── trust-text v3: verified-statement panel (upright, high-conversion) ── */
.trust-band .trust-text {
  font-family:var(--sans); font-style:normal; font-weight:600;
  font-size:12.5px; line-height:1.6; letter-spacing:.1px; color:#2f5a42;
  background:var(--green-wash); border:1px solid var(--green-soft); border-radius:16px;
  max-width:42ch; margin:15px auto 2px; padding:13px 18px 13px 16px;
}
.trust-band .trust-text::before {
  content:"✓ "; position:static; width:auto; height:auto; transform:none;
  background:none; color:var(--green-deep); font-weight:800;
}

/* ── number picker (height/weight: tap → list of exact numbers) ── */
.num-select { position: relative; }
.num-select select.input {
  -webkit-appearance: none; appearance: none; width: 100%; cursor: pointer;
  padding-right: 42px; font-family: var(--sans); font-weight: 600; color: var(--ink);
}
.num-select select.input:invalid, .num-select select.input option[disabled] { color: var(--ink-faint); }
.num-select .ns-chevron {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--green); pointer-events: none; display: flex;
}
.num-select select.input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.num-select select.input.err { border-color: var(--pink); }

/* ============================================================
   RESULT PAGE — goodface green refresh + animation
   ============================================================ */
@keyframes gfReveal { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
#resContent .reveal { animation: gfReveal .6s cubic-bezier(.22,1,.36,1) both; }
#resContent .gcard.reveal { animation-delay: .04s; }
#resContent .affirm.reveal { animation-delay: .12s; }
#resContent .res-premium { animation: gfReveal .6s cubic-bezier(.22,1,.36,1) both; animation-delay: .2s; }
#resContent .res-actions { animation: gfReveal .6s cubic-bezier(.22,1,.36,1) both; animation-delay: .26s; }
.result-hero h1 { animation: gfReveal .6s cubic-bezier(.22,1,.36,1) both; }

/* face result card (replaces the palm destiny card), green */
.gcard {
  position: relative; margin: 22px auto 0; max-width: 340px;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1.6px solid var(--line); box-shadow: var(--shadow-pop);
  background: var(--card);
}
.gcard .gc-top { position: relative; overflow: hidden; padding: 22px 20px 20px; text-align: center; background: var(--grad); }
.gc-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--green-deep); }
.gc-eyebrow svg { color: var(--green-deep); }
.gc-arch { font-family: var(--serif); font-size: 26px; line-height: 1.08; margin-top: 8px; color: #0e2014; }
.gc-firstname { display: inline-block; margin-top: 6px; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: rgba(14,32,20,.72); }
.gc-shine { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.5) 50%, transparent 65%); transform: translateX(-120%); animation: gfCardShine 3.6s ease-in-out infinite; }
@keyframes gfCardShine { 0%,100% { transform: translateX(-120%); } 60% { transform: translateX(120%); } }
.gc-body { padding: 6px 18px 16px; }
.gc-trait { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.gc-trait:last-child { border-bottom: 0; }
.gc-trait .lab { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-faint); }
.gc-trait .val { margin-left: auto; font-weight: 700; font-size: 15px; font-family: var(--serif); color: var(--ink); text-align: right; overflow-wrap: anywhere; }

/* green-ify the result-1 waiting block + loader orbs */
.res-prep { background: linear-gradient(180deg, var(--green-wash), #d3ecdb) !important; }
.loader-orb .core, .res-wait .loader-orb .core { background: radial-gradient(60% 60% at 50% 40%, #fff, var(--green-soft)) !important; box-shadow: 0 0 40px rgba(63,160,107,.5) !important; color: var(--green-deep); }
.rp-core { background: radial-gradient(60% 60% at 50% 40%, #fff, var(--green-soft)) !important; box-shadow: 0 0 26px rgba(63,160,107,.55) !important; color: var(--green-deep); }

/* celebratory email-sent banner: pop in + ripple on the check */
#resContent #resEmailBanner { animation: gfPop .55s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes gfPop { 0% { opacity: 0; transform: scale(.92) translateY(8px); } 100% { opacity: 1; transform: none; } }
#resEmailBanner .re-ic { position: relative; }
#resEmailBanner .re-ic::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid #1f9d55; opacity: 0; animation: gfRipple 1.6s ease-out 2; }
@keyframes gfRipple { 0% { transform: scale(.7); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  #resContent .reveal, #resContent .res-premium, #resContent .res-actions, .result-hero h1,
  #resContent #resEmailBanner, .gc-shine, #resEmailBanner .re-ic::after { animation: none !important; }
}

/* result page: green-ify the premium-contents header (it's cream/gold by default) */
#resContent .co-premium-head { background: linear-gradient(180deg, var(--green-wash), #cfe9d6); }
