/* ============================================================
   GOLDEN TOOLBOX — gold leaf sign shop americana
   ============================================================ */
:root {
  --paper:   #F6EFE3;
  --paper-2: #EFE5D2;
  --ink:     #221B12;
  --muted:   #6E5F49;
  --gold:    #C9962B;
  --gold-hi: #EFCB68;
  --gold-lo: #9A6E1B;
  --line:    rgba(34, 27, 18, 0.14);
  --line-2:  rgba(34, 27, 18, 0.3);
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --disp:    'Playfair Display', Georgia, serif;
  --body:    'Manrope', system-ui, -apple-system, sans-serif;
  --maxw:    1100px;
  --pad:     clamp(20px, 5vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad);
  background: rgba(246, 239, 227, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--disp); font-weight: 900; font-size: 20px; letter-spacing: 0.01em;
}
.brand-mark { flex: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 8px; padding: 13px 24px; cursor: pointer;
  font-family: var(--body); font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(to bottom, var(--gold-hi), var(--gold) 60%, var(--gold-lo));
  color: var(--ink); border-color: var(--gold-lo);
  box-shadow: 0 2px 14px rgba(201, 150, 43, 0.35);
}
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-line:hover { border-color: var(--ink); }
.btn-wide { width: 100%; padding: 16px 24px; font-size: 15px; }
.header-cta { padding: 10px 18px; font-size: 13px; }

/* ---------- shared section bits ---------- */
.section {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--pad);
  text-align: center;
}
.eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-lo); margin-bottom: 1.4rem;
}
.eyebrow .fl { width: 34px; height: 1px; background: var(--gold); position: relative; }
.eyebrow .fl::after {
  content: ""; position: absolute; top: -2.5px; width: 6px; height: 6px;
  background: var(--gold); transform: rotate(45deg);
}
.eyebrow .fl:first-child::after { right: 0; }
.eyebrow .fl:last-child::after { left: 0; }
h1, h2 { font-family: var(--disp); font-weight: 900; letter-spacing: -0.015em; line-height: 1.04; }
/* the signature: gold italics with a slow gold leaf sheen */
h1 em, h2 em, .statement em, .feature-copy h3 em, .sig {
  font-style: italic; font-weight: 700;
  background: linear-gradient(100deg, var(--gold-lo) 0%, var(--gold) 34%, var(--gold-hi) 50%, var(--gold) 66%, var(--gold-lo) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: goldSheen 7s ease-in-out infinite alternate;
}
.sig { font-family: var(--disp); font-size: 1.04em; }
@keyframes goldSheen { from { background-position: 0% 0; } to { background-position: 100% 0; } }
h2 { font-size: clamp(30px, 4.6vw, 52px); margin-bottom: 2.6rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  max-width: var(--maxw); margin: 0 auto; text-align: center;
  padding: clamp(56px, 8vw, 100px) var(--pad) clamp(30px, 4vw, 56px);
}
.hero > *:not(.ftool):not(.badge-spin) { position: relative; z-index: 1; }

/* ---------- floating tool stickers ---------- */
.ftool {
  position: absolute; z-index: 0; pointer-events: none;
  transform: translate3d(0, var(--py, 0px), 0);
  filter: drop-shadow(0 6px 14px rgba(34, 27, 18, 0.14));
}
.ftool svg { animation: floaty var(--fd, 5.5s) ease-in-out var(--fo, 0s) infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--fr1, -6deg)); }
  50%      { transform: translateY(-14px) rotate(var(--fr2, 6deg)); }
}
.ft1 { top: 13%; left: 4%;  --fd: 5.2s; --fo: 0s;    --fr1: -8deg;  --fr2: 4deg; }
.ft2 { top: 9%;  right: 5%; --fd: 6.1s; --fo: 0.7s;  --fr1: 6deg;   --fr2: -5deg; }
.ft3 { top: 52%; left: 2%;  --fd: 4.8s; --fo: 1.3s;  --fr1: -4deg;  --fr2: 9deg; }
.ft4 { top: 44%; right: 3%; --fd: 5.7s; --fo: 0.4s;  --fr1: 7deg;   --fr2: -6deg; }
.ft5 { bottom: 7%; left: 10%; --fd: 6.4s; --fo: 1.9s; --fr1: -7deg; --fr2: 5deg; }
.ft-dark { filter: none; opacity: 0.28; }
.fd1 { top: 14%; left: 5%; --fd: 6s;   --fr1: -8deg; --fr2: 6deg; }
.fd2 { bottom: 12%; right: 6%; --fd: 5.1s; --fo: 0.9s; --fr1: 7deg; --fr2: -7deg; }

