:root {
  --paper: #f6f2ea;
  --paper-2: #eee8dd;
  --ink: #19171c;
  --muted: #67616b;
  --line: rgba(25, 23, 28, .15);
  --purple: #b48cff;
  --purple-deep: #7e4ad8;
  --orange: #dd5d18;
  --white: #fffdf8;
  --success: #287c58;
  --danger: #b23a3a;
  --radius: 24px;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(30, 20, 36, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--purple-deep); outline-offset: 3px; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(calc(100% - 40px), var(--max));
  height: 92px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; gap: 12px; align-items: center; text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .13em; }
.brand-mark { display: grid; width: 38px; aspect-ratio: 1; place-items: center; border-radius: 12px; color: var(--white); background: var(--ink); font-size: .72rem; letter-spacing: -.04em; box-shadow: 7px 7px 0 var(--purple); }

.button {
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary { color: var(--white); background: var(--ink); box-shadow: 0 12px 24px rgba(25, 23, 28, .15); }
.button-primary:hover { background: #2d2931; box-shadow: 0 16px 32px rgba(25, 23, 28, .22); }
.button-ghost { border-color: var(--ink); color: var(--ink); background: transparent; box-shadow: none; }
.button-small { min-height: 42px; padding: 9px 17px; font-size: .84rem; }
.button-light { color: var(--ink); background: var(--white); box-shadow: 8px 8px 0 var(--purple); }
.button-full { width: 100%; }

.hero {
  min-height: 820px;
  padding: 142px max(24px, calc((100vw - var(--max)) / 2)) 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 4% 85%, rgba(180, 140, 255, .26), transparent 28%),
    linear-gradient(115deg, var(--paper) 0%, #fbf8f2 100%);
}
.hero::before { content: "TEMPO"; position: absolute; right: -42px; top: 38%; color: transparent; font-size: clamp(6rem, 14vw, 13rem); font-weight: 900; letter-spacing: -.08em; -webkit-text-stroke: 1px rgba(25,23,28,.08); transform: rotate(90deg); pointer-events: none; }
.hero-copy { position: relative; z-index: 2; max-width: 700px; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--purple-deep); box-shadow: 0 0 0 6px rgba(180,140,255,.25); }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.045em; line-height: .98; }
h1 { margin: 0; font-size: clamp(4rem, 6.6vw, 7.2rem); }
h1 em, h2 em { color: var(--purple-deep); font-weight: 500; }
.hero-lead { max-width: 620px; margin: 30px 0 0; font-size: clamp(1.05rem, 1.6vw, 1.32rem); color: #49434c; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 20px; }
.microcopy { max-width: 180px; color: var(--muted); font-size: .76rem; line-height: 1.4; }
.hero-visual { position: relative; z-index: 2; justify-self: end; width: min(100%, 480px); }
.portrait-frame { position: relative; border-radius: 240px 240px 30px 30px; background: var(--orange); box-shadow: var(--shadow); }
.portrait-frame::before { content: ""; position: absolute; inset: -13px 20px 22px -13px; z-index: -1; border: 2px solid var(--ink); border-radius: inherit; }
.portrait-frame img { width: 100%; height: min(720px, 72vh); min-height: 620px; object-fit: cover; object-position: 50% 24%; border-radius: inherit; }
.portrait-label { position: absolute; left: -48px; bottom: 28px; width: 260px; padding: 16px 20px; border-radius: 15px; color: var(--ink); background: var(--white); box-shadow: 8px 8px 0 var(--purple); font-size: .82rem; line-height: 1.42; transform: rotate(-2deg); }
.scribble { position: absolute; top: 30px; right: -70px; padding: 7px 12px; border-radius: 999px; color: var(--white); background: var(--ink); font-family: "Segoe Print", "Comic Sans MS", cursive; font-size: .84rem; transform: rotate(8deg); }

.trust-bar { min-height: 78px; padding: 20px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; background: var(--purple); font-size: .77rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.trust-bar span + span { padding-left: 24px; border-left: 1px solid rgba(25,23,28,.25); }

.pattern-section { padding: 120px 24px; color: var(--white); background: var(--ink); text-align: center; }
.pattern-inner { max-width: 960px; margin: 0 auto; }
.section-number { color: var(--purple); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
blockquote { margin: 35px auto 30px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 5.4vw, 5.8rem); letter-spacing: -.05em; line-height: 1; }
blockquote strong { color: var(--purple); font-weight: inherit; }
.pattern-inner > p:last-child { max-width: 620px; margin: 0 auto; color: #cfc8d2; font-size: 1.02rem; }

.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 130px 0; }
.section-heading { max-width: 820px; margin-bottom: 62px; }
.section-heading h2, .story h2, .inside h2, .access h2, .faq h2, .demo-card h2, .legal-hero h1 { margin: 0; font-size: clamp(3rem, 5.2vw, 5.5rem); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.situation-card { min-height: 330px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; background: rgba(255,255,255,.33); transition: transform .25s ease, background .25s ease; }
.situation-card:hover { transform: translateY(-6px); background: var(--white); }
.situation-card:nth-child(2) { transform: translateY(24px); }
.situation-card:nth-child(2):hover { transform: translateY(18px); }
.card-index { display: inline-grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: var(--purple); font-size: .75rem; font-weight: 850; }
.situation-card h3 { margin: auto 0 12px; font-size: 1.35rem; }
.situation-card p { margin: 0; color: var(--muted); }

.story { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; border-top: 1px solid var(--line); }
.story-aside { min-height: 610px; position: relative; border-radius: var(--radius); background: var(--purple); overflow: hidden; }
.story-aside::after { content: ""; position: absolute; width: 250px; height: 250px; right: -40px; bottom: -50px; border: 55px solid rgba(255,255,255,.18); border-radius: 50%; }
.vertical-note { margin: 0; padding: 36px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 4vw, 4rem); line-height: .95; letter-spacing: -.04em; }
.quote-chip { position: absolute; z-index: 1; right: 24px; bottom: 36px; max-width: 270px; padding: 22px; color: var(--white); background: var(--ink); border-radius: 16px; transform: rotate(-3deg); }
.story-copy { padding-top: 12px; }
.story-copy > p:not(.eyebrow):not(.signature) { color: #47414a; font-size: 1.08rem; }
.signature { margin-top: 32px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-style: italic; }

.inside { width: 100%; padding-inline: max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; color: var(--white); background: #242027; }
.inside-intro { position: sticky; top: 70px; align-self: start; }
.inside-intro > p:last-child { max-width: 530px; color: #c9c2cc; }
.benefit-list { border-top: 1px solid rgba(255,255,255,.18); }
.benefit { padding: 30px 0; display: grid; grid-template-columns: 70px 1fr; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.18); }
.benefit > span { color: var(--purple); font-size: .74rem; font-weight: 850; letter-spacing: .1em; }
.benefit h3 { margin: 0 0 8px; font-size: 1.35rem; }
.benefit p { margin: 0; color: #bdb5c0; }

.clarity-demo { padding: 120px 24px; background: var(--purple); }
.demo-card { width: min(900px, 100%); margin: 0 auto; padding: clamp(30px, 6vw, 76px); border: 1px solid rgba(25,23,28,.2); border-radius: 34px; background: var(--white); box-shadow: 14px 14px 0 var(--ink); }
.demo-question { margin: 36px 0 8px; font-size: 1.4rem; font-weight: 800; }
.demo-card > p:not(.eyebrow):not(.demo-question) { color: var(--muted); font-size: 1.08rem; }
.demo-takeaway { margin-top: 32px; padding-top: 24px; display: grid; grid-template-columns: 120px 1fr; gap: 20px; border-top: 1px solid var(--line); }
.demo-takeaway span { font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.demo-takeaway strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; line-height: 1.15; }

.steps { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.steps .section-heading { position: sticky; top: 70px; }
.step-list { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.step-list li { min-height: 170px; padding: 30px 0; display: grid; grid-template-columns: 74px 1fr; gap: 24px; border-top: 1px solid var(--line); }
.step-list li:last-child { border-bottom: 1px solid var(--line); }
.step-list li > span { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; color: var(--white); background: var(--ink); font-weight: 850; }
.step-list h3 { margin: 3px 0 8px; font-size: 1.35rem; }
.step-list p { margin: 0; color: var(--muted); }

.access { width: 100%; padding-inline: max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1fr minmax(400px, .8fr); gap: 80px; align-items: center; background: #e7ddf8; }
.access-copy > p:not(.eyebrow) { max-width: 600px; color: #50495a; font-size: 1.06rem; }
.check-list { margin: 30px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.check-list li { padding: 8px 12px; border: 1px solid rgba(25,23,28,.2); border-radius: 999px; font-size: .77rem; font-weight: 750; }
.check-list li::before { content: "✓"; margin-right: 6px; }
.lead-form { padding: clamp(24px, 4vw, 42px); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.form-head { margin-bottom: 30px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.form-head span { color: var(--purple-deep); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.form-head strong { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 7px; font-size: .84rem; font-weight: 800; }
.field label span { color: var(--muted); font-weight: 500; }
.field input { width: 100%; height: 54px; padding: 0 15px; border: 1px solid #cfc8d2; border-radius: 12px; color: var(--ink); background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus { outline: none; border-color: var(--purple-deep); box-shadow: 0 0 0 4px rgba(180,140,255,.18); }
.field input[aria-invalid="true"] { border-color: var(--danger); }
.field-error { min-height: 18px; display: block; padding-top: 4px; color: var(--danger); font-size: .73rem; }
.check-field { margin: 13px 0; display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: .73rem; cursor: pointer; }
.check-field input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--purple-deep); }
.form-error { padding: 12px; border-radius: 10px; color: var(--danger); background: #fff0f0; font-size: .8rem; }
.privacy-note { margin: 14px auto 0; max-width: 390px; color: var(--muted); font-size: .7rem; text-align: center; }
.hp-field { position: absolute !important; left: -10000px !important; opacity: 0 !important; }
.lead-form.is-loading button[type="submit"] { pointer-events: none; opacity: .7; }
.lead-form.is-loading button[type="submit"]::before { content: ""; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.35); border-top-color: white; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.faq { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: start; }
.faq .section-heading { position: sticky; top: 70px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 80px; padding: 24px 44px 24px 0; position: relative; display: flex; align-items: center; font-size: 1.05rem; font-weight: 780; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 7px; top: 50%; font-size: 1.6rem; font-weight: 400; transform: translateY(-50%); transition: transform .2s; }
.accordion details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.accordion details p { margin: -5px 48px 25px 0; color: var(--muted); }

.final-cta { padding: 130px 24px; color: var(--white); background: var(--purple-deep); text-align: center; }
.final-cta > div { max-width: 1000px; margin: 0 auto; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { margin: 0 0 40px; font-size: clamp(3.4rem, 7vw, 7.5rem); }
.final-cta h2 em { color: var(--white); text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 9px; }

.risk-strip { padding: 36px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 180px 1fr auto; gap: 30px; align-items: start; color: #c6bec8; background: #211e23; font-size: .72rem; }
.risk-strip strong { color: var(--white); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.risk-strip p { margin: 0; }
.risk-strip a { color: var(--white); font-weight: 750; white-space: nowrap; }

.site-footer { padding: 56px max(24px, calc((100vw - var(--max)) / 2)) 34px; color: #bdb5c0; background: #161418; }
.footer-top { padding-bottom: 38px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand { color: var(--white); }
.footer-brand p { max-width: 440px; font-size: .8rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 25px; align-content: start; }
.footer-links a, .footer-links button { padding: 0; border: 0; color: var(--white); background: none; font-size: .8rem; text-align: left; cursor: pointer; }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 24px; font-size: .7rem; }
.footer-bottom p { margin: 0; }
.legal-data { color: #8f8792; }

.mobile-sticky { display: none; }

.cookie-banner { position: fixed; z-index: 100; right: 18px; bottom: 18px; width: min(580px, calc(100% - 36px)); padding: 23px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; color: var(--white); background: rgba(24,21,26,.97); box-shadow: 0 25px 70px rgba(0,0,0,.32); backdrop-filter: blur(14px); }
.cookie-banner[hidden], .consent-modal[hidden] { display: none; }
.cookie-main > div:first-child { display: flex; align-items: center; gap: 12px; }
.cookie-main h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.cookie-icon { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--purple); }
.cookie-main p { color: #c9c1cc; font-size: .8rem; }
.cookie-actions { display: flex; justify-content: flex-end; gap: 8px; }
.cookie-actions .button { min-height: 42px; padding: 8px 14px; font-size: .76rem; }
.cookie-actions .button-ghost { border-color: rgba(255,255,255,.35); color: var(--white); }

.consent-modal { position: fixed; z-index: 110; inset: 0; padding: 18px; display: grid; place-items: center; background: rgba(18,15,20,.68); backdrop-filter: blur(8px); }
.modal-card { position: relative; width: min(610px, 100%); max-height: calc(100vh - 36px); overflow-y: auto; padding: clamp(24px, 5vw, 44px); border-radius: 26px; background: var(--white); box-shadow: var(--shadow); }
.modal-card h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 2.5rem; }
.modal-card > p:not(.eyebrow) { color: var(--muted); }
.modal-close { position: absolute; top: 14px; right: 17px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--paper-2); font-size: 1.6rem; cursor: pointer; }
.consent-row { min-height: 76px; padding: 14px 0; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.consent-row div { display: grid; gap: 2px; }
.consent-row small { color: var(--muted); }
.consent-row input[role="switch"] { width: 46px; height: 25px; accent-color: var(--purple-deep); }
.always-on { color: var(--success); font-size: .72rem; font-weight: 850; }

/* Pagine legali */
.legal-page { background: #faf7f1; }
.legal-page .site-header { position: relative; left: auto; transform: none; margin: 0 auto; }
.legal-main { width: min(calc(100% - 40px), 950px); margin: 0 auto; padding: 70px 0 120px; }
.legal-hero { padding-bottom: 45px; border-bottom: 1px solid var(--line); }
.legal-hero .eyebrow { color: var(--purple-deep); }
.legal-hero p:last-child { max-width: 680px; color: var(--muted); }
.legal-content { padding-top: 50px; display: grid; grid-template-columns: 240px 1fr; gap: 65px; }
.legal-toc { position: sticky; top: 30px; align-self: start; padding: 20px; border-radius: 16px; background: var(--paper); }
.legal-toc strong { display: block; margin-bottom: 12px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.legal-toc a { display: block; padding: 6px 0; color: var(--muted); font-size: .78rem; text-decoration: none; }
.legal-body section { scroll-margin-top: 30px; }
.legal-body h2 { margin: 48px 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; letter-spacing: -.03em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { margin: 30px 0 8px; }
.legal-body p, .legal-body li { color: #56505a; }
.legal-body li + li { margin-top: 8px; }
.legal-note, .placeholder-alert { padding: 18px; border-radius: 13px; }
.legal-note { background: var(--paper); }
.placeholder-alert { border: 1px solid #e5b5a4; background: #fff1eb; color: #84351d; }
.legal-body table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.legal-body th, .legal-body td { padding: 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }

/* Thank you */
.thank-you { min-height: 100vh; padding: 100px 24px; display: grid; place-items: center; background: radial-gradient(circle at 80% 10%, rgba(180,140,255,.5), transparent 33%), var(--paper); }
.thank-card { width: min(980px, 100%); display: grid; grid-template-columns: 1fr .7fr; border-radius: 32px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.thank-copy { padding: clamp(32px, 6vw, 75px); }
.thank-copy h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6vw, 5.7rem); letter-spacing: -.05em; line-height: .95; }
.thank-copy > p { color: var(--muted); }
.thank-copy .thank-eyebrow { margin-top: 54px; }
.thank-next { margin: 30px 0; padding: 20px 0; border-block: 1px solid var(--line); }
.thank-next strong { display: block; margin-bottom: 5px; }
.thank-visual { min-height: 600px; position: relative; background: var(--orange); }
.thank-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; }
.thank-visual span { position: absolute; left: 20px; right: 20px; bottom: 20px; padding: 16px; border-radius: 13px; background: rgba(255,253,248,.93); font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; text-align: center; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero { min-height: auto; padding-top: 125px; grid-template-columns: 1fr .72fr; gap: 30px; }
  h1 { font-size: clamp(3.6rem, 8.5vw, 5.6rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .portrait-label { left: -25px; width: 230px; }
  .scribble { right: -10px; }
  .story, .inside, .steps, .faq { grid-template-columns: 1fr; gap: 45px; }
  .story-aside { min-height: 390px; }
  .inside-intro, .steps .section-heading, .faq .section-heading { position: static; }
  .access { grid-template-columns: 1fr; gap: 50px; }
  .legal-content { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 30px); height: 78px; }
  .site-header .button { display: none; }
  .brand { font-size: .68rem; }
  .brand-mark { width: 34px; border-radius: 10px; }
  .hero { padding: 108px 20px 52px; grid-template-columns: 1fr; gap: 50px; }
  .hero::before { display: none; }
  h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-lead { margin-top: 22px; font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .microcopy { max-width: none; align-self: center; text-align: center; }
  .hero-visual { width: calc(100% - 28px); justify-self: center; }
  .portrait-frame { border-radius: 180px 180px 22px 22px; }
  .portrait-frame img { height: 500px; min-height: 0; }
  .portrait-label { left: -10px; bottom: 18px; width: 218px; padding: 13px 15px; }
  .scribble { top: 5px; right: -20px; }
  .trust-bar { padding: 18px 20px; grid-template-columns: 1fr 1fr; gap: 15px 10px; font-size: .62rem; }
  .trust-bar span + span { padding-left: 0; border-left: 0; }
  .pattern-section { padding: 85px 20px; }
  blockquote { font-size: clamp(2.55rem, 12vw, 4rem); }
  .section { width: calc(100% - 40px); padding: 88px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .story h2, .inside h2, .access h2, .faq h2, .demo-card h2 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .card-grid { grid-template-columns: 1fr; }
  .situation-card { min-height: 250px; }
  .situation-card:nth-child(2), .situation-card:nth-child(2):hover { transform: none; }
  .story { gap: 36px; }
  .story-aside { min-height: 360px; }
  .inside, .access { width: 100%; padding-inline: 20px; }
  .benefit { grid-template-columns: 42px 1fr; gap: 10px; }
  .clarity-demo { padding: 75px 20px 85px; }
  .demo-card { padding: 27px; box-shadow: 9px 9px 0 var(--ink); }
  .demo-takeaway { grid-template-columns: 1fr; gap: 8px; }
  .steps { gap: 15px; }
  .step-list li { grid-template-columns: 54px 1fr; gap: 13px; }
  .access { gap: 38px; }
  .form-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .faq { gap: 15px; }
  .final-cta { padding: 95px 20px 110px; }
  .risk-strip { grid-template-columns: 1fr; gap: 12px; padding-bottom: 90px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .mobile-sticky { position: fixed; z-index: 50; left: 12px; right: 12px; bottom: 10px; min-height: 54px; padding: 14px 20px; border-radius: 999px; display: flex; align-items: center; justify-content: space-between; color: var(--white); background: var(--ink); box-shadow: 0 12px 35px rgba(0,0,0,.28); text-decoration: none; font-weight: 850; transition: opacity .2s, transform .2s; }
  .mobile-sticky.is-hidden { opacity: 0; pointer-events: none; transform: translateY(80px); }
  .cookie-banner { bottom: 76px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .button-primary { grid-column: 1 / -1; }
  .legal-main { padding-top: 40px; }
  .legal-hero h1 { font-size: 3.3rem; }
  .legal-toc { display: none; }
  .legal-body table { display: block; overflow-x: auto; }
  .thank-you { padding: 20px; }
  .thank-card { grid-template-columns: 1fr; }
  .thank-copy { padding: 36px 26px; }
  .thank-visual { min-height: 390px; order: -1; }
}
