:root {
  --yellow: #FFC933;
  --yellow-soft: #FFF4D6;
  --ink: #444444;
  --ink-70: #5c5c5c;
  --ink-45: #8e8e8e;
  --card: #ffffff;
  --bg: #FAFAF8;
  --green: #00B277;
  --amber: #E8A13A; --jade: #00B277; --amaranth: #E52B50; --aqua: #22D5FF;
  --red: #E52B50;
  --radius: 20px;
  --shadow: 0 8px 28px rgba(20, 20, 20, .08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 880px; margin: 0 auto; padding: 0 20px; }

/* ---------- header ---------- */
header { background: var(--card); border-bottom: 1px solid #ececea; position: sticky; top: 0; z-index: 50; }
.head-in { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 9px; }
.veho { width: 34px; height: 34px; flex-shrink: 0; }
.brand .logo { font-weight: 700; font-size: 1.18rem; letter-spacing: -.03em; color: var(--jade); }
.brand .tool { font-size: .76rem; color: var(--ink-45); font-weight: 500; border-left: 2px solid var(--jade); padding-left: 9px; margin-left: 2px; }
.head-tag { font-size: .7rem; color: var(--ink-45); border: 1px solid #e9e9e6; border-radius: 99px; padding: 4px 11px; background: var(--yellow-soft); }

/* ---------- hero ---------- */
.hero { padding: 54px 0 6px; text-align: center; }
.hero h1 { font-size: clamp(1.75rem, 4.6vw, 2.7rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.12; }
.hero h1 .hl { background: linear-gradient(transparent 60%, var(--yellow) 60%); padding: 0 5px; }
.hero p { color: var(--ink-70); max-width: 540px; margin: 14px auto 0; font-size: .96rem; }
.hero-icons { display: flex; justify-content: center; gap: 22px; margin-top: 22px; font-size: 1.3rem; }
.hero-icons span { background: var(--card); border: 1px solid #ececea; box-shadow: var(--shadow); width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; transition: transform .2s; }
.hero-icons span:hover { transform: translateY(-3px) rotate(-4deg); }

/* ---------- upload ---------- */
.uploader { margin: 30px auto 8px; max-width: 620px; }
.dropzone {
  background: var(--card); border: 2px dashed #d8d8d3; border-radius: var(--radius);
  padding: 36px 24px; text-align: center; cursor: pointer; transition: all .18s ease; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.dropzone::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 7px; background: repeating-linear-gradient(90deg, var(--yellow) 0 26px, var(--jade) 26px 34px); }
.dropzone:hover, .dropzone.drag { border-color: var(--ink); background: var(--yellow-soft); transform: translateY(-2px); }
.dropzone .dz-icon { font-size: 2rem; }
.dropzone h3 { font-size: 1.02rem; margin-top: 8px; font-weight: 600; }
.dropzone p { font-size: .78rem; color: var(--ink-45); margin-top: 5px; }
.upload-alt { text-align: center; margin-top: 15px; font-size: .86rem; color: var(--ink-70); }
.upload-alt button {
  background: var(--jade); color: #fff; border: 0; border-radius: 99px; padding: 10px 20px;
  font-family: inherit; font-size: .86rem; font-weight: 600; cursor: pointer; transition: transform .15s;
}
.upload-alt button:hover { transform: scale(1.04); }
.privacy-line { text-align: center; font-size: .72rem; color: var(--ink-45); margin: 14px 0 44px; }

/* ---------- persona ---------- */
.persona-row { display: flex; justify-content: center; gap: 8px; margin: 22px 0 4px; flex-wrap: wrap; }
.persona-row .p-label { width: 100%; text-align: center; font-size: .78rem; color: var(--ink-70); margin-bottom: 2px; }
.pill {
  border: 1.5px solid #e2e2df; background: var(--card); border-radius: 99px; padding: 8px 16px;
  font-family: inherit; font-size: .84rem; font-weight: 500; cursor: pointer; transition: all .15s;
}
.pill:hover { border-color: var(--ink-45); }
.pill.active { background: var(--jade); color: #fff; border-color: var(--jade); font-weight: 600; }

/* ---------- loading: the boarding pass ---------- */
#loading { position: fixed; inset: 0; background: rgba(251, 250, 245, .97); z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
#loading.show { display: flex; }
.boarding {
  background: var(--card); border-radius: 22px; box-shadow: 0 18px 60px rgba(20,20,20,.16);
  width: min(480px, 94vw); overflow: hidden; animation: rise .4s ease;
}
@keyframes rise { from { transform: translateY(16px); opacity: 0; } to { transform: none; opacity: 1; } }
.boarding-top { background: var(--yellow); padding: 16px 22px; display: flex; justify-content: space-between; align-items: center; }
.boarding-top .bt-title { font-weight: 700; font-size: .95rem; letter-spacing: -.01em; }
.boarding-top .bt-plane { font-size: 1.3rem; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-5px) rotate(3deg); } }
.tape-track { height: 8px; background: #eeeeea; position: relative; overflow: hidden; }
.tape-fill { position: absolute; inset: 0 100% 0 0; background: repeating-linear-gradient(90deg, var(--jade) 0 14px, var(--yellow) 14px 18px); transition: inset-right .6s ease; }
.stages { padding: 20px 24px 10px; }
.stage { display: flex; gap: 13px; align-items: flex-start; padding: 9px 0; opacity: .38; transition: opacity .3s; }
.stage.active, .stage.done { opacity: 1; }
.stage .st-ico { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; background: #f0f0ec; flex-shrink: 0; }
.stage.active .st-ico { background: var(--yellow); animation: pulse 1.2s ease-in-out infinite; }
.stage.done .st-ico { background: var(--jade); color: #fff; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }
.stage .st-label { font-size: .88rem; font-weight: 500; padding-top: 2px; }
.stage .st-sub { font-size: .74rem; color: var(--ink-45); }
.facts-line {
  margin: 8px 24px 0; background: var(--yellow-soft); border: 1px dashed #d8d8d3; border-radius: 12px;
  padding: 10px 14px; font-size: .84rem; font-weight: 600; display: none; animation: rise .3s ease;
}
.facts-line.show { display: block; }
.boarding-foot { padding: 14px 24px 18px; font-size: .72rem; color: var(--ink-45); font-style: italic; min-height: 40px; }
.boarding-cut { border-top: 2px dashed #e3e3de; margin: 4px 22px 0; position: relative; }
.boarding-cut::before, .boarding-cut::after { content: ''; position: absolute; top: -9px; width: 18px; height: 18px; border-radius: 50%; background: var(--bg); }
.boarding-cut::before { left: -30px; } .boarding-cut::after { right: -30px; }

/* ---------- report shell ---------- */
#report { display: none; padding-bottom: 30px; }
#report.show { display: block; }
section.card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px; margin: 18px 0; border: 1px solid #f0f0ee;
  animation: cardIn .5s ease backwards;
}
section.card:nth-of-type(2) { animation-delay: .08s; }
section.card:nth-of-type(3) { animation-delay: .16s; }
section.card:nth-of-type(4) { animation-delay: .22s; }
section.card:nth-of-type(5) { animation-delay: .28s; }
section.card:nth-of-type(6) { animation-delay: .34s; }
section.card:nth-of-type(7) { animation-delay: .4s; }
@keyframes cardIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.sec-title { font-size: .76rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-45); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.sec-title::before { content: ''; width: 18px; height: 3px; background: var(--jade); border-radius: 2px; }

/* ---------- meter ---------- */
.meter-card { text-align: center; padding: 34px 26px 30px; position: relative; overflow: hidden; }
.tier-badge {
  display: inline-block; background: var(--yellow); font-weight: 700; font-size: .8rem; letter-spacing: .05em;
  padding: 7px 18px; border-radius: 99px; text-transform: uppercase; transform: rotate(-2deg);
  box-shadow: 0 3px 0 var(--ink); animation: stamp .45s cubic-bezier(.2, 2.2, .4, 1) backwards .3s;
}
@keyframes stamp { from { transform: scale(2.4) rotate(-14deg); opacity: 0; } to { transform: scale(1) rotate(-2deg); opacity: 1; } }
.big-score { font-size: 4.6rem; font-weight: 700; letter-spacing: -.045em; line-height: 1.02; margin-top: 12px; font-variant-numeric: tabular-nums; }
.big-score .denom { font-size: 1.4rem; color: var(--ink-45); font-weight: 600; }
.verdict { font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif; font-size: 1.16rem; font-weight: 600; max-width: 520px; margin: 12px auto 0; letter-spacing: -.01em; }
.sub-verdict { color: var(--ink-70); font-size: .88rem; max-width: 500px; margin: 7px auto 0; }
.meta-line { font-size: .78rem; margin-top: 14px; color: var(--ink-45); }
.meterbar { position: relative; height: 46px; margin: 26px 6px 0; }
.meterbar .track { position: absolute; top: 19px; left: 0; right: 0; height: 10px; border-radius: 99px; background: linear-gradient(90deg, #f3c1c1 0 55%, #f6dCA6 55% 70%, #cfe9c0 70% 85%, var(--yellow) 85% 100%); }
.meterbar .needle { position: absolute; top: 7px; left: 0; width: 3.5px; height: 34px; background: var(--ink); border-radius: 2px; transition: left 1.3s cubic-bezier(.2, .8, .2, 1); }
.meterbar .needle::after { content: attr(data-v); position: absolute; top: -19px; left: 50%; transform: translateX(-50%); font-size: .72rem; font-weight: 700; }
.meter-zones { display: flex; justify-content: space-between; font-size: .62rem; color: var(--ink-45); margin-top: 5px; }
.confetti { position: absolute; top: -12px; width: 9px; height: 13px; border-radius: 2px; animation: fall 2.4s ease-in forwards; pointer-events: none; }
@keyframes fall { to { transform: translateY(112vh) rotate(720deg); opacity: .1; } }

/* ---------- three things ---------- */
.three { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.thing { border-radius: 16px; padding: 20px 18px 18px; background: var(--bg); border: 1px solid #ececea; text-align: center; transition: transform .18s; }
.thing:hover { transform: translateY(-3px); }
.thing .t-ico { width: 52px; height: 52px; margin: 0 auto; border-radius: 50%; display: grid; place-items: center; font-size: 1.5rem; background: var(--yellow); box-shadow: 0 3px 0 rgba(20,20,20,.14); }
.thing.risk .t-ico { background: #FAD9D9; }
.thing.hiddenCost .t-ico { background: #F8E7C6; }
.thing h4 { font-size: .96rem; margin: 12px 0 5px; font-weight: 600; }
.thing p { font-size: .82rem; color: var(--ink-70); }

/* ---------- days ---------- */
.day-strip { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 12px; scrollbar-width: thin; }
.day-chip {
  min-width: 116px; background: var(--bg); border: 1.5px solid #e6e6e3; border-radius: 16px;
  padding: 13px 13px 11px; cursor: pointer; transition: all .15s; flex-shrink: 0; position: relative;
}
.day-chip:hover { transform: translateY(-2px); }
.day-chip.sel { border-color: var(--ink); background: var(--yellow-soft); box-shadow: 0 4px 0 var(--yellow); }
.day-chip .d-num { font-weight: 700; font-size: .82rem; }
.day-chip .d-icons { font-size: 1.05rem; margin: 5px 0 7px; letter-spacing: 2px; min-height: 1.4em; }
.loadbar { height: 7px; border-radius: 99px; background: #e9e9e6; overflow: hidden; }
.loadbar i { display: block; height: 100%; border-radius: 99px; transition: width .8s ease; }
.day-chip .d-hrs { font-size: .64rem; color: var(--ink-45); margin-top: 6px; }
.day-detail { background: var(--bg); border-radius: 16px; padding: 18px; margin-top: 6px; border: 1px solid #ececea; }
.day-detail .dd-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 6px; }
.day-detail h4 { font-size: .98rem; }
.day-detail .dd-note { font-size: .8rem; color: var(--ink-70); font-style: italic; }
.timeline { margin-top: 12px; }
.tl-item { display: flex; gap: 11px; padding: 8px 0; font-size: .86rem; align-items: center; border-bottom: 1px dashed #e9e9e6; }
.tl-item:last-child { border-bottom: 0; }
.tl-item .tl-ico { font-size: 1.05rem; width: 26px; text-align: center; }
.tl-item .tl-h { min-width: 44px; font-weight: 600; font-size: .74rem; color: var(--ink-45); }
.tl-item .tl-tag { font-size: .62rem; background: #e9e9e6; border-radius: 6px; padding: 2px 8px; margin-left: auto; white-space: nowrap; font-weight: 600; }
.overload-note { margin-top: 12px; font-size: .8rem; color: var(--red); font-weight: 600; background: #FBEBEB; border-radius: 10px; padding: 9px 13px; }

/* ---------- parameters ---------- */
.param-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.param { background: var(--bg); border: 1px solid #ececea; border-radius: 16px; padding: 15px 16px; cursor: pointer; transition: all .15s; }
.param:hover { border-color: var(--ink-45); transform: translateY(-2px); }
.param .p-top { display: flex; align-items: center; gap: 9px; }
.param .p-ico { font-size: 1.15rem; }
.param .p-name { font-weight: 600; font-size: .86rem; flex: 1; }
.param .p-score { font-weight: 700; font-size: .95rem; font-variant-numeric: tabular-nums; }
.param .p-label { font-size: .7rem; color: var(--ink-70); margin-top: 3px; margin-left: 33px; }
.p-bar { height: 6px; border-radius: 99px; background: #e9e9e6; margin-top: 10px; overflow: hidden; }
.p-bar i { display: block; height: 100%; border-radius: 99px; background: var(--ink); transition: width .9s ease; }
.param .p-why { display: none; margin-top: 11px; border-top: 1px dashed #d6d6d1; padding-top: 10px; }
.param.open .p-why { display: block; }
.param .p-why li { font-size: .77rem; color: var(--ink-70); margin: 6px 0 0 16px; }
.param .p-hint { font-size: .65rem; color: var(--ink-45); margin-top: 9px; }

/* ---------- honest money receipt ---------- */
section.card.money-card { background: var(--ink); border-color: var(--ink); }
section.card.money-card .sec-title { color: var(--yellow); }
section.card.money-card .sec-title::before { background: var(--yellow); }
.receipt {
  background: #fffdf4; border-radius: 12px 12px 0 0; padding: 22px 22px 18px; position: relative;
  font-variant-numeric: tabular-nums; color: var(--ink); max-width: 520px; margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.receipt::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -12px; height: 12px;
  background: linear-gradient(-45deg, transparent 8px, #fffdf4 0) 0 0 / 16px 100%,
              linear-gradient(45deg, transparent 8px, #fffdf4 0) 8px 0 / 16px 100%;
  background-repeat: repeat-x;
}
.receipt .r-head { font-family: 'Source Serif 4', Georgia, serif; text-align: center; font-weight: 700; font-size: .8rem; letter-spacing: .14em; border-bottom: 2px dashed #d9d4bc; padding-bottom: 10px; margin-bottom: 6px; }
.receipt .r-stamp {
  position: absolute; top: 14px; right: 14px; border: 2.5px solid var(--jade); color: var(--jade);
  font-size: .6rem; font-weight: 700; letter-spacing: .1em; padding: 4px 8px; border-radius: 8px;
  transform: rotate(9deg); opacity: .75;
}
.m-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding: 9px 0; font-size: .88rem; }
.m-row .m-label { color: var(--ink-70); }
.m-row .m-dots { flex: 1; border-bottom: 2px dotted #d9d4bc; transform: translateY(-4px); }
.m-row .m-val { font-weight: 600; white-space: nowrap; }
.m-row.total { border-top: 2px dashed #d9d4bc; margin-top: 6px; padding-top: 14px; font-size: 1rem; }
.m-row.total .m-label { color: var(--ink); font-weight: 700; }
.m-row.total .m-val { background: var(--yellow); padding: 3px 10px; border-radius: 8px; font-weight: 700; }
.m-note { font-size: .7rem; color: rgba(255,255,255,.55); margin: 22px auto 0; max-width: 520px; text-align: center; }

/* ---------- insights ---------- */
.insight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.insight { background: var(--bg); border: 1px solid #ececea; border-radius: 16px; padding: 16px; }
.insight h4 { font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.insight h4 .i-ico { font-size: 1.2rem; }
.insight h4 .i-score { background: var(--yellow); border-radius: 8px; padding: 1px 9px; font-size: .76rem; margin-left: auto; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.chip { font-size: .74rem; font-weight: 500; border-radius: 99px; padding: 5px 11px 5px 8px; display: inline-flex; align-items: center; gap: 5px; }
.chip.hit { background: #E0F5EC; color: #00734D; }
.chip.miss { background: #FCE6EB; color: #B2233F; }
.chip b { font-size: .8rem; }
.insight .i-note { font-size: .76rem; margin-top: 12px; padding: 10px 12px; background: #E9F8FF; border-radius: 10px; border: 1px dashed #9adcf5; }

/* ---------- fixes ---------- */
.fix-row { display: flex; gap: 14px; align-items: flex-start; padding: 15px 0; border-bottom: 1px dashed #e9e9e6; }
.fix-row:last-of-type { border-bottom: 0; }
.fix-body { flex: 1; }
.fix-body h4 { font-size: .92rem; font-weight: 600; }
.fix-body p { font-size: .8rem; color: var(--ink-70); margin-top: 3px; }
.fix-imp { font-size: .72rem; font-weight: 700; color: #00734D; white-space: nowrap; background: #E0F5EC; border-radius: 8px; padding: 2px 8px; margin-left: 6px; }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; margin-top: 2px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; background: #d6d6d1; border-radius: 99px; cursor: pointer; transition: .2s; }
.slider::before { content: ''; position: absolute; width: 20px; height: 20px; border-radius: 50%; background: #fff; top: 3px; left: 3px; transition: .2s; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.switch input:checked + .slider { background: var(--green); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.fix-projection { text-align: center; margin-top: 20px; font-size: .95rem; background: var(--bg); border: 1px dashed #d8d8d3; border-radius: 14px; padding: 15px; }
.fix-projection b { font-size: 1.7rem; font-variant-numeric: tabular-nums; }

/* ---------- share + CTA ---------- */
.report-actions { text-align: center; padding: 8px 0 14px; }
.cta-btn {
  display: inline-block; background: var(--jade); color: #fff; font-weight: 700; text-decoration: none;
  border-radius: 99px; padding: 14px 28px; margin-top: 12px; font-size: .96rem; transition: transform .15s;
  border: 0; cursor: pointer; font-family: inherit; box-shadow: 0 4px 0 #007A52;
}
.cta-btn:hover { transform: translateY(-2px); }
.share-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; border-radius: 99px; padding: 11px 20px;
  text-decoration: none; font-size: .86rem; transition: transform .15s; border: 0; cursor: pointer; font-family: inherit;
}
.share-btn.wa { background: #25D366; color: #fff; }
.share-btn.dl { background: var(--ink); color: #fff; }
.share-btn:hover { transform: scale(1.04); }
.share-preview { display: block; margin: 18px auto 0; width: min(320px, 80vw); border-radius: 16px; box-shadow: var(--shadow); border: 1px solid #ececea; }
.again-link { display: inline-block; margin-top: 18px; font-size: .82rem; color: var(--ink-70); cursor: pointer; text-decoration: underline; background: none; border: 0; font-family: inherit; }

/* ---------- skeletons (narration still cooking) ---------- */
.skel { position: relative; overflow: hidden; background: #f0ead6; border-radius: 8px; color: transparent !important; }
.skel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent); animation: shimmer 1.3s infinite; }
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.cooking-note { font-size: .72rem; color: var(--ink-45); font-style: italic; text-align: center; margin-top: 8px; }

/* ---------- toast ---------- */
#toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(130px); background: var(--ink); color: #fff;
  border-radius: 13px; padding: 13px 20px; font-size: .86rem; z-index: 200; transition: transform .25s; max-width: 90vw; text-align: center;
}
#toast.show { transform: translateX(-50%) translateY(0); }

footer { text-align: center; padding: 26px 20px 40px; font-size: .7rem; color: var(--ink-45); }

@media (max-width: 560px) {
  section.card { padding: 18px; }
  .big-score { font-size: 3.6rem; }
  .receipt { padding: 16px 14px 14px; }
}

/* ---------- red-flag caps + grounding honesty ---------- */
.cap-flags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.cap-chip { font-size: .72rem; background: #FCE6EB; color: #B2233F; border-radius: 99px; padding: 5px 12px; font-weight: 600; }
.cap-chip.binding { outline: 1.5px solid var(--amaranth); }
.cap-chip.note { background: #E9F8FF; color: #1D6E86; outline: 0; font-weight: 500; }
.grounding-note { font-size: .74rem; color: var(--ink-45); margin-top: 10px; font-style: italic; }

/* ============================================================
   v7 — immersive hero + waiting theatre (Thine-inspired, PYT film)
   ============================================================ */

/* ---------- hero stage ---------- */
.hero-stage {
  position: relative; overflow: hidden;
  background: radial-gradient(900px 500px at 15% 10%, rgba(255,201,51,.28), transparent 60%),
              radial-gradient(800px 500px at 85% 90%, rgba(0,178,119,.22), transparent 60%),
              #1d1d1b;
}
.hero-video, .load-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,24,22,.62) 0%, rgba(24,24,22,.45) 40%, rgba(24,24,22,.72) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 74px 20px 66px; text-align: center; }
.hero-inner h1 {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  color: #fff; font-weight: 600; letter-spacing: -.01em;
  font-size: clamp(2.1rem, 5.6vw, 3.4rem); line-height: 1.14;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-inner h1 em {
  font-style: italic;
  background: linear-gradient(transparent 68%, var(--yellow) 68%);
  padding: 0 8px;
}
.hero-sub {
  color: rgba(255,255,255,.88); max-width: 560px; margin: 16px auto 0;
  font-size: .98rem; text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.hero-sub b { color: var(--yellow); }
.on-dark .p-label { color: rgba(255,255,255,.75); }
.on-dark .pill { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); color: #fff; backdrop-filter: blur(6px); }
.on-dark .pill:hover { border-color: #fff; }
.on-dark .pill.active { background: var(--jade); border-color: var(--jade); color: #fff; }
.on-dark-text { color: rgba(255,255,255,.8) !important; }
.hero-stage .uploader { margin-bottom: 6px; }
.hero-stage .dropzone { border-color: rgba(255,255,255,.4); box-shadow: 0 22px 60px rgba(0,0,0,.35); }
.hero-stage .dropzone:hover, .hero-stage .dropzone.drag { border-color: var(--yellow); }
.hero-stage .privacy-line { margin-bottom: 8px; }

/* ---------- floating tailor motifs + veho watermark ---------- */
.tailor-float {
  position: absolute; z-index: 1; font-size: 1.7rem; opacity: .18;
  filter: grayscale(1) brightness(2.4);
  animation: drift 9s ease-in-out infinite;
}
.tf1 { top: 14%; left: 7%; animation-delay: 0s; }
.tf2 { top: 22%; right: 9%; animation-delay: -3s; }
.tf3 { bottom: 18%; left: 11%; animation-delay: -6s; }
.tf4 { bottom: 24%; right: 12%; animation-delay: -4.5s; }
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-14px) rotate(5deg); }
}
.veho-mark-outline {
  position: absolute; z-index: 1; width: min(300px, 42vw); height: auto;
  right: -40px; bottom: -46px; opacity: .1; transform: rotate(-9deg);
}

/* ---------- waiting theatre ---------- */
#loading {
  background: radial-gradient(900px 500px at 15% 10%, rgba(255,201,51,.25), transparent 60%),
              radial-gradient(800px 500px at 85% 90%, rgba(0,178,119,.2), transparent 60%),
              #1d1d1b;
  flex-direction: column; gap: 26px; overflow: hidden;
}
.load-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,24,22,.66), rgba(24,24,22,.5) 45%, rgba(24,24,22,.78)); }
.triv-stage { position: relative; z-index: 2; text-align: center; max-width: 640px; padding: 0 24px; animation: rise .5s ease; }
.triv-eyebrow {
  color: var(--yellow); font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 14px;
}
.triv-text {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif; font-style: italic; font-weight: 600;
  color: #fff; font-size: clamp(1.25rem, 3.4vw, 1.9rem); line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
  transition: opacity .35s ease, transform .35s ease; min-height: 3.2em;
}
.triv-text.fade { opacity: 0; transform: translateY(6px); }

.load-progress {
  position: relative; z-index: 2; background: rgba(255,255,255,.96); border-radius: 18px;
  width: min(520px, 92vw); padding: 0 0 6px; overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.4);
}
.load-progress .tape-track { border-radius: 0; }
.load-progress .stages { display: flex; justify-content: space-around; padding: 14px 12px 4px; }
.load-progress .stage { flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 0 4px; flex: 1; }
.load-progress .stage .st-ico { width: 32px; height: 32px; font-size: .95rem; }
.load-progress .stage .st-label { font-size: .64rem; font-weight: 600; padding-top: 0; line-height: 1.2; }
.load-progress .stage .st-sub { display: none; }
.load-progress .facts-line { margin: 6px 14px 0; text-align: center; font-size: .78rem; }
.load-progress .boarding-foot { text-align: center; padding: 8px 16px 10px; min-height: 30px; }

/* ---------- report trivia card ---------- */
.triv-card { background: var(--yellow-soft); border-color: #f0e3b8; text-align: center; }
.triv-card .sec-title { justify-content: center; }
.triv-report-text {
  font-family: 'Source Serif 4', Georgia, serif; font-style: italic; font-weight: 600;
  font-size: 1.08rem; max-width: 560px; margin: 0 auto; line-height: 1.5;
}
.triv-more {
  margin-top: 14px; background: none; border: 1.5px solid #d9c98e; border-radius: 99px;
  padding: 7px 16px; font-family: inherit; font-size: .78rem; font-weight: 600; cursor: pointer;
  color: var(--ink-70); transition: all .15s;
}
.triv-more:hover { border-color: var(--ink); transform: rotate(-2deg); }

/* meter card gets a faint veho watermark of its own */
.meter-card::after {
  content: ''; position: absolute; right: -30px; top: -20px; width: 190px; height: 190px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M9 10 c0-3.3 2.7-6 6-6 h13 c9 0 15.5 4.5 19 13 l1 3 -1 3 c-3.5 8.5-10 13-19 13 h-13 c-3.3 0-6-2.7-6-6 z' fill='none' stroke='%2300B277' stroke-width='1.2'/%3E%3Crect x='17' y='14' width='4.6' height='20' rx='2.3' fill='none' stroke='%2300B277' stroke-width='1'/%3E%3Cpath d='M21.6 15 l13 4.6 -13 5.4 3.4-5.2z' fill='none' stroke='%2300B277' stroke-width='1'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: .07; transform: rotate(-10deg); pointer-events: none;
}

/* stitch-dash section markers (tailor touch) */
.sec-title::before { width: 26px; height: 0; border-top: 3px dashed var(--jade); background: none; border-radius: 0; }

/* motion + data respect */
@media (prefers-reduced-motion: reduce) {
  .hero-video, .load-video { display: none; }
  .tailor-float { animation: none; }
}
@media (max-width: 560px) {
  .hero-inner { padding: 48px 16px 44px; }
  .veho-mark-outline { width: 170px; right: -30px; bottom: -30px; }
}

/* ============================================================
   v8 — the story: five acts, one thought per screen
   ============================================================ */
html.snapping { scroll-snap-type: y proximity; }
.act {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; scroll-snap-align: start; padding: 72px 22px 40px;
  background: var(--bg); text-align: center;
}
.act-tint { background: var(--yellow-soft); }
.act-dark {
  background: radial-gradient(900px 500px at 15% 10%, rgba(255,201,51,.22), transparent 60%),
              radial-gradient(800px 500px at 85% 90%, rgba(0,178,119,.18), transparent 60%),
              #1d1d1b;
  color: #fff;
}
.act .act-in {
  max-width: 640px; opacity: 0; transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}
.act.in .act-in { opacity: 1; transform: none; }
.act-eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-45); margin-bottom: 20px;
}
.act-dark .act-eyebrow { color: var(--yellow); }
.act-eyebrow.good { color: var(--jade); }
.act-eyebrow.fix { color: var(--amaranth); }
.act-big {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif; font-style: italic; font-weight: 600;
  font-size: clamp(1.5rem, 4.2vw, 2.3rem); line-height: 1.32; letter-spacing: -.01em;
}
.act-line {
  font-family: 'Source Serif 4', Georgia, serif; font-style: italic; font-weight: 600;
  font-size: clamp(1.15rem, 3vw, 1.55rem); line-height: 1.4; max-width: 560px; margin: 8px auto 0;
}
.act-sup { color: var(--ink-70); font-size: .95rem; margin-top: 16px; }
.act-dark .act-sup { color: rgba(255,255,255,.75); }

.a1-score { font-size: clamp(6rem, 18vw, 9.5rem); font-weight: 800; line-height: 1; letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.a1-denom { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 600; color: rgba(255,255,255,.55); letter-spacing: 0; }
.a1-tier { margin: 14px 0 8px; }
.a1-tier span {
  display: inline-block; background: var(--yellow); color: #444444; font-weight: 700; font-size: .92rem;
  letter-spacing: .05em; text-transform: uppercase; padding: 9px 22px; border-radius: 99px; transform: rotate(-2deg);
}
.scroll-cue { margin-top: 34px; font-size: 1.3rem; color: rgba(255,255,255,.6); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(8px); opacity: 1; } }

.mini-days { display: flex; gap: 8px; justify-content: center; margin-top: 26px; }
.mini-day { width: clamp(34px, 9vw, 52px); }
.mini-day .md-bar { height: 52px; border-radius: 8px; background: #eae4cf; position: relative; overflow: hidden; }
.mini-day .md-bar i { position: absolute; bottom: 0; left: 0; right: 0; border-radius: 8px; }
.mini-day .md-label { font-size: .62rem; font-weight: 600; color: var(--ink-70); margin-top: 5px; }

#act-money .receipt { margin-top: 20px; text-align: left; }

.pdf-block { margin-top: 26px; }
.pdf-toggle {
  background: none; border: 1.5px solid #cfcfca; border-radius: 99px; padding: 11px 22px;
  font-family: inherit; font-size: .88rem; font-weight: 600; color: var(--ink); cursor: pointer; transition: all .15s;
}
.pdf-toggle:hover { border-color: var(--ink); transform: translateY(-1px); }
.pdf-form { max-width: 340px; margin: 16px auto 0; display: grid; gap: 10px; }
.pdf-form input {
  border: 1.5px solid #ddd; border-radius: 12px; padding: 12px 14px; font-family: inherit; font-size: .9rem;
  background: #fff; outline: none; transition: border .15s;
}
.pdf-form input:focus { border-color: var(--jade); }
.cta-btn.small { padding: 12px 20px; font-size: .88rem; margin-top: 2px; }
.pdf-consent { font-size: .68rem; color: var(--ink-45); }
.see-full {
  display: block; margin: 34px auto 0; background: none; border: 0; font-family: inherit;
  font-size: .84rem; color: var(--ink-45); text-decoration: underline; cursor: pointer;
}
.see-full:hover { color: var(--ink); }
#act-end .share-row { margin-top: 18px; }
#act-end .cta-btn { margin-top: 6px; }
#act-end .again-link { margin-top: 26px; }

/* the detailed check-up hides behind the story until asked for */
#report.behind-story { display: none; }
#report.behind-story.expanded { display: block; }
#report.behind-story .meter-card { display: none; }  /* act 1 already told the score */
.print-head { display: none; }

/* ---------- print: the PDF report ---------- */
@media print {
  header, #home, #loading, #story, footer, #toast,
  .persona-row, .switch, .share-row, .report-actions, .again-link, .triv-more, .cooking-note { display: none !important; }
  body { background: #fff; }
  #report, #report.behind-story { display: block !important; }
  #report .meter-card { display: block !important; }
  section.card { box-shadow: none; border: 1px solid #e5e5e0; break-inside: avoid; margin: 12px 0; animation: none; }
  .print-head { display: block; padding: 4px 0 14px; border-bottom: 3px solid #FFC933; margin-bottom: 14px; }
  .print-head .ph-brand { font-weight: 700; color: #00B277; font-size: 1.05rem; }
  .print-head .ph-line { font-size: .85rem; color: #444; margin-top: 4px; }
  .p-why { display: block !important; }
  .day-detail { display: none; }
}

/* ============================================================
   v9 — typed-out words, travel nuance, visible errors
   ============================================================ */
.w { display: inline-block; opacity: 0; transform: translateY(14px); filter: blur(5px); }
.act.in .w, .triv-stage .w, #loading .w {
  animation: wordIn .55s cubic-bezier(.2, .7, .3, 1) forwards;
  animation-delay: calc(var(--i) * 70ms);
}
.act:not(.in) .w { animation: none; opacity: 0; }
@keyframes wordIn { to { opacity: 1; transform: none; filter: none; } }

/* a faint flight path wandering through the light acts */
.act:not(.act-dark)::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3E%3Cpath d='M-40 480 C 180 380 260 200 460 240 S 800 140 950 60' fill='none' stroke='%23d9d2b8' stroke-width='2' stroke-dasharray='3 9'/%3E%3Cpath d='M452 232 l20 6 -18 10 3-8z' fill='%23cfc7a6'/%3E%3C/svg%3E") no-repeat center / cover;
}
.act-tint::before { opacity: .35; }
.act .act-in { position: relative; z-index: 1; }

#load-retry { margin-top: -6px; }
.veho-mark-outline { will-change: transform; transition: transform .1s linear; }

/* the hidden attribute must always win over component display styles */
[hidden] { display: none !important; }

/* ============================================================
   v12 — the road to 100, a real CTA, calmer check-up
   ============================================================ */
.act-road { background: #FFFDF4; }
.act-eyebrow.road { color: #B8860B; }
.road-wrap {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-top: 30px; max-width: 720px;
}
.road-chip {
  width: 96px; height: 96px; border-radius: 50%; display: grid; place-content: center; gap: 0;
  font-weight: 800; flex-shrink: 0;
}
.road-chip span { font-size: 2rem; line-height: 1; font-variant-numeric: tabular-nums; }
.road-chip small { font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.road-chip.now { background: var(--ink); color: #fff; }
.road-chip.goal { background: var(--yellow); color: var(--ink); box-shadow: 0 8px 26px rgba(255, 201, 51, .45); animation: goalGlow 2.4s ease-in-out infinite; }
@keyframes goalGlow { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.road-steps { display: flex; align-items: stretch; gap: 10px; flex-wrap: wrap; justify-content: center; }
.road-step {
  background: #fff; border: 1.5px solid var(--jade); border-radius: 16px; padding: 12px 14px;
  min-width: 118px; max-width: 150px; cursor: pointer; text-align: center; transition: all .2s ease;
  font-family: inherit; position: relative;
}
.road-step .rs-ico { font-size: 1.3rem; }
.road-step .rs-title { font-size: .74rem; font-weight: 700; margin-top: 5px; line-height: 1.25; }
.road-step .rs-pts { display: inline-block; margin-top: 7px; background: #E0F5EC; color: #00734D; font-size: .68rem; font-weight: 800; border-radius: 99px; padding: 2px 9px; }
.road-step.off { border-color: #ddd; opacity: .45; filter: grayscale(.6); }
.road-step:hover { transform: translateY(-3px); }
.road-step::after { content: '✓'; position: absolute; top: -8px; right: -6px; width: 20px; height: 20px; border-radius: 50%; background: var(--jade); color: #fff; font-size: .7rem; display: grid; place-items: center; }
.road-step.off::after { content: ''; background: #ccc; }

/* CTA card for the full check-up */
.see-full-card {
  display: flex; align-items: center; gap: 14px; margin: 34px auto 0; padding: 16px 20px;
  background: #fff; border: 1.5px dashed #cfc9ae; border-radius: 18px; cursor: pointer;
  font-family: inherit; max-width: 420px; width: 100%; text-align: left;
  box-shadow: var(--shadow); transition: all .2s ease;
}
.see-full-card:hover { transform: translateY(-3px); border-color: var(--jade); box-shadow: 0 14px 40px rgba(20,20,20,.12); }
.sfc-icons { display: flex; }
.sfc-icons i { font-style: normal; font-size: 1.05rem; width: 26px; height: 26px; border-radius: 50%; background: var(--yellow-soft); display: grid; place-items: center; margin-left: -6px; border: 1.5px solid #fff; }
.sfc-icons i:first-child { margin-left: 0; }
.sfc-text { flex: 1; }
.sfc-text b { display: block; font-size: .95rem; }
.sfc-text small { color: var(--ink-45); font-size: .74rem; }
.sfc-arrow { font-size: 1.2rem; color: var(--jade); font-weight: 800; }

/* the check-up reads like a journey, not a report */
.checkup-intro { text-align: center; padding: 46px 0 8px; }
.ci-eyebrow { font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-45); }
.ci-line { font-family: 'Source Serif 4', Georgia, serif; font-style: italic; font-weight: 600; font-size: clamp(1.3rem, 3.4vw, 1.8rem); margin-top: 10px; }
.sec-title { font-size: .8rem; }
.m-note { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media print { .m-note { display: block; -webkit-line-clamp: unset; } .checkup-intro { display: none; } }


/* v14: tier bar in the first fold, alterations print-only, lazy film */
.meterbar.dark { max-width: 520px; margin: 26px auto 0; }
.meterbar.dark .track { background: linear-gradient(90deg, rgba(229,43,80,.55) 0 55%, rgba(255,201,51,.5) 55% 70%, rgba(0,178,119,.5) 70% 85%, var(--yellow) 85% 100%); }
.meterbar.dark .needle { background: #fff; }
.meterbar.dark .needle::after { color: #fff; }
.meter-zones.dark { max-width: 520px; margin: 5px auto 0; color: rgba(255,255,255,.55); }
.print-only-fixes { display: none; }
@media print { .print-only-fixes { display: block; } }


/* v16: the trivia postcard */
.triv-card {
  background: #FFFDF4; border: 1px solid #efe9d2; position: relative; overflow: hidden;
  padding: 34px 26px 26px;
}
.triv-card::before, .triv-card::after {
  content: ''; position: absolute; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(-45deg, var(--amaranth) 0 10px, #FFFDF4 10px 20px, var(--aqua) 20px 30px, #FFFDF4 30px 40px);
  opacity: .8;
}
.triv-card::before { top: 0; }
.triv-card::after { bottom: 0; }
.triv-stamp {
  position: absolute; top: 20px; right: 20px; width: 52px; height: 58px;
  background: var(--yellow); border-radius: 6px; display: grid; place-items: center;
  font-size: 1.5rem; transform: rotate(6deg);
  box-shadow: 0 3px 10px rgba(20,20,20,.12);
  outline: 3px dashed #fff; outline-offset: -6px;
}
.triv-card .triv-head { justify-content: center; }
.triv-card .triv-report-text { font-size: 1.14rem; }
.triv-card .triv-head { padding: 0 64px; flex-wrap: wrap; }


/* v18: sharper upload, expect strip, about band + chart */
.dz-cta {
  display: inline-block; margin-top: 12px; background: var(--jade); color: #fff;
  font-weight: 800; font-size: 1.02rem; border-radius: 99px; padding: 14px 30px;
  box-shadow: 0 5px 0 #007A52, 0 14px 30px rgba(0,178,119,.35); transition: transform .15s;
}
.dropzone:hover .dz-cta { transform: translateY(-2px) scale(1.03); }
.dropzone h3 { font-size: 1.18rem; font-weight: 800; }
.expect-strip { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 6px auto 40px; max-width: 720px; }
.ex-step {
  flex: 1; min-width: 190px; background: rgba(255,255,255,.09); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.22); border-radius: 16px; padding: 14px 16px; text-align: center; color: #fff;
}
.ex-step .ex-ico { font-size: 1.4rem; display: block; }
.ex-step b { display: block; font-size: .9rem; margin-top: 6px; }
.ex-step small { display: block; color: rgba(255,255,255,.75); font-size: .74rem; margin-top: 3px; }

.about-pyt { background: var(--bg); padding: 64px 0 70px; }
.about-pyt .act-eyebrow { color: var(--ink-45); }
.about-pyt .act-big em { font-style: italic; background: linear-gradient(transparent 68%, var(--yellow) 68%); padding: 0 6px; }
.about-sub { color: var(--ink-70); max-width: 560px; margin: 14px auto 0; font-size: .98rem; }
.stat-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.stat-tile {
  background: #fff; border: 1px solid #f0f0ee; border-radius: 18px; box-shadow: var(--shadow);
  padding: 22px 26px; min-width: 190px;
}
.stat-tile .st-num, .stat-tile .st-word { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stat-tile .st-plus { font-size: 1.4rem; font-weight: 800; color: var(--jade); }
.stat-tile small { display: block; color: var(--ink-45); font-size: .76rem; margin-top: 5px; }
.chart-card {
  background: #fff; border: 1px solid #f0f0ee; border-radius: 20px; box-shadow: var(--shadow);
  max-width: 620px; margin: 26px auto 0; padding: 24px 24px 14px;
}
.chart-title { font-weight: 800; font-size: .95rem; margin-bottom: 10px; text-align: left; }
.wander-chart { width: 100%; height: auto; display: block; }
.chart-src { font-size: .68rem; color: var(--ink-45); text-align: right; margin-top: 6px; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }


/* v21: one clear voice in the final fold */
.cta-btn.xl { padding: 17px 38px; font-size: 1.05rem; margin-top: 14px; }
.mini-actions { display: flex; gap: 26px; justify-content: center; margin-top: 26px; }
.ia-item { display: grid; justify-items: center; gap: 6px; }
.ia-item small { font-size: .68rem; font-weight: 700; color: var(--ink-45); letter-spacing: .04em; }
.icon-btn {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1.5px solid #e6e6e2; color: var(--ink-70); cursor: pointer;
  box-shadow: 0 3px 12px rgba(20,20,20,.07); transition: all .18s ease; font-family: inherit;
}
.icon-btn:hover { transform: translateY(-3px); border-color: var(--ink-45); color: var(--ink); }
.icon-btn.wa { background: #25D366; border-color: #25D366; color: #fff; }
.icon-btn.wa:hover { border-color: #1eb356; background: #1eb356; color: #fff; }
.see-full-card { border: 1px solid #ececea; border-style: solid; margin-top: 40px; padding: 18px 22px; border-radius: 20px; }
.see-full-card:hover { border-color: var(--jade); }
.see-full-card .sfc-arrow { transition: transform .2s ease; }
.see-full-card:hover .sfc-arrow { transform: translateX(5px); }
.again-link.subtle { font-size: .74rem; color: var(--ink-45); text-decoration: none; margin-top: 30px; }
.again-link.subtle:hover { text-decoration: underline; color: var(--ink-70); }


/* v22: earlier doorways into the full check-up */
.see-more-link {
  display: inline-block; margin-top: 22px; background: none; border: 0; font-family: inherit;
  font-size: .82rem; font-weight: 700; color: var(--jade); cursor: pointer; text-decoration: none;
  border-bottom: 1.5px dashed var(--jade); padding-bottom: 2px; transition: all .15s;
}
.see-more-link:hover { border-bottom-style: solid; }
.see-full-card.slim { max-width: 380px; padding: 14px 20px; margin-top: 30px; }
.see-full-card.slim .sfc-text b { font-size: .88rem; }


/* v23: the road-fold doorway becomes a real door */
.see-full-card.rich {
  background: var(--ink); border: 0; color: #fff; max-width: 470px; padding: 18px 20px;
  box-shadow: 0 16px 44px rgba(20,20,20,.28); margin-top: 32px;
}
.see-full-card.rich:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 20px 54px rgba(20,20,20,.34); }
.see-full-card.rich .sfc-text b { color: #fff; font-size: .98rem; }
.sfc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.sfc-chips em {
  font-style: normal; font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  border-radius: 99px; padding: 3px 10px;
}
.see-full-card.rich .sfc-icons i { border-color: var(--ink); }
.sfc-go {
  width: 38px; height: 38px; border-radius: 50%; background: var(--jade); color: #fff;
  display: grid; place-items: center; font-size: 1.15rem; font-weight: 800; flex-shrink: 0;
  transition: transform .2s ease;
}
.see-full-card.rich:hover .sfc-go { transform: translateX(5px); }

.print-only-card { display: none; }
@media print { .print-only-card { display: block; } }


/* v29: strengths and watch-outs as elegant pills under the headline */
.act-points { display: grid; gap: 10px; justify-items: center; margin-top: 26px; }
.act-point {
  display: inline-flex; align-items: center; gap: 10px; background: #fff;
  border: 1px solid #ececea; border-radius: 99px; padding: 10px 20px;
  font-size: .88rem; font-weight: 600; color: var(--ink); box-shadow: 0 3px 14px rgba(20,20,20,.06);
  opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease;
  transition-delay: calc(var(--i) * 140ms + 350ms); max-width: 520px; text-align: left;
}
.act.in .act-point { opacity: 1; transform: none; }
.act-point .pt-mark {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  font-size: .7rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.act-point.good .pt-mark { background: var(--jade); }
.act-point.warn .pt-mark { background: var(--amaranth); }
