:root {
    --bg: #ffffff;
    --bg-soft: #ffffff;
    --card: #ffffff;
    --card-strong: #ffffff;
    --text: #101624;
    --muted: #6f7787;
    --accent: #10bfa7;
    --accent-2: #315dff;
    --danger: #d64545;
    --line: rgba(16, 22, 36, .08);
    --shadow: none;
    --radius: 0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #ffffff;
    overflow-x: hidden;
}

body.presentation-lock {
    overflow: hidden;
}

body.presentation-lock .hero-section .hero-main,
body.presentation-lock .hero-section .quick-audit,
body.presentation-lock .hero-section > .quick-visual,
body.presentation-lock .hero-section .hero-benefits {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.topbar {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 38px clamp(34px, 5vw, 70px) 28px;
    pointer-events: none;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(10px);
}

.brand,
.topbar__action {
    pointer-events: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--text);
    text-decoration: none;
}

.brand__logo {
    display: block;
    width: clamp(185px, 17vw, 240px);
    height: auto;
}

.brand__logo-word {
    letter-spacing: -.035em;
}


.topbar__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 17px 34px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #08a98f);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    backdrop-filter: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1;
    box-shadow: 0 18px 34px rgba(16, 191, 167, .22);
}

.section {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: 126px clamp(34px, 5vw, 70px) 74px;
    isolation: isolate;
    background: #ffffff;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    max-width: 1000px;
    margin: 0 auto;
}

.section::before {
    content: "";
    position: absolute;
    left: clamp(34px, 5vw, 70px);
    right: clamp(34px, 5vw, 70px);
    top: 120px;
    height: 1px;
    background: rgba(16, 22, 36, .07);
    pointer-events: none;
    z-index: -1;
}

.section::after {
    content: "";
    position: absolute;
    right: clamp(-120px, -7vw, -44px);
    top: 50%;
    width: clamp(220px, 30vw, 460px);
    height: clamp(220px, 30vw, 460px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 191, 158, .04), transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: -1;
}

.hero-section {
    align-items: center;
    padding-bottom: 74px;
}

/* .hero-section::after {
     right: -180px;
     top: 70%;
     width: 520px;
     height: 520px;
     background: radial-gradient(circle, rgba(49, 93, 255, .045), transparent 68%);
 }*/

