:root {
    --desktop-canvas: 1440px;
    --desktop-panel: 1420px;
    --paper: #fff6e6;
    --ink: #2a2a2a;
    --muted: #555350;
    --line: #d2dce5;
    --pale: #f2f8fb;
    --gold: #c8a55b;
    --gold-dark: #b79345;
    --soft: #cfcbc5;
    --card: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    background: var(--paper);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter Tight", "Inter", Arial, sans-serif;
    line-height: 1.3;
    letter-spacing: 0;
    font-synthesis: none;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

body,
button,
input,
textarea,
select {
    font-family: "Inter Tight", "Inter", Arial, sans-serif;
    letter-spacing: 0;
}

body.menu-open {
    overflow: hidden;
}

body.cookie-modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

img {
    display: block;
    max-width: 100%;
}

section[id],
.reviews-heading[id] {
    scroll-margin-top: 96px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    min-height: 71px;
    padding: 15px 60px;
    background: rgba(255, 246, 230, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    transform: translateY(0);
    transition: transform 0.28s ease;
    will-change: transform;
}

.site-header.is-hidden {
    transform: translateY(calc(-100% - 1px));
}

main {
    padding-top: 71px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 194px;
    height: 40px;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 34px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.desktop-nav a:hover {
    color: var(--ink);
}

.login-button:hover {
    background: #2f2f2f;
}

.support-button:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.login-button,
.support-button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 500;
    white-space: nowrap;
}

.login-button {
    min-height: 40px;
    padding: 9px 24px;
    background: #3c3c3c;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
}

.login-button.light {
    background: #fff;
    color: #3c3c3c;
}

.primary-button {
    min-height: 60px;
    padding: 18px 38px;
    background: var(--gold);
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    transition: background 0.2s ease, transform 0.2s ease;
}

.primary-button:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.support-button {
    min-height: 40px;
    padding: 11px 20px;
    border: 1px solid #3c3c3c;
    color: #3c3c3c;
    font-size: 14px;
    line-height: 1.1;
}

.support-button.gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.footer-cookie-settings {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 24px;
    width: min(900px, calc(100vw - 48px));
    padding: 20px 24px;
    border-radius: 12px;
    background: #3C3C3C;
    box-shadow: 0 18px 60px rgba(42, 42, 42, 0.2);
    transform: translateX(-50%);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-text {
    flex: 1 1 260px;
    margin: 0;
    color: #F7F3EC;
    font-size: 13px;
    line-height: 1.6;
}

.cookie-text a {
    color: #C8A45B;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-buttons,
.cookie-modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.btn-settings,
.btn-accept {
    border-radius: 8px;
    padding: 8px 18px;
    font: inherit;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
    cursor: pointer;
}

.btn-settings {
    border: 1px solid #A8A9AD;
    background: transparent;
    color: #F7F3EC;
}

.btn-settings:hover {
    border-color: #F7F3EC;
}

.btn-accept {
    border: 1px solid #C8A45B;
    background: #C8A45B;
    color: #fff;
    font-weight: 500;
}

.btn-accept:hover {
    background: #D6B97A;
    border-color: #D6B97A;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cookie-modal.is-open {
    display: flex;
}

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(42, 42, 42, 0.48);
    cursor: pointer;
}

.cookie-modal-dialog {
    position: relative;
    width: min(560px, 100%);
    padding: 28px;
    border-radius: 12px;
    background: #F7F3EC;
    color: #3C3C3C;
    box-shadow: 0 20px 80px rgba(42, 42, 42, 0.24);
}

.cookie-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #3C3C3C;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.cookie-modal-dialog h2 {
    margin: 0 40px 12px 0;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 500;
}

.cookie-modal-dialog p {
    margin: 0 0 20px;
    color: #3C3C3C;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-top: 1px solid #D1DCE5;
    border-bottom: 1px solid #D1DCE5;
}

.cookie-toggle span {
    display: grid;
    gap: 5px;
}

.cookie-toggle strong {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
}

.cookie-toggle small {
    color: #3C3C3C;
    font-size: 13px;
    line-height: 1.4;
}

.cookie-toggle input {
    width: 46px;
    height: 24px;
    flex: 0 0 auto;
    accent-color: #C8A45B;
}

.cookie-modal-actions {
    justify-content: flex-end;
    margin-top: 22px;
}

.cookie-modal-actions .btn-settings {
    color: #3C3C3C;
    border-color: #A8A9AD;
}

.cookie-modal-actions .btn-settings:hover {
    border-color: #3C3C3C;
}

.button-icon {
    display: block;
    flex: 0 0 auto;
}

.primary-icon {
    width: 15px;
    height: 20px;
}

.login-icon {
    width: 14px;
    height: 18px;
}

.support-icon {
    width: 14px;
    height: 14px;
}

.menu-button,
.menu-close {
    display: none;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 707px;
    padding: 60px 60px 0;
    overflow: visible;
}

.hero-kicker {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
}

.hero-kicker span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
}

.hero h1 {
    max-width: 760px;
    margin: 0 auto;
    font-size: 60px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-align: center;
    transform: translateY(2px);
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    max-width: 636px;
    margin: 30px auto 0;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    transform: translateY(2px);
}

.hero-button {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 306px;
    margin-top: 42px;
}

.hero-button:hover {
    transform: translateX(-50%) translateY(-1px);
}

.hero-devices {
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 533px;
    transform: translateX(-50%);
    height: 720px;
    width: min(1260px, calc(100% - 120px));
}

.tablet-device {
    position: absolute;
    left: 0;
    top: 0;
    width: min(68vw, 912px);
}

.phone-device {
    position: absolute;
    right: 5px;
    top: 5px;
    width: min(25vw, 330px);
}

.device-screen,
.device-frame {
    position: absolute;
    inset: 0;
}

.tablet-device,
.tablet-device .device-frame {
    aspect-ratio: 912 / 663;
}

.phone-device,
.phone-device .device-frame {
    aspect-ratio: 330 / 652;
}

.tablet-screen {
    left: 2.1%;
    top: 3.5%;
    width: 95.4%;
    height: 92%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.tablet-screen img {
    position: absolute;
    left: 0;
    top: 2%;
    width: 108%;
    height: 108%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
}

.phone-screen {
    left: 6.6%;
    top: 10.3%;
    width: 86.7%;
    height: 86.7%;
    overflow: hidden;
    background: #fff;
}

.phone-screen img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
}

.play-button {
    position: absolute;
    left: 36%;
    top: 38%;
    width: 100px;
    height: 100px;
    border: 0;
    border-radius: 50%;
    background: url("/assets/figma/play-button.svg") center / contain no-repeat;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 5;
}

.play-button:hover,
.play-button:focus-visible {
    transform: scale(1.06);
    outline: none;
}

.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
}

