:root {
    --ink: #0b0d12;
    --ink-soft: #12151d;
    --ink-muted: #1a1e28;
    --paper: #f7f3eb;
    --paper-warm: #efe7da;
    --paper-deep: #e4d7c4;
    --white: #ffffff;
    --copper: #c89a63;
    --copper-light: #e7c18e;
    --copper-dark: #8b5d34;
    --wine: #7e394b;
    --wine-deep: #4f2230;
    --text: #202228;
    --muted: #6f706f;
    --muted-light: #aaa9a6;
    --line: rgba(19, 20, 24, 0.13);
    --line-light: rgba(255, 255, 255, 0.12);
    --success: #4b725e;
    --danger: #8b4b52;
    --font-display: "Newsreader", Georgia, "Times New Roman", serif;
    --font-body: "Manrope", Arial, sans-serif;
    --shadow-sm: 0 10px 28px rgba(16, 13, 11, 0.08);
    --shadow-md: 0 24px 60px rgba(13, 10, 8, 0.14);
    --shadow-lg: 0 34px 100px rgba(0, 0, 0, 0.3);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 42px;
    --container: 1220px;
    --header-height: 80px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    color-scheme: light;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

img,
svg,
video,
iframe {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

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

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

button {
    color: inherit;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

::selection {
    background: var(--copper);
    color: var(--ink);
}

:focus-visible {
    outline: 3px solid var(--copper-light);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--copper-dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow--light {
    color: var(--copper-light);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.89rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: linear-gradient(135deg, #e4b77e, #bb8050);
    color: #15100c;
    box-shadow: 0 16px 38px rgba(190, 129, 78, 0.27);
}

.button--primary:hover {
    box-shadow: 0 20px 48px rgba(190, 129, 78, 0.38);
}

.button--light {
    background: var(--paper);
    color: var(--ink);
}

.button--dark {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(11, 13, 18, 0.18);
}

.button--dark:hover {
    background: #20232c;
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.22);
    background: transparent;
    color: var(--white);
}

.button--small {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.78rem;
}

.button--large {
    min-height: 60px;
    padding: 18px 29px;
    font-size: 0.94rem;
}

.button--full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid currentColor;
    color: var(--copper-dark);
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.5;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.text-link:hover {
    opacity: 0.72;
}

.text-link--light {
    color: var(--paper);
}

.scroll-progress {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--copper), var(--copper-light));
}

.announcement {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #07080b;
    color: rgba(255, 255, 255, 0.74);
}

.announcement__inner {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.announcement__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--copper);
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(11, 13, 18, 0.86);
    color: var(--white);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(8, 9, 13, 0.96);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.23);
}

.site-header__inner {
    display: grid;
    min-height: var(--header-height);
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 12px;
}

.brand__monogram {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(200, 154, 99, 0.75);
    border-radius: 14px;
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.brand__text {
    display: grid;
    gap: 1px;
}

.brand__text strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.brand__text small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

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

.desktop-cta {
    justify-self: end;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
}

.menu-toggle span {
    width: 19px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 9, 13, 0.98);
}

.mobile-menu__inner {
    display: grid;
    gap: 0;
    padding-block: 12px 22px;
}

.mobile-menu__inner > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.mobile-menu__inner .button {
    margin-top: 18px;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 74px 0 90px;
    background:
        linear-gradient(rgba(11, 13, 18, 0.965), rgba(11, 13, 18, 0.99)),
        url("../img/noise.png");
    color: var(--white);
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(200, 154, 99, 0.13), transparent 37%),
        linear-gradient(110deg, transparent 0 63%, rgba(126, 57, 75, 0.08) 63% 100%);
    content: "";
}

.hero__glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.34;
}

.hero__glow--one {
    top: 260px;
    left: -280px;
    width: 530px;
    height: 530px;
    background: rgba(126, 57, 75, 0.32);
}

.hero__glow--two {
    right: -180px;
    bottom: 10px;
    width: 430px;
    height: 430px;
    background: rgba(200, 154, 99, 0.16);
}

.hero__copy {
    max-width: 1020px;
    margin: 0 auto 42px;
    text-align: center;
}

.hero__copy h1 {
    max-width: 1000px;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: clamp(3.05rem, 6.3vw, 5.9rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.hero__copy h1 em {
    color: var(--copper-light);
    font-weight: 400;
}

.hero__lead {
    max-width: 790px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
}

.hero-stage {
    display: grid;
    max-width: 1180px;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 18px;
}

.video-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-lg);
    background: #15161a;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

.video-card::after {
    position: absolute;
    z-index: 4;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: inherit;
    pointer-events: none;
    content: "";
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.4s ease;
}

.video-card:hover img {
    transform: scale(1.025);
    filter: brightness(1.05);
}

.video-card__shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 6, 9, 0.2), rgba(5, 6, 9, 0.14) 40%, rgba(5, 6, 9, 0.82));
}