.hero-layout {
    position: relative;
    width: min(1280px, 100%);
    min-height: calc(100svh - 218px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: clamp(20px, 4vw, 62px);
    align-items: start;
}

.hero-main {
    position: relative;
    z-index: 5;
    max-width: 760px;
    padding-top: 36px;
}

.audit-kicker {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 42px;
    color: var(--accent);
    font-size: clamp(14px, 2vw, 25px);
    font-weight: 950;
    line-height: 1.18;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.audit-kicker::before {
    content: "";
    width: 42px;
    height: 3px;
    background: currentColor;
}

.hero-title {
    max-width: 720px;
    margin: 0 0 34px;
    color: var(--text);
    font-size: clamp(52px, 6.6vw, 76px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.hero-text {
    max-width: 470px;
    margin: 0 0 50px;
    color: var(--muted);
    font-size: clamp(22px, 2.2vw, 27px);
    font-weight: 600;
    line-height: 1.55;
}

.hero-primary {
    min-height: 70px;
    padding: 22px 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #05ac92);
    font-size: clamp(16px, 1.6vw, 19px);
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 18px 42px rgba(16, 191, 167, .28);
}

.hero-primary::after {
    content: "→";
    margin-left: 10px;
    font-size: 35px;
    font-weight: 400;
    line-height: .7;
}

.hero-note {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    max-width: 560px;
    margin-top: 28px;
    color: var(--muted);
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 600;
    line-height: 1.55;
}

.hero-note svg {
    width: 22px;
    height: 22px;
    margin-top: 5px;
    color: var(--accent);
}

.hero-person {
    position: absolute;
    z-index: 2;
    right: clamp(-24px, 1vw, 8px);
    top: 58px;
    width: min(44vw, 500px);
    min-width: 390px;
    height: 660px;
    pointer-events: none;
}

.hero-person .hero-stage,
.hero-person .person-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    background: transparent;
}

.hero-person .video-placeholder {
    right: 7%;
    bottom: 24px;
}

.hero-benefits {
    position: relative;
    z-index: 6;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1120px;
    margin-top: -18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(16, 22, 36, .06);
    box-shadow: 0 22px 50px rgba(21, 35, 63, .1);
    overflow: hidden;
}

.hero-benefit {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 30px 26px 28px;
    text-align: center;
    font-size: clamp(15px, 1.45vw, 18px);
    font-weight: 700;
    line-height: 1.45;
}

.hero-benefit + .hero-benefit {
    border-left: 1px solid rgba(16, 22, 36, .08);
}

.hero-benefit svg {
    width: 62px;
    height: 62px;
    color: var(--accent);
    stroke: currentColor;
    flex: none;
}

.quick-audit {
    grid-column: 1 / -1;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(260px, .55fr);
    gap: 34px;
    align-items: center;
    max-width: 1120px;
    margin-top: 88px;
}

.quick-audit h2 {
    margin-bottom: 26px;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.12;
    letter-spacing: -.04em;
}

.quick-list {
    display: grid;
    max-width: 650px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.quick-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    color: var(--muted);
    font-size: clamp(17px, 1.7vw, 22px);
    font-weight: 600;
}

.quick-list svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.quick-visual {
    position: relative;
    min-height: 280px;
    border-radius: 48px;
    background: radial-gradient(circle at 55% 45%, rgba(16, 191, 167, .08), rgba(49, 93, 255, .035) 56%, transparent 58%);
}

.quick-card {
    position: absolute;
    right: 196px;
    top: 104px;
    zoom: 0.4;
    width: min(200px, 82%);
    padding: 0px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(21, 35, 63, .08);
}

.quick-card__line {
    height: 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #e9edf2;
}

.quick-card__donut {
    width: 78px;
    height: 78px;
    margin: 18px 0 14px;
    border-radius: 50%;
    background: conic-gradient(var(--accent) 0 68%, #dfe8e7 68% 100%);
    position: relative;
}

.quick-card__donut::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    background: #ffffff;
}

.quick-card__muted-line {
    height: 8px;
    width: 86%;
    margin: 8px 0;
    border-radius: 999px;
    background: #eef2f6;
}

.quick-card__mini-line {
    height: 8px;
    width: 42%;
    margin-left: 96px;
    border-radius: 999px;
    background: var(--accent);
}

.quick-card__bars {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    gap: 12px;
    height: 58px;
}

.quick-card__bars span {
    display: block;
    width: 18px;
    border-radius: 5px 5px 0 0;
    background: var(--accent);
}

.quick-card__bars span:nth-child(1) { height: 24px; }
.quick-card__bars span:nth-child(2) { height: 36px; }
.quick-card__bars span:nth-child(3) { height: 54px; }

.hero-video-cta {
    position: relative;
    z-index: 7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--text);
    text-decoration: none;
    cursor: pointer;
}

.hero-video-cta__inner {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 54px;
    padding: 7px 8px 7px 20px;
    border: 1px solid rgba(16, 22, 36, .1);
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 14px 38px rgba(21, 35, 63, .09);
    backdrop-filter: blur(10px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.hero-video-cta:hover .hero-video-cta__inner {
    transform: translateY(-1px);
    border-color: rgba(16, 191, 167, .34);
    box-shadow: 0 18px 46px rgba(21, 35, 63, .12);
}

.hero-video-cta__text {
    color: #fff;
    font-size: clamp(14px, 1.25vw, 16px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.01em;
    white-space: nowrap;
}

.hero-video-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--accent);
    box-shadow: 0 10px 22px rgba(16, 191, 167, .24);
}

.hero-video-cta__icon svg {
    width: 22px;
    height: 22px;
    margin-left: 0px;
    fill: currentColor;
}

.presentation-cues {
    position: absolute;
    z-index: 99;
    left: -520px;
    top: 50%;
    width: 470px;
    min-width: 0;
    transform: translateY(-50%);
    display: none;
    pointer-events: none;
}

.presentation-lock .presentation-cues {
    display: block;
}

.presentation-lock .hero-section .hero-person {
    position: fixed;
    z-index: 97;
    left: calc(50% + 70px);
    right: auto;
    top: 50%;
    width: min(430px, 32vw);
    min-width: 360px;
    height: min(700px, 82vh);
    transform: translateY(-50%);
    overflow: visible;
}

.presentation-cue {
    position: relative;
    min-height: 430px;
    padding: clamp(28px, 4vw, 48px);
    background: transparent;
    opacity: 0;
    transform: translateY(54px);
    transition: opacity .42s ease, transform .42s ease;
}

.presentation-cue::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(.22);
    transform-origin: top;
    transition: transform .58s ease;
}

.presentation-cue::after {
    content: "";
    position: absolute;
    right: -48px;
    top: 50%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 191, 167, .12), transparent 68%);
    transform: translateY(-50%);
    z-index: -1;
}

.presentation-cue.is-active {
    opacity: 1;
    transform: translateY(0);
}

.presentation-cue.is-active::before {
    transform: scaleY(1);
}

.presentation-cue__kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.presentation-cue__kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

.presentation-cue__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
    border-radius: 22px;
    background: rgba(16, 191, 167, .1);
    color: var(--accent);
}

.presentation-cue__icon svg {
    width: 38px;
    height: 38px;
    stroke: currentColor;
    fill: none;
}

.presentation-cue__title {
    max-width: 520px;
    margin: 0 0 22px;
    color: var(--text);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 950;
    line-height: .98;
    letter-spacing: -.055em;
}

.presentation-cue__text {
    max-width: 460px;
    margin: 0 0 34px;
    color: var(--muted);
    font-size: clamp(18px, 1.55vw, 23px);
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: -.02em;
}

.presentation-cue__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 460px;
}

.presentation-cue__fact {
    padding: 18px 0 0;
    border-top: 1px solid rgba(16, 22, 36, .12);
}