.video-modal.is-open {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    cursor: pointer;
}

.video-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 960px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
    background: rgba(200, 164, 91, 0.95);
    transform: scale(1.05);
    outline: none;
}

.video-modal-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.video-modal-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

body.video-modal-open {
    overflow: hidden;
}

.material-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.material-modal.is-open {
    display: flex;
}

.material-modal-backdrop {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: rgba(42, 42, 42, 0.82);
    cursor: pointer;
}

.material-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 1180px);
    max-height: 88vh;
    border-radius: 14px;
    background: var(--pale);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.material-modal-dialog.is-portrait {
    width: min(86vw, 640px);
}

.material-modal-dialog.is-wide {
    width: min(92vw, 1180px);
}

.material-modal-dialog img {
    display: block;
    width: 100%;
    max-height: 88vh;
    object-fit: contain;
    background: var(--pale);
}

.material-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(42, 42, 42, 0.72);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.material-modal-close:hover,
.material-modal-close:focus-visible {
    background: rgba(200, 165, 91, 0.95);
    transform: scale(1.05);
    outline: none;
}

body.video-modal-open,
body.material-modal-open {
    overflow: hidden;
}

.dark-panel {
    width: calc(100% - 20px);
    max-width: var(--desktop-panel);
    margin: 0 auto;
    border-radius: 30px;
    background: var(--ink);
    color: var(--pale);
}

.method {
    height: 1316px;
    min-height: 0;
    padding: 614px 50px 125px;
}

.method-pin {
    position: relative;
}

.method h2,
.materials h2 {
    margin: 0 auto;
    max-width: 760px;
    font-size: 50px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-align: center;
}

.method h2 {
    max-width: 606px;
}

.materials h2 {
    max-width: 886px;
}

.method h2 span,
.materials h2 span,
.accent-note span {
    color: var(--gold);
}

.materials h2 span {
    color: var(--line);
}

.section-lead {
    max-width: 571px;
    margin: 25px auto 0;
    color: var(--soft);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
}

.method-scroll {
    position: relative;
    top: auto;
    max-width: 1320px;
    margin: 47px auto 0;
    overflow: visible;
}

.method-track {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 45px;
    will-change: auto;
}

.method-card {
    min-width: 0;
    min-height: 226px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: transparent;
    transition: color 0.25s ease;
}

.method-card.is-active {
    background: transparent;
    color: #fff;
}

.method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 42px;
    border-radius: 4px;
    background: var(--gold);
}

.method-card:not(.is-active) .method-icon {
    background: var(--pale);
    color: var(--ink);
    border: 1px solid var(--gold);
}

.method-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.method-card:first-child .method-icon img {
    width: 24px;
    height: 24px;
}

.method-card h3 {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.method-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
}

.method-card.result {
    position: relative;
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 760px;
    width: 690px;
    min-height: 0;
    margin-top: 7px;
    text-align: center;
    transform: translateX(1px);
}

.method-card.result .method-icon {
    margin: 0 auto 20px;
    border: 1px solid var(--gold);
    background: var(--pale);
}

.method-card.result.is-active .method-icon {
    background: var(--gold);
}

.method-card.result.is-active .method-icon img {
    filter: brightness(0) invert(1);
}

.method-card .method-result-text {
    color: var(--pale);
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
    white-space: nowrap;
}

.method-result-text span {
    color: var(--gold);
}

.method-card.result::before,
.method-card.result::after {
    content: "";
    position: absolute;
    top: 68px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pale);
}

.method-card.result::before {
    left: -25px;
}

.method-card.result::after {
    right: -25px;
}

.method-flow {
    position: absolute;
    z-index: 0;
    left: 40px;
    top: 19px;
    width: calc(100% - 7px);
    height: 280px;
    margin: 0;
}

.method-flow-svg {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    overflow: visible;
}

.method-flow-fg {
    transition: stroke-dashoffset 0.25s ease-out;
}

.method-flow-bar {
    display: none;
}

.process,
.audience,
.about,
.quiz-cta,
.site-footer {
    padding: 120px 60px;
}

.process {
    display: grid;
    grid-template-columns: minmax(260px, 492px) minmax(0, 786px);
    gap: 42px;
    padding-bottom: 125px;
}

.process h2,
.audience h2,
.pricing h2,
.about h2,
.results h2,
.quiz-cta h2,
.faq h2,
.site-footer h2 {
    margin: 0;
    font-size: 50px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.process h2 {
    align-self: start;
    transform: translateY(5px);
}

.process-title-desktop-fragment {
    color: inherit !important;
}

.process-title-mobile-break,
.process-title-mobile-word {
    display: none;
}

.process h2 span,
.audience h2 span,
.about h2 span,
.site-footer h2 span {
    color: #a5c8e8;
}

.steps article {
    display: grid;
    grid-template-columns: 61px 1fr;
    grid-template-areas:
        "badge title"
        ". copy";
    column-gap: 49px;
    row-gap: 15px;
    padding: 25.45px 0;
    border-top: 1px solid var(--line);
}

.steps {
    margin-top: 19px;
}

.steps article:last-child {
    border-bottom: 1px solid var(--line);
}

.steps span {
    grid-area: badge;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 61px;
    height: 26px;
    border-radius: 4px;
    background: var(--line);
    color: rgba(42, 42, 42, 0.8);
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0;
}

.steps h3 {
    grid-area: title;
    margin: 0;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.steps p {
    grid-area: copy;
    margin: 0;
    max-width: 660px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0;
}

.materials {
    min-height: 1068px;
    height: auto;
    padding: 125px 50px 111px;
}

.materials-preview {
    display: grid;
    grid-template-columns: minmax(0, 910px) minmax(0, 1fr);
    gap: 40px;
    max-width: 1320px;
    min-height: 600px;
    margin: 45px auto 0;
    padding: 20px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--pale);
    color: var(--ink);
}

.materials-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 435px));
    gap: 20px;
    height: 600px;
    min-height: 0;
    margin: -20px 0;
    overflow: hidden;
}