.video-card__topline,
.video-card__caption,
.video-card__center {
    position: absolute;
    z-index: 2;
}

.video-card__topline {
    top: 22px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(10, 11, 15, 0.42);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d37d68;
    box-shadow: 0 0 0 5px rgba(211, 125, 104, 0.12);
}

.video-card__center {
    top: 50%;
    left: 50%;
    display: grid;
    width: min(80%, 420px);
    justify-items: center;
    transform: translate(-50%, -44%);
    color: var(--white);
    text-align: center;
}

.play-button {
    display: grid;
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 50%;
    background: rgba(247, 243, 235, 0.14);
    color: var(--white);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.video-card:hover .play-button {
    transform: scale(1.07);
    background: rgba(200, 154, 99, 0.35);
}

.video-card__center strong {
    margin-bottom: 6px;
    font-size: 0.98rem;
    font-weight: 800;
}

.video-card__center small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    line-height: 1.5;
}

.video-card__caption {
    right: 24px;
    bottom: 18px;
    left: 24px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: left;
    text-transform: uppercase;
}

.hero-portrait {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-lg);
    background: #28241f;
    box-shadow: var(--shadow-lg);
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
}

.hero-portrait__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(7, 8, 11, 0.9) 86%);
}

.hero-portrait__content {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: grid;
    gap: 6px;
}

.hero-portrait__content > span {
    width: max-content;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(11, 13, 18, 0.32);
    color: var(--copper-light);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-portrait__content strong {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.05;
}

.hero-portrait__content small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.7rem;
    line-height: 1.5;
}

.hero__action {
    display: flex;
    max-width: 920px;
    margin: 34px auto 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px 28px;
    text-align: center;
}

.hero__microcopy {
    width: 100%;
    margin: -4px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.7rem;
}

.hero-stats {
    display: grid;
    max-width: 1080px;
    margin: 56px auto 0;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
    position: relative;
    display: grid;
    min-height: 144px;
    align-content: center;
    justify-items: center;
    padding: 24px;
    text-align: center;
}

.stat + .stat::before {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    content: "";
}

.stat strong {
    color: var(--paper);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    font-weight: 500;
    line-height: 1;
}

.stat span {
    margin-top: 8px;
    color: var(--copper-light);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stat small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.43);
    font-size: 0.65rem;
    line-height: 1.4;
}

.section {
    position: relative;
    padding: 112px 0;
}

.section--paper {
    background: var(--paper);
}

.section--warm {
    background: var(--paper-warm);
}

.section--ink,
.section--ink-soft {
    overflow: hidden;
    background:
        linear-gradient(rgba(11, 13, 18, 0.97), rgba(11, 13, 18, 0.99)),
        url("../img/noise.png");
    color: var(--white);
}

.section--ink-soft {
    background:
        linear-gradient(rgba(18, 21, 29, 0.98), rgba(18, 21, 29, 0.99)),
        url("../img/noise.png");
}

.section-heading {
    max-width: 800px;
    margin-bottom: 56px;
}

.section-heading h2 {
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: clamp(2.55rem, 4.6vw, 4.55rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.section-heading > p:last-child,
.section-heading__copy p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.section-heading--light h2 {
    color: var(--white);
}

.section-heading--light > p:last-child {
    color: rgba(255, 255, 255, 0.6);
}

.section-heading--center {
    max-width: 920px;
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading--split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 80px;
}

.section-heading--split h2 {
    margin-bottom: 0;
}

.section-heading__copy p:last-child {
    margin-bottom: 0;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
    gap: 18px;
}

.manifesto-card {
    position: relative;
    min-height: 340px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.34);
}

.manifesto-card--dark {
    overflow: hidden;
    border-color: transparent;
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.manifesto-card--dark::after {
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(200, 154, 99, 0.22);
    border-radius: 50%;
    content: "";
}

.quote-mark {
    display: block;
    height: 50px;
    color: var(--copper);
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
}

.manifesto-card blockquote {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.manifesto-card--dark p {
    position: relative;
    z-index: 1;
    max-width: 570px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.84rem;
}

.card-kicker {
    margin-bottom: 24px;
    color: var(--copper-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.clean-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 17px;
    list-style: none;
}

.clean-list li {
    position: relative;
    padding-left: 30px;
    color: #3d3e42;
    font-size: 0.86rem;
    font-weight: 650;
    line-height: 1.55;
}

.clean-list li::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
}

.clean-list--x li::before {
    background: rgba(139, 75, 82, 0.1);
    color: var(--danger);
    content: "×";
}

.clean-list--check li::before {
    background: rgba(75, 114, 94, 0.11);
    color: var(--success);
    content: "✓";
}

.method-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.68fr);
    align-items: center;
    gap: 90px;
}

.pillar-list {
    border-top: 1px solid var(--line-light);
}

.pillar {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line-light);
}