.presentation-cue__fact strong {
    display: block;
    margin-bottom: 5px;
    color: var(--accent);
    font-size: clamp(25px, 2.4vw, 36px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.045em;
}

.presentation-cue__fact span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.play-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #07a98e);
    color: #ffffff;
    box-shadow: 0 18px 32px rgba(16, 191, 167, .22);
}

.play-circle svg {
    width: 29px;
    height: 39px;
    margin-left: 1px;
    fill: currentColor;
}


.scene {
    position: relative;
}

.scene-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 15px;
}

.scene-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(10, 191, 158, .1);
}

.cinema-line {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.video-layer {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: end center;
    pointer-events: none;
}

.person-video {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 520px;
    height: 680px;
    max-height: none;
    object-fit: contain;
    opacity: 0;
    transition: opacity .65s ease;
}

.person-video.is-ready.person-video--active {
    opacity: 1;
    left: -30px;
    z-index: 2;
}

.person-video.is-ready:not(.person-video--active) {
    opacity: 0;
    z-index: 1;
}

.cinema-card {
    position: relative;
    min-height: 440px;
    padding: clamp(28px, 5vw, 58px);
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid rgba(16, 22, 36, .1);
    box-shadow: 0 30px 100px rgba(21, 35, 63, .1);
    overflow: hidden;
}

.cinema-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(10, 191, 158, .045), transparent 44%);
    pointer-events: none;
}

.cinema-card > * {
    position: relative;
    z-index: 1;
}

.grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.grid--single {
    grid-template-columns: 1fr;
    width: min(1040px, 100%);
}

.eyebrow {
    margin: 0 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    letter-spacing: 0em;
    line-height: .96;
}

h1 {
    max-width: 900px;
    margin-bottom: 26px;
    font-size: clamp(46px, 7vw, 96px);
}

h2 {
    margin-bottom: 24px;
    font-size: 20px;
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.lead {
    max-width: 760px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: clamp(18px, 2.2vw, 25px);
    line-height: 1.38;
}

.text {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.hero-grid {
    width: min(1240px, 100%);
    grid-template-columns: minmax(0, .94fr) 560px;
    gap: clamp(18px, 4vw, 58px);
    min-height: calc(100svh - 172px);
    display: none;
}

.hero-copy {
    position: relative;
    z-index: 4;
    align-self: center;
}

.hero-copy h1:not(.hero-title) {
    max-width: 800px;
    margin-top: 40px;
    margin-bottom: 52px;
    font-size: clamp(48px, 6.4vw, 60px);
    line-height: .9;
    letter-spacing: 0;
}

.hero-copy .lead {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: clamp(19px, 1.95vw, 25px);
    line-height: 1.34;
}

.hero-direction {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-direction::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

.hero-badge {
    display: none;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    max-width: 680px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(16, 22, 36, .1);
}

.hero-proof__item {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    flex: 1 1 180px;
}

.hero-proof__item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.hero-proof__item span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.32;
}

.hero-visual {
    position: relative;
    width: 560px;
    min-height: 680px;
    align-self: center;
    justify-self: end;
    overflow: visible;
}

.hero-cta-target {
    position: absolute;
    left: -92px;
    top: 60px;
    z-index: 6;
    transform: none;
    width: 330px;
    max-width: 330px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}




.hero-cta-target p {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 17px;
    font-weight: 820;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.hero-cta-target .btn {
    min-height: 58px;
    padding: 16px 24px;
    white-space: nowrap;
    transform-origin: center;
    animation: ctaBreathe 3.2s ease-in-out infinite;
}

.hero-cta-target .btn::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(16, 22, 36, .12);
    border-radius: inherit;
    opacity: 0;
    transform: scale(.96);
    animation: ctaOrbit 3.2s ease-in-out infinite;
    pointer-events: none;
}

.hero-cta-target .btn::after {
    content: "▶";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 32px;
    margin-left: 6px;
    padding-left: 2px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    transform: scale(1);
    animation: ctaPlay 2.2s ease-in-out infinite;
}


@keyframes ctaBreathe {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.018);
    }
}

@keyframes ctaOrbit {
    0%, 100% {
        opacity: 0;
        transform: scale(.96);
    }
    40%, 62% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ctaPlay {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(255, 255, 255, .72);
    }
    50% {
        transform: scale(1.1);
        border-color: rgba(255, 255, 255, 1);
    }
}

@keyframes targetPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 191, 158, .22);
    }
    70%, 100% {
        box-shadow: 0 0 0 14px rgba(10, 191, 158, 0);
    }
}