.materials-mobile-gallery {
    display: none;
}

.materials-column {
    position: relative;
    min-width: 0;
    height: 100%;
    overflow: hidden;
}

.materials-column--down {
    --marquee-start: -50%;
}

.materials-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    transform: translate3d(0, 0, 0);
    animation: materialsColumnUp 40s linear infinite;
    will-change: transform;
}

.materials-column--down .materials-track {
    transform: translate3d(0, var(--marquee-start), 0);
    animation-name: materialsColumnDown;
    animation-duration: 56s;
}

.materials-shot {
    position: relative;
    width: 100%;
    flex: 0 0 auto;
    border: 1px solid rgba(42, 42, 42, 0.08);
    border-radius: 12px;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.materials-shot img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    background: var(--pale);
    pointer-events: none;
    transition: transform 0.2s ease;
}

.materials-shot:hover img,
.materials-shot:focus-visible img {
    transform: scale(1.02);
}

.materials-shot--wide {
    aspect-ratio: 2418 / 1348;
}

.materials-shot--portrait {
    aspect-ratio: 912 / 1280;
}

@keyframes materialsColumnUp {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, -50%, 0); }
}

@keyframes materialsColumnDown {
    from { transform: translate3d(0, -50%, 0); }
    to { transform: translate3d(0, 0, 0); }
}

@keyframes materialsRowLeft {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

@keyframes materialsRowRight {
    from { transform: translate3d(-50%, 0, 0); }
    to   { transform: translate3d(0, 0, 0); }
}

@keyframes materialsMobileScreens {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .materials-track,
    .materials-mobile-track { animation: none; }
}

.materials-list {
    align-self: center;
    padding-right: 40px;
}

.materials-list p {
    margin: 0;
    padding: 28px 0;
    border-bottom: 1px solid var(--gold);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.materials-list p:last-child {
    border-bottom: 0;
}

@media (min-width: 981px) {
    .materials-preview {
        grid-template-columns: minmax(0, 890px) minmax(300px, 350px);
        gap: clamp(24px, 3vw, 40px);
    }

    .materials-gallery {
        gap: 16px;
    }

    .materials-list {
        position: relative;
        align-self: start;
        width: 350px;
        height: 267px;
        margin-top: 146px;
        padding-right: 0;
    }

    .materials-list::before,
    .materials-list::after {
        content: "";
        position: absolute;
        left: 0;
        width: 330px;
        height: 1px;
        background: var(--gold);
    }

    .materials-list::before {
        top: 88px;
    }

    .materials-list::after {
        top: 178px;
    }

    .materials-list p {
        position: absolute;
        left: 0;
        padding: 0;
        border-bottom: 0;
    }

    .materials-list p:nth-child(1) {
        top: 0;
        width: 347px;
    }

    .materials-list p:nth-child(2) {
        top: 119px;
        width: 336px;
    }

    .materials-list p:nth-child(3) {
        top: 209px;
        width: 261px;
    }

}

.accent-note {
    max-width: 758px;
    margin: 45px auto 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
}

.audience h2 {
    max-width: 830px;
    color: var(--ink);
}

.audience {
    padding: 125px 60px 110px;
}

.audience h2 span {
    color: var(--gold);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.95fr;
    gap: 46px;
    margin-top: 45px;
    align-items: stretch;
}

.audience-grid > img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
}

.audience-grid ul {
    display: grid;
    grid-template-rows: 127px 93px 93px 93px 102px;
    height: 510px;
    margin: 0;
    padding: 0 30px;
    list-style: none;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    background: #fff;
}

.audience-grid li {
    --audience-copy-offset: 20px;
    position: relative;
    display: block;
    padding: var(--audience-copy-offset) 0 0 45px;
    border-bottom: 1px solid var(--gold);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
}

.audience-grid li:first-child {
    --audience-copy-offset: 29px;
}

.audience-grid .audience-item-copy {
    display: block;
    max-width: 411px;
    color: var(--ink);
}

.audience-grid .audience-item-accent {
    color: var(--gold);
}

.audience-grid li:last-child {
    border-bottom: 0;
}

.audience-grid .check-icon {
    position: absolute;
    left: 0;
    top: calc(var(--audience-copy-offset) + 5px);
    transform: none;
    width: 30px;
    height: 30px;
}

.scenarios {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-top: 55px;
    padding: 40px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.scenarios h3 {
    margin: 0;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.01em;
}

.scenario-icon {
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 28px;
}

.scenarios h4 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.scenarios p {
    margin: 0;
    max-width: 246px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
}

.pricing {
    display: grid;
    grid-template-columns: minmax(0, 724px) minmax(430px, 516px);
    gap: clamp(40px, 5.55vw, 80px);
    min-height: 785px;
    padding: 125px 50px;
}

.pricing h2 {
    max-width: 818px;
    letter-spacing: -0.5px;
}

.pricing h2 span {
    color: var(--gold);
}

.pricing-copy {
    max-width: 583px;
    margin: 25px 0 0;
    color: var(--pale);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.18px;
}

.pricing-copy span {
    display: block;
}

.pricing-copy-gap {
    margin-top: 20px;
}

.pricing-mobile-break {
    display: none;
}

.price-box {
    position: relative;
    height: 525px;
    margin-top: 10px;
    border-top: 1px solid var(--line);
}

.price-box p {
    position: absolute;
    left: 0;
    top: 10px;
    margin: 0;
    color: var(--pale);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
}

.price-box > strong:first-of-type {
    top: 53px;
    color: var(--gold);
}

.price-box strong {
    position: absolute;
    left: 0;
    display: block;
    margin: 0;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -4.8px;
}

.price-box strong:nth-of-type(2) {
    top: 260px;
    color: var(--pale);
}

.price-box del {
    position: absolute;
    left: 305px;
    top: 85px;
    display: block;
    margin: 0;
    color: #949494;
    font-size: 45px;
    line-height: 1.1;
    letter-spacing: -2.7px;
    white-space: nowrap;
}

.price-box small {
    position: absolute;
    left: 0;
    display: block;
    margin: 0;
    color: var(--pale);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
}

.price-box small:first-of-type {
    top: 146px;
}

.price-box small:nth-of-type(2) {
    top: 353px;
    width: 351px;
    line-height: 1.4;
}

.price-box hr {
    position: absolute;
    left: 0;
    right: 0;
    top: 205px;
    margin: 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.price-box .primary-button {
    position: absolute;
    left: 0;
    top: 464px;
    margin: 0;
}

.about {
    display: grid;
    grid-template-columns: minmax(0, 660px) minmax(0, 616px);
    gap: 45px 20px;
    min-height: 812px;
    padding: 125px 60px 86px;
}

.about-copy {
    display: contents;
}

.about-copy h2 {
    grid-column: 1 / -1;
    height: 50px;
}

.about-copy .large {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin: 29px 0 0;
    max-width: 583px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.about-copy .large span {
    display: block;
    margin-bottom: 29px;
    color: var(--gold);
}

.about-origin {
    color: var(--gold);
}

.about h2 span,
.results h2 span {
    color: var(--gold);
}

.about-copy p:not(.large) {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin: 177px 0 0;
    max-width: 616px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
}

.founders {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-self: start;
}

@media (min-width: 981px) {
    .founders {
        transform: translateY(-12px);
    }
}

.founders img {
    width: 100%;
    height: 410px;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 16px;
}

.founders h3 {
    margin: 15px 0 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
}

.founders a {
    color: var(--ink);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
}

.results {
    min-height: 1064px;
    height: auto;
    padding: 110px 50px;
    border: 1px solid #d9d9d9;
    background: var(--pale);
    color: var(--ink);
}

.results-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
    gap: clamp(40px, 5.6vw, 80px);
    align-items: start;
    max-width: 1320px;
    margin: 0 auto;
}

.results-grid p {
    max-width: 430px;
    margin: 25px 0 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.results-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.results-grid li {
    position: relative;
    padding: 20px 42px 20px 10px;
    border-top: 1px solid var(--gold);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
}

.results-grid li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
}

.results-grid li:last-child {
    border-bottom: 1px solid var(--gold);
}

.reviews-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 98px auto 0;
}

.reviews-title {
    margin: 0 !important;
}

.reviews-slider {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    width: 104px;
    height: 56px;
    border-radius: 8px;
    background: var(--gold);
}

.reviews-slider-mobile {
    display: none;
}

.reviews-slider span {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.78);
}

.reviews-slider-button {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.reviews-slider-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-30%, -50%) rotate(45deg);
}