.pillar__number {
    color: var(--copper);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.pillar h3 {
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 500;
}

.pillar p {
    max-width: 620px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.87rem;
}

.phone-scene {
    position: relative;
    display: grid;
    min-height: 610px;
    place-items: center;
}

.phone-orbit {
    position: absolute;
    border: 1px solid rgba(200, 154, 99, 0.14);
    border-radius: 50%;
}

.phone-orbit--one {
    width: 530px;
    height: 530px;
}

.phone-orbit--two {
    width: 410px;
    height: 410px;
    border-color: rgba(255, 255, 255, 0.08);
}

.phone {
    position: relative;
    z-index: 2;
    width: 294px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 43px;
    background: #08090c;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.42);
    transform: rotate(3deg);
}

.phone__notch {
    position: absolute;
    z-index: 3;
    top: 17px;
    left: 50%;
    width: 94px;
    height: 20px;
    transform: translateX(-50%);
    border-radius: 0 0 13px 13px;
    background: #08090c;
}

.phone__screen {
    overflow: hidden;
    min-height: 570px;
    padding: 15px 14px 18px;
    border-radius: 34px;
    background: #f4efe7;
    color: #17191d;
}

.phone__topbar {
    display: flex;
    margin-bottom: 17px;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    font-size: 0.5rem;
    font-weight: 800;
}

.phone__signals {
    letter-spacing: 0.18em;
}

.phone__profile {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 5px 14px;
}

.phone__avatar {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--wine-deep);
    color: var(--white);
    font-family: var(--font-display);
}

.phone__profile div {
    display: grid;
}

.phone__profile strong {
    font-size: 0.61rem;
}

.phone__profile small {
    color: #77746e;
    font-size: 0.48rem;
}

.phone__post {
    display: grid;
    min-height: 92px;
    align-content: end;
    padding: 15px;
    border: 1px solid rgba(13, 15, 18, 0.09);
    border-radius: 17px;
    background: #fffdf8;
    box-shadow: 0 8px 20px rgba(20, 16, 12, 0.06);
}

.phone__post + .phone__post {
    margin-top: 10px;
}

.phone__post--hero {
    min-height: 190px;
    background:
        linear-gradient(180deg, rgba(20, 18, 19, 0.08), rgba(35, 19, 26, 0.86)),
        linear-gradient(135deg, #b37e62, #31202a);
    color: var(--white);
}

.phone__post--accent {
    background: #5a2938;
    color: var(--white);
}

.phone__tag {
    width: max-content;
    margin-bottom: 8px;
    color: var(--copper-dark);
    font-size: 0.46rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.phone__post--hero .phone__tag,
.phone__post--accent .phone__tag {
    color: var(--copper-light);
}

.phone__post strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.1;
}

.phone__post small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.48rem;
}

.phone__metrics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 7px;
    color: #66645f;
    font-size: 0.53rem;
    font-weight: 700;
}

.floating-note {
    position: absolute;
    z-index: 4;
    display: grid;
    min-width: 124px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 17px;
    background: rgba(18, 21, 29, 0.76);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(14px);
}

.floating-note strong {
    color: var(--copper-light);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
}

.floating-note span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.59rem;
    font-weight: 700;
}

.floating-note--left {
    top: 160px;
    left: 0;
}

