:root {
    --lime: #7ed957;
    --lime-soft: #dff4cf;
    --lime-pale: #f2fbec;
    --ink: #33404c;
    --ink-deep: #1f241e;
    --muted: #7b8794;
    --cream: #f5f3ec;
    --warm-white: #fbfaf6;
    --white: #ffffff;
    --aqua: #d9f3ef;
    --lavender: #efe3f6;
    --yellow: #f7efc6;
    --purple: #9435cb;
    --line: rgba(51, 64, 76, 0.13);
    --shadow: 0 22px 60px rgba(51, 64, 76, 0.11);
    --radius: 28px;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--warm-white);
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { color: inherit; font: inherit; }
button { cursor: pointer; }
svg { display: block; }
p, h1, h2, h3 { margin-top: 0; }
.shell { width: min(1210px, calc(100% - 64px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; transform: translateY(-180%); padding: 12px 18px; border-radius: 12px; background: var(--ink-deep); color: white; }
.skip-link:focus { transform: none; }

.announcement { min-height: 40px; border-bottom: 1px solid #d9e8d0; background: #edf9e7; font-size: 14px; }
.announcement__inner { min-height: 40px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.announcement__tag { padding: 3px 8px; border-radius: 999px; background: #daf0cc; color: #467f2c; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.announcement a { font-weight: 600; white-space: nowrap; }
.announcement a:hover { text-decoration: underline; text-underline-offset: 4px; }

.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid transparent; background: rgba(251,250,246,.93); backdrop-filter: blur(18px); transition: border-color .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(51,64,76,.06); }
.nav-wrap { height: 72px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-deep); font-weight: 700; letter-spacing: -.035em; white-space: nowrap; }
.brand__mark { width: 34px; height: 34px; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-inline: auto; font-size: 14px; }
.desktop-nav a, .login-link { transition: opacity .2s ease; }
.desktop-nav a:hover, .login-link:hover { opacity: .62; }
.nav-actions { display: flex; align-items: center; gap: 17px; font-size: 14px; }
.menu-button { display: none; width: 42px; height: 42px; margin-left: auto; border: 0; border-radius: 50%; background: var(--cream); place-items: center; }
.menu-button span { grid-area: 1/1; width: 19px; height: 2px; background: var(--ink); transition: transform .2s ease; }
.menu-button span:first-child { transform: translateY(-4px); }
.menu-button span:last-child { transform: translateY(4px); }
.menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-menu { position: absolute; z-index: 90; top: 100%; left: 0; right: 0; height: calc(100dvh - 64px); overflow-y: auto; padding: 28px 32px; background: var(--warm-white); box-shadow: 0 18px 30px rgba(51,64,76,.08); }
.mobile-menu nav { display: grid; gap: 4px; }
.mobile-menu nav > a:not(.button) { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 22px; font-weight: 600; }
.mobile-menu .button { margin-top: 22px; }

.button { min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; line-height: 1; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .faq-item button:focus-visible, .resource-card:focus-visible, .brand:focus-visible, .desktop-nav a:focus-visible { outline: 3px solid rgba(126,217,87,.55); outline-offset: 4px; }
.button--dark { background: var(--ink-deep); color: white; box-shadow: 0 10px 24px rgba(31,36,30,.12); }
.button--dark:hover { background: #111510; box-shadow: 0 16px 34px rgba(31,36,30,.18); }
.button--lime { background: var(--lime-soft); color: var(--ink-deep); }
.button--lime:hover { background: #d2f0c1; }
.button--small { min-height: 44px; padding-inline: 18px; border-radius: 13px; }
.button--large { min-height: 58px; padding-inline: 30px; }
.button-halo { display: inline-flex; padding: 3px; border-radius: 17px; background: linear-gradient(100deg, #b9f871, #79ddd1, #dcb1f3, #f6e47b); }
.button-halo .button { min-height: 50px; border-radius: 14px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero { padding: 72px 0 80px; }
.hero__grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr); gap: 58px; align-items: center; }
.hero__copy { padding-block: 38px; }
.eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; color: #63705f; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.eyebrow span { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(126,217,87,.16); }
.hero h1 { max-width: 700px; margin-bottom: 26px; color: #26322f; font-size: clamp(3.7rem, 6.6vw, 6.8rem); font-weight: 500; letter-spacing: -.07em; line-height: .9; }
.hero h1 em { color: #63b63f; font-style: normal; }
.hero__lead { max-width: 640px; margin-bottom: 30px; color: var(--ink); font-size: clamp(1.08rem, 1.6vw, 1.31rem); line-height: 1.38; }
.hero__note { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin: 19px 0 0; color: var(--muted); font-size: 13px; }
.hero__note span:first-child { color: #4f9c32; font-weight: 700; }

.hero-product { min-width: 0; }
.product-stage { padding: 52px 32px; border-radius: 46px; background: var(--cream); }
.app-window { overflow: hidden; border: 1px solid rgba(51,64,76,.1); border-radius: 23px; background: rgba(255,255,255,.82); box-shadow: 0 16px 28px rgba(51,64,76,.12), 0 2px 5px rgba(51,64,76,.06); }
.app-window__bar { height: 49px; padding: 0 17px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 12px; font-weight: 700; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d3d8d9; }
.window-dots i:nth-child(2) { background: #c8edb6; }
.app-shell { min-height: 390px; display: grid; grid-template-columns: 118px 1fr; background: var(--cream); }
.app-sidebar { padding: 22px 12px; display: grid; align-content: start; gap: 7px; border-right: 1px solid rgba(51,64,76,.07); color: #9aa2aa; font-size: 9px; }
.app-sidebar b { margin: 0 5px 13px; color: var(--ink); font-size: 10px; }
.app-sidebar span { padding: 9px 8px; border-radius: 9px; }
.app-sidebar .is-active { color: #6cc049; background: var(--lime-pale); font-weight: 600; }
.app-content { min-width: 0; padding: 24px 20px; }
.app-content > h2 { margin-bottom: 16px; color: var(--ink); font-size: 18px; }
.exam-card { padding: 18px; border: 1px solid rgba(255,255,255,.8); border-radius: 20px; background: rgba(255,255,255,.62); box-shadow: 0 12px 25px rgba(51,64,76,.07); }
.exam-card small { color: var(--lime); font-weight: 600; }
.exam-card h3 { margin: 11px 0 3px; font-size: 17px; }
.exam-card p { margin-bottom: 14px; color: #919aa3; font-size: 10px; }
.mock-button { min-height: 37px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: var(--lime); color: white; font-size: 10px; font-weight: 700; }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.quick-grid article { min-height: 103px; padding: 15px; display: grid; align-content: center; gap: 4px; border-radius: 17px; background: #d9f1ca; }
.quick-grid i { width: 26px; height: 26px; margin-bottom: 4px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.65); font-style: normal; }
.quick-grid b { font-size: 10px; }
.quick-grid span { color: #718168; font-size: 9px; }

.facts { padding: 18px 0 42px; }
.facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.facts article { min-height: 130px; padding: 25px 24px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.facts article:last-child { border-right: 0; }
.facts strong { color: var(--ink-deep); font-size: clamp(2rem, 4vw, 3.35rem); font-weight: 500; letter-spacing: -.065em; line-height: 1; }
.facts span { margin-top: 10px; color: var(--muted); font-size: 14px; }

.platform { padding: 118px 0 92px; }
.split-heading { margin-bottom: 64px; display: grid; grid-template-columns: 1.05fr .75fr; gap: 100px; align-items: end; }
.split-heading h2, .section-heading h2, .faq__intro h2 { max-width: 760px; margin: 20px 0 0; color: #17302e; font-size: clamp(2.6rem, 5vw, 4.85rem); font-weight: 500; letter-spacing: -.065em; line-height: .97; }
.split-heading > div:last-child > p { max-width: 530px; margin-bottom: 16px; color: var(--ink); font-size: 19px; line-height: 1.4; }
.section-pill { width: max-content; padding: 10px 14px; border-radius: 999px; display: inline-flex; align-items: center; gap: 10px; background: var(--lime-soft); color: #35552a; font-size: 13px; font-weight: 600; }
.section-pill span, .section-pill b { font-size: 17px; font-weight: 500; }
.section-pill--purple { background: #e8d4f6; color: #6d2993; }
.section-pill--lime { background: var(--lime); color: var(--ink-deep); }
.section-kicker { color: #647163; font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.text-link { display: inline-flex; gap: 7px; align-items: center; border-bottom: 2px solid var(--lime); font-weight: 600; }
.text-link:hover span { transform: translateX(4px); }
.text-link span { transition: transform .2s ease; }

.product-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 20px; }
.product-card { min-height: 520px; padding: 32px 32px 0; border-radius: var(--radius); overflow: hidden; }
.product-card--wide { min-height: 650px; }
.product-card--aqua { background: var(--aqua); }
.product-card--lime { min-height: 650px; background: var(--lime-pale); }
.product-card--lavender { background: var(--lavender); }
.product-card--yellow { min-height: 520px; background: var(--yellow); }
.product-card__head { display: flex; align-items: start; justify-content: space-between; gap: 24px; }
.product-card__head h3 { margin: 15px 0 7px; color: #213b38; font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.product-card__head p { max-width: 610px; margin-bottom: 0; color: #4e6264; line-height: 1.45; }
.product-label { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-deep); font-size: 14px; font-weight: 600; }
.product-label i { width: 27px; height: 27px; display: inline-grid; place-items: center; border: 1px solid rgba(51,64,76,.22); border-radius: 50%; font-size: 10px; font-style: normal; }
.round-arrow { width: 37px; height: 37px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; background: rgba(126,217,87,.5); color: var(--ink-deep); font-size: 20px; }

.question-ui { margin: 38px auto 0; padding: 28px; border-radius: 24px 24px 0 0; background: white; box-shadow: 0 12px 30px rgba(51,64,76,.12); }
.question-ui__top { display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }
.question-ui__top strong { color: var(--ink); }
.progress-track { height: 7px; margin-top: 13px; overflow: hidden; border-radius: 99px; background: #edf0ed; }
.progress-track i { width: 60%; height: 100%; display: block; border-radius: inherit; background: var(--lime); }
.road-sign { width: 134px; height: 134px; margin: 54px auto 36px; border: 11px solid #e44747; border-radius: 50%; display: grid; place-items: center; background: white; box-shadow: 0 0 0 4px white, 0 0 0 6px #262b29; }
.road-sign span { color: #222; font-size: 50px; font-weight: 700; }
.question-ui > p { color: var(--ink-deep); font-size: 21px; font-weight: 600; }
.answers { display: grid; gap: 11px; }
.answers span { padding: 15px; border: 1px solid var(--line); border-radius: 15px; display: flex; align-items: center; gap: 12px; color: var(--ink); font-size: 14px; }
.answers span b { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #eef0ee; }
.answers .selected { border: 2px solid var(--lime); }
.answers .selected b { background: var(--lime); color: white; }

.review-ui { margin: 45px -8px 0; padding: 18px; display: grid; gap: 11px; }
.review-ui > span { min-height: 61px; padding: 0 16px; border: 1px solid rgba(51,64,76,.1); border-radius: 14px; display: grid; grid-template-columns: 29px 1fr auto; align-items: center; gap: 10px; background: rgba(255,255,255,.76); box-shadow: 0 6px 12px rgba(51,64,76,.05); }
.review-ui i { width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-weight: 700; }
.status-good { background: #def5d1; color: #4c9930; }
.status-warn { background: #fff0c5; color: #b98917; }
.review-ui b { font-size: 13px; }
.review-ui em { color: var(--muted); font-size: 12px; font-style: normal; }
.chart-ui { margin: 38px -8px 0; padding: 23px 22px 0; border-radius: 21px 21px 0 0; background: rgba(255,255,255,.8); box-shadow: 0 12px 26px rgba(51,64,76,.08); }
.chart-meta { display: flex; justify-content: space-between; align-items: baseline; }
.chart-meta span { color: var(--muted); font-size: 12px; }
.chart-meta strong { color: var(--ink-deep); font-size: 27px; }
.chart-ui svg { width: 100%; height: 170px; margin-top: 13px; overflow: visible; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--lime); stroke-width: 4; stroke-linecap: round; }
.chart-ui circle { fill: white; stroke: var(--lime); stroke-width: 4; }
.mini-exam { width: min(680px, 92%); margin: 48px auto 0; padding: 27px; border-radius: 22px 22px 0 0; background: rgba(255,255,255,.78); box-shadow: 0 12px 28px rgba(51,64,76,.08); }
.mini-exam > span { color: var(--muted); font-size: 13px; }
.mini-exam > div { margin: 18px 0; display: flex; gap: 11px; align-items: baseline; }
.mini-exam strong { font-size: 45px; font-weight: 500; letter-spacing: -.05em; }
.mini-exam small { color: var(--muted); }
.mini-exam > i { height: 12px; border-radius: 999px; display: block; overflow: hidden; background: #eae6cf; }
.mini-exam > i b { width: 70%; height: 100%; display: block; border-radius: inherit; background: var(--lime); }

.verdict { padding: 76px 0 110px; }
.verdict__panel { min-height: 690px; padding: clamp(36px, 6vw, 78px); border-radius: 42px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 78px; align-items: center; background: var(--cream); }
.verdict__copy h2 { max-width: 620px; margin: 25px 0 22px; color: #18312e; font-size: clamp(2.7rem, 5vw, 5.2rem); font-weight: 500; letter-spacing: -.065em; line-height: .95; }
.verdict__copy p { max-width: 570px; margin-bottom: 27px; color: var(--ink); font-size: 18px; line-height: 1.45; }
.verdict-ui { padding: 30px; border: 1px solid var(--line); border-radius: 27px; background: white; box-shadow: var(--shadow); }
.verdict-ui__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); font-weight: 600; }
.verdict-ui__top small { color: var(--muted); font-weight: 500; }
.verdict-ui__score { padding: 30px 0; display: grid; grid-template-columns: 160px 1fr; gap: 26px; align-items: center; }
.score-ring { width: 150px; height: 150px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(circle at center, white 57%, transparent 59%), conic-gradient(var(--lime) 0 76%, #e7ebe5 76%); }
.score-ring strong { color: var(--ink-deep); font-size: 35px; letter-spacing: -.05em; }
.score-ring span { color: var(--muted); font-size: 12px; }
.verdict-ui__score small { color: var(--muted); }
.verdict-ui__score h3 { margin: 5px 0 8px; color: #4b972e; font-size: 29px; }
.verdict-ui__score p { margin: 0; color: var(--muted); font-size: 14px; }
.verdict-ui__action { min-height: 72px; padding: 12px 18px; border-radius: 17px; display: grid; grid-template-columns: 1fr auto; align-items: center; background: var(--lime-pale); }
.verdict-ui__action span { color: var(--muted); font-size: 11px; }
.verdict-ui__action b { grid-column: 1; font-size: 14px; }
.verdict-ui__action i { grid-column: 2; grid-row: 1/3; font-style: normal; font-size: 22px; }

.method { padding: 100px 0 130px; }
.section-heading--center { max-width: 850px; margin: 0 auto 65px; text-align: center; }
.section-heading--center h2 { margin-inline: auto; }
.section-heading--center p { max-width: 650px; margin: 20px auto 0; color: var(--muted); font-size: 18px; }
.steps { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); }
.steps li { min-height: 270px; padding: 24px 25px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.steps li:last-child { border-right: 0; }
.steps li > span { width: 39px; height: 39px; border-radius: 50%; display: grid; place-items: center; background: var(--lime-soft); color: #40752a; font-weight: 700; }
.steps h3 { margin: 76px 0 10px; color: var(--ink-deep); font-size: 20px; }
.steps p { margin: 0; color: var(--muted); line-height: 1.45; }

.topics { overflow: hidden; padding: 25px 0; border-block: 1px solid var(--line); background: var(--cream); }
.topics__track { width: max-content; display: flex; align-items: center; gap: 25px; animation: ticker 35s linear infinite; color: var(--ink-deep); font-size: 21px; font-weight: 600; }
.topics__track i { color: var(--lime); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.resources { padding: 125px 0 100px; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.resource-card { min-height: 390px; padding: 30px; border-radius: var(--radius); display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.resource-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(51,64,76,.1); }
.resource-card--lime { background: var(--lime-pale); }
.resource-card--cream { background: var(--cream); }
.resource-card--dark { background: var(--ink-deep); color: white; }
.resource-card > span { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; opacity: .7; }
.resource-card h3 { max-width: 330px; margin: auto 0 12px; font-size: 30px; font-weight: 500; letter-spacing: -.045em; line-height: 1.05; }
.resource-card p { margin-bottom: 24px; opacity: .7; line-height: 1.45; }
.resource-card > i { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--lime); color: var(--ink-deep); font-size: 20px; font-style: normal; }
.lead-panel { margin-top: 90px; padding: 55px; border-radius: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; background: var(--aqua); }
.lead-panel h2 { margin: 15px 0 10px; color: #18312e; font-size: clamp(2rem, 4vw, 3.7rem); font-weight: 500; letter-spacing: -.055em; line-height: 1; }
.lead-panel p { max-width: 560px; margin-bottom: 0; color: #526765; }
.lead-form__row { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 6px; border: 1px solid rgba(51,64,76,.13); border-radius: 17px; background: white; box-shadow: 0 10px 24px rgba(51,64,76,.06); }
.lead-form input { min-width: 0; padding: 0 13px; border: 0; outline: none; background: transparent; }
.lead-form button { min-height: 49px; padding: 0 20px; border: 0; border-radius: 12px; background: var(--ink-deep); color: white; font-weight: 600; }
.lead-form button:disabled { opacity: .55; cursor: wait; }
.lead-form__note, .form-message { margin: 10px 6px 0; color: #637674; font-size: 12px; }
.lead-form__note a { text-decoration: underline; }
.form-message { min-height: 18px; font-weight: 600; }
.form-message.is-error { color: #b43636; }
.form-message.is-success { color: #397c2d; }

.faq { padding: 110px 0 120px; }
.faq__layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: start; }
.faq__intro { position: sticky; top: 120px; }
.faq__intro h2 { margin-bottom: 25px; }
.faq__intro p { max-width: 410px; color: var(--muted); }
.faq__intro a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.faq__list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; padding: 25px 0; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: transparent; text-align: left; font-size: 18px; font-weight: 600; }
.faq-item button i { width: 31px; height: 31px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; background: var(--lime-pale); font-size: 21px; font-style: normal; font-weight: 400; transition: transform .25s ease; }
.faq-item button[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer p { max-width: 670px; margin: -5px 50px 25px 0; color: var(--muted); line-height: 1.55; }

.final-cta { padding: 10px 0 80px; }
.final-cta__panel { min-height: 470px; padding: clamp(40px, 7vw, 86px); border-radius: 40px; display: grid; grid-template-columns: 1.25fr .55fr; gap: 80px; align-items: end; background: var(--ink-deep); color: white; }
.final-cta h2 { max-width: 820px; margin: 25px 0 18px; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 500; letter-spacing: -.065em; line-height: .93; }
.final-cta p { max-width: 660px; margin-bottom: 0; color: rgba(255,255,255,.66); font-size: 18px; }
.final-cta__actions { display: grid; gap: 15px; }
.final-cta__actions span { color: rgba(255,255,255,.52); font-size: 12px; text-align: center; }

.footer { padding: 70px 0 30px; background: var(--cream); }
.footer__top { padding-bottom: 55px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.footer__top p { max-width: 420px; margin: 0; color: var(--muted); text-align: right; }
.footer__links { padding: 55px 0 70px; display: grid; grid-template-columns: 1.2fr 1.3fr .8fr .8fr; gap: 50px; }
.footer__links > div { display: grid; align-content: start; gap: 13px; }
.footer__links strong { margin-bottom: 5px; color: var(--ink-deep); font-size: 13px; }
.footer__links a { color: var(--muted); font-size: 14px; }
.footer__links a:hover { color: var(--ink-deep); }
.footer__bottom { padding-top: 25px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 25px; color: var(--muted); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__copy { max-width: 820px; padding-bottom: 0; }
    .hero-product { max-width: 780px; }
    .split-heading { gap: 55px; }
    .verdict__panel { gap: 45px; }
    .faq__layout { gap: 60px; }
}

@media (max-width: 820px) {
    .shell { width: min(100% - 36px, 680px); }
    .announcement__inner > span:not(.announcement__tag) { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .desktop-nav, .nav-actions { display: none; }
    .menu-button { display: grid; }
    .hero { padding-top: 36px; }
    .hero h1 { font-size: clamp(3.5rem, 15vw, 5.7rem); }
    .product-stage { padding: 28px 16px; border-radius: 30px; }
    .facts__grid { grid-template-columns: 1fr 1fr; }
    .facts article:nth-child(2) { border-right: 0; }
    .facts article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .split-heading { grid-template-columns: 1fr; gap: 30px; align-items: start; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card, .product-card--wide, .product-card--lime { min-height: 540px; }
    .product-card--yellow { min-height: 410px; }
    .verdict__panel { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps li:nth-child(2) { border-right: 0; }
    .steps li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .resource-grid { grid-template-columns: 1fr; }
    .resource-card { min-height: 330px; }
    .lead-panel { grid-template-columns: 1fr; gap: 35px; padding: 38px; }
    .faq__layout { grid-template-columns: 1fr; gap: 50px; }
    .faq__intro { position: static; }
    .final-cta__panel { grid-template-columns: 1fr; gap: 45px; }
    .footer__links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .shell { width: calc(100% - 28px); }
    .announcement { font-size: 11px; }
    .announcement__inner { gap: 7px; }
    .announcement__tag { display: none; }
    .nav-wrap { height: 64px; }
    .hero { padding: 28px 0 54px; }
    .hero h1 { font-size: clamp(3.15rem, 16.2vw, 4.7rem); }
    .hero__lead { font-size: 17px; }
    .button-row, .button-row > *, .button-row .button { width: 100%; }
    .hero__note { line-height: 1.5; }
    .product-stage { margin-inline: -7px; padding: 14px 7px; }
    .app-window__bar { height: 43px; }
    .app-shell { min-height: 400px; grid-template-columns: 1fr; }
    .app-sidebar { display: none; }
    .app-content { padding: 20px 14px; }
    .facts { padding-bottom: 20px; }
    .facts article { min-height: 112px; padding: 20px 14px; }
    .facts strong { font-size: 31px; }
    .facts span { font-size: 12px; }
    .platform, .resources { padding-block: 85px; }
    .split-heading { margin-bottom: 44px; }
    .split-heading h2, .section-heading h2, .faq__intro h2 { font-size: 2.7rem; }
    .split-heading > div:last-child > p { font-size: 17px; }
    .product-card { min-height: 500px; padding: 24px 20px 0; border-radius: 23px; }
    .product-card--wide { min-height: 780px; }
    .product-card__head h3 { font-size: 2rem; }
    .question-ui { padding: 20px 15px; }
    .road-sign { width: 105px; height: 105px; margin-block: 38px 28px; }
    .road-sign span { font-size: 39px; }
    .question-ui > p { font-size: 18px; }
    .answers span { padding: 13px 10px; font-size: 12px; }
    .review-ui { margin-top: 30px; padding-inline: 0; }
    .review-ui > span { padding-inline: 10px; grid-template-columns: 27px 1fr; }
    .review-ui em { display: none; }
    .verdict { padding: 35px 0 85px; }
    .verdict__panel { padding: 31px 20px; border-radius: 27px; }
    .verdict__copy h2 { font-size: 2.7rem; }
    .verdict-ui { padding: 20px 16px; }
    .verdict-ui__top { align-items: start; flex-direction: column; gap: 4px; }
    .verdict-ui__score { grid-template-columns: 1fr; }
    .score-ring { margin-inline: auto; }
    .method { padding-block: 80px; }
    .steps { grid-template-columns: 1fr; }
    .steps li { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
    .steps h3 { margin-top: 48px; }
    .topics__track { font-size: 17px; }
    .resource-card { min-height: 310px; padding: 24px; }
    .resource-card h3 { font-size: 26px; }
    .lead-panel { margin-top: 60px; padding: 28px 20px; }
    .lead-form__row { grid-template-columns: 1fr; }
    .lead-form input { min-height: 48px; }
    .faq { padding-block: 80px; }
    .faq-item button { font-size: 16px; }
    .final-cta { padding-bottom: 28px; }
    .final-cta__panel { padding: 40px 23px; border-radius: 27px; }
    .final-cta h2 { font-size: 3rem; }
    .footer__top { align-items: start; flex-direction: column; }
    .footer__top p { text-align: left; }
    .footer__links { grid-template-columns: 1fr; gap: 34px; }
    .footer__bottom { flex-direction: column; }
}

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