.reviews-slider-button.next::before {
    transform: translate(-70%, -50%) rotate(225deg);
}

.reviews {
    display: grid;
    grid-auto-columns: calc((100% - 32px) / 2.5);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 16px;
    max-width: 1320px;
    margin: 39px auto 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.reviews::-webkit-scrollbar {
    display: none;
}

.reviews article {
    position: relative;
    min-width: 0;
    min-height: 332px;
    padding: 30px;
    border: 1px solid var(--gold);
    border-radius: 12px;
    background: #fff;
    scroll-snap-align: start;
}

.reviews article::after {
    content: "“";
    position: absolute;
    right: 29px;
    bottom: 54px;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 13px;
}

.reviews p {
    margin: 0;
    min-height: 214px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0;
}

.reviews h3 {
    margin: 20px 0 4px;
    padding-top: 16px;
    border-top: 1px solid var(--gold);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
}

.reviews span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
}

.quiz-cta {
    display: grid;
    grid-template-columns: 574px 475px;
    gap: 106px;
    min-height: 525px;
    padding: 135px 60px 90px;
}

.quiz-cta h2 {
    max-width: 575px;
    font-size: 50px;
}

.quiz-cta h2 span {
    color: var(--gold);
}

.quiz-cta p {
    margin: 9px 0 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.quiz-cta ul {
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
}

.quiz-cta li {
    position: relative;
    padding: 9px 0 9px 30px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
}

.quiz-check {
    position: absolute;
    left: 0;
    top: 11px;
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.quiz-cta small {
    display: inline-block;
    margin-left: 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
}

.faq {
    min-height: 1238px;
    height: auto;
    padding: 100px 50px;
    overflow: visible;
}

.faq h2 {
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    margin-top: 45px;
}

.faq details {
    border-top: 1px solid rgba(242, 248, 251, 0.28);
}

.faq details:last-child,
.faq details:nth-last-child(2) {
    border-bottom: 1px solid rgba(242, 248, 251, 0.28);
}

.faq summary {
    position: relative;
    padding: 20px 28px 20px 0;
    color: var(--pale);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
    cursor: pointer;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 11px;
    height: 6px;
    background: url("/assets/figma/faq-chevron.svg") center / contain no-repeat;
    transform: translateY(-50%);
}

.faq details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq details p {
    margin: 0;
    padding: 0 20px 22px 0;
    color: var(--pale);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
}

.site-footer {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 54px;
    height: 419px;
    padding: 176px 60px 27px;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 125px;
    left: 60px;
    right: 60px;
    height: 1px;
    background: var(--line);
}

.footer-contact h2 {
    max-width: 535px;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.footer-contact h2 span {
    color: var(--gold);
}

.footer-contact h2 span {
    color: var(--gold);
}

@media (min-width: 981px) {
    .footer-contact {
        transform: translateY(5px);
    }

    .site-footer .legal {
        transform: translateY(1px);
    }
}

.footer-mobile-break {
    display: none;
}

.audience-mobile-break {
    display: none;
}

.footer-contact .support-button {
    margin-top: 20px;
    width: 214px;
    height: 40px;
}

.legal {
    grid-column: 1 / -1;
    position: relative;
    display: grid;
    grid-template-columns: 198px 132px 212px 138px 287px 121px 232px;
    column-gap: 0;
    min-height: 72px;
    height: auto;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: #3c3c3c;
    font-size: 14px;
    letter-spacing: -0.01em;
}

.legal p,
.legal a {
    position: static;
    margin: 0;
    line-height: 17px;
}

.legal b {
    font-weight: 500;
}

.legal a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal p:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 198px;
}

.legal p:nth-child(2) {
    grid-column: 3;
    grid-row: 1 / 4;
    width: 212px;
}

.legal a:nth-of-type(1) {
    grid-column: 5;
    grid-row: 1;
    width: 196px;
}

.legal a:nth-of-type(2) {
    grid-column: 5;
    grid-row: 2;
    width: 103px;
}

.legal a:nth-of-type(3) {
    grid-column: 5;
    grid-row: 3;
    width: 287px;
}

.legal p:nth-of-type(3) {
    grid-column: 7;
    grid-row: 1;
    width: 232px;
    text-align: right;
}

.legal p:nth-of-type(4) {
    grid-column: 7;
    grid-row: 2;
    width: 232px;
    justify-self: end;
    text-align: right;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
        min-height: 61px;
        padding: 15px 20px;
    }

    main {
        padding-top: 61px;
    }

    .brand {
        width: 145px;
        height: 30px;
    }

    .desktop-nav,
    .site-header .login-button {
        display: none;
    }

    .menu-button {
        display: block;
        width: 30px;
        height: 30px;
        padding: 0;
        background: transparent;
    }

    .menu-button img {
        width: 30px;
        height: 30px;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: none;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        min-height: 650px;
        overflow-y: auto;
        background: #2a2a2a;
        color: #fff;
    }

    .mobile-menu.is-open {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 61px;
        padding: 15px 20px;
        border-bottom: 1px solid var(--line);
    }

    .menu-close {
        display: block;
        position: relative;
        width: 30px;
        height: 30px;
    }

    .menu-close::before,
    .menu-close::after {
        content: "";
        position: absolute;
        left: 5px;
        top: 5px;
        width: 19px;
        height: 19px;
        background: url("/assets/figma/close.svg") center / contain no-repeat;
    }

    .menu-close::before {
        transform: none;
    }

    .menu-close::after {
        transform: rotate(90deg);
    }

    .mobile-menu nav {
        display: grid;
        gap: 14px;
        padding: 38px 20px 0;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.3;
        letter-spacing: 0;
    }

    .mobile-menu-actions {
        display: grid;
        gap: 12px;
        width: 214px;
        margin-top: auto;
        padding: 0 0 calc(50px + env(safe-area-inset-bottom)) 20px;
    }

    .mobile-menu-actions .login-button {
        width: 110px;
        min-height: 40px;
        padding: 9px 20px;
    }

    .mobile-menu-actions .support-button {
        width: 214px;
        min-height: 40px;
        padding: 11px 20px;
    }

    .mobile-menu-actions .support-button.gold {
        border-color: #3c3c3c;
    }

    .cookie-banner {
        bottom: 12px;
        width: calc(100vw - 24px);
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .cookie-text {
        flex: 0 1 auto;
    }

    .cookie-buttons,
    .cookie-modal-actions {
        width: 100%;
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .btn-settings,
    .btn-accept {
        width: 100%;
        justify-content: center;
    }

    .cookie-modal {
        align-items: flex-end;
        padding: 12px;
    }

    .cookie-modal-dialog {
        padding: 24px 18px 18px;
        border-radius: 12px;
    }

    .cookie-modal-dialog h2 {
        font-size: 24px;
    }

    .cookie-toggle {
        align-items: flex-start;
    }

    .hero {
        min-height: 788px;
        padding: 50px 10px 0;
    }

    .hero-kicker {
        margin-bottom: 16px;
        font-size: 12px;
    }

    .hero h1 {
        max-width: 340px;
        font-size: 30px;
        letter-spacing: -0.01em;
        transform: none;
    }

    .hero p {
        max-width: 280px;
        margin-top: 25px;
        font-family: "Inter Tight", "Inter", sans-serif;
        font-size: 16px;
        line-height: 1.3;
        transform: none;
    }

    .hero-button {
        width: 306px;
        margin-top: 30px;
        padding-inline: 28px;
    }

    .hero-devices {
        left: 0;
        top: 451px;
        transform: none;
        width: 100%;
        height: 700px;
    }

    .tablet-device {
        display: none;
    }

    .phone-device {
        left: 50%;
        right: auto;
        top: 0;
        width: 340px;
        transform: translateX(-50%);
    }

    .play-button {
        left: 50%;
        top: 286px;
        transform: translateX(-50%);
    }

    .dark-panel {
        width: calc(100% - 10px);
        border-radius: 16px;
    }

    .method {
        min-height: 0;
        height: auto;
        padding: 424px 15px 90px;
    }

    .method-pin {
        position: relative;
        top: auto;
        display: block;
        height: auto;
        min-height: 0;
        padding: 0;
        overflow: visible;
    }

    .method h2,
    .materials h2 {
        max-width: 320px;
        font-size: 30px;
        line-height: 1.05;
    }

    .method h2 {
        max-width: 302px;
        font-size: 34px;
        line-height: 1;
        letter-spacing: -0.01em;
    }

    .section-lead {
        max-width: 282px;
        font-size: 16px;
        margin-top: 20px;
    }

    .method-scroll {
        position: relative;
        width: 100%;
        max-width: none;
        margin: 29px auto 0;
        padding: 0;
        overflow: visible;
        touch-action: pan-y;
    }

    .method-track {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        min-height: 0;
        gap: 36px;
        transform: none !important;
    }

    .method-card {
        position: relative;
        left: auto;
        top: auto;
        display: block;
        width: 100%;
        height: auto;
        min-width: 0;
        min-height: 0;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
        transition: color 0.25s ease;
        pointer-events: auto;
        z-index: auto;
    }

    .method-card[data-mobile-state="next"] {
        opacity: 1;
        transform: none;
        pointer-events: auto;
        z-index: auto;
    }

    .method-card[data-mobile-state="prev"] {
        opacity: 1;
        transform: none;
        pointer-events: auto;
        z-index: auto;
    }

    .method-card.result {
        grid-column: auto;
        justify-self: auto;
        max-width: none;
        width: 100%;
        height: auto;
        min-width: 0;
        min-height: 0;
        margin-top: 0;
        text-align: left;
        transform: none;
    }

    .method-card.result[data-mobile-state="next"] {
        transform: none;
    }

    .method-card.result[data-mobile-state="prev"] {
        transform: none;
    }

    .method-card.result .method-icon {
        margin: 0 0 20px;
    }

    .method-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .method-card p {
        font-size: 16px;
        line-height: 1.3;
    }

    .method-icon {
        margin-bottom: 20px;
    }

    .method-card:nth-child(1) p {
        max-width: 271px;
    }

    .method-card:nth-child(2) p {
        max-width: 290px;
    }

    .method-card:nth-child(3) p {
        max-width: 252px;
    }

    .method-card:nth-child(4) p,
    .method-card.result p {
        max-width: 304px;
    }

    .method-flow {
        display: none;
    }

    .method-flow::before {
        display: block;
        content: none;
    }

    .method-flow-svg {
        display: none;
    }

    .method-flow-bar {
        display: none;
    }

    .method-card .method-result-text {
        white-space: normal;
        font-size: 20px;
    }

    .method-card.result::before,
    .method-card.result::after {
        display: none;
    }

    .method-dots {
        display: none;
    }

    .method-dot {
        width: 20px;
        height: 4px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.18);
        transition: background 0.25s ease, width 0.25s ease;
    }

    .method-dot.is-active {
        width: 32px;
        background: var(--gold);
    }

    .method-dot.is-past {
        background: rgba(200, 164, 91, 0.55);
    }

    .process,
    .audience,
    .about,
    .quiz-cta,
    .site-footer {
        padding: 90px 20px;
    }

    .process {
        padding-bottom: 67px;
    }

    .process,
    .pricing,
    .about,
    .results-grid,
    .quiz-cta,
    .site-footer {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process h2,
    .audience h2,
    .pricing h2,
    .about h2,
    .results h2,
    .quiz-cta h2,
    .faq h2,
    .site-footer h2 {
        font-size: 34px;
        transform: none;
    }

    .process-title-desktop-fragment {
        display: none;
    }

    .process-title-mobile-break {
        display: block;
    }

    .process-title-mobile-word {
        display: inline;
    }

    .steps article {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        gap: 18px;
        padding: 22.4px 0;
    }

    .steps {
        margin-top: 0;
    }

    .steps span,
    .steps h3,
    .steps p {
        grid-area: auto;
    }

    .steps p {
        grid-column: auto;
    }

    .steps h3 {
        font-size: 22px;
    }

    .materials {
        padding: 86px 15px;
        min-height: 913px;
        height: auto;
        margin-top: 0;
    }

    .materials h2 {
        transform: translateY(4px);
    }

    .materials-preview {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
        height: auto;
        margin-top: 30px;
        padding: 20px;
        transform: translateY(4px);
    }

    .materials-gallery {
        order: 2;
        display: none;
    }

    .materials-mobile-gallery {
        --materials-mobile-shot-gap: 12px;
        --materials-mobile-shot-width: calc(100vw - 40px);
        --materials-mobile-shot-height: 188px;
        --materials-mobile-portrait-width: calc(var(--materials-mobile-shot-height) * 0.7125);
        order: 2;
        display: block;
        width: var(--materials-mobile-shot-width);
        height: var(--materials-mobile-shot-height);
        margin: 14px -20px 0;
        overflow: hidden;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
                mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    }

    .materials-mobile-track {
        display: flex;
        align-items: center;
        gap: var(--materials-mobile-shot-gap);
        width: max-content;
        height: 100%;
        transform: translate3d(0, 0, 0);
        animation: materialsMobileScreens 18s linear infinite;
        animation-play-state: paused;
        will-change: transform;
    }

    .materials-mobile-gallery.is-ready .materials-mobile-track {
        animation-play-state: running;
    }

    .materials-mobile-gallery .materials-shot {
        flex: 0 0 auto;
        width: var(--materials-mobile-shot-width);
        height: var(--materials-mobile-shot-height);
        animation: none;
        border-radius: 10px;
        aspect-ratio: auto;
    }

    .materials-mobile-gallery .materials-shot--portrait {
        width: var(--materials-mobile-portrait-width);
        height: var(--materials-mobile-shot-height);
        aspect-ratio: auto;
    }

    .materials-mobile-gallery .materials-shot img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        background: var(--pale);
    }

    .materials-mobile-gallery .materials-shot--portrait img {
        object-fit: contain;
        object-position: center top;
    }

    .materials-column {
        width: 100%;
        height: 100px;
        overflow: hidden;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
                mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    }

    .materials-column .materials-track {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: max-content;
        height: 100%;
        transform: translate3d(0, 0, 0);
        animation: materialsRowLeft 28s linear infinite;
    }

    .materials-column--down .materials-track {
        transform: translate3d(-50%, 0, 0);
        animation-name: materialsRowRight;
        animation-duration: 32s;
    }

    .materials-shot.is-duplicate {
        display: block;
    }

    .materials-shot {
        flex: 0 0 auto;
        width: auto;
        height: 100%;
        animation: none;
        border-radius: 10px;
    }

    .materials-shot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .materials-list {
        order: 1;
        position: relative;
        width: 100%;
        height: 174px;
        padding-right: 0;
    }

    .materials-list p {
        position: absolute;
        left: 0;
        margin: 0;
        padding: 0 0 20px;
        border-bottom: 1px solid var(--gold);
        font-size: 22px;
        line-height: 1.1;
    }

    .materials-list p:nth-child(1) {
        top: 0;
        width: 290px;
    }

    .materials-list p:nth-child(2) {
        top: 84px;
        width: 282px;
    }

    .materials-list p:nth-child(3) {
        top: 145px;
        width: 261px;
    }

    .materials-list p + p {
        margin-top: 0;
    }

    .materials-list p:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .accent-note {
        max-width: 313px;
        margin-top: 46px;
        font-size: 18px;
        transform: translateY(8px);
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 5px;
        margin-top: 30px;
        margin-left: -15px;
        margin-right: -15px;
    }

    .audience {
        padding: 82px 20px 130px;
    }

    .audience-grid > img {
        order: 2;
        height: auto;
        aspect-ratio: 4096 / 3058;
        object-fit: cover;
        object-position: center;
        background: transparent;
        transform: none;
    }

    .audience-grid ul {
        grid-template-rows: 132px 110px 87px 110px 110px;
        height: 549px;
        padding: 0 15px;
    }

    .audience-grid li {
        --audience-copy-offset: 20px;
        display: block;
        padding: var(--audience-copy-offset) 0 0 30px;
        font-size: 18px;
    }

    .audience-grid li:first-child {
        --audience-copy-offset: 20px;
    }

    .audience-grid li:nth-child(1) .audience-item-copy {
        max-width: 260px;
    }

    .audience-grid li:nth-child(2) .audience-item-copy {
        max-width: 233px;
    }

    .audience-grid li:nth-child(3) .audience-item-copy {
        max-width: 296px;
    }

    .audience-grid li:nth-child(4) .audience-item-copy {
        max-width: 282px;
    }

    .audience-grid li:nth-child(5) .audience-item-copy {
        max-width: 250px;
    }

    .audience-mobile-break {
        display: block;
    }

    .audience-grid .check-icon {
        top: calc(var(--audience-copy-offset) + 5px);
        transform: none;
        width: 20px;
        height: 20px;
    }

    .scenarios {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        padding: 30px 0;
    }

    .scenarios h3 {
        font-size: 30px;
    }

    .pricing {
        gap: 30px;
        padding: 86px 15px;
        min-height: 0;
        height: 971px;
        transform: translateY(-4px);
    }

    .pricing h2 {
        max-width: 249px;
        transform: translateY(4px);
    }

    .pricing h2 span {
        display: block;
    }

    .pricing > div,
    .price-box {
        min-width: 0;
    }

    .pricing-copy {
        font-size: 16px;
        line-height: 1.3;
        letter-spacing: 0;
        margin-top: 24px;
    }

    .pricing-copy-gap {
        margin-top: 20.8px;
    }

    .pricing-mobile-break {
        display: block;
    }

    .price-box {
        position: relative;
        height: 379px;
        margin-top: 0;
    }

    .price-box p,
    .price-box strong,
    .price-box del,
    .price-box small,
    .price-box hr,
    .price-box .primary-button {
        position: absolute;
    }

    .price-box p {
        left: 0;
        top: 15px;
        margin: 0;
        font-size: 16px;
    }

    .price-box strong {
        display: block;
        margin: 0;
        font-size: 61px;
        line-height: 1;
        letter-spacing: -3.66px;
    }

    .price-box > strong:first-of-type {
        left: 0;
        top: 50px;
        width: 194px;
    }

    .price-box strong:nth-of-type(2) {
        left: 0;
        top: 177px;
        width: 178px;
    }

    .price-box del {
        left: 212px;
        top: 74px;
        display: block;
        margin: 0;
        font-size: 33px;
        letter-spacing: -1.98px;
    }

    .price-box small {
        left: 0;
        margin: 0;
        width: auto;
        font-size: 14px;
        line-height: 1.1;
    }

    .price-box small:first-of-type {
        top: 111px;
    }

    .price-box small:nth-of-type(2) {
        top: 238px;
        width: 320px;
        max-width: 100%;
        line-height: 1.3;
    }

    .price-box hr {
        left: 0;
        right: 0;
        top: 156px;
        margin: 0;
    }

    .price-box .primary-button {
        left: 0;
        top: 318px;
        margin: 0;
    }

    .founders {
        gap: 10px;
        grid-column: auto;
        grid-row: auto;
        margin-top: 5px;
        transform: none;
    }

    .founders img {
        height: 199px;
        border: 1px solid var(--gold);
    }

    .about-copy {
        display: block;
    }

    .about-copy h2,
    .about-copy .large,
    .about-copy p:not(.large) {
        grid-column: auto;
        grid-row: auto;
    }

    .about h2 {
        height: 68px;
        transform: translateY(-4px);
    }

    .about-copy .large {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 1.1;
        letter-spacing: 0;
    }

    .about-copy .large span {
        margin-bottom: 20px;
    }

    .about-desktop-break {
        display: none;
    }

    .about-copy p:not(.large) {
        margin-top: 0;
        font-size: 16px;
        line-height: 1.3;
    }

    .faq {
        height: auto;
        min-height: 0;
        overflow: visible;
        transform: translateY(-5px);
    }

    .faq h2 {
        transform: translateY(4px);
    }

    .results {
        padding: 90px 15px;
        height: 1321px;
        min-height: 0;
    }

    .results-grid p {
        max-width: 292px;
        margin-top: 20px;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.3;
        letter-spacing: 0;
    }

    .results-grid li {
        min-height: 73px;
        padding: 15px 0;
        font-size: 16px;
        line-height: 1.3;
    }

    .results-grid li::after {
        display: none;
    }

    .reviews-heading {
        display: block;
        margin-top: 90px;
        text-align: center;
    }

    .reviews-slider-desktop {
        display: none;
    }

    .reviews-slider-mobile {
        display: grid;
        margin: 20px auto 0;
    }

    .reviews {
        grid-auto-columns: 100%;
        grid-auto-flow: column;
        grid-template-columns: none;
        margin-top: 30px;
        margin-inline: 0;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
    }

    .reviews article {
        width: 100%;
        min-height: 407px;
        padding: 20px;
        scroll-snap-align: start;
    }

    .quiz-cta h2 {
        font-size: 34px;
        line-height: 34px;
    }

    .quiz-cta small {
        display: block;
        margin: 12px 0 0;
    }

    .faq {
        padding: 86px 15px 45px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .faq details:nth-last-child(2) {
        border-bottom: 0;
    }

    .faq summary {
        font-size: 18px;
        line-height: 1.1;
    }

    .legal {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        min-height: 280px;
        padding-top: 20px;
        letter-spacing: 0;
        text-align: center;
    }

    .legal p,
    .legal a {
        position: static;
        max-width: 100%;
        line-height: 1.2;
    }

    .site-footer {
        row-gap: 35px;
        height: auto;
        min-height: 676px;
        padding: 136px 20px 27px;
    }

    .site-footer::before {
        top: 85px;
        left: 20px;
        right: 20px;
    }

    .site-footer .brand {
        width: 194px;
        height: 40px;
        justify-self: center;
    }

    .footer-contact {
        display: grid;
        justify-items: center;
    }

    .footer-contact h2 {
        width: 242px;
        font-size: 22px;
        line-height: 24px;
        text-align: center;
        white-space: normal;
    }

    .footer-mobile-break {
        display: block;
    }

    .footer-contact .support-button {
        margin-top: 20px;
    }

    .site-footer .legal {
        margin-top: 15px;
    }

    .legal p:nth-child(1) {
        width: 202px;
    }

    .legal p:nth-child(2) {
        width: 216px;
        margin-top: 21px;
    }

    .legal a:nth-of-type(1) {
        width: 200px;
        margin-top: 20px;
    }

    .legal a:nth-of-type(2) {
        width: 160px;
        margin-top: 4px;
    }

    .legal a:nth-of-type(3) {
        width: 318px;
        margin-top: 4px;
    }

    .legal p:nth-of-type(3) {
        width: auto;
        max-width: 100%;
        margin-top: 20px;
        align-self: center;
        text-align: center;
    }

    .legal p:nth-of-type(4) {
        width: auto;
        max-width: 100%;
        margin-top: 4px;
        align-self: center;
        text-align: center;
        white-space: normal;
    }
}

@media (min-width: 981px) {
    .site-header {
        padding-left: max(60px, calc((100vw - 1320px) / 2));
        padding-right: max(60px, calc((100vw - 1320px) / 2));
    }

    .hero,
    .process,
    .audience,
    .about,
    .quiz-cta,
    .site-footer {
        max-width: var(--desktop-canvas);
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-menu {
        display: none !important;
    }

    .method-card:nth-child(1) {
        flex-basis: 304px;
        width: 304px;
    }

    .method-card:nth-child(2) {
        flex-basis: 290px;
        width: 290px;
        transform: translateX(8.75px);
    }

    .method-card:nth-child(3) {
        flex-basis: 272px;
        width: 272px;
        transform: translateX(9.5px);
    }

    .method-card:nth-child(4) {
        flex-basis: 304px;
        width: 304px;
        transform: translateX(-2.75px);
    }

    .method-result-text {
        height: 26px;
    }

    .audience-grid {
        grid-template-columns: minmax(0, 788px) minmax(360px, 516px);
        gap: 16px;
    }

    .audience {
        padding-bottom: 125px;
    }

    .scenarios {
        padding: 32.5px 0;
    }

    .scenarios article:last-child {
        transform: translateX(-45px);
    }

    .faq {
        transform: translateY(-9.5px);
    }

    .reviews article {
        height: 332px;
        min-height: 332px;
        overflow: hidden;
    }

    .reviews p {
        display: -webkit-box;
        height: 189px;
        min-height: 0;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 9;
    }

    .reviews h3 {
        margin-top: 20px;
    }

    .reviews span {
        display: -webkit-box;
        max-width: calc(100% - 54px);
        overflow: hidden;
        line-height: 1.25;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}

@media (min-width: 1200px) {
    .scenarios article:last-child {
        transform: translateX(-76px);
    }
}

@media (max-width: 980px) {
    .method h2 {
        max-width: 302px;
    }

    .steps article {
        padding: 21.2px 0;
    }

    .process {
        padding-bottom: 81px;
    }

    .materials h2 {
        max-width: 340px;
    }

    .audience h2 {
        max-width: 261px;
    }

    .scenarios {
        padding: 36px 0 35px;
    }

    .audience {
        padding-bottom: 94px;
    }

    .pricing-copy {
        height: 294px;
    }

    .price-box strong {
        white-space: nowrap;
    }

    .about h2 {
        max-width: 194px;
        line-height: 1;
    }

    .about {
        padding-bottom: 84px;
    }

    .quiz-cta {
        padding-bottom: 104px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

.method-speed-badge {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 9999;
    padding: 8px 10px 6px;
    background: rgba(60, 60, 60, 0.92);
    color: #fff;
    border-radius: 10px;
    font: 600 11px/1.2 -apple-system, system-ui, sans-serif;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    pointer-events: auto;
}

.method-speed-badge .method-speed-links {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.method-speed-badge a {
    flex: 1;
    padding: 4px 6px;
    border-radius: 6px;
    background: rgba(255,255,255,0.10);
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 10px;
    line-height: 1;
}

.method-speed-badge a.is-active {
    background: #C8A45B;
    color: #2A2A2A;
}