.floating-note--right {
    right: -4px;
    bottom: 145px;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.journey-card {
    min-height: 380px;
    padding: 38px;
    border: 1px solid rgba(15, 16, 20, 0.1);
    border-radius: var(--radius-lg);
}

.journey-card--before {
    background: rgba(255, 255, 255, 0.35);
}

.journey-card--after {
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.journey-card__label {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(126, 57, 75, 0.09);
    color: var(--wine);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.journey-card--after .journey-card__label {
    background: rgba(200, 154, 99, 0.12);
    color: var(--copper-light);
}

.journey-card h3 {
    margin-bottom: 26px;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 500;
    line-height: 1.05;
}

.journey-card ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 17px;
    list-style: none;
}

.journey-card li {
    position: relative;
    padding-left: 27px;
    color: #55565a;
    font-size: 0.84rem;
    font-weight: 600;
}

.journey-card li::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 12px;
    height: 1px;
    background: var(--wine);
    content: "";
}

.journey-card--after li {
    color: rgba(255, 255, 255, 0.66);
}

.journey-card--after li::before {
    background: var(--copper);
}

.journey-arrow {
    color: var(--copper-dark);
}

.program-badges {
    display: flex;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 8px;
}

.program-badges span {
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #58595d;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.curriculum {
    border-top: 1px solid var(--line);
}

.module {
    border-bottom: 1px solid var(--line);
}

.module summary {
    display: grid;
    min-height: 130px;
    grid-template-columns: 68px minmax(0, 1fr) auto 34px;
    align-items: center;
    gap: 22px;
    cursor: pointer;
    list-style: none;
}

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

.module__number {
    color: var(--copper-dark);
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.module__main {
    display: grid;
}

.module__main small {
    margin-bottom: 3px;
    color: var(--copper-dark);
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.module__main strong {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 2.05rem);
    font-weight: 500;
    line-height: 1.15;
}

.module__main > span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
}

.module__count {
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #66676a;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.module__plus {
    position: relative;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.module__plus::before,
.module__plus::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    transform: translate(-50%, -50%);
    background: var(--ink);
    content: "";
    transition: transform 0.2s ease;
}

.module__plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.module[open] .module__plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.module__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 70px;
    padding: 4px 56px 46px 90px;
}

.lesson-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 0;
    list-style-position: outside;
}

.lesson-list li {
    padding: 13px 0 13px 8px;
    border-bottom: 1px dashed rgba(16, 17, 21, 0.1);
    color: var(--copper-dark);
    font-family: var(--font-display);
    font-size: 1rem;
}

.lesson-list li span {
    margin-left: 8px;
    color: #434448;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
}

.module__outcome {
    align-self: start;
    padding: 25px;
    border: 1px solid rgba(126, 57, 75, 0.12);
    border-radius: var(--radius-md);
    background: rgba(126, 57, 75, 0.045);
}

.module__outcome span {
    color: var(--wine);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.module__outcome p {
    margin: 10px 0 0;
    color: #5b5c60;
    font-size: 0.78rem;
    line-height: 1.7;
}

.curriculum-cta {
    display: flex;
    margin-top: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 34px;
    border-radius: var(--radius-md);
    background: var(--paper-warm);
}

.curriculum-cta div {
    display: grid;
}

.curriculum-cta strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
}

.curriculum-cta span {
    color: var(--muted);
    font-size: 0.77rem;
}

.audience-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 86px;
}

.audience-layout .section-heading {
    margin-bottom: 0;
}

.audience-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.audience-card {
    min-height: 410px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.045);
}

.audience-card--yes {
    background: rgba(200, 154, 99, 0.08);
}

.audience-card__icon {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 24px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: var(--copper-light);
    font-size: 1.15rem;
}

.audience-card--no .audience-card__icon {
    color: #c7828f;
}

.audience-card h3 {
    margin-bottom: 24px;
    font-family: var(--font-display);
    font-size: 1.72rem;
    font-weight: 500;
    line-height: 1.1;
}

.audience-card ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 16px;
    list-style: none;
}

.audience-card li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 600;
}

.audience-card li::before {
    position: absolute;
    top: 9px;
    left: 0;
    width: 9px;
    height: 1px;
    background: var(--copper);
    content: "";
}

.audience-card--no li::before {
    background: #a55b68;
}

.instructor {
    overflow: hidden;
    background: var(--paper-warm);
}

.instructor::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(160deg, rgba(200, 154, 99, 0.14), transparent 60%);
    content: "";
}

.instructor__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: 84px;
}

.instructor__media {
    position: sticky;
    top: 120px;
}

.instructor__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #3a2a24;
    box-shadow: var(--shadow-md);
}

.instructor__image-wrap img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.instructor__badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: grid;
    min-width: 130px;
    padding: 17px 19px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 17px;
    background: rgba(11, 13, 18, 0.76);
    color: var(--white);
    backdrop-filter: blur(14px);
}

.instructor__badge strong {
    color: var(--copper-light);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1;
}

.instructor__badge span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.61rem;
    font-weight: 700;
}