/* ---------- spinning sticker badge ---------- */
.badge-spin {
  position: absolute; right: 4%; bottom: 2%; z-index: 2;
  width: 120px; height: 120px; display: block;
  filter: drop-shadow(0 8px 20px rgba(34, 27, 18, 0.18));
  transition: transform 0.35s var(--ease);
}
.badge-spin:hover { transform: scale(1.1) rotate(-6deg); }
.badge-rotor { animation: spinSlow 16s linear infinite; transform-origin: 60px 60px; }
.badge-spin:hover .badge-rotor { animation-duration: 5s; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.hero h1 { font-size: clamp(42px, 7.2vw, 84px); margin-bottom: 1.5rem; }
.hero-sub {
  max-width: 56ch; margin: 0 auto 2.2rem; color: var(--muted);
  font-size: clamp(15px, 1.8vw, 18px); line-height: 1.65;
}
.shimmer {
  font-weight: 700; display: inline-block;
  background: linear-gradient(90deg, #5A7D6B 0%, var(--gold-hi) 25%, #5A7D6B 50%, var(--gold-hi) 75%, #5A7D6B 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: greenGoldShimmer 3.2s ease-in-out infinite;
}
@keyframes greenGoldShimmer { from { background-position: 0% 0; } to { background-position: 100% 0; } }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 1.6rem; }

/* honest assurance bar */
.assure {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 26px; margin-bottom: 3rem;
}
.assure li {
  position: relative; padding-left: 22px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.assure li::before {
  content: "✓"; position: absolute; left: 0; font-weight: 700;
  background: linear-gradient(to bottom, var(--gold-hi), var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* hero scene: toolbox + activity notifications */
.hero-scene { position: relative; display: flex; justify-content: center; max-width: 760px; margin: 0 auto; }
.hero-box { display: flex; justify-content: center; }
.hero-box svg {
  max-width: min(320px, 70vw); height: auto;
  animation: boxRock 5.4s ease-in-out infinite;
  transform-origin: 50% 88%;
}
@keyframes boxRock {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  22%      { transform: rotate(-2.2deg) translateY(-3px); }
  50%      { transform: rotate(0deg) translateY(-7px); }
  78%      { transform: rotate(2.2deg) translateY(-3px); }
}
/* hover: the box gets excited */
.hero-scene:hover .hero-box svg { animation: boxJig 0.6s ease-in-out infinite; }
@keyframes boxJig {
  0%, 100% { transform: rotate(-3deg) translateY(-2px); }
  50%      { transform: rotate(3deg) translateY(-6px); }
}
.hero-box .ray { animation: rayPulse 2.6s var(--ease) infinite; transform-origin: center; }
.hero-box .r2 { animation-delay: 0.4s; }
.hero-box .r3 { animation-delay: 0.8s; }
@keyframes rayPulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
.notif {
  position: absolute; white-space: nowrap;
  background: #FDFAF3; border: 1.5px solid var(--line-2); border-radius: 100px;
  padding: 9px 16px; font-size: 12.5px; font-weight: 600; color: var(--ink);
  box-shadow: 0 8px 24px rgba(34, 27, 18, 0.14);
  opacity: 0;
  animation: notifIn 0.6s var(--ease) var(--nd, 0.8s) forwards,
             bob 4.5s ease-in-out calc(var(--nd, 0.8s) + 0.6s) infinite;
}
.notif b { color: var(--gold-lo); font-weight: 700; margin-right: 4px; }
.n1 { top: 4%; left: 0; --nd: 0.8s; }
.n1 b { color: var(--gold); letter-spacing: 2px; }
.n2 { top: 30%; right: 0; --nd: 1.5s; }
.n3 { bottom: 18%; left: 2%; --nd: 2.2s; }
.n4 { bottom: 2%; right: 4%; --nd: 2.9s; }
@keyframes notifIn {
  from { opacity: 0; transform: translateY(14px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-13px) rotate(-1.4deg); }
}

/* ---------- trades strip ---------- */
.strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--paper-2); overflow: hidden; padding: 16px 0;
}
.strip-track {
  display: inline-flex; align-items: center; gap: 28px; white-space: nowrap;
  will-change: transform; animation: strip 30s linear infinite;
  font-family: var(--disp); font-weight: 700; font-size: 15px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); padding-left: 28px;
}
.strip-track i {
  font-style: normal; color: var(--gold); font-size: 12px;
  display: inline-block; animation: spinSlow 7s linear infinite;
}
@keyframes strip { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- tools overview chips ---------- */
#tools { padding-bottom: clamp(20px, 3vw, 40px); }
.tool-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--line-2); border-radius: 100px; padding: 11px 20px;
  font-size: 14px; font-weight: 600;
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}
.chip b { font-family: var(--disp); font-style: italic; font-weight: 700; color: var(--gold-lo); }
.chip:hover {
  border-color: var(--gold); background: #FDFAF3;
  animation: wiggle 0.45s ease-in-out;
  transform: translateY(-2px);
}
@keyframes wiggle {
  0%, 100% { transform: translateY(-2px) rotate(0deg); }
  30%      { transform: translateY(-3px) rotate(-2.5deg); }
  70%      { transform: translateY(-3px) rotate(2.5deg); }
}