@keyframes targetLine {
    0%, 100% {
        transform: translateY(-50%) scaleX(.64);
        opacity: .42;
    }
    50% {
        transform: translateY(-50%) scaleX(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-cta-target::before,
    .hero-cta-target::after,
    .hero-cta-target .btn,
    .hero-cta-target .btn::before,
    .hero-cta-target .btn::after {
        animation: none;
    }
}

.btn {
    position: relative;
    overflow: visible;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 16px 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #ffffff;
    background: var(--accent);
    font-weight: 900;
    text-decoration: none;
    box-shadow: none;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--ghost {
    color: var(--text);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}

.hero-stage {
    position: absolute;
    inset: 0;
    min-height: 680px;
    border-radius: 0;
    overflow: visible;
    background: #ffffff;
    border: 0;
    box-shadow: none;
}


.speech-card {
    position: absolute;
    right: 4%;
    top: 7%;
    z-index: 4;
    width: min(310px, calc(100% - 48px));
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(16, 22, 36, .1);
    box-shadow: 0 20px 60px rgba(21,35,63,.095);
}

.speech-card b {
    color: var(--accent);
}

.video-placeholder {
    position: absolute;
    left: auto;
    right: 7%;
    bottom: 24px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    border: 0;
    box-shadow: none;
    font-size: 14px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(10, 191, 158, .12);
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.cards--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    min-height: 0;
    padding: 0 0 24px;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(16, 22, 36, .1);
    box-shadow: none;
    transition: color .25s ease, border-color .25s ease;
}

.card:hover {
    transform: none;
    border-color: rgba(10, 191, 158, .55);
    box-shadow: none;
}

.card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.card p,
.card li {
    color: var(--muted);
    line-height: 1.45;
}

.card ul {
    margin: 0;
    padding-left: 20px;
}

.number {
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 16px;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: var(--accent);
    font-size: 18px;
    font-weight: 900;
}

.split-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.checklist {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.checklist h3 {
    margin-bottom: 20px;
}

.checklist ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}

.checklist li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.45;
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.price {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price__value {
    margin-top: 24px;
    color: var(--accent);
    font-size: 26px;
    font-weight: 900;
}

.quiz {
    display: grid;
    gap: 14px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-result {
    display: none;
    grid-column: 1 / -1;
    align-self: center;
    width: min(980px, 100%);
    margin: 0 auto;
    padding: clamp(34px, 5vw, 58px);
    border: 1px solid rgba(16, 22, 36, .1);
    border-radius: 34px;
    background:
            radial-gradient(circle at 100% 0%, rgba(16, 191, 167, .12), transparent 34%),
            linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 250, 252, .94));
    box-shadow: 0 28px 90px rgba(21, 35, 63, .11);
}

.form-result.is-visible {
    display: block;
}

.form-result__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: clamp(26px, 4vw, 54px);
    align-items: center;
}

.form-result__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.form-result__badge::before {
    content: "";
    width: 38px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.form-result__mark {
    display: inline-grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin-bottom: 24px;
    border-radius: 24px;
    color: #ffffff;
    background: var(--accent);
    box-shadow: 0 20px 42px rgba(16, 191, 167, .24);
}

.form-result__mark svg {
    width: 38px;
    height: 38px;
}

.form-result__steps {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.form-result__steps li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(16, 22, 36, .09);
}

.form-result__steps li:last-child {
    border-bottom: 0;
}

.form-result__steps span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--accent);
    background: rgba(16, 191, 167, .1);
    font-size: 13px;
    font-weight: 900;
}

.form-result__steps strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.22;
    letter-spacing: -.02em;
}

.form-result__steps small {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.42;
}

#quiz.has-form-result .grid > div:first-child,
#quiz.has-form-result [data-lead-form] {
    display: none !important;
}

.form-result__title {
    max-width: 560px;
    margin: 0 0 16px;
    color: var(--text);
    font-size: clamp(34px, 4.8vw, 58px);
    font-weight: 900;
    line-height: .96;
    letter-spacing: -.055em;
}

.form-result__text {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.5;
}

.form-result--success .form-result__title {
    color: var(--accent);
}

.form-result--error .form-result__title {
    color: #c0392b;
}

.quiz label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.quiz input,
.quiz select,
.quiz textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 15px;
    border: 1px solid rgba(16, 22, 36, .14);
    color: var(--text);
    background: #ffffff;
    outline: none;
}

.quiz textarea {
    min-height: 96px;
    resize: vertical;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.choice-pill {
    position: relative;
    display: block;
    cursor: pointer;
}

.choice-pill input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.choice-pill span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid rgba(16, 22, 36, .14);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    font-size: 14px;
    font-weight: 650;
    letter-spacing: -.01em;
    transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.choice-pill input:checked + span {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(16, 191, 167, .16);
}

.quiz input:focus,
.quiz select:focus,
.quiz textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(10, 191, 158, .12);
}

.consent-check {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.consent-check input {
    width: 18px;
    min-height: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--accent);
}