.instructor__caption {
    margin: 15px 6px 0;
    color: #716d66;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.instructor__content h2 {
    margin-bottom: 28px;
    font-family: var(--font-display);
    font-size: clamp(2.55rem, 4.7vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.instructor__content > p {
    color: #5c5b58;
    font-size: 0.9rem;
    line-height: 1.8;
}

.instructor__lead {
    color: #38383b !important;
    font-size: 1rem !important;
}

.instructor__quote {
    display: grid;
    margin: 34px 0 42px;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 26px 0;
    border-top: 1px solid rgba(19, 20, 24, 0.12);
    border-bottom: 1px solid rgba(19, 20, 24, 0.12);
}

.instructor__quote > span {
    color: var(--copper-dark);
    font-family: var(--font-display);
    font-size: 3.7rem;
    line-height: 0.8;
}

.instructor__quote p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
    font-weight: 500;
    line-height: 1.15;
}

.authority-timeline {
    position: relative;
    display: grid;
    gap: 0;
}

.authority-timeline::before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 49px;
    width: 1px;
    background: rgba(19, 20, 24, 0.14);
    content: "";
}

.authority-item {
    position: relative;
    display: grid;
    grid-template-columns: 98px 1fr;
    gap: 24px;
    padding: 0 0 34px;
}

.authority-item::before {
    position: absolute;
    top: 6px;
    left: 44px;
    width: 11px;
    height: 11px;
    border: 3px solid var(--paper-warm);
    border-radius: 50%;
    background: var(--copper-dark);
    box-shadow: 0 0 0 1px rgba(19, 20, 24, 0.12);
    content: "";
}

.authority-item > span {
    color: var(--copper-dark);
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
}

.authority-item h3 {
    margin-bottom: 5px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.authority-item p {
    margin-bottom: 8px;
    color: #6c6964;
    font-size: 0.77rem;
    line-height: 1.65;
}

.authority-item a {
    color: var(--copper-dark);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.offer {
    overflow: hidden;
    background:
        linear-gradient(rgba(9, 10, 14, 0.97), rgba(9, 10, 14, 0.995)),
        url("../img/noise.png");
    color: var(--white);
}

.offer__glow {
    position: absolute;
    top: 80px;
    left: 50%;
    width: 780px;
    height: 520px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 57, 75, 0.24), transparent 68%);
    pointer-events: none;
}

.offer-card {
    position: relative;
    display: grid;
    max-width: 1040px;
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr) 390px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: var(--shadow-lg);
}

.offer-card__main {
    padding: 54px 54px 52px;
}

.offer-card__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 38px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-card__status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7eb492;
    box-shadow: 0 0 0 5px rgba(126, 180, 146, 0.1);
}

.offer-card__eyebrow {
    margin-bottom: 8px;
    color: var(--copper-light);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.offer-card h3 {
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 4.8vw, 4.4rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.offer-card__description {
    max-width: 550px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.88rem;
}

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

.offer-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
}

.offer-list svg {
    margin-top: 2px;
    color: var(--copper-light);
}

.price-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 46px 38px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
}

.price-card__label {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.price-card__installment {
    display: grid;
    margin-bottom: 4px;
}

.price-card__installment small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.74rem;
    font-weight: 700;
}

.price-card__installment strong {
    color: var(--paper);
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 5vw, 4.4rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
}

.price-card__cash {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.76rem;
}

.price-card__cash strong {
    color: var(--copper-light);
}

.price-card__total {
    margin-bottom: 27px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.61rem;
}

.secure-note {
    display: grid;
    margin-top: 17px;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 9px;
    color: rgba(255, 255, 255, 0.43);
    font-size: 0.61rem;
    line-height: 1.5;
}

.guarantee {
    margin-top: 22px;
    padding: 17px;
    border: 1px solid rgba(200, 154, 99, 0.2);
    border-radius: 16px;
    background: rgba(200, 154, 99, 0.06);
}

.guarantee strong {
    color: var(--copper-light);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
}

.guarantee p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.64rem;
}

.offer-disclaimer {
    max-width: 870px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.61rem;
    line-height: 1.65;
    text-align: center;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
    align-items: start;
    gap: 90px;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro h2 {
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
}

.faq-intro > p {
    color: var(--muted);
    font-size: 0.84rem;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    display: grid;
    min-height: 90px;
    grid-template-columns: 1fr 28px;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.1vw, 1.7rem);
    font-weight: 500;
    line-height: 1.2;
    list-style: none;
}

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

.faq-item summary i {
    position: relative;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.faq-item summary i::before,
.faq-item summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    transform: translate(-50%, -50%);
    background: var(--ink);
    content: "";
    transition: transform 0.2s ease;
}

.faq-item summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
    max-width: 720px;
    padding: 0 48px 30px 0;
}

.faq-item__answer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.8;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 84px 0;
    background: var(--wine-deep);
    color: var(--white);
}

.final-cta::before {
    position: absolute;
    top: -230px;
    right: -180px;
    width: 580px;
    height: 580px;
    border: 1px solid rgba(231, 193, 142, 0.16);
    border-radius: 50%;
    content: "";
}

