:root {
  --bg: #fffaf2;
  --bg-soft: #fff3db;
  --surface: rgba(255,255,255,0.82);
  --surface-strong: #ffffff;
  --ink: #2a1c12;
  --muted: #6b5646;
  --gold: #f4bf57;
  --gold-deep: #df9b17;
  --plum: #7c28d6;
  --plum-deep: #5b16ab;
  --peach: #ffe5cc;
  --line: rgba(75, 44, 21, 0.12);
  --ok: #1d7a4a;
  --ok-bg: rgba(29,122,74,.09);
  --ok-border: rgba(29,122,74,.16);
  --err: #8b1e2d;
  --err-bg: rgba(185, 50, 69, 0.10);
  --err-border: rgba(185, 50, 69, 0.18);
  --info: #4a3628;
  --info-bg: rgba(124,40,214,.08);
  --info-border: rgba(124,40,214,.15);
  --shadow: 0 20px 60px rgba(87, 48, 18, 0.14);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244,191,87,.26), transparent 34%),
    radial-gradient(circle at right 15%, rgba(124,40,214,.08), transparent 28%),
    linear-gradient(180deg, #fff7ea 0%, #fffaf2 42%, #ffffff 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.section { padding: 4.5rem 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(124,40,214,.08);
  color: var(--plum-deep);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.eyebrow::before {
  content: "✦";
  font-size: .9rem;
  color: var(--gold-deep);
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.7rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.7rem); }

p { margin: 0 0 1rem; color: var(--muted); font-size: 1.04rem; }
.lead { font-size: clamp(1.1rem, 2.2vw, 1.3rem); color: #4a3628; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 58px;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(91,22,171,.28);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(91,22,171,.34); }
.btn:disabled { opacity: .75; cursor: not-allowed; transform: none; }

.btn.secondary {
  background: linear-gradient(135deg, #ffd27a 0%, #f0b647 100%);
  color: #43230f;
  box-shadow: 0 14px 30px rgba(223,155,23,.22);
}

.btn.full { width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255,250,242,.75);
  border-bottom: 1px solid rgba(75,44,21,.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .95rem;
  font-weight: 800;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff9e9 0%, #f7c76a 62%, #f0b547 100%);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 10px 25px rgba(223,155,23,.18);
  overflow: hidden;
}

.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .7rem;
}

.hero { padding: 3.25rem 0 2rem; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy { padding: 1.2rem 0; }

.hero-card, .glass {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
}

.hero-points { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.35rem 0 1.8rem; }

.hero-points span {
  padding: .6rem .82rem;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(75,44,21,.08);
  font-size: .95rem;
  font-weight: 700;
  color: #4f392b;
}

.stat-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

.stat {
  flex: 1 1 160px;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(75,44,21,.07);
}

.stat strong { display: block; font-size: 1.2rem; color: var(--ink); }

.hero-visual { position: relative; padding: 1rem; }

.visual-wrap {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,247,236,.88));
}

.illustration {
  min-height: 540px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.95), transparent 26%),
    radial-gradient(circle at 80% 18%, rgba(255,234,200,.7), transparent 25%),
    linear-gradient(180deg, #fef5df 0%, #fff2d8 42%, #fff8ea 100%);
  border: 1px solid rgba(75,44,21,.06);
}

.sun-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -40px;
  top: -20px;
  background: radial-gradient(circle, rgba(255,212,122,.55), rgba(255,212,122,0));
}

.scene-floor {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(250,225,187,.0), rgba(242,205,148,.55));
}

.window {
  position: absolute;
  right: 8%;
  top: 9%;
  width: 28%;
  height: 34%;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(253,236,205,.82));
  border: 10px solid rgba(255,255,255,.72);
  box-shadow: inset 0 0 0 1px rgba(75,44,21,.06);
}

.window::before, .window::after {
  content: "";
  position: absolute;
  background: rgba(75,44,21,.07);
}

.window::before { width: 2px; height: 100%; left: calc(50% - 1px); top: 0; }
.window::after { height: 2px; width: 100%; left: 0; top: calc(50% - 1px); }

.desk {
  position: absolute;
  left: 12%;
  bottom: 13%;
  width: 58%;
  height: 14%;
  border-radius: 24px;
  background: linear-gradient(180deg, #f0b567, #cf7c3b);
  box-shadow: 0 24px 30px rgba(128,66,18,.2);
}

.desk::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%; top: 18%;
  height: 18%;
  border-radius: 10px;
  background: rgba(255,255,255,.2);
}

