:root {
  --cream-1: #fbf7ec;
  --cream-2: #efe4cb;
  --paper: #fffdf8;
  --paper-2: #f7f0df;
  --ink: #111116;
  --muted: #66625b;
  --soft: #888177;
  --red: #d8221c;
  --red-dark: #b91818;
  --gold: #c9a14a;
  --gold-dark: #8c6e2e;
  --violet: #5b5fef;
  --line: rgba(154, 116, 41, .24);
  --line-strong: rgba(154, 116, 41, .42);
  --shadow: 0 28px 70px -42px rgba(67, 42, 7, .55);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --wide: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(62% 35% at 4% 3%, rgba(231, 201, 119, .3), transparent 72%),
    radial-gradient(50% 28% at 97% 9%, rgba(91, 95, 239, .08), transparent 75%),
    linear-gradient(180deg, var(--cream-1), var(--cream-2));
  font-family: var(--sans);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}
button, input, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
audio { display: block; width: 100%; accent-color: var(--red); }
:focus-visible { outline: 3px solid rgba(91, 95, 239, .4); outline-offset: 3px; }
[hidden] { display: none !important; }
.container { width: min(calc(100% - 40px), var(--wide)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 14px; border-radius: 8px; background: var(--ink); color: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.topbar {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(154, 116, 41, .15);
  background: rgba(251, 247, 236, .88);
  backdrop-filter: blur(18px);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; white-space: nowrap; }
.brand-mark { width: 39px; height: 39px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); box-shadow: 0 8px 24px -16px rgba(140, 110, 46, .7); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.28); }
.brand-name { font: 600 21px/1 var(--serif); letter-spacing: .1px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > a { color: var(--muted); font-size: 14px; text-decoration: none; }
.nav-links > a:hover { color: var(--ink); }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 23px; border: 1px solid transparent; border-radius: 13px; font-weight: 750; line-height: 1.2; text-decoration: none; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: .62; transform: none; }
.button-primary { color: #fff; background: var(--red); box-shadow: 0 16px 30px -20px rgba(185, 24, 24, .9); }
.button-primary:hover { background: var(--red-dark); box-shadow: 0 20px 36px -20px rgba(185, 24, 24, .95); }
.button-ghost { border-color: var(--line-strong); background: rgba(255, 253, 248, .62); }
.button-ghost:hover { background: var(--paper); }
.button-small { min-height: 42px; padding: 10px 16px; font-size: 13px; }
.button-large { min-height: 56px; padding-inline: 28px; }
.button-block { width: 100%; }

.hero { position: relative; overflow: hidden; padding: 66px 0 56px; }
.hero::after { content: ""; position: absolute; z-index: -1; width: 570px; height: 570px; right: -320px; top: -170px; border: 1px solid rgba(201, 161, 74, .18); border-radius: 50%; box-shadow: 0 0 0 52px rgba(201, 161, 74, .045), 0 0 0 104px rgba(201, 161, 74, .025); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr); align-items: center; gap: clamp(44px, 7vw, 86px); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 7px 13px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--gold-dark); background: rgba(255, 253, 248, .55); font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 4px rgba(91, 95, 239, .1); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 670px; margin: 23px 0 20px; font: 600 clamp(43px, 6vw, 70px)/1.02 var(--serif); letter-spacing: -.025em; }
h1 em { color: var(--red); font-style: normal; }
.hero-lead { max-width: 650px; margin-bottom: 0; color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-points { display: grid; gap: 9px; margin: 25px 0 0; padding: 0; color: var(--muted); font-size: 14px; list-style: none; }
.hero-points li { display: flex; align-items: flex-start; gap: 9px; }
.hero-points span { color: var(--gold-dark); font-weight: 900; }

.assistant-shell { position: relative; overflow: hidden; border: 1px solid rgba(14, 14, 18, .11); border-radius: 30px; background: #f8f8fb; box-shadow: 0 40px 90px -45px rgba(30, 24, 31, .58), 0 12px 34px -28px rgba(14, 14, 18, .55); }
.assistant-shell::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--red), var(--gold), var(--violet)); }
.assistant-head { display: flex; align-items: center; gap: 12px; padding: 22px 22px 17px; border-bottom: 1px solid rgba(14, 14, 18, .07); background: rgba(255, 255, 255, .92); }
.assistant-avatar { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold-dark); background: var(--cream-1); font: 700 22px/1 var(--serif); }
.assistant-head > div:nth-child(2) { min-width: 0; flex: 1; }
.assistant-head h2 { margin: 0 0 2px; font: 700 16px/1.2 var(--sans); }
.assistant-head p { margin: 0; color: #76737d; font-size: 11px; }
.online-dot { width: 7px; height: 7px; display: inline-block; margin-right: 4px; border-radius: 50%; background: #35a85b; box-shadow: 0 0 0 3px rgba(53, 168, 91, .12); }
.assistant-progress { display: flex; align-items: center; gap: 12px; padding: 9px 18px; border-bottom: 1px solid rgba(14, 14, 18, .06); background: #fff; }
.assistant-progress span { min-width: 78px; color: var(--muted); font-size: 10px; font-weight: 700; }
.assistant-progress > div { height: 5px; overflow: hidden; flex: 1; border-radius: 999px; background: #ececf2; }
.assistant-progress i { width: 0; height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--violet), #8588ff); transition: width .28s ease; }
.assistant-body { min-height: 565px; max-height: 690px; overflow-y: auto; padding: 20px; scrollbar-color: rgba(91, 95, 239, .35) transparent; }
.assistant-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 20px; border-top: 1px solid rgba(14, 14, 18, .06); color: #85828a; background: rgba(255, 255, 255, .8); font-size: 9px; }
.assistant-foot a { color: #5d5fc0; }
.start-panel { min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 23px; text-align: center; }
.start-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 21px; border: 1px solid rgba(91, 95, 239, .18); border-radius: 50%; color: var(--violet); background: rgba(91, 95, 239, .08); font-size: 26px; }
.start-panel h3 { margin-bottom: 8px; font: 600 27px/1.15 var(--serif); }
.start-panel > p { max-width: 370px; margin-bottom: 20px; color: var(--muted); font-size: 14px; }
.start-panel > small { max-width: 360px; margin-top: 13px; color: var(--soft); font-size: 10px; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 16px; text-align: left; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--red); }
.consent span { color: var(--muted); font-size: 11px; line-height: 1.5; }
.consent a { color: #4e51bf; }
.consent.compact { margin: 2px 0 15px; }
.chat-view { min-height: 520px; }
.messages { display: flex; flex-direction: column; gap: 11px; padding-bottom: 15px; }
.message { max-width: 88%; padding: 11px 13px; border-radius: 17px; font-size: 13px; line-height: 1.48; box-shadow: 0 8px 20px -19px rgba(14, 14, 18, .7); white-space: pre-wrap; }
.message.assistant { align-self: flex-start; border-top-left-radius: 5px; background: #fff; }
.message.user { align-self: flex-end; border-top-right-radius: 5px; color: #fff; background: linear-gradient(145deg, #777af5, var(--violet)); }
.message-time { display: block; margin-top: 5px; color: rgba(20, 20, 24, .36); font-size: 8px; text-align: right; }
.message.user .message-time { color: rgba(255, 255, 255, .66); }
.typing { width: 54px; display: flex; gap: 4px; margin-bottom: 13px; padding: 12px 13px; border-radius: 17px 17px 17px 5px; background: #fff; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #aaa8b2; animation: typing 1s infinite ease-in-out; }
.typing i:nth-child(2) { animation-delay: .13s; }
.typing i:nth-child(3) { animation-delay: .26s; }
@keyframes typing { 0%, 70%, 100% { transform: translateY(0); opacity: .45; } 35% { transform: translateY(-4px); opacity: 1; } }

.answer-form, .card-panel, .brief-card { margin-top: 8px; padding: 17px; border: 1px solid rgba(91, 95, 239, .12); border-radius: 18px; background: rgba(255, 255, 255, .95); box-shadow: 0 14px 28px -26px rgba(14, 14, 18, .55); }
.answer-form > label { display: block; margin-bottom: 9px; font-size: 13px; font-weight: 750; line-height: 1.4; }
.answer-form textarea, .answer-form input, .contact-form input:not([type="checkbox"]) { width: 100%; min-height: 47px; padding: 11px 12px; border: 1px solid #d9d8df; border-radius: 11px; color: var(--ink); outline: 0; background: #fff; resize: vertical; }
.answer-form textarea:focus, .answer-form input:focus, .contact-form input:not([type="checkbox"]):focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(91, 95, 239, .1); }
.answer-form .button { margin-top: 12px; }
.choice-list { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.choice-list button { padding: 7px 10px; border: 1px solid rgba(91, 95, 239, .2); border-radius: 999px; color: #4f51af; background: rgba(91, 95, 239, .06); font-size: 10px; font-weight: 700; }
.choice-list button:hover { border-color: var(--violet); background: rgba(91, 95, 239, .1); }
.form-hint { margin: 6px 0 0; color: var(--soft); font-size: 9px; }
.form-error { margin: 10px 0; padding: 9px 11px; border-radius: 9px; color: #a41916 !important; background: rgba(216, 34, 28, .07); font-size: 11px !important; text-align: left; }
.brief-title { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.brief-title > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #35a85b; font-weight: 900; }
.brief-title small, .brief-title strong { display: block; }
.brief-title small { color: var(--soft); font-size: 9px; text-transform: uppercase; letter-spacing: 1px; }
.brief-title strong { font: 600 17px/1.25 var(--serif); }
.brief-card dl { display: grid; gap: 7px; margin: 0; }
.brief-card dl div { display: grid; grid-template-columns: 94px 1fr; gap: 9px; padding-top: 7px; border-top: 1px solid rgba(14, 14, 18, .06); }
.brief-card dt { color: var(--soft); font-size: 9px; }
.brief-card dd { margin: 0; font-size: 11px; font-weight: 650; }
.panel-kicker { display: block; margin-bottom: 4px; color: var(--gold-dark); font-size: 9px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; }
.card-panel h3 { margin-bottom: 6px; font: 600 22px/1.2 var(--serif); }
.card-panel > p { margin-bottom: 15px; color: var(--muted); font-size: 12px; }
.contact-form > label:not(.consent) { display: block; margin-bottom: 11px; color: var(--muted); font-size: 10px; font-weight: 700; }
.contact-form > label small { color: var(--soft); font-weight: 500; }
.contact-form input:not([type="checkbox"]) { display: block; margin-top: 5px; }
.checkout-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; margin-bottom: 15px; }
.checkout-line h3 { margin-bottom: 3px; }
.checkout-line p { margin: 0; color: var(--muted); font-size: 10px; }
.checkout-line > strong { color: var(--red); font: 600 28px/1 var(--serif); white-space: nowrap; }
.secure-note { margin: 11px 0 0 !important; color: var(--soft) !important; font-size: 9px !important; text-align: center; }
.payment-panel { text-align: center; }
.payment-panel .button + .button { margin-top: 8px; }
.spinner { width: 40px; height: 40px; display: block; margin: 2px auto 14px; border: 3px solid rgba(91, 95, 239, .16); border-top-color: var(--violet); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.success-panel, .human-panel { text-align: center; }
.success-mark, .human-mark { width: 52px; height: 52px; display: grid; place-items: center; margin: 1px auto 15px; border-radius: 50%; color: #fff; background: #35a85b; font-size: 24px; font-weight: 900; }
.human-mark { background: var(--violet); }

.proof { padding: 8px 0 74px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: rgba(255, 253, 248, .57); box-shadow: var(--shadow); }
.proof article { position: relative; padding: 22px; text-align: center; }
.proof article + article::before { content: ""; position: absolute; top: 24%; bottom: 24%; left: 0; width: 1px; background: var(--line); }
.proof strong { display: block; font: 600 22px/1.25 var(--serif); }
.proof span { color: var(--muted); font-size: 12px; }
.section { padding: 88px 0; }
.section-alt { border-block: 1px solid rgba(154, 116, 41, .13); background: rgba(255, 253, 248, .42); }
.section-head { max-width: 790px; margin: 0 auto 46px; text-align: center; }
.section-head > span, .section-kicker { display: block; margin-bottom: 12px; color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: 1.9px; text-transform: uppercase; }
.section-head h2, .included-copy h2, .faq-intro h2 { margin-bottom: 13px; font: 600 clamp(34px, 4.5vw, 49px)/1.08 var(--serif); letter-spacing: -.018em; }
.section-head p, .included-copy > p, .faq-intro > p { margin-bottom: 0; color: var(--muted); font-size: 16px; }
.example-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.example-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 253, 248, .76); box-shadow: var(--shadow); }
.example-copy { padding: 30px 30px 24px; }
.tag { display: inline-flex; margin-bottom: 17px; padding: 6px 10px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--gold-dark); font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.example-copy h3 { margin-bottom: 9px; font: 600 29px/1.18 var(--serif); }
.example-copy p { color: var(--muted); font-size: 14px; }
.example-copy blockquote { margin: 20px 0 0; padding: 16px 17px; border-left: 3px solid var(--red); border-radius: 0 13px 13px 0; background: rgba(216, 34, 28, .045); font: 600 17px/1.45 var(--serif); }
.audio-wrap { padding: 20px 30px 22px; border-top: 1px solid var(--line); background: radial-gradient(circle at 12% 0, rgba(216, 34, 28, .055), transparent 40%), rgba(247, 240, 223, .76); }
.audio-player { position: relative; padding: 12px; overflow: hidden; border: 1px solid rgba(140, 110, 46, .23); border-radius: 19px; background: rgba(255, 253, 248, .88); box-shadow: 0 18px 38px -31px rgba(67, 42, 7, .7); }
.audio-player::after { content: ""; position: absolute; width: 145px; height: 145px; top: -105px; right: -70px; pointer-events: none; border: 1px solid rgba(201, 161, 74, .19); border-radius: 50%; box-shadow: 0 0 0 24px rgba(201, 161, 74, .035); }
.audio-ui { display: none; }
.audio-player.is-enhanced { padding: 16px 17px 14px; }
.audio-player.is-enhanced .audio-ui { display: grid; gap: 13px; }
.audio-player.is-enhanced audio { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.audio-player-main { position: relative; z-index: 1; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 13px; }
.audio-play { width: 54px; height: 54px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; color: #fff; background: linear-gradient(145deg, #e23932, var(--red-dark)); box-shadow: 0 14px 27px -15px rgba(185, 24, 24, .95); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.audio-play:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 18px 31px -14px rgba(185, 24, 24, 1); }
.audio-play:active { transform: scale(.97); }
.audio-play svg { width: 23px; height: 23px; }
.audio-icon-play { margin-left: 3px; }
.audio-icon-pause, .audio-player.is-playing .audio-icon-play { display: none; }
.audio-player.is-playing .audio-icon-pause { display: block; }
.audio-player.is-playing .audio-play { background: linear-gradient(145deg, #6e71f4, #4d50d7); box-shadow: 0 14px 27px -15px rgba(77, 80, 215, .95); }
.audio-info { min-width: 0; }
.audio-info span, .audio-info strong, .audio-info small { display: block; }
.audio-info span { margin-bottom: 2px; color: var(--gold-dark); font-size: 8px; font-weight: 850; letter-spacing: 1.15px; text-transform: uppercase; }
.audio-info strong { overflow: hidden; font: 700 14px/1.25 var(--sans); text-overflow: ellipsis; white-space: nowrap; }
.audio-info small { margin-top: 2px; color: var(--soft); font-size: 9px; }
.audio-format { position: relative; z-index: 1; padding: 5px 7px; border: 1px solid rgba(140, 110, 46, .25); border-radius: 7px; color: var(--gold-dark); background: rgba(255, 253, 248, .76); font-size: 8px; font-weight: 850; letter-spacing: .8px; }
.audio-progress-row { position: relative; z-index: 1; display: grid; grid-template-columns: 34px minmax(0, 1fr) 34px; align-items: center; gap: 9px; }
.audio-progress-row time { color: var(--soft); font-size: 9px; font-variant-numeric: tabular-nums; }
.audio-progress-row time:last-child { text-align: right; }
.audio-seek { --audio-progress: 0%; width: 100%; height: 17px; margin: 0; padding: 6px 0; border: 0; border-radius: 999px; outline: 0; appearance: none; -webkit-appearance: none; background: linear-gradient(90deg, var(--red) 0, var(--red) var(--audio-progress), rgba(140, 110, 46, .19) var(--audio-progress), rgba(140, 110, 46, .19) 100%); background-clip: content-box; cursor: pointer; }
.audio-seek::-webkit-slider-runnable-track { height: 5px; border-radius: 999px; background: transparent; }
.audio-seek::-webkit-slider-thumb { width: 15px; height: 15px; margin-top: -5px; border: 3px solid var(--paper); border-radius: 50%; appearance: none; -webkit-appearance: none; background: var(--red); box-shadow: 0 2px 8px rgba(67, 42, 7, .25); }
.audio-seek::-moz-range-track { height: 5px; border: 0; border-radius: 999px; background: rgba(140, 110, 46, .19); }
.audio-seek::-moz-range-progress { height: 5px; border-radius: 999px; background: var(--red); }
.audio-seek::-moz-range-thumb { width: 10px; height: 10px; border: 3px solid var(--paper); border-radius: 50%; background: var(--red); box-shadow: 0 2px 8px rgba(67, 42, 7, .25); }
.audio-seek:focus-visible { outline: 3px solid rgba(91, 95, 239, .35); outline-offset: 3px; }
.audio-seek:disabled { cursor: wait; opacity: .45; }
.audio-error { margin: 0; padding: 8px 10px; border-radius: 9px; color: #a41916; background: rgba(216, 34, 28, .07); font-size: 10px; }
.audio-note { display: block; margin-top: 9px; color: var(--soft); font-size: 9px; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; }
.steps article { position: relative; min-height: 230px; padding: 23px 19px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 253, 248, .68); }
.steps i { display: block; margin-bottom: 35px; color: var(--gold); font: 700 14px/1 var(--serif); font-style: normal; }
.steps h3 { margin-bottom: 8px; font: 600 18px/1.25 var(--serif); }
.steps p { margin: 0; color: var(--muted); font-size: 12px; }
.steps article::after { content: "♪"; position: absolute; right: 13px; bottom: -17px; color: rgba(201, 161, 74, .1); font: 700 72px/1 var(--serif); }
.included-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(35px, 7vw, 85px); align-items: center; }
.included-copy > p { max-width: 650px; }
.check-list { display: grid; gap: 10px; margin: 27px 0 31px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; color: var(--muted); }
.check-list li::before { content: "✓"; color: var(--red); font-weight: 900; }
.boundary-card { padding: clamp(28px, 4vw, 43px); border: 1px solid rgba(91, 95, 239, .16); border-radius: 25px; background: radial-gradient(circle at 100% 0, rgba(91, 95, 239, .1), transparent 42%), var(--paper); box-shadow: var(--shadow); }
.boundary-card > span { color: var(--violet); font-size: 10px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.boundary-card h3 { margin: 13px 0 15px; font: 600 31px/1.14 var(--serif); }
.boundary-card > p { color: var(--muted); }
.boundary-card dl { display: grid; margin: 25px 0 0; }
.boundary-card dl div { display: grid; grid-template-columns: 140px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.boundary-card dt { font-weight: 800; }
.boundary-card dd { margin: 0; color: var(--muted); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 8vw, 100px); align-items: start; }
.faq-intro { position: sticky; top: 115px; }
.faq { border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary { position: relative; padding: 21px 42px 21px 0; font-weight: 750; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 17px; color: var(--gold-dark); font: 400 27px/1 var(--serif); }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 720px; margin: -5px 42px 21px 0; color: var(--muted); font-size: 14px; }
.final-section { padding: 15px 0 85px; }
.final-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(30px, 5vw, 55px); border: 1px solid rgba(216, 34, 28, .15); border-radius: 28px; background: radial-gradient(circle at 8% 0, rgba(231, 201, 119, .25), transparent 42%), var(--paper); box-shadow: var(--shadow); }
.final-card > div { max-width: 750px; }
.final-card span { color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.final-card h2 { margin: 10px 0 12px; font: 600 clamp(31px, 4vw, 45px)/1.08 var(--serif); }
.final-card p { margin: 0; color: var(--muted); }
footer { padding: 27px 0 95px; border-top: 1px solid rgba(154, 116, 41, .18); color: var(--muted); background: rgba(255, 253, 248, .34); font-size: 12px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 17px; }
.footer-inner a:hover { color: var(--ink); }
.mobile-bar { display: none; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; text-align: center; margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-points { width: fit-content; margin-inline: auto; text-align: left; }
  .assistant-shell { width: min(100%, 610px); margin-inline: auto; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof article:nth-child(3)::before { display: none; }
  .proof article:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 26px), var(--wide)); }
  .nav { min-height: 62px; }
  .nav-links > a, .nav-links .button { display: none; }
  .brand-name { font-size: 19px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { padding: 45px 0 45px; }
  h1 { font-size: clamp(39px, 12vw, 57px); }
  .hero-grid { gap: 38px; }
  .hero-actions .button { width: 100%; }
  .assistant-shell { border-radius: 24px; }
  .assistant-body { max-height: none; min-height: 545px; padding: 15px; }
  .assistant-foot { align-items: flex-start; flex-direction: column; }
  .proof { padding-bottom: 55px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof article { padding: 17px 11px; }
  .proof strong { font-size: 19px; }
  .proof span { font-size: 10px; }
  .section { padding: 66px 0; }
  .example-grid, .included-grid, .faq-grid { grid-template-columns: 1fr; }
  .example-copy { padding: 24px 22px 20px; }
  .audio-wrap { padding: 17px 22px 21px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps article { min-height: 195px; }
  .faq-intro { position: static; }
  .final-card { align-items: stretch; flex-direction: column; }
  .final-card .button { width: 100%; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner nav { justify-content: flex-start; }
  .mobile-bar { position: fixed; z-index: 35; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); left: 10px; display: flex; align-items: center; justify-content: space-between; gap: 13px; padding: 10px 10px 10px 15px; border: 1px solid rgba(14, 14, 18, .12); border-radius: 16px; background: rgba(255, 253, 248, .95); box-shadow: 0 15px 40px -16px rgba(14, 14, 18, .5); backdrop-filter: blur(16px); }
  .mobile-bar strong, .mobile-bar span { display: block; }
  .mobile-bar strong { font-size: 12px; }
  .mobile-bar span { color: var(--muted); font-size: 9px; }
  .mobile-bar .button { min-height: 42px; padding: 10px 17px; }
  .has-session .mobile-bar { display: none; }
}

@media (max-width: 470px) {
  .assistant-head { padding-inline: 16px; }
  .assistant-head p { max-width: 210px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .start-panel { padding-inline: 5px; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: 170px; }
  .brief-card dl div { grid-template-columns: 76px 1fr; }
  .boundary-card dl div { grid-template-columns: 1fr; gap: 3px; }
  .audio-wrap { padding-inline: 16px; }
  .audio-player.is-enhanced { padding: 14px; }
  .audio-player-main { gap: 10px; }
  .audio-play { width: 48px; height: 48px; }
  .audio-play svg { width: 21px; height: 21px; }
  .audio-info strong { font-size: 13px; white-space: normal; }
  .audio-info small { display: none; }
  .audio-progress-row { grid-template-columns: 31px minmax(0, 1fr) 31px; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