.consent-check a,
.cookie-banner a {
    color: var(--accent);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner {
    position: fixed;
    z-index: 140;
    left: clamp(16px, 3vw, 34px);
    right: clamp(16px, 3vw, 34px);
    bottom: 18px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
    padding: 16px 18px;
    border: 1px solid rgba(16, 22, 36, .1);
    border-radius: 22px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 18px 60px rgba(21, 35, 63, .14);
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-banner__text {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.42;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner .btn {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 12px;
    white-space: nowrap;
}

.cookie-banner .btn--ghost {
    color: var(--muted);
    background: transparent;
    border: 1px solid rgba(16, 22, 36, .14);
    border-radius: 999px;
    padding: 10px 16px;
    text-decoration: none;
}

.presentation-overlay {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: none;
    pointer-events: none;
}

.presentation-overlay.is-active {
    display: block;
}

.presentation-panel {
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: auto;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    pointer-events: auto;
}



.section.is-highlighted::after {
    content: "";
    position: absolute;
    left: clamp(18px, 5vw, 72px);
    right: clamp(18px, 5vw, 72px);
    top: 96px;
    height: 2px;
    background: var(--accent);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    pointer-events: none;
}

.progress {
    position: fixed;
    z-index: 80;
    left: clamp(18px, 4vw, 56px);
    bottom: 22px;
    display: flex;
    gap: 8px;
}

.progress button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(16,22,36,.22);
}

.progress button.is-active {
    background: var(--accent);
}


/* Final clean hero responsive system. Do not add more hero media overrides below this block. */
.progress,
.hero-benefits {
    display: none;
}

.topbar {
    z-index: 110;
    padding: 18px clamp(18px, 5vw, 70px);
}

.topbar__action {
    min-height: 30px;
    padding: 7px 14px;
    font-size: 12px;
}

.section.hero-section {
    max-width: none;
    width: 100%;
    min-height: 100svh;
    padding: 108px clamp(34px, 5vw, 70px) 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section.hero-section::before {
    left: 50%;
    right: auto;
    top: 68px;
    width: min(1000px, calc(100vw - 88px));
    transform: translateX(-50%);
}

.section.hero-section::after {
    right: clamp(-120px, -7vw, -44px);
    top: 50%;
    transform: translateY(-50%);
}

.hero-section .hero-layout {
    position: relative;
    width: min(930px, calc(100vw - 88px));
    min-height: 610px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 470px 380px;
    gap: 72px;
    align-items: start;
}

.hero-section .hero-main {
    position: relative;
    z-index: 5;
    max-width: 470px;
    padding-top: 0;
}

.hero-section .audit-kicker {
    width: 350px;
    margin: 0 0 18px;
    font-size: 14px;
}

.hero-section .hero-title {
    width: 470px;
    max-width: 470px;
    margin: 0 0 32px;
    font-size: 43px;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-section .hero-text {
    width: 405px;
    max-width: 405px;
    margin: 0 0 38px;
    font-size: 19px;
    line-height: 1.5;
}

.hero-section .hero-person {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 42px;
    width: 400px;
    min-width: 380px;
    height: 700px;
    pointer-events: none;
}

.hero-section .hero-video-cta {
    position: relative;
    z-index: 8;
    display: inline-flex;
    width: auto;
    max-width: none;
    margin: 0;
}

.hero-section .hero-video-cta__inner {
    min-height: 58px;
    padding: 10px 12px 10px 28px;
    gap: 12px;
}

.hero-section .hero-video-cta__text {
    font-size: 21px;
    font-weight: 800;
    white-space: nowrap;
}

.hero-section .hero-video-cta__icon {
    width: 42px;
    height: 42px;
}

.hero-section .quick-audit {
    grid-column: 1 / -1;
    position: relative;
    z-index: 6;
    width: 470px;
    max-width: 470px;
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.hero-section .quick-list {
    width: 100%;
    max-width: 470px;
}

.hero-section .quick-list li {
    grid-template-columns: 28px 1fr;
    gap: 8px;
    padding: 8px 0;
    font-size: 16px;
    line-height: 1.22;
    font-weight: 500;
}

.hero-section .quick-list svg {
    width: 20px;
    height: 20px;
}

.hero-section .quick-visual {
    display: none;
}
@media (min-width: 1500px) and (min-height: 850px) {
    .hero-section .hero-layout {
        transform: scale(1.08);
        transform-origin: center center;
    }
}

@media (max-width: 1200px) {
    .hero-section .hero-layout {
        width: min(880px, calc(100vw - 72px));
        grid-template-columns: 440px 360px;
        gap: 48px;
    }

    .hero-section .hero-title {
        width: 440px;
        max-width: 440px;
        font-size: 40px;
    }

    .hero-section .hero-text {
        width: 380px;
        max-width: 380px;
    }

    .hero-section .hero-person {
        width: 450px;
        min-width: 360px;
        height: 650px;
    }

    .hero-section .quick-audit,
    .hero-section .quick-list {
        width: 440px;
        max-width: 440px;
    }

    .presentation-cues {
        left: -440px;
        width: 400px;
        min-width: 0;
    }

    .presentation-lock .hero-section .hero-person {
        left: calc(50% + 45px);
        right: auto;
        width: min(390px, 34vw);
        min-width: 330px;
    }
}

@media (max-width: 980px) {
    .topbar {
        padding: 18px clamp(24px, 5vw, 42px);
    }

    .brand__logo {
        width: clamp(180px, 30vw, 230px);
    }

    .topbar__action {
        min-height: 44px;
        padding: 12px 24px;
        font-size: 12px;
    }

    .section.hero-section {
        padding: 96px clamp(24px, 5vw, 42px) 46px;
    }

    .section.hero-section::before {
        top: 76px;
        left: clamp(24px, 5vw, 42px);
        right: clamp(24px, 5vw, 42px);
        width: auto;
        transform: none;
    }

    .hero-section .hero-layout {
        width: min(720px, 100%);
        min-height: auto;
        grid-template-columns: minmax(0, 380px) 300px;
        gap: 36px;
        align-items: center;
    }

    .hero-section .hero-title {
        width: 380px;
        max-width: 380px;
        font-size: 36px;
    }

    .hero-section .hero-text {
        width: 300px;
        max-width: 300px;
        font-size: 19px;
    }

    .hero-section .hero-person {
        /*position: relative;*/
        right: auto;
        top: auto;
        width: 350px;
        min-width: 300px;
        height: 600px;
        justify-self: end;
        align-self: center;
    }

    .hero-section .presentation-cues {
        left: -360px;
        top: 50%;
        width: 330px;
        min-width: 0;
        transform: translateY(-50%);
    }

    .presentation-lock .hero-section .hero-person {
        left: calc(50% + 25px);
        right: auto;
        top: 50%;
        width: min(330px, 43vw);
        min-width: 280px;
        height: min(600px, 78vh);
        transform: translateY(-50%);
    }

    .hero-section .presentation-cue {
        min-height: 360px;
        padding: 26px;
    }

    .hero-section .presentation-cue__icon {
        width: 58px;
        height: 58px;
        margin-bottom: 22px;
    }

    .hero-section .presentation-cue__icon svg {
        width: 30px;
        height: 30px;
    }

    .hero-section .presentation-cue__title {
        font-size: clamp(30px, 4vw, 42px);
    }

    .hero-section .presentation-cue__text {
        font-size: 17px;
    }

    .hero-section .quick-audit {
        width: 390px;
        max-width: 390px;
        margin-top: 28px;
    }

    .hero-section .quick-list {
        max-width: 390px;
    }

    .hero-section .quick-list li {
        grid-template-columns: 26px 1fr;
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    html {
        scroll-snap-type: y mandatory;
        scroll-padding-top: 0;
    }

    body {
        scroll-snap-type: y mandatory;
    }
    #quiz .form-result {
        grid-column: auto;
    }

    #quiz.has-form-result {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 94px;
        padding-bottom: 40px;
        overflow: hidden;
    }

    #quiz.has-form-result .grid {
        height: auto;
        max-height: calc(100svh - 122px);
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    #quiz.has-form-result .form-result {
        width: 100%;
        margin: 0;
        padding: 22px 18px;
        border-radius: 24px;
    }

    #quiz.has-form-result .form-result__layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    #quiz.has-form-result .form-result__mark {
        width: 54px;
        height: 54px;
        margin-bottom: 14px;
        border-radius: 18px;
    }

    #quiz.has-form-result .form-result__mark svg {
        width: 30px;
        height: 30px;
    }

    #quiz.has-form-result .form-result__badge {
        margin-bottom: 12px;
        font-size: 9px;
        letter-spacing: .12em;
    }

    #quiz.has-form-result .form-result__title {
        margin-bottom: 10px;
        font-size: clamp(25px, 7vw, 34px);
        line-height: 1;
    }

    #quiz.has-form-result .form-result__text {
        font-size: 13px;
        line-height: 1.38;
    }

    #quiz.has-form-result .form-result__steps {
        gap: 0;
    }

    #quiz.has-form-result .form-result__steps li {
        grid-template-columns: 28px 1fr;
        gap: 10px;
        padding: 11px 0;
    }

    #quiz.has-form-result .form-result__steps span {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    #quiz.has-form-result .form-result__steps strong {
        margin-bottom: 3px;
        font-size: 13px;
    }

    #quiz.has-form-result .form-result__steps small {
        font-size: 12px;
        line-height: 1.32;
    }
    .topbar {
        padding: 16px 24px;
    }

    .brand__logo {
        width: clamp(180px, 42vw, 220px);
    }

    .topbar__action {
        min-height: 40px;
        padding: 10px 18px;
        font-size: 10px;
    }

    .section.hero-section {
        min-height: 100svh;
        height: 100svh;
        padding: 94px 24px 40px;
        align-items: center;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .section:not(.hero-section) {
        min-height: 100svh;
        height: 100svh;
        padding: 94px 24px 40px;
        align-items: center;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        overflow-y: auto;
    }

    .section:not(.hero-section) .grid {
        max-height: calc(100svh - 134px);
        overflow-y: auto;
    }

    #formats {
        display: flex;
        align-items: stretch;
        justify-content: center;
        padding: 88px 18px 28px;
        overflow: hidden;
    }

    #formats .grid {
        width: 100%;
        max-height: none;
        overflow: visible;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 14px;
    }

    #formats .eyebrow {
        margin-bottom: 10px;
        font-size: 10px;
        letter-spacing: .14em;
    }

    #formats h2 {
        margin-bottom: 10px;
        font-size: clamp(28px, 8vw, 36px);
        line-height: .98;
        letter-spacing: -.055em;
    }

    #formats .lead {
        max-width: 100%;
        margin-bottom: 0;
        font-size: 14px;
        line-height: 1.35;
    }

    #formats .cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        max-height: calc(100svh - 330px);
        overflow-y: auto;
        padding-right: 4px;
        overscroll-behavior: contain;
    }

    #formats .card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        align-items: end;
        padding: 13px 0 14px;
        border-bottom: 1px solid rgba(16, 22, 36, .11);
    }

    #formats .card strong {
        margin-bottom: 5px;
        font-size: 17px;
        line-height: 1.12;
    }

    #formats .card p {
        margin-bottom: 0;
        font-size: 12px;
        line-height: 1.32;
    }

    #formats .price__value {
        min-width: 92px;
        margin-top: 0;
        color: var(--accent);
        font-size: 14px;
        line-height: 1.15;
        text-align: right;
        white-space: normal;
    }

    #formats .actions {
        display: flex;
        margin-top: 2px;
    }

    #formats .actions .btn {
        width: 100%;
        min-height: 52px;
        padding: 15px 20px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    #quiz {
        height: 100svh;
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 84px 16px 18px;
        overflow: hidden;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    #quiz .grid {
        width: 100%;
        max-width: 430px;
        height: calc(100svh - 102px);
        max-height: 680px;
        margin: 0 auto;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        gap: 10px;
        padding: 18px 16px 16px;
        border: 1px solid rgba(16, 22, 36, .08);
        border-radius: 26px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 18px 50px rgba(21, 35, 63, .09);
    }

    #quiz .eyebrow {
        margin-bottom: 5px;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .14em;
    }

    #quiz h2 {
        max-width: 360px;
        margin-bottom: 6px;
        font-size: clamp(19px, 5vw, 23px);
        font-weight: 760;
        line-height: 1.08;
        letter-spacing: -.035em;
    }

    #quiz .lead {
        max-width: 360px;
        margin-bottom: 0;
        font-size: 12px;
        font-weight: 420;
        line-height: 1.3;
    }

    #quiz .text {
        display: none;
    }

    #quiz .quiz {
        min-height: 0;
        max-height: none;
        overflow: hidden;
        gap: 7px;
        padding: 0;
        overscroll-behavior: none;
        -webkit-overflow-scrolling: auto;
        scroll-padding-top: 0;
        scroll-padding-bottom: 0;
        align-content: start;
    }

    #quiz .quiz label {
        gap: 4px;
        font-size: 10px;
        font-weight: 650;
        color: var(--muted);
        line-height: 1.15;
    }

    #quiz .quiz input,
    #quiz .quiz select,
    #quiz .quiz textarea {
        min-height: 34px;
        padding: 7px 10px;
        border-radius: 12px;
        border-color: rgba(16, 22, 36, .12);
        font-size: 16px;
        font-weight: 430;
        line-height: 1.2;
        background: #ffffff;
    }

    #quiz .quiz textarea {
        min-height: 48px;
        max-height: 64px;
    }

    #quiz .quiz .btn {
        width: 100%;
        min-height: 44px;
        margin-top: 2px;
        padding: 11px 18px;
        font-size: 13px;
        font-weight: 850;
        text-transform: none;
        letter-spacing: 0;
        box-shadow: 0 14px 30px rgba(16, 191, 167, .16);
    }

    #quiz .consent-check {
        grid-template-columns: 16px 1fr;
        gap: 8px;
        font-size: 10px;
        line-height: 1.25;
    }

    #quiz .consent-check input {
        width: 16px;
        min-height: 16px;
        height: 16px;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
        border-radius: 18px;
    }

    .cookie-banner__text {
        font-size: 11px;
        line-height: 1.32;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner .btn {
        flex: 1;
        min-height: 40px;
        padding: 9px 12px;
        font-size: 11px;
    }

    .choice-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
    }

    /* .choice-pill and .choice-pill input removed */

    .choice-pill span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 32px;
        padding: 7px 6px;
        border: 1px solid rgba(16, 22, 36, .12);
        border-radius: 999px;
        background: #ffffff;
        color: var(--text);
        font-size: 11px;
        font-weight: 760;
        letter-spacing: 0;
        transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
    }

    .choice-pill input:checked + span {
        border-color: var(--accent);
        background: var(--accent);
        color: #ffffff;
        box-shadow: 0 8px 18px rgba(16, 191, 167, .1);
    }

    #quiz .quiz select {
        appearance: none;
        background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
        background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
        background-size: 5px 5px, 5px 5px;
        background-repeat: no-repeat;
        padding-right: 30px;
    }

    .section.hero-section::before {
        top: 78px;
        left: 24px;
        right: 24px;
    }

    .hero-section .hero-layout {
        display: block;
        width: min(100%, 350px);
        min-height: auto;
        position: relative;
    }

    .hero-section .hero-main {
        width: 100%;
        max-width: 100%;
    }

    .hero-section .audit-kicker {
        width: min(300px, 100%);
        margin: 0 0 22px;
        font-size: 12px;
        letter-spacing: .26em;
    }

    .hero-section .hero-title {
        width: min(280px, 68vw);
        max-width: 300px;
        margin: 0 0 30px;
        font-size: clamp(26px, 7.1vw, 34px);
        min-width: 300px;
    }

    .hero-section .hero-text {
        position: relative;
        z-index: 6;
        width: min(220px, 54vw);
        max-width: 220px;
        margin: 70px 0 146px;
        font-size: clamp(17px, 4.8vw, 22px);
    }

    .hero-section .hero-person {
        position: absolute;
        z-index: 3;
        right: clamp(-38px, -8vw, -24px);
        top: 115px;
        width: clamp(240px, 55vw, 285px);
        min-width: 0;
        height: clamp(400px, 82vw, 500px);
    }

    .hero-section .presentation-cues {
        left: calc(-48vw - 12px);
        right: auto;
        top: 50%;
        bottom: auto;
        width: 48vw;
        min-width: 0;
        transform: translateY(-50%);
    }

    .presentation-lock .hero-section .hero-person {
        position: fixed;
        right: -34px;
        top: 50%;
        width: 50vw;
        min-width: 0;
        height: 68vh;
        transform: translateY(-50%);
    }

    .hero-section .presentation-cue {
        min-height: 0;
        padding: 18px 0 0 18px;
    }

    .hero-section .presentation-cue__kicker {
        margin-bottom: 12px;
        font-size: 10px;
    }

    .hero-section .presentation-cue__icon {
        width: 42px;
        height: 42px;
        margin-bottom: 14px;
        border-radius: 14px;
    }

    .hero-section .presentation-cue__icon svg {
        width: 24px;
        height: 24px;
    }

    .hero-section .presentation-cue__title {
        max-width: 245px;
        margin-bottom: 10px;
        font-size: 27px;
    }

    .hero-section .presentation-cue__text {
        max-width: 245px;
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.3;
    }

    .hero-section .presentation-cue__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        max-width: 245px;
    }

    .hero-section .presentation-cue__fact {
        padding-top: 10px;
    }

    .hero-section .presentation-cue__fact strong {
        font-size: 20px;
    }

    .hero-section .presentation-cue__fact span {
        font-size: 11px;
    }

    .hero-section .hero-video-cta {
        display: flex;
        width: min(100%, 220px);
        margin-top: -100px;
    }
    .hero-section .hero-video-cta__text{
        white-space: break-spaces;
    }
    .hero-section .hero-video-cta__inner {
        width: 100%;
        min-height: 62px;
        padding: 10px 12px 10px 24px;
        justify-content: space-between;
    }

    .hero-section .hero-video-cta__text {
        font-size: clamp(17px, 4.5vw, 23px);
    }

    .hero-section .hero-video-cta__icon {
        min-width: 46px;
        min-height: 46px;
    }

    .hero-section .quick-audit {
        width: min(300px, 76vw);
        max-width: 300px;
        /* margin-top: 155px;*/
    }

    .hero-section .quick-list {
        max-width: 300px;
    }

    .hero-section .quick-list li {
        grid-template-columns: 30px 1fr;
        padding: 0px 0;
        font-size: clamp(12px, 3.9vw, 12px);
    }

    .hero-section .quick-list svg {
        width: 24px;
        height: 24px;
    }

    .hero-section .quick-visual {
        display: block;
        position: absolute;
        z-index: 4;
        right: -71px;
        bottom: -30px;
        top: auto;
        width: 200px;
        min-height: 200px;
        margin: 0;
    }
}

