/* =========================================================
   AKOREZ — design tokens
   Concept: warmth and care. A heart that fills up gently as
   you answer — not an instrument, a small act of attention.
   ========================================================= */
:root{
  --cream:      #FFF8F0;   /* page background */
  --cream-deep: #FCEEE0;   /* recessed panels on cream */
  --card:       #FFFDFA;   /* raised card surface */
  --ink:        #3A2E28;   /* warm near-black text */
  --ink-soft:   #8C7C6E;   /* secondary text */
  --coral:      #FF7A59;   /* primary accent, CTA */
  --coral-deep: #E8613F;   /* pressed / hover */
  --sage:       #6FAE8E;   /* calm zone, nature accent */
  --sun:        #FFC157;   /* mid-warmth accent */
  --line:       #F3E1CC;   /* hairline borders on cream */
  --line-card:  #F3E7D8;   /* hairline borders on card */
  --focus:      #E8613F;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  font-family:"Nunito","Segoe UI",Arial,sans-serif;
  font-size:16px;
  color:var(--ink);
  background:var(--cream);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(255,193,87,.16), transparent 40%),
    radial-gradient(circle at 92% 18%, rgba(111,174,142,.14), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(255,122,89,.10), transparent 45%);
  background-attachment:fixed;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  -webkit-font-smoothing:antialiased;
}
a{color:var(--coral-deep);}
::selection{background:var(--sun); color:var(--ink);}

:focus-visible{
  outline:2.5px solid var(--focus);
  outline-offset:3px;
  border-radius:6px;
}

h1,h2,h3{
  font-family:"Fredoka","Nunito",sans-serif;
  font-weight:600;
  letter-spacing:-0.01em;
}

/* ---- header ---- */
.site-header{
  padding:26px 24px 10px;
  display:flex;
  justify-content:center;
}
.brandbar{
  width:100%;
  max-width:760px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  color:var(--ink);
  font-weight:800;
  letter-spacing:.02em;
  text-decoration:none;
  font-size:21px;
  font-family:"Fredoka","Nunito",sans-serif;
}
.brandbar .mark-badge{
  width:38px;height:38px;
  border-radius:11px;
  background:var(--coral);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 4px 10px rgba(232,97,63,.35);
}
.brandbar .mark{
  width:21px;height:21px;
}
.brandbar .mark path{fill:#fff;}
.brandbar small{
  font-weight:700;
  font-size:13.5px;
  color:var(--ink-soft);
  letter-spacing:.01em;
  margin-left:3px;
}

/* ---- shell / main ---- */
main{
  flex:1;
  display:flex;
  justify-content:center;
  padding:8px 16px 40px;
}
.shell{
  width:100%;
  max-width:680px;
}
.shell.narrow{max-width:620px;}
.card{
  background:var(--card);
  border-radius:30px;
  box-shadow:0 1px 0 rgba(255,255,255,.7) inset, 0 18px 46px rgba(232,97,63,.10);
  padding:40px 34px;
  border:1px solid var(--line-card);
}
@media (max-width:560px){
  .card{padding:28px 20px; border-radius:24px;}
}

/* =========================================================
   HEART-FILL — the signature element. A simple heart that
   fills from the bottom, used as hero illustration (large)
   and as the progress / outcome indicator (compact).
   ========================================================= */
.heart-gauge{
  position:relative;
  margin:0 auto;
}
.heart-gauge svg{
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  display:block;
}
.heart-gauge .heart-outline-svg{position:relative;}
.heart-outline{
  fill:var(--cream-deep);
  stroke:var(--ink);
  stroke-width:3;
  opacity:.9;
}
.heart-fill{
  fill:var(--fill-color, var(--sage));
}
.heart-fill-svg{
  clip-path:inset(100% 0 0 0);
  transition:clip-path .8s cubic-bezier(.34,1.15,.4,1), fill .4s ease;
}
@media (prefers-reduced-motion:reduce){
  .heart-fill-svg{transition:none;}
}

.heart-hero{width:150px; height:150px;}
.heart-compact{width:64px; height:64px; flex-shrink:0;}

.gauge-caption{
  text-align:center;
  font-size:12px;
  color:var(--ink-soft);
  margin-top:10px;
}

/* ---- hero / intro page ---- */
.hero{
  text-align:center;
  padding:6px 4px 4px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--coral-deep);
  background:var(--cream-deep);
  border:1px solid var(--line);
  padding:7px 14px;
  border-radius:999px;
  margin-bottom:24px;
}
.eyebrow .sep{opacity:.4;}
.hero h1{
  font-size:clamp(28px,5vw,38px);
  line-height:1.28;
  margin:0 0 16px;
  color:var(--ink);
}
.hero h1 em{
  font-style:normal;
  color:var(--coral-deep);
}
.hero p.lead{
  font-size:16.5px;
  color:var(--ink-soft);
  line-height:1.65;
  max-width:480px;
  margin:0 auto 30px;
}
.btn{
  border:none;
  border-radius:999px;
  padding:14px 26px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  font-family:"Nunito",sans-serif;
  transition:transform .12s ease, background .15s ease, opacity .15s;
}
.btn-primary{
  background:var(--coral);
  color:#fff;
}
.btn-primary:hover{background:var(--coral-deep); transform:translateY(-1px);}
.btn-primary:active{transform:translateY(0);}
.btn-primary:disabled{opacity:.4; cursor:not-allowed; transform:none;}
.btn-ghost{
  background:transparent;
  color:var(--ink-soft);
  border-radius:999px;
}
.btn-ghost:hover{color:var(--ink);}
a.btn{display:inline-block; text-decoration:none;}