.chair {
  position: absolute;
  right: 19%;
  bottom: 12%;
  width: 15%;
  height: 18%;
  border-radius: 22px 22px 12px 12px;
  background: linear-gradient(180deg, #b077ff, #7a31d9);
}

.books-stack {
  position: absolute;
  left: 17%;
  bottom: 26%;
  width: 24%;
  display: grid;
  gap: .5rem;
}

.books-stack span {
  height: 26px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(101,62,22,.14);
}

.books-stack span:nth-child(1) { background: linear-gradient(90deg, #ffcf65, #ffd98b); width: 88%; }
.books-stack span:nth-child(2) { background: linear-gradient(90deg, #ff9c6e, #ffc19f); width: 100%; }
.books-stack span:nth-child(3) { background: linear-gradient(90deg, #68b4ff, #a3d4ff); width: 93%; }

.mom { position: absolute; right: 22%; bottom: 19%; width: 23%; height: 48%; }
.mom .head {
  position: absolute;
  width: 25%;
  aspect-ratio: 1;
  border-radius: 50%;
  left: 35%;
  top: 3%;
  background: linear-gradient(180deg, #f3c79f, #e7b285);
  box-shadow: inset 0 -5px 0 rgba(181,116,77,.16);
  z-index: 2;
}
.mom .hair {
  position: absolute;
  width: 35%;
  height: 20%;
  border-radius: 50% 50% 44% 44%;
  left: 31%;
  top: 0;
  background: #6a412e;
  z-index: 3;
}
.mom .body {
  position: absolute;
  left: 21%;
  top: 18%;
  width: 58%;
  height: 39%;
  border-radius: 35px;
  background: linear-gradient(180deg, #d79a58, #b46d35);
}
.mom .skirt {
  position: absolute;
  left: 15%;
  top: 44%;
  width: 72%;
  height: 31%;
  border-radius: 36px 36px 18px 18px;
  background: linear-gradient(180deg, #7e33df, #5c18ac);
}
.mom .arm { position: absolute; width: 12%; height: 24%; border-radius: 18px; background: #efbf95; top: 30%; }
.mom .arm.left { left: 16%; transform: rotate(20deg); }
.mom .arm.right { right: 17%; transform: rotate(-30deg); }
.mom .leg { position: absolute; width: 12%; height: 26%; border-radius: 18px; background: #cc8751; bottom: 2%; }
.mom .leg.left { left: 27%; transform: rotate(10deg); }
.mom .leg.right { right: 27%; transform: rotate(-6deg); }

.child { position: absolute; left: 39%; bottom: 20%; width: 16%; height: 28%; }
.child .head {
  position: absolute;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  left: 34%;
  top: 0;
  background: linear-gradient(180deg, #f1c08f, #e0ac7c);
}
.child .hair {
  position: absolute;
  width: 40%;
  height: 18%;
  border-radius: 50%;
  left: 31%;
  top: -2%;
  background: #7b4b30;
}
.child .body {
  position: absolute;
  left: 22%;
  top: 20%;
  width: 56%;
  height: 34%;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffd56f, #f3b83e);
}
.child .legs {
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: 3%;
  height: 25%;
  border-radius: 18px;
  background: #e7b180;
}

.plan-card {
  position: absolute;
  left: 10%;
  top: 8%;
  width: 34%;
  padding: 1rem;
  background: rgba(255,255,255,.88);
  border-radius: 18px;
  border: 1px solid rgba(75,44,21,.08);
  box-shadow: 0 20px 30px rgba(96,60,28,.12);
}
.plan-card strong { display: block; margin-bottom: .35rem; }

.plan-lines { display: grid; gap: .55rem; margin-top: .65rem; }
.plan-lines span { height: 10px; border-radius: 999px; background: linear-gradient(90deg, rgba(124,40,214,.25), rgba(244,191,87,.35)); }

.logo-orb {
  position: absolute;
  right: 6%;
  bottom: 6%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff7e0, #f7c76a 65%, #f0b547 100%);
  padding: .5rem;
  box-shadow: 0 12px 30px rgba(223,155,23,.25);
}
.logo-orb img { width: 100%; height: 100%; object-fit: contain; }

.form-card { padding: 1.25rem; }
.form-card h3 { margin-bottom: .45rem; }
.form-grid { display: grid; gap: .85rem; margin-top: 1rem; }

label { font-size: .92rem; font-weight: 700; color: #4f392b; }

input,
select {
  width: 100%;
  min-height: 56px;
  border-radius: 15px;
  border: 1px solid rgba(75,44,21,.12);
  padding: 0 1rem;
  font-size: 1rem;
  background: rgba(255,255,255,.92);
  color: var(--ink);
}

input:focus,
select:focus {
  outline: 2px solid rgba(124,40,214,.18);
  border-color: rgba(124,40,214,.3);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--plum-deep) 50%),
    linear-gradient(135deg, var(--plum-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 24px,
    calc(100% - 16px) 24px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.secure {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--muted);
}

.secure strong { color: var(--ink); }

.message {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid transparent;
}

.message.show { display: block; }
.message.success { background: var(--ok-bg); color: #185b38; border-color: var(--ok-border); }
.message.error { background: var(--err-bg); color: var(--err); border-color: var(--err-border); }
.message.info { background: var(--info-bg); color: var(--info); border-color: var(--info-border); }

.section-alt { background: linear-gradient(180deg, rgba(255,244,223,.65), rgba(255,255,255,0)); }

.pain-grid, .benefit-grid, .trust-grid, .objection-grid, .cta-grid, .footer-grid {
  display: grid;
  gap: 1.15rem;
}

.pain-grid { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 1.5rem; }
.benefit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 1.6rem; }
.trust-grid { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 1.5rem; }
.objection-grid { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 1.5rem; }

.card {
  padding: 1.4rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(95,63,31,.06);
}

.card strong { color: var(--ink); }

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: linear-gradient(180deg, #fff3d2, #ffe4b1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  margin-bottom: .8rem;
}

ul.clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .95rem;
}

ul.clean li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: .8rem;
  align-items: start;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
}

ul.clean li span:first-child {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(29,122,74,.12);
  color: var(--ok);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.mechanism {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem;
}

.mock {
  border-radius: 24px;
  padding: 1.1rem;
  background: linear-gradient(180deg, #fff8ea, #ffffff);
  border: 1px solid var(--line);
}

.dashboard {
  min-height: 360px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffefb, #fff3d8);
  border: 1px solid rgba(75,44,21,.08);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.dashboard .top { display: flex; gap: .65rem; margin-bottom: 1rem; }
.dashboard .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(124,40,214,.6); }
.dashboard .row { display: grid; grid-template-columns: 1fr .7fr; gap: .8rem; margin-bottom: .8rem; }

.dashboard .panel, .dashboard .tile {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(75,44,21,.08);
  box-shadow: 0 8px 20px rgba(75,44,21,.05);
}

.dashboard .panel { min-height: 80px; padding: .8rem; }
.dashboard .tile { min-height: 120px; padding: .8rem; }

.bars { display: grid; gap: .5rem; }
.bars span { height: 10px; border-radius: 999px; background: linear-gradient(90deg, rgba(124,40,214,.22), rgba(244,191,87,.42)); }

.quote {
  padding: 1.25rem;
  border-left: 5px solid var(--gold);
  background: #fffaf1;
  border-radius: 0 18px 18px 0;
  color: #513b2b;
}

.cta-band {
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(135deg, #fff3d0 0%, #ffe6bd 45%, #fdf9f1 100%);
}

.footer-box {
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(124,40,214,.06), rgba(244,191,87,.08));
}

.site-footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: .95rem;
  text-align: center;
}

.tiny { font-size: .88rem; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hp-wrap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 980px) {
  .hero-grid, .mechanism, .cta-band { grid-template-columns: 1fr; }
  .pain-grid, .benefit-grid, .trust-grid, .objection-grid { grid-template-columns: 1fr; }
  .illustration { min-height: 470px; }
  .topbar-inner { min-height: 70px; }
}

@media (max-width: 720px) {
  .section { padding: 3.6rem 0; }
  .hero { padding-top: 1.6rem; }
  .illustration { min-height: 420px; }
  .plan-card { width: 54%; }
  .logo-orb { width: 84px; height: 84px; }
  .brand-text span { display: none; }
}

.form-card-offset { margin-top: 1rem; }
.quote-offset { margin-top: 1.25rem; }
.clean-offset { margin-top: 1.25rem; }
.dot-medium { opacity: .7; }
.dot-light { opacity: .4; }
.bars-offset { margin-top: .7rem; }
.cta-title { margin-top: .55rem; }
.brand-centered { justify-content: center; }
.w-48 { width: 48%; }
.w-52 { width: 52%; }
.w-56 { width: 56%; }
.w-58 { width: 58%; }
.w-60 { width: 60%; }
.w-62 { width: 62%; }
.w-68 { width: 68%; }
.w-70 { width: 70%; }
.w-72 { width: 72%; }
.w-74 { width: 74%; }
.w-76 { width: 76%; }
.w-82 { width: 82%; }
.w-85 { width: 85%; }
.w-86 { width: 86%; }
.w-88 { width: 88%; }
.w-92 { width: 92%; }