@media (max-width: 650px) {
    .hero-section .hero-person {

        width: 300px;
    }

    .topbar {
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand__logo {
        width: 170px;
    }

    .topbar__action {
        padding: 9px 13px;
        font-size: 10px;
    }

    .section.hero-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-section .hero-title {
        width: 230px;
        max-width: 230px;
        font-size: 25px;
    }

    .hero-section .hero-text {
        width: 178px;
        max-width: 178px;
        margin-bottom: 42px;
        font-size: 17px;
    }

    .hero-section .hero-person {
        top: 80px;
        right: -48px;
        width: 235px;
        height: 420px;
    }

    .hero-section .hero-video-cta {
        max-width: 328px;
        margin-top: -2vh;
    }

    .hero-section .hero-video-cta__inner {
        min-height: 58px;
        padding-left: 20px;
    }

    .hero-section .hero-video-cta__text {
        font-size: 17px;
    }

    .hero-section .hero-video-cta__icon {
        width: 42px;
        height: 42px;
    }

    .presentation-lock .hero-section .hero-person {
        right: -42px;
        top: 50%;
        width: 52vw;
        height: 66vh;
        transform: translateY(-50%);
    }

    .hero-section .presentation-cues {
        left: calc(-50vw - 10px);
        width: 50vw;
    }

    /* .hero-section .quick-audit {
         margin-top: 138px;
     }*/
}