.hero .btn-primary{
  padding:16px 34px;
  font-size:16.5px;
}
.hero-btn-note{
  display:block;
  margin-top:12px;
  font-size:12px;
  font-weight:700;
  color:var(--ink-soft);
  letter-spacing:.03em;
}

/* ---- steps / how it works ---- */
.divider{
  border:none;
  border-top:1.5px dashed var(--line);
  margin:38px 0 28px;
}
.steps-title{
  font-family:"Fredoka",sans-serif;
  font-weight:600;
  font-size:14px;
  letter-spacing:.02em;
  color:var(--ink);
  margin:0 0 18px;
  text-align:center;
}
.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.step{
  background:var(--cream-deep);
  border:1px solid var(--line);
  border-radius:20px;
  padding:20px 15px;
  text-align:center;
}
.step .glyph{
  width:32px;height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 10px;
  font-family:"Fredoka",sans-serif;
  font-weight:600;
  font-size:15px;
  color:#fff;
}
.step:nth-child(1) .glyph{background:var(--sage);}
.step:nth-child(2) .glyph{background:var(--sun); color:var(--ink);}
.step:nth-child(3) .glyph{background:var(--coral);}
.step .txt{
  font-size:13.5px;
  line-height:1.55;
  color:var(--ink-soft);
}
@media (max-width:560px){
  .steps{grid-template-columns:1fr;}
}

/* ---- quiz ---- */
.quiz-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:10px;
}
.quiz-head .heart-gauge{flex-shrink:0;}
.step-label{
  font-size:13.5px;
  font-weight:700;
  color:var(--ink-soft);
}
.step-label b{color:var(--coral-deep);}
h1.qtitle{
  font-size:21px;
  line-height:1.4;
  margin:8px 0 24px;
  font-family:"Fredoka",sans-serif;
  font-weight:600;
}
.options{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.opt{
  text-align:left;
  padding:15px 20px;
  border-radius:18px;
  border:1.5px solid var(--line-card);
  background:var(--cream-deep);
  font-size:15px;
  font-family:"Nunito",sans-serif;
  font-weight:600;
  color:var(--ink);
  cursor:pointer;
  transition:border-color .15s, background .15s;
}
.opt:hover{border-color:var(--coral); background:#fff0ea;}
.opt.selected{
  border-color:var(--coral);
  background:#ffe9e1;
  color:var(--coral-deep);
}
.nav-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:28px;
}

/* ---- result / offer ---- */
.result-tag{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  padding:6px 13px;
  border-radius:999px;
  background:var(--cream-deep);
  border:1px solid var(--line);
  color:var(--coral-deep);
  margin-bottom:18px;
}
.result-head{
  display:flex;
  gap:20px;
  align-items:center;
  margin-bottom:6px;
}
.result-title{
  font-size:22px;
  margin:0 0 4px;
  line-height:1.32;
  font-family:"Fredoka",sans-serif;
  font-weight:600;
}
.result-copy{
  font-size:15px;
  line-height:1.65;
  color:var(--ink-soft);
  margin:16px 0 22px;
}
.disclaimer-box{
  background:var(--cream-deep);
  border:1px solid var(--line);
  border-left:4px solid var(--sun);
  border-radius:16px;
  padding:14px 18px;
  font-size:13.5px;
  line-height:1.55;
  color:var(--ink-soft);
  margin-bottom:28px;
}

.offer-card{
  border:1.5px solid var(--line-card);
  border-radius:24px;
  padding:26px;
  background:linear-gradient(180deg,#fff, var(--cream-deep) 220%);
  margin-bottom:22px;
  position:relative;
}
.offer-eyebrow{
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--ink-soft);
  margin:0 0 16px;
}
.offer-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}
.offer-icon{
  width:52px;height:52px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--coral),var(--sun));
  flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.offer-icon svg{width:26px;height:26px;fill:#fff;}
.offer-icon-photo{
  width:52px;height:52px;
  border-radius:14px;
  object-fit:cover;
  flex-shrink:0;
  border:1px solid var(--line-card);
  background:#fff;
}
.offer-name{
  font-size:17px;
  font-weight:700;
  margin:0 0 2px;
  font-family:"Fredoka",sans-serif;
}
.offer-sub{
  font-size:13px;
  color:var(--ink-soft);
  margin:0;
}
.offer-points{
  list-style:none;
  padding:0;
  margin:0 0 20px;
}
.offer-points li{
  font-size:14.5px;
  line-height:1.55;
  padding-left:24px;
  position:relative;
  margin-bottom:9px;
  color:var(--ink);
}
.offer-points li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--sage);
  font-weight:700;
}
.cta-btn{
  display:block;
  width:100%;
  text-align:center;
  padding:16px;
  border-radius:999px;
  background:var(--coral);
  color:#fff;
  font-size:16px;
  font-weight:700;
  text-decoration:none;
  border:none;
  cursor:pointer;
  font-family:"Nunito",sans-serif;
}
.cta-btn:hover{background:var(--coral-deep);}
.fine-print{
  font-size:12px;
  line-height:1.6;
  color:var(--ink-soft);
  margin-top:18px;
}
.restart{
  text-align:center;
  margin-top:18px;
}
.restart a, .restart button{
  background:none;border:none;color:var(--ink-soft);
  font-size:13px;text-decoration:underline;cursor:pointer;
  font-family:inherit;
}