.final-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
}

.final-cta h2 {
    max-width: 780px;
    margin-bottom: 15px;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.3vw, 4.2rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.final-cta p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.86rem;
}

.site-footer {
    padding: 58px 0 38px;
    background: #07080b;
    color: var(--white);
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.brand--footer .brand__text small {
    color: rgba(255, 255, 255, 0.4);
}

.site-footer__top > p {
    max-width: 380px;
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    text-align: right;
}

.site-footer__links {
    display: flex;
    padding: 26px 0;
    flex-wrap: wrap;
    gap: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.67rem;
    font-weight: 700;
}

.site-footer__links a:hover {
    color: var(--white);
}

.site-footer__legal {
    display: grid;
    margin-top: 24px;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    color: rgba(255, 255, 255, 0.31);
    font-size: 0.58rem;
}

.site-footer__legal p {
    margin: 0;
}

.site-footer__legal p:last-child {
    text-align: right;
}

.mobile-checkout-bar {
    position: fixed;
    z-index: 1200;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 10px 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(8, 9, 13, 0.94);
    color: var(--white);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(14px);
    transform: translateY(140%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-checkout-bar.is-visible {
    transform: translateY(0);
}

.mobile-checkout-bar > div {
    display: grid;
}

.mobile-checkout-bar small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.54rem;
    font-weight: 700;
}

.mobile-checkout-bar strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1;
}

.mobile-checkout-bar .button {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 0.74rem;
}

.video-modal {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 4, 6, 0.87);
    backdrop-filter: blur(12px);
}

.video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1060px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background: #0b0d12;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
    color: var(--white);
}

.video-modal__dialog--local {
    width: min(100%, 430px, 46dvh);
}

.video-modal__top {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 18px 12px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.video-modal__top strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
}

.video-modal__top button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 1.35rem;
}

.video-modal__content {
    aspect-ratio: 16 / 9;
    background: #050609;
}

.video-modal__dialog--local .video-modal__content {
    aspect-ratio: 9 / 16;
}

.video-modal__content iframe,
.video-modal__content video {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal__dialog--local .video-modal__content video {
    object-fit: contain;
}

.video-placeholder {
    display: grid;
    height: 100%;
    place-content: center;
    justify-items: center;
    padding: 38px;
    text-align: center;
}

.video-placeholder span {
    margin-bottom: 10px;
    color: var(--copper-light);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.video-placeholder strong {
    max-width: 620px;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.7rem);
    font-weight: 500;
    line-height: 1.15;
}

.video-placeholder small {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.48);
}

.video-placeholder code {
    color: var(--copper-light);
}

.cookie-banner {
    position: fixed;
    z-index: 2500;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: min(560px, calc(100% - 44px));
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(8, 9, 13, 0.96);
    color: var(--white);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
}

.cookie-banner strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
}

.cookie-banner p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.62rem;
    line-height: 1.55;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
}

.utility-page {
    min-height: 100vh;
    background:
        linear-gradient(rgba(11, 13, 18, 0.97), rgba(11, 13, 18, 0.99)),
        url("../img/noise.png");
    color: var(--white);
}

.utility-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 30px;
}