/* ---------- feature sections ---------- */
.tool-num {
  font-family: var(--disp); font-style: italic; font-weight: 700; font-size: 15px;
  color: var(--gold-lo); display: block; margin-bottom: 0.7rem;
  letter-spacing: 0.04em;
}
.feature { border-top: 1px solid var(--line); scroll-margin-top: 80px; }
.feature-alt { background: var(--paper-2); }
.feature-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 8vw, 100px) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.feature-alt .feature-inner { direction: rtl; }
.feature-alt .feature-inner > * { direction: ltr; }
.feature-copy h3 { font-family: var(--disp); font-weight: 900; font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 0.9rem; }
.feature-lead { color: var(--muted); font-size: clamp(15px, 1.7vw, 17px); line-height: 1.65; margin-bottom: 1.4rem; }
.feature-list { list-style: none; }
.feature-list li {
  position: relative; padding: 0.55rem 0 0.55rem 32px;
  font-size: 15px; font-weight: 500; border-top: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list li::before {
  content: "✓"; position: absolute; left: 4px; top: 0.5rem;
  font-weight: 700;
  background: linear-gradient(to bottom, var(--gold-hi), var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.feature-demo { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.demo-cap {
  font-family: var(--disp); font-style: italic; font-weight: 700; font-size: 14.5px;
  color: var(--gold-lo);
}

/* phone mockup */
.phone {
  width: min(330px, 88vw);
  background: #FDFAF3; border: 2px solid var(--ink); border-radius: 26px;
  padding: 40px 16px 20px; position: relative;
  box-shadow: 0 16px 40px rgba(34, 27, 18, 0.14);
  display: flex; flex-direction: column; gap: 9px;
}
.phone-bar {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 8px; border-radius: 100px; background: var(--line-2);
}
.msg {
  max-width: 85%; padding: 10px 14px; border-radius: 15px;
  font-size: 13.5px; line-height: 1.45;
}
.msg.out { background: var(--ink); color: var(--paper); align-self: flex-end; border-bottom-right-radius: 4px; }
.msg.in { background: var(--paper-2); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg-time { display: block; font-size: 10.5px; color: var(--muted); margin-bottom: 3px; }

/* review card */
.rev-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 15px; margin-top: 4px;
  box-shadow: 0 4px 14px rgba(34, 27, 18, 0.08);
}
.rev-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; }
.rev-text { font-size: 12.5px; line-height: 1.5; margin: 5px 0 7px; color: var(--ink); }
.rev-name { font-size: 11px; font-weight: 600; color: var(--muted); }

/* missed call banner */
.missed {
  background: rgba(160, 74, 42, 0.1); border: 1.5px solid rgba(160, 74, 42, 0.3);
  color: #A04A2A; border-radius: 10px; padding: 9px 13px;
  font-size: 12px; font-weight: 600; text-align: center;
}

/* calendar card */
.cal-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 15px; margin-top: 4px; display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 4px 14px rgba(34, 27, 18, 0.08);
}
.cal-title { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.cal-slot { font-size: 14px; font-weight: 600; }
.cal-slot b { color: #3F7A3F; font-weight: 700; margin-left: 6px; }

/* browser mockup */
.browser {
  width: min(400px, 88vw);
  background: #FDFAF3; border: 2px solid var(--ink); border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(34, 27, 18, 0.14);
}
.browser-dots { display: flex; gap: 6px; padding: 11px 14px; border-bottom: 1.5px solid var(--line); }
.browser-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.browser-hero {
  padding: 22px 18px; background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; gap: 3px;
}
.browser-hero b { font-family: var(--disp); font-weight: 900; font-size: 19px; }
.browser-stars { color: var(--gold-hi); font-size: 12.5px; font-weight: 600; }
.chatw { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.chat-btn {
  align-self: flex-start;
  background: linear-gradient(to bottom, var(--gold-hi), var(--gold) 60%, var(--gold-lo));
  color: var(--ink); font-size: 12.5px; font-weight: 700;
  border-radius: 100px; padding: 8px 16px; border: 1px solid var(--gold-lo);
}

/* task list */
.tasklist {
  width: min(360px, 88vw);
  background: #FDFAF3; border: 2px solid var(--ink); border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 16px 40px rgba(34, 27, 18, 0.14);
}
.tasklist-title {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-lo); margin-bottom: 10px;
}
.task {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-top: 1px solid var(--line);
  font-size: 14px; font-weight: 500;
}
.task b { color: #3F7A3F; }
.task span { margin-left: auto; font-size: 12px; color: var(--muted); }
.task-you {
  margin-top: 12px; font-family: var(--disp); font-style: italic; font-weight: 700;
  font-size: 16px; text-align: center;
  background: linear-gradient(to bottom, var(--gold-hi) 10%, var(--gold) 55%, var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- statement ---------- */
.statement {
  background: var(--ink); color: var(--paper);
  padding: clamp(70px, 10vw, 130px) var(--pad); text-align: center;
  position: relative; overflow: hidden;
}
.statement p { position: relative; z-index: 1; }
.statement p {
  font-family: var(--disp); font-weight: 700; font-size: clamp(24px, 3.8vw, 44px);
  line-height: 1.25; max-width: 24ch; margin: 0 auto;
}

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; }
.step {
  border-top: 3px solid var(--gold); padding: 22px 6px 0;
}
.step-num {
  font-family: var(--disp); font-style: italic; font-weight: 900; font-size: 34px;
  background: linear-gradient(to bottom, var(--gold-hi), var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 0.5rem;
  animation: numFloat 4.2s ease-in-out infinite;
  width: fit-content;
}
.step h3 {
  font-family: var(--body); font-weight: 600; font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.step p { color: var(--muted); font-size: 15px; }

/* ---------- faq ---------- */
.section-tight { padding-top: clamp(40px, 6vw, 72px); }
.faq {
  max-width: 760px; margin: 0 auto; text-align: left;
}
details {
  border-top: 1px solid var(--line); padding: 0;
}
details:last-child { border-bottom: 1px solid var(--line); }
details[open] { background: #FDFAF3; }
summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 6px;
  font-family: var(--disp); font-weight: 700; font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.3; color: var(--ink);
  transition: color 0.25s;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--gold-lo); }
summary::after {
  content: "+"; flex: none; font-family: var(--body); font-weight: 600;
  font-size: 22px; line-height: 1; color: var(--gold-lo);
  transition: transform 0.3s var(--ease);
}
details[open] summary::after { content: "−"; }
.faq p {
  color: var(--muted); font-size: 15.5px; line-height: 1.65;
  padding: 0 6px 20px; max-width: 64ch;
}
@media (prefers-reduced-motion: reduce) {
  summary::after { transition: none; }
}

/* ---------- contact ---------- */
.contact { max-width: 720px; }
.contact-sub { color: var(--muted); max-width: 52ch; margin: -1.2rem auto 2.4rem; font-size: 15.5px; }
#contact-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field label {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 7px;
}
.field .opt { color: var(--gold-lo); text-transform: none; letter-spacing: 0; }
.field input {
  width: 100%; padding: 13px 16px; border-radius: 8px;
  border: 1.5px solid var(--line-2); background: #FDFAF3; color: var(--ink);
  font-family: var(--body); font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input::placeholder { color: rgba(110, 95, 73, 0.5); }
.field input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 150, 43, 0.18);
}
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-note.ok { color: #3F7A3F; font-weight: 600; }
.form-note.err { color: #A04A2A; font-weight: 600; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line); background: var(--paper-2);
  text-align: center; padding: clamp(40px, 6vw, 64px) var(--pad) 34px;
}
.foot-rule { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 1.4rem; color: var(--gold); }
.foot-rule::before, .foot-rule::after { content: ""; width: 60px; height: 1px; background: var(--gold); }
.foot-brand { font-family: var(--disp); font-weight: 900; font-size: 21px; }
.foot-line { color: var(--muted); font-size: 14px; margin-top: 4px; }
.foot-contact {
  display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600;
  color: var(--gold-lo); border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.foot-contact:hover { border-color: var(--gold-lo); }
.foot-copy { color: var(--muted); font-size: 12px; margin-top: 1.6rem; opacity: 0.8; }

/* ---------- paper warmth ---------- */
body {
  background-image:
    radial-gradient(900px 480px at 50% -8%, rgba(239, 203, 104, 0.18), transparent 70%),
    radial-gradient(700px 520px at 100% 0%, rgba(201, 150, 43, 0.06), transparent 60%);
  background-repeat: no-repeat;
}

/* ---------- who's behind it ---------- */
.who-card {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: #FDFAF3; border: 1.5px solid var(--line); border-radius: 18px;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 44px);
  box-shadow: 0 16px 44px rgba(34, 27, 18, 0.10);
}
.who-avatar { width: 64px; margin: 0 auto 1.4rem; }
.who-avatar svg { animation: boxRock 6.2s ease-in-out infinite; transform-origin: 50% 90%; }
@keyframes numFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-5px) rotate(2deg); }
}
.step:nth-child(2) .step-num { animation-delay: 1.4s; }
.step:nth-child(3) .step-num { animation-delay: 2.8s; }
.who h2 { margin-bottom: 1.2rem; }
.who-lead {
  color: var(--muted); max-width: 52ch; margin: 0 auto;
  font-size: clamp(15px, 1.7vw, 17px); line-height: 1.65;
}
.who-sign {
  font-family: var(--disp); font-style: italic; font-weight: 700;
  color: var(--gold-lo); margin-top: 1.4rem; font-size: 16px;
}

/* ---------- form reassurance ---------- */
.form-reassure {
  display: flex; flex-wrap: wrap; gap: 6px 16px; justify-content: center;
  margin: 4px 0 16px; font-size: 12.5px; font-weight: 600; color: var(--muted);
}
.form-reassure span::before { content: "✓ "; color: var(--gold-lo); }

/* ---------- sticky mobile CTA ---------- */
.mobile-cta { display: none; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* checklist bullets cascade in after their section reveals */
.feature-list li { opacity: 0; transform: translateY(10px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in .feature-list li:nth-child(1) { transition-delay: 0.25s; }
.reveal.in .feature-list li:nth-child(2) { transition-delay: 0.45s; }
.reveal.in .feature-list li:nth-child(3) { transition-delay: 0.65s; }
.reveal.in .feature-list li { opacity: 1; transform: none; }

/* conversations play out message by message */
.feature-demo .phone > *:not(.phone-bar),
.feature-demo .chatw > *,
.feature-demo .tasklist > * {
  opacity: 0; transform: translateY(12px) scale(0.985);
}
.feature-demo.in .phone > *:not(.phone-bar),
.feature-demo.in .chatw > *,
.feature-demo.in .tasklist > * {
  animation: msgIn 0.55s var(--ease) forwards;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}
.feature-demo.in .phone > *:nth-child(2) { animation-delay: 0.3s; }
.feature-demo.in .phone > *:nth-child(3) { animation-delay: 0.95s; }
.feature-demo.in .phone > *:nth-child(4) { animation-delay: 1.6s; }
.feature-demo.in .phone > *:nth-child(5) { animation-delay: 2.25s; }
.feature-demo.in .phone > *:nth-child(6) { animation-delay: 2.9s; }
.feature-demo.in .chatw > *:nth-child(1) { animation-delay: 0.35s; }
.feature-demo.in .chatw > *:nth-child(2) { animation-delay: 1.0s; }
.feature-demo.in .chatw > *:nth-child(3) { animation-delay: 1.65s; }
.feature-demo.in .tasklist > *:nth-child(1) { animation-delay: 0.2s; }
.feature-demo.in .tasklist > *:nth-child(2) { animation-delay: 0.55s; }
.feature-demo.in .tasklist > *:nth-child(3) { animation-delay: 0.9s; }
.feature-demo.in .tasklist > *:nth-child(4) { animation-delay: 1.25s; }
.feature-demo.in .tasklist > *:nth-child(5) { animation-delay: 1.6s; }
.feature-demo.in .tasklist > *:nth-child(6) { animation-delay: 2.1s; }

/* the review stars glow once the card lands */
.feature-demo.in .rev-stars { animation: starGlow 2.2s ease-in-out 2.6s 2; }
@keyframes starGlow {
  0%, 100% { text-shadow: none; }
  50% { text-shadow: 0 0 12px rgba(201, 150, 43, 0.85); }
}

/* gold button shine sweep on hover */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -70%; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 250, 235, 0.65), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s var(--ease);
}
.btn-gold:hover::after { left: 125%; }
.btn-gold:hover { animation: btnPop 0.4s var(--ease); }
@keyframes btnPop {
  0%   { transform: translateY(0) scale(1, 1); }
  45%  { transform: translateY(-4px) scale(1.05, 0.94); }
  100% { transform: translateY(-2px) scale(1, 1); }
}

/* 3D tilt on demo devices (JS drives the transform) */
.tilt { transition: transform 0.18s ease-out; will-change: transform; }

/* marquee pauses for readers */
.strip:hover .strip-track { animation-play-state: paused; }

/* header lifts once you scroll */
.site-header { transition: box-shadow 0.35s var(--ease); }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(34, 27, 18, 0.1); }

/* ---------- responsive ---------- */
@media (max-width: 1150px) {
  .ft-mid { display: none; }
  .badge-spin { width: 96px; height: 96px; right: 2%; }
}
@media (max-width: 860px) {
  .feature-inner { grid-template-columns: 1fr; gap: 34px; }
  .feature-alt .feature-inner { direction: ltr; }
  .feature-copy { text-align: center; }
  .feature-list { text-align: left; max-width: 420px; margin: 0 auto; }
  .ftool { display: none; }
  .ft1, .ft2 { display: block; }
  .ft1 svg, .ft2 svg { width: 38px; height: 38px; }
  .ft1 { top: 6%; left: 3%; }
  .ft2 { top: 4%; right: 3%; }
  .badge-spin { display: none; }
  .ft-dark { display: block; opacity: 0.16; }
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .header-cta { padding: 9px 14px; font-size: 12px; }
  .hero-scene { flex-direction: column; align-items: center; gap: 10px; }
  .notif { position: static; animation: notifIn 0.6s var(--ease) var(--nd, 0.8s) forwards; }
  .n3, .n4 { display: none; }
  body { padding-bottom: 72px; }
  .mobile-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(246, 239, 227, 0.96); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
  }
  .mobile-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .feature-list li { opacity: 1 !important; transform: none !important; transition: none !important; }
  .strip-track { animation: none; }
  .hero-box .ray { animation: none; opacity: 1; }
  .notif,
  .feature-demo .phone > *,
  .feature-demo .chatw > *,
  .feature-demo .tasklist > * {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  h1 em, h2 em, .statement em, .feature-copy h3 em, .sig { animation: none; }
  .btn-gold::after { display: none; }
  .hero-box svg, .hero-scene:hover .hero-box svg,
  .ftool svg, .ftool,
  .badge-rotor, .strip-track i,
  .step-num, .who-avatar svg,
  .chip:hover, .btn-gold:hover {
    animation: none !important;
  }
  .tilt { transition: none; }
  html { scroll-behavior: auto; }
}