/* ---- product page ---- */
.product-hero{
  text-align:center;
  padding:4px 4px 8px;
}
.product-illustration{
  margin:0 auto 14px;
  width:150px;
}
.product-photo{
  display:block;
  margin:0 auto 16px;
  width:180px;
  height:auto;
  border-radius:16px;
  box-shadow:0 10px 26px rgba(58,46,40,.14);
}
.product-eyebrow{
  font-size:12px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--ink-soft);
  margin:0 0 6px;
}
.product-hero h1{
  font-size:24px;
  line-height:1.32;
  margin:0 0 6px;
}
.product-sub{
  font-size:14px;
  color:var(--ink-soft);
  margin:0 0 4px;
}
.product-desc{
  font-size:15px;
  line-height:1.65;
  color:var(--ink);
  text-align:left;
  margin:22px 0 20px;
}
.product-note{
  font-size:11.5px;
  color:var(--ink-soft);
  text-align:center;
  margin-top:8px;
}
.back-link{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  color:var(--ink-soft);
  text-decoration:none;
  margin-bottom:18px;
}
.back-link:hover{color:var(--coral-deep);}

/* ---- lead form ---- */
.lead-card{
  border:1.5px solid var(--line-card);
  border-radius:24px;
  padding:26px;
  background:var(--cream-deep);
  margin-bottom:22px;
}
.lead-card h3{
  font-family:"Fredoka",sans-serif;
  font-size:17px;
  font-weight:600;
  margin:4px 0 8px;
}
.lead-note{
  font-size:13.5px;
  line-height:1.55;
  color:var(--ink-soft);
  margin:0 0 18px;
}
.lead-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"]{
  width:100%;
  padding:13px 16px;
  border-radius:14px;
  border:1.5px solid var(--line-card);
  background:#fff;
  font-family:"Nunito",sans-serif;
  font-size:14.5px;
  color:var(--ink);
}
.lead-form input::placeholder{color:#B0A092;}
.lead-form input:focus{border-color:var(--coral); outline:none;}
.consent-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:12.5px;
  line-height:1.5;
  color:var(--ink-soft);
  margin:6px 0 4px;
}
.consent-row input[type="checkbox"]{
  margin-top:3px;
  flex-shrink:0;
  width:16px;height:16px;
  accent-color:var(--coral);
}
.lead-form .btn-primary{
  margin-top:4px;
}
.lead-success{
  background:#EAF5EE;
  border:1px solid #BFE2CC;
  color:#2E6B45;
  border-radius:14px;
  padding:14px 16px;
  font-size:14px;
  font-weight:600;
  text-align:center;
}
.lead-error{
  background:#FDECEA;
  border:1px solid #F3C2BA;
  color:#A63B2A;
  border-radius:14px;
  padding:12px 16px;
  font-size:13px;
  text-align:center;
  margin-top:10px;
}

/* ---- legal pages ---- */
.legal h1{font-family:"Fredoka",sans-serif; font-size:25px; margin:0 0 6px;}
.legal .updated{font-size:12px; color:var(--ink-soft); margin:0 0 24px;}
.legal h2{font-family:"Fredoka",sans-serif; font-size:15.5px; font-weight:600; margin:26px 0 8px;}
.legal p, .legal li{font-size:14.5px; line-height:1.65; color:var(--ink);}
.legal ul{padding-left:20px;}
.placeholder{
  background:#FFE9C6;
  border:1px dashed #E0A94E;
  color:#7A5A1E;
  padding:2px 7px;
  border-radius:8px;
  font-size:.94em;
}

/* ---- footer ---- */
.site-footer{
  padding:24px 16px 44px;
  display:flex;
  justify-content:center;
}
.footer-inner{
  width:100%;
  max-width:680px;
  text-align:center;
}
.footer-links{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.footer-links a{
  font-size:13px;
  font-weight:700;
  color:var(--ink-soft);
  text-decoration:none;
}
.footer-links a:hover{color:var(--coral-deep);}
.footer-note{
  font-size:11.5px;
  line-height:1.6;
  color:#B0A092;
  max-width:560px;
  margin:0 auto;
}