.utility-card {
    width: min(100%, 720px);
    padding: 52px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.utility-card__icon {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 26px;
    place-items: center;
    border: 1px solid rgba(200, 154, 99, 0.4);
    border-radius: 50%;
    color: var(--copper-light);
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.utility-card .eyebrow {
    justify-content: center;
    color: var(--copper-light);
}

.utility-card h1 {
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.utility-card p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.58);
}

.utility-card code {
    color: var(--copper-light);
}

.legal-page {
    background: var(--paper);
}

.legal-header {
    background: var(--ink);
    color: var(--white);
}

.legal-header__inner {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.legal-main {
    padding: 90px 0 120px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
    gap: 90px;
}

.legal-aside {
    position: sticky;
    top: 40px;
}

.legal-aside h1 {
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
}

.legal-aside > p:last-child {
    color: var(--muted);
    font-size: 0.68rem;
}

.legal-document {
    padding: 50px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.42);
}

.legal-intro {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
    color: #4f5053;
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.35;
}

.legal-document section {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.legal-document h2 {
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
}

.legal-document p {
    margin-bottom: 12px;
    color: #5d5e61;
    font-size: 0.83rem;
    line-height: 1.85;
}

.legal-document a {
    color: var(--copper-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-document code {
    color: var(--wine);
}

.legal-review-note {
    margin-top: 32px;
    padding: 22px;
    border: 1px solid rgba(126, 57, 75, 0.14);
    border-radius: var(--radius-md);
    background: rgba(126, 57, 75, 0.05);
}

.legal-review-note strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.legal-review-note p {
    margin: 5px 0 0;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

[hidden] {
    display: none !important;
}

@media (max-width: 1120px) {
    :root {
        --container: 1050px;
    }

    .desktop-nav {
        gap: 18px;
    }

    .hero-stage {
        grid-template-columns: minmax(0, 1fr) 250px;
    }

    .method-layout {
        gap: 45px;
    }

    .phone-scene {
        min-height: 560px;
    }

    .phone-orbit--one {
        width: 450px;
        height: 450px;
    }

    .phone-orbit--two {
        width: 350px;
        height: 350px;
    }

    .floating-note--left {
        left: -20px;
    }

    .floating-note--right {
        right: -20px;
    }

    .audience-layout,
    .instructor__grid {
        gap: 50px;
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 72px;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav,
    .desktop-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 58px;
    }

    .hero-stage {
        grid-template-columns: minmax(0, 1fr) 220px;
    }

    .hero-portrait__content strong {
        font-size: 1.2rem;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .manifesto-grid {
        grid-template-columns: 1fr 1fr;
    }

    .manifesto-card--dark {
        grid-column: 1 / -1;
        min-height: 300px;
    }

    .method-layout {
        grid-template-columns: 1fr;
    }

    .phone-scene {
        width: min(100%, 560px);
        margin-inline: auto;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-arrow {
        display: grid;
        place-items: center;
        transform: rotate(90deg);
    }

    .journey-card {
        min-height: auto;
    }

    .module__body {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .audience-layout {
        grid-template-columns: 1fr;
    }

    .instructor__grid {
        grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    }

    .offer-card {
        grid-template-columns: 1fr 340px;
    }

    .offer-card__main {
        padding: 44px 38px;
    }

    .price-card {
        padding: 40px 28px;
    }

    .faq-layout {
        gap: 48px;
    }

    .final-cta__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .final-cta__inner .button {
        width: max-content;
    }

    .legal-layout {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 45px;
    }
}

@media (max-width: 780px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .announcement__inner {
        gap: 8px;
        font-size: 0.58rem;
    }

    .brand__text small {
        display: none;
    }

    .hero-stage {
        grid-template-columns: 1fr;
    }

    .hero-portrait {
        display: none;
    }

    .hero__copy h1 {
        font-size: clamp(3rem, 12vw, 4.9rem);
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat:nth-child(3)::before {
        display: none;
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .manifesto-grid {
        grid-template-columns: 1fr;
    }

    .manifesto-card--dark {
        grid-column: auto;
    }

    .manifesto-card {
        min-height: auto;
    }

    .audience-columns {
        grid-template-columns: 1fr;
    }

    .audience-card {
        min-height: auto;
    }

    .instructor__grid {
        grid-template-columns: 1fr;
    }

    .instructor__media {
        position: relative;
        top: auto;
        max-width: 500px;
        margin-inline: auto;
    }

    .offer-card {
        grid-template-columns: 1fr;
    }

    .price-card {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 0;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-intro {
        position: relative;
        top: auto;
    }

    .site-footer__top,
    .site-footer__legal {
        grid-template-columns: 1fr;
    }

    .site-footer__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__top > p,
    .site-footer__legal p:last-child {
        text-align: left;
    }

    .mobile-checkout-bar {
        display: flex;
    }

    .cookie-banner {
        right: 14px;
        bottom: calc(88px + env(safe-area-inset-bottom));
        left: 14px;
        width: auto;
        grid-template-columns: 1fr;
    }

    .cookie-banner__actions {
        justify-content: flex-end;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-aside {
        position: relative;
        top: auto;
    }

    .legal-document {
        padding: 34px;
    }
}

@media (max-width: 600px) {
    html {
        scroll-padding-top: 84px;
    }

    body {
        font-size: 15px;
    }

    .announcement__inner span:nth-of-type(3),
    .announcement__inner .announcement__dot:last-of-type {
        display: none;
    }

    .site-header__inner {
        min-height: 66px;
    }

    .brand__monogram {
        width: 39px;
        height: 39px;
        border-radius: 12px;
        font-size: 1rem;
    }

    .brand__text strong {
        font-size: 0.98rem;
    }

    .menu-toggle {
        width: 43px;
        height: 43px;
        border-radius: 12px;
    }

    .hero {
        padding: 48px 0 70px;
    }

    .hero__copy {
        margin-bottom: 30px;
        text-align: left;
    }

    .hero__copy .eyebrow {
        align-items: flex-start;
    }

    .hero__copy h1 {
        margin-bottom: 20px;
        font-size: clamp(2.78rem, 13vw, 4.25rem);
        line-height: 0.98;
    }

    .hero__lead {
        font-size: 0.94rem;
    }

    .video-card {
        border-radius: 21px;
    }

    .video-card__topline {
        top: 13px;
        left: 13px;
        padding: 6px 9px;
        font-size: 0.51rem;
    }

    .play-button {
        width: 58px;
        height: 58px;
        margin-bottom: 10px;
    }

    .video-card__center strong {
        font-size: 0.81rem;
    }

    .video-card__center small,
    .video-card__caption {
        display: none;
    }

    .hero__action {
        display: grid;
        margin-top: 24px;
        gap: 15px;
    }

    .hero__action .button {
        width: 100%;
    }

    .hero__microcopy {
        margin-top: 0;
    }

    .hero-stats {
        margin-top: 38px;
    }

    .stat {
        min-height: 120px;
        padding: 18px 10px;
    }

    .stat small {
        display: none;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .instructor__content h2,
    .faq-intro h2 {
        font-size: clamp(2.35rem, 11vw, 3.5rem);
    }

    .manifesto-card,
    .journey-card,
    .audience-card {
        padding: 26px;
        border-radius: 23px;
    }

    .manifesto-card blockquote {
        font-size: 2rem;
    }

    .phone-scene {
        min-height: 540px;
    }

    .phone-orbit--one {
        width: 390px;
        height: 390px;
    }

    .phone-orbit--two {
        width: 300px;
        height: 300px;
    }

    .phone {
        width: 270px;
    }

    .phone__screen {
        min-height: 520px;
    }

    .floating-note {
        min-width: 105px;
        padding: 12px;
    }

    .floating-note--left {
        top: 125px;
        left: -8px;
    }

    .floating-note--right {
        right: -8px;
        bottom: 110px;
    }

    .journey-arrow {
        height: 38px;
    }

    .module summary {
        min-height: 112px;
        grid-template-columns: 44px minmax(0, 1fr) 28px;
        gap: 12px;
    }

    .module__count {
        display: none;
    }

    .module__main > span {
        display: none;
    }

    .module__body {
        padding: 0 0 34px 44px;
    }

    .lesson-list li {
        padding-left: 4px;
    }

    .lesson-list li span {
        font-size: 0.77rem;
    }

    .curriculum-cta {
        align-items: stretch;
        flex-direction: column;
        padding: 25px;
    }

    .curriculum-cta .button {
        width: 100%;
    }

    .instructor__image-wrap {
        border-radius: 28px;
    }

    .instructor__content h2 {
        margin-top: 4px;
    }

    .instructor__quote {
        grid-template-columns: 28px 1fr;
    }

    .instructor__quote p {
        font-size: 1.55rem;
    }

    .authority-timeline::before {
        left: 34px;
    }

    .authority-item {
        grid-template-columns: 70px 1fr;
        gap: 14px;
    }

    .authority-item::before {
        left: 29px;
    }

    .offer-card,
    .utility-card {
        border-radius: 28px;
    }

    .offer-card__main,
    .price-card {
        padding: 34px 24px;
    }

    .price-card__installment strong {
        font-size: 3.55rem;
    }

    .faq-item summary {
        min-height: 82px;
        font-size: 1.25rem;
    }

    .final-cta {
        padding: 72px 0;
    }

    .final-cta__inner .button {
        width: 100%;
    }

    .site-footer {
        padding-bottom: 120px;
    }

    .site-footer__links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .video-modal {
        padding: 10px;
    }

    .video-modal__dialog {
        border-radius: 16px;
    }

    .video-modal__top {
        min-height: 56px;
        padding-left: 16px;
    }

    .video-modal__top strong {
        font-size: 0.82rem;
    }

    .video-placeholder {
        padding: 20px;
    }

    .video-placeholder small {
        display: none;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-banner .button {
        width: 100%;
        padding-inline: 10px;
    }

    .utility-shell {
        padding: 18px;
    }

    .utility-card {
        padding: 34px 24px;
    }

    .legal-header__inner {
        min-height: 72px;
    }

    .legal-header .text-link {
        font-size: 0.7rem;
    }

    .legal-main {
        padding: 60px 0 90px;
    }

    .legal-aside h1 {
        font-size: 2.8rem;
    }

    .legal-document {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .legal-intro {
        font-size: 1.2rem;
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .announcement,
    .site-header,
    .mobile-checkout-bar,
    .cookie-banner,
    .video-modal,
    .button,
    .final-cta,
    .site-footer {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .section,
    .hero,
    .offer {
        padding: 30px 0;
        background: #fff !important;
        color: #000 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
