:root {
    --bg-page: #fbf7ef;
    --bg-surface: rgba(255, 255, 255, 0.82);
    --bg-soft: #f6efe2;
    --bg-cream: #fffaf1;
    --bg-gold: #f4e6c4;
    --ink: #1e2430;
    --ink-soft: #566171;
    --ink-muted: #7b8796;
    --gold: #c69c3a;
    --gold-deep: #8b6b20;
    --mineral: #275f62;
    --navy: #284766;
    --rust: #b56e41;
    --line: rgba(30, 36, 48, 0.1);
    --line-strong: rgba(30, 36, 48, 0.18);
    --shadow-soft: 0 22px 50px rgba(30, 36, 48, 0.07);
    --shadow-deep: 0 30px 70px rgba(30, 36, 48, 0.12);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
    --font-stage: 'Syne', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--bg-page);
    color: var(--ink-soft);
    overflow-x: hidden;
}

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

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-kicker,
.panel-kicker,
.product-kicker,
.character-label,
.topic-step,
.summary-chip,
.course-badge,
.family-label,
.family-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-kicker,
.panel-kicker,
.product-kicker,
.character-label,
.topic-step {
    color: var(--gold-deep);
    background: rgba(198, 156, 58, 0.12);
}

.summary-chip {
    color: var(--navy);
    background: rgba(40, 71, 102, 0.1);
}

.course-badge {
    color: var(--gold-deep);
    background: rgba(255, 255, 255, 0.72);
}

.family-label {
    color: var(--mineral);
    background: rgba(39, 95, 98, 0.12);
}

.family-badge {
    color: var(--rust);
    background: rgba(181, 110, 65, 0.12);
}

.section-title,
.impact-title,
.impact-statement,
.character-title,
.learning-step h3,
.product-trigger-title,
.product-dock-title,
.program-summary h4,
.course-panel-main h4,
.flex-family h4,
.pack-copy strong,
.modal-title,
.metallic-title {
    font-family: var(--font-display);
    color: var(--ink);
    letter-spacing: -0.03em;
}

.section-title {
    font-size: clamp(2.5rem, 4.4vw, 4.3rem);
    line-height: 0.95;
}

.section-copy,
.impact-copy,
.impact-detail,
.impact-source,
.character-text,
.learning-step p,
.product-trigger-subtitle,
.product-trigger-note,
.product-dock-copy,
.course-panel-main p,
.course-fact span,
.flex-option p,
.pack-copy span,
.product-footnote,
.modal-copy,
.form-status,
.copyright,
.hero-note {
    line-height: 1.72;
    color: var(--ink-soft);
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(255, 253, 247, 0.78);
    border-bottom: 1px solid rgba(91, 75, 37, 0.1);
    backdrop-filter: blur(18px);
}

.topbar-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 24px 0 14px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
}

.topbar-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    color: var(--ink);
    font-family: var(--font-stage);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.topbar-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(139, 107, 32, 0.16));
}

.topbar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 26px);
    min-width: 0;
}

.topbar-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: rgba(30, 36, 48, 0.72);
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.22s ease;
}

.topbar-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.topbar-links a:hover {
    color: var(--ink);
}

.topbar-links a:hover::after {
    transform: scaleX(1);
}

.topbar-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.topbar-access {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    border-radius: 999px;
    padding: 11px 19px 11px 21px;
    position: relative;
    overflow: hidden;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.topbar-access {
    border: 1px solid rgba(174, 129, 28, 0.3);
    background: linear-gradient(120deg, #fff4ac 0%, #f6dc78 24%, #c69c3a 48%, #f2d46c 72%, #fff6bf 100%);
    background-size: 220% 100%;
    color: #2b220c;
    box-shadow:
        0 16px 30px rgba(198, 156, 58, 0.24),
        0 0 0 7px rgba(246, 216, 110, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
    animation: topbarAccessShimmer 4.8s ease-in-out infinite;
}

.topbar-access::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.36), transparent 38%, rgba(255, 255, 255, 0.16) 58%, transparent 100%);
    pointer-events: none;
}

.topbar-access span,
.topbar-access i {
    position: relative;
    z-index: 1;
}

.topbar-access i {
    color: #4a390f;
    font-size: 0.98rem;
    transition: transform 0.25s ease;
}

.topbar-access:hover {
    transform: translateY(-2px);
    border-color: rgba(174, 129, 28, 0.46);
    background-position: 100% center;
    color: #241a05;
    box-shadow:
        0 20px 38px rgba(198, 156, 58, 0.32),
        0 0 0 9px rgba(246, 216, 110, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.topbar-access:hover i {
    transform: translate(2px, -2px);
}

.hero-shell {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(250, 217, 97, 0.26), transparent 30%),
        radial-gradient(circle at top right, rgba(198, 156, 58, 0.14), transparent 28%),
        linear-gradient(180deg, #fffdf7 0%, #fff7e8 58%, #ffffff 100%);
}

.hero-center {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 124px 24px 76px;
}

.brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.brand-wrapper-centered {
    align-items: center;
    text-align: center;
    max-width: 940px;
}

.seo-hero-copy {
    width: min(100%, 940px);
}

.section-title.seo-hero-title {
    width: 100%;
    max-width: 15ch;
    margin: 0 auto;
    overflow-wrap: break-word;
}

.brand-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(182px, 19vw, 246px);
    max-width: 100%;
    gap: 12px;
}

.brand-wordmark {
    display: flex;
    align-items: center;
    min-width: 0;
    white-space: nowrap;
}

.hero-logo-img {
    height: clamp(154px, 16vw, 214px);
    width: auto;
    filter: drop-shadow(0 24px 36px rgba(139, 107, 32, 0.2));
}

.metallic-title {
    font-weight: 600;
    font-size: clamp(4.7rem, 6.8vw, 7.4rem);
    line-height: 0.9;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: linear-gradient(
        100deg,
        #b66b00 0%,
        #e89400 16%,
        #ffb900 36%,
        #ffc32a 52%,
        #f2a000 70%,
        #c87500 100%
    );
    background-size: 100% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 0 rgba(177, 104, 0, 0.16)) drop-shadow(0 16px 24px rgba(255, 185, 0, 0.1));
}

.hero-slogan {
    font-size: clamp(1.12rem, 1.8vw, 1.32rem);
    font-weight: 700;
    color: #5e533c;
    letter-spacing: 0.02em;
}

.hero-note {
    max-width: 44ch;
    font-size: 1rem;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions-centered {
    justify-content: center;
}

.btn-explore,
.btn-contact {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    padding: 13px 28px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.btn-explore:hover,
.btn-contact:hover {
    transform: translateY(-2px);
    background: var(--ink);
    color: #f7e7ce;
}

.btn-explore:hover i,
.btn-contact:hover i {
    transform: translateY(2px);
}

.btn-contact-solid {
    background: linear-gradient(135deg, #fff2a8 0%, #f4d86e 48%, #c69c3a 100%);
    border-color: rgba(174, 129, 28, 0.2);
    color: #2b220c;
    box-shadow:
        0 16px 30px rgba(198, 156, 58, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.btn-contact-solid:hover {
    background: linear-gradient(135deg, #fff6bd 0%, #f5dc7c 48%, #cfa845 100%);
    color: #2b220c;
    border-color: rgba(174, 129, 28, 0.28);
    box-shadow:
        0 20px 36px rgba(198, 156, 58, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.impact-section {
    padding: 126px 0 106px;
    background:
        radial-gradient(circle at top right, rgba(250, 217, 97, 0.18), transparent 28%),
        linear-gradient(180deg, #fffcf4 0%, #f8efde 100%);
}

.impact-shell {
    display: grid;
    gap: 42px;
}

.impact-intro {
    max-width: 880px;
}

.alert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(198, 156, 58, 0.26);
    background: rgba(255, 255, 255, 0.82);
    color: var(--gold-deep);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(92, 75, 37, 0.05);
    margin-bottom: 22px;
}

.impact-title {
    max-width: 12ch;
    font-size: clamp(3rem, 5.8vw, 5.2rem);
    line-height: 0.94;
    margin-bottom: 18px;
}

.impact-copy {
    max-width: 62ch;
    font-size: 1.04rem;
}

.impact-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 22px;
    align-items: start;
}

.impact-support {
    display: grid;
    gap: 22px;
}

.impact-card {
    border-radius: 32px;
    border: 1px solid rgba(198, 156, 58, 0.16);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 156, 58, 0.3);
    box-shadow: 0 24px 54px rgba(92, 75, 37, 0.09);
}

.impact-card-lead {
    display: grid;
    grid-template-columns: minmax(176px, 220px) minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
        "context context"
        "stat statement"
        "stat detail"
        "source source";
    column-gap: 28px;
    row-gap: 10px;
    align-items: start;
    align-content: start;
    min-height: 0;
    padding: 34px 38px 30px;
    background:
        radial-gradient(circle at top left, rgba(198, 156, 58, 0.16), transparent 32%),
        linear-gradient(160deg, rgba(255, 252, 244, 0.98) 0%, rgba(255, 246, 227, 0.95) 100%);
}

.impact-card-lead .impact-context {
    grid-area: context;
    margin-bottom: 10px;
}

.impact-card-lead .stat-number-lead {
    grid-area: stat;
    margin: 0;
    line-height: 0.9;
    overflow: visible;
}

.impact-card-lead .stat-number-lead.text-gradient {
    color: var(--gold);
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
}

.impact-card-lead .impact-statement {
    grid-area: statement;
    max-width: 12.5ch;
    margin: 10px 0 0;
}

.impact-card-lead .impact-detail {
    grid-area: detail;
    max-width: 34ch;
    margin: 0;
}

.impact-card-lead .impact-source {
    grid-area: source;
    margin-top: 2px;
}

.impact-card-support {
    padding: 28px;
    min-height: 248px;
}

.impact-context {
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    display: block;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--gold);
}

.stat-number-lead {
    font-size: clamp(6.4rem, 9vw, 8.6rem);
    margin: 4px 0 16px;
    display: inline-block;
    padding: 0.06em 0.08em 0.1em 0.08em;
    margin-left: 0;
    letter-spacing: -0.035em;
}

.stat-number-side {
    font-size: clamp(4rem, 5vw, 5rem);
    margin: 2px 0 12px;
}

.text-gradient {
    background: linear-gradient(160deg, var(--gold) 0%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.impact-statement {
    font-size: clamp(2.2rem, 3.4vw, 3.4rem);
    line-height: 0.95;
    margin-bottom: 14px;
}

.impact-card-support .impact-statement {
    font-size: 1.92rem;
}

.impact-source {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(198, 156, 58, 0.12);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pilot-section {
    position: relative;
    padding: 124px 0 118px;
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 210, 79, 0.16), transparent 22%),
        radial-gradient(circle at 82% 36%, rgba(65, 193, 163, 0.12), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fffaf1 48%, #ffffff 100%);
    overflow: hidden;
}

.pilot-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(39, 95, 98, 0.06) 0%, transparent 24%, transparent 78%, rgba(198, 156, 58, 0.12) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, transparent 34%, rgba(255, 255, 255, 0.72) 100%);
}

.pilot-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(64px, 8vw, 104px);
}

.pilot-row {
    display: grid;
    grid-template-columns: minmax(270px, 0.9fr) minmax(340px, 1.1fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: center;
}

.pilot-row-reverse .pilot-media {
    order: -1;
}

.pilot-copy {
    max-width: 520px;
}

.pilot-copy .section-kicker {
    margin-bottom: 18px;
    color: #7a540e;
    background:
        linear-gradient(135deg, rgba(255, 243, 176, 0.95), rgba(217, 170, 63, 0.24));
    border: 1px solid rgba(198, 156, 58, 0.26);
}

.pilot-copy .section-title {
    max-width: 12.5ch;
    font-size: clamp(2.25rem, 3.4vw, 3.45rem);
    line-height: 0.98;
}

.pilot-copy .section-copy {
    max-width: 52ch;
    margin-top: 18px;
    font-size: 0.98rem;
}

.pilot-photo-surface {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(198, 156, 58, 0.18);
    background-image:
        var(--pilot-photo),
        radial-gradient(circle at 24% 18%, rgba(255, 226, 128, 0.5), transparent 34%),
        radial-gradient(circle at 76% 70%, rgba(39, 95, 98, 0.2), transparent 32%),
        linear-gradient(145deg, #fffdf8 0%, #f7efdd 100%);
    background-size: cover, cover, cover, cover;
    background-position: center, center, center, center;
    box-shadow:
        0 28px 64px rgba(92, 75, 37, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.pilot-photo-surface::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 32%),
        linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.12));
}

.pilot-photo-wide {
    aspect-ratio: 16 / 9;
}

.pilot-photo-portrait {
    width: min(100%, 520px);
    aspect-ratio: 4 / 3;
}

.pilot-collage {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(104px, 0.58fr);
    grid-template-rows: repeat(3, minmax(82px, 1fr));
    gap: 8px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(198, 156, 58, 0.18);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 28px 64px rgba(92, 75, 37, 0.13);
}

.pilot-collage .pilot-photo-surface {
    width: 100%;
    height: 100%;
    min-height: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.pilot-collage-main {
    grid-row: 1 / -1;
}

.learning-section {
    padding: 108px 0;
    background: #ffffff;
}

.learning-shell {
    display: grid;
    gap: 34px;
}

.section-intro {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: end;
}

.learning-editorial {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
    align-items: start;
}

.learning-anchor {
    position: sticky;
    top: 42px;
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid rgba(198, 156, 58, 0.14);
    background: linear-gradient(155deg, #fffdf8 0%, #f7efdd 100%);
    box-shadow: var(--shadow-soft);
}

.learning-anchor-visual {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(255, 226, 128, 0.64), rgba(255, 226, 128, 0.08) 60%, transparent 70%);
}

.character-image {
    width: min(150px, 100%);
    height: auto;
    filter: drop-shadow(0 18px 28px rgba(139, 107, 32, 0.18));
}

.character-label {
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid rgba(154, 107, 18, 0.26);
    background:
        linear-gradient(135deg, rgba(255, 241, 166, 0.94) 0%, rgba(217, 170, 63, 0.26) 100%);
    color: #7a540e;
    box-shadow:
        0 10px 20px rgba(154, 107, 18, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.character-title {
    font-size: clamp(1.8rem, 2.7vw, 2.5rem);
    line-height: 0.96;
    margin-bottom: 0;
}

.learning-path {
    display: grid;
    gap: 18px;
}

.learning-step {
    --step-rail-x: 38px;
    --step-badge-top: 24px;
    --step-badge-size: 52px;
    position: relative;
    width: min(100%, 620px);
    padding: 28px 28px 28px 90px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: var(--bg-cream);
    box-shadow: 0 18px 38px rgba(92, 75, 37, 0.04);
}

.learning-step::before {
    content: '';
    position: absolute;
    top: calc(var(--step-badge-top) + var(--step-badge-size));
    bottom: 22px;
    left: var(--step-rail-x);
    width: 1px;
    background: linear-gradient(180deg, rgba(198, 156, 58, 0.58) 0%, rgba(198, 156, 58, 0.1) 100%);
}

.learning-step-index {
    position: absolute;
    top: var(--step-badge-top);
    left: calc(var(--step-rail-x) - (var(--step-badge-size) / 2));
    min-width: var(--step-badge-size);
    min-height: var(--step-badge-size);
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(198, 156, 58, 0.15);
    color: var(--gold-deep);
    font-family: var(--font-display);
    font-size: 1.26rem;
    font-weight: 700;
}

.learning-step-start {
    margin-right: auto;
}

.learning-step-slim {
    width: min(100%, 520px);
    margin-left: auto;
}

.learning-step-wide {
    width: min(100%, 690px);
}

.learning-step-end {
    width: min(100%, 560px);
    margin-left: 10%;
}

.learning-step h3 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 0.94;
    margin: 14px 0 12px;
}

.tutorial-section {
    position: relative;
    padding: 122px 0 142px;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 210, 79, 0.24), transparent 24%),
        radial-gradient(circle at 82% 38%, rgba(65, 193, 163, 0.14), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #fff5d8 52%, #ffffff 100%);
    overflow: hidden;
}

.tutorial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(39, 95, 98, 0.1) 0%, transparent 24%, transparent 74%, rgba(198, 156, 58, 0.2) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, transparent 36%);
}

.tutorial-section::after {
    content: '';
    position: absolute;
    top: 8%;
    right: 8%;
    width: 140px;
    height: 140px;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 46%, rgba(198, 156, 58, 0.54) 47%, rgba(198, 156, 58, 0.54) 53%, transparent 54%),
        linear-gradient(0deg, transparent 46%, rgba(198, 156, 58, 0.54) 47%, rgba(198, 156, 58, 0.54) 53%, transparent 54%);
    clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
    opacity: 0.22;
    transform: rotate(12deg);
}

.tutorial-intro {
    position: relative;
    z-index: 1;
    margin-bottom: 42px;
}

.tutorial-intro .section-kicker {
    color: #6f4e08;
    background:
        linear-gradient(135deg, rgba(255, 243, 176, 0.95), rgba(217, 170, 63, 0.28));
    border: 1px solid rgba(198, 156, 58, 0.28);
    box-shadow: 0 12px 24px rgba(154, 107, 18, 0.1);
}

.tutorial-intro .section-title {
    max-width: 12ch;
}

.tutorial-intro .section-copy {
    max-width: 56ch;
}

.tutorial-video-shell {
    position: relative;
    z-index: 1;
    padding: 22px;
    border-radius: 38px;
    border: 1px solid rgba(198, 156, 58, 0.36);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 50%),
        linear-gradient(145deg, #fffdf8 0%, #fff0bf 48%, #f7efdd 100%);
    box-shadow:
        0 34px 80px rgba(154, 107, 18, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.74),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    isolation: isolate;
}

.tutorial-video-shell::before,
.tutorial-video-shell::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.tutorial-video-shell::before {
    inset: -1px;
    border-radius: inherit;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.9) 0%, transparent 26%, rgba(255, 210, 79, 0.42) 48%, transparent 70%, rgba(65, 193, 163, 0.18) 100%);
    opacity: 0.76;
}

.tutorial-video-shell::after {
    top: 20px;
    left: 22px;
    width: 78px;
    height: 78px;
    background:
        linear-gradient(90deg, transparent 45%, rgba(255, 210, 79, 0.7) 47%, rgba(255, 210, 79, 0.7) 53%, transparent 55%),
        linear-gradient(0deg, transparent 45%, rgba(255, 210, 79, 0.7) 47%, rgba(255, 210, 79, 0.7) 53%, transparent 55%);
    clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
    opacity: 0.46;
}

.tutorial-video-frame {
    position: relative;
    z-index: 1;
    min-width: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(143, 106, 22, 0.3);
    background: #172231;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 22px 52px rgba(30, 36, 48, 0.22);
}

.tutorial-video {
    display: block;
    width: 100%;
    height: 100%;
}

.tutorial-video {
    object-fit: contain;
    border: 0;
    background: #172231;
}

.tutorial-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: clamp(94px, 10vw, 136px);
    height: clamp(94px, 10vw, 136px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(174, 129, 28, 0.24);
    border-radius: 999px;
    color: #2b220c;
    background: linear-gradient(135deg, #fff2a8 0%, #f4d86e 48%, #c69c3a 100%);
    box-shadow:
        0 28px 60px rgba(10, 14, 22, 0.26),
        0 0 0 13px rgba(255, 210, 79, 0.18),
        0 0 0 26px rgba(255, 210, 79, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.54);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
    animation: tutorialPlayPulse 2.4s ease-in-out infinite;
}

.tutorial-play-button i {
    margin-left: 8px;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.tutorial-play-button:hover {
    transform: translate(-50%, -50%) scale(1.04);
    background: linear-gradient(135deg, #fff6bd 0%, #f5dc7c 48%, #cfa845 100%);
    box-shadow:
        0 28px 54px rgba(10, 14, 22, 0.28),
        0 0 0 16px rgba(255, 210, 79, 0.22),
        0 0 0 32px rgba(255, 210, 79, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.tutorial-play-button:focus-visible {
    outline: 3px solid rgba(255, 226, 128, 0.92);
    outline-offset: 7px;
}

.tutorial-play-button.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.9);
    animation: none;
}

@keyframes tutorialPlayPulse {
    0%, 100% {
        box-shadow:
            0 28px 60px rgba(10, 14, 22, 0.26),
            0 0 0 13px rgba(255, 210, 79, 0.18),
            0 0 0 26px rgba(255, 210, 79, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.54);
    }
    50% {
        box-shadow:
            0 32px 66px rgba(10, 14, 22, 0.28),
            0 0 0 17px rgba(255, 210, 79, 0.22),
            0 0 0 34px rgba(255, 210, 79, 0.11),
            inset 0 1px 0 rgba(255, 255, 255, 0.58);
    }
}

.products-section {
    position: relative;
    padding: 148px 0 136px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fffaf1 18%, #f8efde 100%);
    overflow: clip;
    isolation: isolate;
}

.products-section::before,
.products-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.products-section::before {
    background:
        radial-gradient(circle at 18% 16%, rgba(198, 156, 58, 0.12), transparent 18%),
        radial-gradient(circle at 84% 28%, rgba(93, 149, 255, 0.1), transparent 19%),
        radial-gradient(circle at 78% 80%, rgba(65, 193, 163, 0.1), transparent 14%);
    opacity: 0.72;
}

.products-section::after {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, transparent 18%),
        linear-gradient(180deg, transparent 0%, rgba(198, 156, 58, 0.08) 100%);
}

.products-intro {
    position: relative;
    z-index: 2;
    margin-bottom: 44px;
}

.products-intro .section-kicker {
    color: var(--gold-deep);
    background: rgba(198, 156, 58, 0.12);
}

.products-intro .section-title {
    color: var(--ink);
    max-width: 11ch;
}

.products-intro .section-copy {
    max-width: 58ch;
    color: var(--ink-soft);
}

.product-stack {
    display: grid;
    gap: 0;
    position: relative;
    z-index: 2;
}

.product-experience {
    --accent: #c69c3a;
    --accent-strong: #8b6b20;
    --accent-soft: rgba(198, 156, 58, 0.13);
    --glow: rgba(198, 156, 58, 0.18);
    --dock-origin: 28%;
    position: relative;
    display: grid;
    gap: 0;
    padding: 40px 34px 34px;
    border-radius: 42px;
    border: 1px solid rgba(198, 156, 58, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 248, 233, 0.96) 100%);
    box-shadow:
        var(--shadow-deep),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: clip;
    isolation: isolate;
}

.product-experience::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.product-experience::before {
    background:
        radial-gradient(circle at var(--dock-origin) 15%, var(--glow) 0%, transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, transparent 18%),
        linear-gradient(110deg, rgba(198, 156, 58, 0.05) 0%, transparent 24%, rgba(65, 193, 163, 0.035) 100%);
    opacity: 0.9;
}

.product-experience[data-active-product="program"] {
    --accent: #c69c3a;
    --accent-strong: #8b6b20;
    --accent-soft: rgba(198, 156, 58, 0.14);
    --glow: rgba(198, 156, 58, 0.2);
    --dock-origin: 28%;
}

.product-experience[data-active-product="packs"] {
    --accent: #5d95ff;
    --accent-strong: #315fba;
    --accent-soft: rgba(93, 149, 255, 0.13);
    --glow: rgba(93, 149, 255, 0.18);
    --dock-origin: 72%;
}

.product-experience[data-active-product="flex"] {
    --accent: #41c1a3;
    --accent-strong: #257f71;
    --accent-soft: rgba(65, 193, 163, 0.13);
    --glow: rgba(65, 193, 163, 0.17);
    --dock-origin: 72%;
}

.product-stage {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(188px, 1fr));
    gap: 18px;
    min-height: 552px;
    padding-bottom: 78px;
    position: relative;
    z-index: 2;
    contain: layout paint;
}

.product-stage::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, rgba(139, 107, 32, 0.14), rgba(139, 107, 32, 0.04) 56%, transparent 100%);
    opacity: 0.9;
    pointer-events: none;
}

.product-stage::after {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    height: 74px;
    background:
        linear-gradient(180deg, transparent 0%, rgba(198, 156, 58, 0.05) 44%, rgba(139, 107, 32, 0.1) 100%);
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    pointer-events: none;
}

.product-trigger {
    --trigger-title-size: clamp(2rem, 2.45vw, 2.85rem);
    --trigger-title-width: 8ch;
    --trigger-note-opacity: 0.75;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: none;
    border-radius: 34px;
    text-align: left;
    color: var(--ink);
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 241, 0.98) 100%);
    border: 1px solid rgba(198, 156, 58, 0.14);
    box-shadow:
        0 12px 28px rgba(92, 75, 37, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        transform 560ms cubic-bezier(.22, 1, .36, 1),
        opacity 380ms ease-out,
        border-color 560ms cubic-bezier(.22, 1, .36, 1),
        box-shadow 560ms cubic-bezier(.22, 1, .36, 1);
    will-change: transform, opacity;
    contain: layout paint;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.product-trigger::before,
.product-trigger::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.product-trigger::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, transparent 18%),
        radial-gradient(circle at 78% 18%, var(--glow) 0%, transparent 22%),
        linear-gradient(120deg, var(--accent-soft) 0%, transparent 22%, rgba(255, 255, 255, 0.4) 100%);
    opacity: 0.95;
    transition: transform 560ms cubic-bezier(.22, 1, .36, 1), opacity 380ms ease-out;
}

.product-trigger::after {
    inset: auto 24px 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.34;
}

.product-trigger > * {
    position: relative;
    z-index: 1;
}

.product-trigger:hover {
    transform: translateY(-5px);
    box-shadow:
        0 18px 36px rgba(92, 75, 37, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.product-trigger:hover::before {
    transform: scale(1.02);
}

.product-trigger:focus-visible {
    outline: 2px solid var(--accent-strong);
    outline-offset: 8px;
}

.product-trigger.is-active {
    --trigger-title-size: clamp(3.4rem, 5vw, 5.8rem);
    --trigger-title-width: 7.1ch;
    --trigger-note-opacity: 1;
    border-color: color-mix(in srgb, var(--accent) 58%, white);
    box-shadow:
        0 22px 46px rgba(92, 75, 37, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.product-trigger[aria-selected="false"] {
    opacity: 0.96;
}

.product-trigger-program {
    --accent: #c69c3a;
    --accent-strong: #8b6b20;
    --glow: rgba(198, 156, 58, 0.2);
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 230, 163, 0.36) 0%, transparent 26%),
        radial-gradient(circle at 84% 18%, rgba(198, 156, 58, 0.22) 0%, transparent 24%),
        radial-gradient(circle at 82% 86%, rgba(255, 179, 31, 0.16) 0%, transparent 28%),
        radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 34%, transparent 58%),
        linear-gradient(160deg, rgba(255, 253, 248, 0.98) 0%, rgba(248, 235, 197, 0.9) 100%);
}

.product-trigger-program::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, transparent 18%),
        radial-gradient(circle at 76% 18%, rgba(255, 230, 163, 0.22) 0%, transparent 22%),
        linear-gradient(120deg, rgba(198, 156, 58, 0.14) 0%, transparent 20%, rgba(255, 255, 255, 0.42) 100%);
}

.product-trigger-packs {
    --accent: #7e5bef;
    --accent-strong: #315fba;
    --accent-soft: rgba(93, 149, 255, 0.16);
    --glow: rgba(126, 91, 239, 0.18);
    background:
        radial-gradient(circle at 8% 18%, rgba(65, 193, 163, 0.2) 0%, transparent 28%),
        radial-gradient(circle at 15% 86%, rgba(93, 149, 255, 0.18) 0%, transparent 30%),
        radial-gradient(circle at 82% 14%, rgba(126, 91, 239, 0.18) 0%, transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(217, 170, 63, 0.18) 0%, transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(40, 71, 102, 0.08) 0%, transparent 34%),
        radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 34%, transparent 56%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 255, 0.96) 100%);
}

.product-trigger-packs::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, transparent 18%),
        radial-gradient(circle at 18% 14%, rgba(65, 193, 163, 0.12) 0%, transparent 24%),
        radial-gradient(circle at 18% 86%, rgba(93, 149, 255, 0.1) 0%, transparent 26%),
        radial-gradient(circle at 82% 16%, rgba(126, 91, 239, 0.11) 0%, transparent 24%),
        radial-gradient(circle at 86% 82%, rgba(217, 170, 63, 0.12) 0%, transparent 26%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82) 0%, transparent 48%);
}

.product-trigger-flex {
    --accent: #41c1a3;
    --accent-strong: #257f71;
    --glow: rgba(65, 193, 163, 0.18);
    background:
        linear-gradient(160deg, rgba(248, 255, 252, 0.98) 0%, rgba(224, 245, 239, 0.92) 100%);
}

.product-trigger-flex::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, transparent 18%),
        radial-gradient(circle at 78% 18%, rgba(65, 193, 163, 0.18) 0%, transparent 22%),
        linear-gradient(120deg, rgba(65, 193, 163, 0.1) 0%, transparent 24%, rgba(255, 255, 255, 0.34) 100%);
}

.product-trigger-no {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--font-stage);
    font-size: clamp(3.4rem, 4.8vw, 6rem);
    font-weight: 800;
    line-height: 0.82;
    letter-spacing: -0.08em;
    color: color-mix(in srgb, var(--accent) 28%, transparent);
    transition: transform 560ms cubic-bezier(.22, 1, .36, 1), opacity 380ms ease-out, color 380ms ease-out;
}

.product-trigger-packs .product-trigger-no {
    top: 24px;
    left: 20px;
    right: auto;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: clamp(2.6rem, 3vw, 4.2rem);
}

.product-trigger-flex .product-trigger-no {
    top: auto;
    bottom: 20px;
    right: 20px;
}

.product-trigger.is-active .product-trigger-no {
    color: color-mix(in srgb, var(--accent) 38%, transparent);
    transform: translateY(-6px);
}

.product-trigger-packs.is-active .product-trigger-no {
    transform: rotate(180deg) translateY(-6px);
}

.product-trigger-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    width: min(100%, 34rem);
    margin-top: auto;
    padding: 20px 20px 18px;
    border-radius: 24px 28px 18px 18px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid color-mix(in srgb, var(--accent) 24%, white);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 14px 28px rgba(92, 75, 37, 0.05);
    transition:
        transform 560ms cubic-bezier(.22, 1, .36, 1),
        opacity 380ms ease-out,
        border-color 560ms cubic-bezier(.22, 1, .36, 1),
        background 560ms cubic-bezier(.22, 1, .36, 1);
}

.product-trigger-copy::before,
.product-trigger-copy::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.product-trigger-copy::before {
    top: 15px;
    left: 0;
    right: 18px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), rgba(139, 107, 32, 0.08) 62%, transparent 100%);
    opacity: 0.78;
}

.product-trigger-copy::after {
    top: 14px;
    right: 16px;
    width: 56px;
    height: 34px;
    border-top: 1px solid color-mix(in srgb, var(--accent) 22%, white);
    border-right: 1px solid color-mix(in srgb, var(--accent) 22%, white);
    border-top-right-radius: 14px;
    opacity: 0.54;
}

.product-trigger-copy > * {
    position: relative;
    z-index: 1;
}

.product-trigger.is-active .product-trigger-copy {
    width: min(74%, 37rem);
    padding: 24px 24px 22px;
    margin-bottom: clamp(14px, 2.6vw, 28px);
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 32%, white);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.94) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 18px 34px rgba(92, 75, 37, 0.08);
}

.product-trigger-meta {
    display: inline-flex;
    width: fit-content;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--accent) 24%, white);
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-family: var(--font-stage);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-trigger-title {
    max-width: var(--trigger-title-width);
    font-family: var(--font-display);
    font-size: var(--trigger-title-size);
    font-weight: 700;
    line-height: 0.88;
    color: var(--ink);
    letter-spacing: -0.045em;
    text-wrap: balance;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
    transition:
        transform 560ms cubic-bezier(.22, 1, .36, 1),
        opacity 380ms ease-out,
        color 380ms ease-out,
        text-shadow 560ms cubic-bezier(.22, 1, .36, 1);
}

.product-trigger.is-active .product-trigger-title {
    color: var(--ink);
    transform: translateY(-2px);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.product-trigger-subtitle {
    max-width: 24ch;
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 560ms cubic-bezier(.22, 1, .36, 1), opacity 380ms ease-out;
}

.product-trigger-note {
    max-width: 22ch;
    color: var(--ink-soft);
    opacity: var(--trigger-note-opacity);
    font-size: 0.92rem;
    transition: transform 560ms cubic-bezier(.22, 1, .36, 1), opacity 380ms ease-out, color 380ms ease-out;
}

.product-trigger.is-active .product-trigger-note {
    color: var(--ink-soft);
    transform: translateY(2px);
}

.product-experience[data-active-product="program"] .product-trigger-program {
    grid-column: 1 / 9;
    grid-row: 1 / 3;
}

.product-experience[data-active-product="program"] .product-trigger-packs {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.product-experience[data-active-product="program"] .product-trigger-flex {
    grid-column: 9 / 13;
    grid-row: 2 / 3;
}

.product-experience[data-active-product="packs"] .product-trigger-packs {
    grid-column: 5 / 13;
    grid-row: 1 / 3;
}

.product-experience[data-active-product="packs"] .product-trigger-program {
    grid-column: 1 / 5;
    grid-row: 1 / 2;
}

.product-experience[data-active-product="packs"] .product-trigger-flex {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}

.product-experience[data-active-product="flex"] .product-trigger-flex {
    grid-column: 5 / 13;
    grid-row: 1 / 3;
}

.product-experience[data-active-product="flex"] .product-trigger-program {
    grid-column: 1 / 5;
    grid-row: 1 / 2;
}

.product-experience[data-active-product="flex"] .product-trigger-packs {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}

.product-dock {
    position: relative;
    z-index: 3;
    margin-top: -10px;
    padding: 44px 30px 42px;
    border-radius: 24px 24px 40px 40px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 250, 241, 1) 100%);
    border: 1px solid rgba(198, 156, 58, 0.16);
    box-shadow:
        0 20px 44px rgba(92, 75, 37, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    overflow: hidden;
    transition: none;
    contain: layout paint;
}

.product-dock::before,
.product-dock::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.product-dock::before {
    top: 10px;
    left: calc(var(--dock-origin) - 92px);
    width: 184px;
    height: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, transparent 64%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, var(--accent-soft) 50%, rgba(255, 255, 255, 0.14) 100%);
    clip-path: polygon(0 100%, 18% 100%, 32% 0, 68% 0, 82% 100%, 100% 100%, 100% 76%, 0 76%);
    opacity: 0.68;
}

.product-dock::after {
    inset: 0;
    background:
        radial-gradient(circle at var(--dock-origin) 0%, var(--glow) 0%, transparent 12%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, transparent 9%);
    opacity: 0.72;
}

.product-dock-panel {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    min-width: 0;
    will-change: transform, opacity;
    backface-visibility: hidden;
    opacity: 1;
    transform: translateZ(0);
}

.product-dock-panel.is-active {
    transform: translateZ(0);
}

.product-dock-panel[hidden] {
    display: none;
}

.product-dock-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.48fr) minmax(280px, 0.62fr);
    gap: 16px 24px;
    align-items: start;
    min-width: 0;
    margin-bottom: 18px;
}

.product-dock-hero > div {
    display: grid;
    align-content: start;
    gap: 8px;
    min-width: 0;
}

.product-dock .product-kicker {
    color: var(--accent-strong);
    background: var(--accent-soft);
    border: 1px solid color-mix(in srgb, var(--accent) 20%, white);
}

.product-dock-title {
    margin-top: 0;
    color: var(--ink);
    font-size: clamp(2.4rem, 3.7vw, 4.15rem);
    line-height: 0.92;
    max-width: 14.8ch;
    overflow-wrap: break-word;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
}

.product-dock-copy {
    align-self: start;
    max-width: 29ch;
    margin: 34px 0 0;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.55;
}

.product-dock-panel-packs .product-footnote {
    width: 100%;
    max-width: none;
    margin: 24px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-style: italic;
    line-height: 1.7;
    color: var(--ink-muted);
}

.program-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 24px;
    align-items: start;
    min-width: 0;
}

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

.program-summary,
.flex-family {
    position: relative;
    min-width: 0;
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 250, 241, 0.88) 100%);
    border: 1px solid color-mix(in srgb, var(--accent) 20%, white);
    box-shadow:
        0 14px 30px rgba(92, 75, 37, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    overflow: hidden;
}

.program-summary::before,
.flex-family::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, var(--glow) 0%, transparent 18%);
    opacity: 0.26;
    pointer-events: none;
}

.program-summary h4,
.flex-family h4 {
    color: var(--ink);
}

.program-summary p,
.flex-family p,
.flex-option p,
.pack-copy span,
.product-footnote,
.course-panel-main p,
.course-fact span {
    color: var(--ink-soft);
}

.summary-chip,
.family-label,
.family-badge,
.course-badge {
    position: relative;
    z-index: 1;
    background: var(--accent-soft);
    color: var(--accent-strong);
}

.program-summary h4 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    line-height: 0.94;
    margin: 18px 0 12px;
}

.program-detail {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.course-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 8px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(198, 156, 58, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.course-tab {
    border: none;
    border-radius: 18px;
    padding: 14px 16px;
    background: rgba(255, 250, 241, 0.86);
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
    transition: transform 320ms ease, background 320ms ease, color 320ms ease, box-shadow 320ms ease;
}

.course-tab:hover {
    transform: translateY(-2px);
    color: var(--ink);
}

.course-tab.is-active {
    color: var(--ink);
    box-shadow: 0 14px 28px rgba(92, 75, 37, 0.1);
}

.course-tab[data-course-tab="course-4"].is-active {
    background: linear-gradient(135deg, #74d3c1 0%, #41c1a3 100%);
}

.course-tab[data-course-tab="course-5"].is-active {
    background: linear-gradient(135deg, #8eb8ff 0%, #5d95ff 100%);
}

.course-tab[data-course-tab="course-6"].is-active {
    background: linear-gradient(135deg, #ffe296 0%, #ffb31f 100%);
}

.course-stage {
    position: relative;
    min-width: 0;
}

.course-panel {
    --course-accent: #c69c3a;
    --course-strong: #8b6b20;
    --course-soft: rgba(198, 156, 58, 0.13);
    --course-border: rgba(198, 156, 58, 0.18);
    position: relative;
    display: grid;
    gap: 20px;
    min-width: 0;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid var(--course-border);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 250, 241, 0.88) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 16px 30px color-mix(in srgb, var(--course-strong) 8%, transparent);
    overflow: hidden;
}

.course-panel::after {
    content: '\e2c3';
    position: absolute;
    right: 22px;
    bottom: 20px;
    width: 92px;
    height: 92px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.64), var(--course-soft));
    border: 1px solid var(--course-border);
    opacity: 0.42;
    transform: rotate(-8deg);
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--course-strong);
    font-family: "Phosphor";
    font-size: 2.4rem;
}

.course-panel-6::after {
    content: '\e76f';
}

.course-panel-5::after {
    content: '\e2c3';
}

.course-panel-4::after {
    content: '\e8f7';
}

.course-panel-4 {
    --course-accent: #41c1a3;
    --course-strong: #257f71;
    --course-soft: rgba(65, 193, 163, 0.14);
    --course-border: rgba(65, 193, 163, 0.22);
    background:
        radial-gradient(circle at 86% 10%, rgba(65, 193, 163, 0.26), transparent 28%),
        radial-gradient(circle at 10% 92%, rgba(65, 193, 163, 0.12), transparent 30%),
        linear-gradient(145deg, #ffffff 0%, #effcf8 100%);
}

.course-panel-5 {
    --course-accent: #5d95ff;
    --course-strong: #315fba;
    --course-soft: rgba(93, 149, 255, 0.14);
    --course-border: rgba(93, 149, 255, 0.22);
    background:
        radial-gradient(circle at 86% 10%, rgba(93, 149, 255, 0.27), transparent 28%),
        radial-gradient(circle at 10% 92%, rgba(93, 149, 255, 0.12), transparent 30%),
        linear-gradient(145deg, #ffffff 0%, #edf4ff 100%);
}

.course-panel-6 {
    --course-accent: #d9aa3f;
    --course-strong: #9a6b12;
    --course-soft: rgba(217, 170, 63, 0.17);
    --course-border: rgba(217, 170, 63, 0.28);
    background:
        radial-gradient(circle at 86% 10%, rgba(255, 223, 128, 0.36), transparent 28%),
        radial-gradient(circle at 10% 92%, rgba(217, 170, 63, 0.14), transparent 30%),
        linear-gradient(145deg, #ffffff 0%, #fff6dc 62%, rgba(244, 220, 162, 0.68) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 20px 36px rgba(154, 107, 18, 0.12);
}

.course-panel-6::before {
    content: 'Formato destacado';
    position: absolute;
    top: 18px;
    right: 18px;
    min-height: 30px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(198, 156, 58, 0.12);
    color: var(--gold-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.course-panel-main {
    position: relative;
    z-index: 1;
}

.course-panel[hidden] {
    display: none;
}

.course-panel-main h4 {
    position: relative;
    z-index: 1;
    margin: 12px 0 12px;
    color: var(--ink);
    font-size: clamp(2.2rem, 3vw, 3.3rem);
    line-height: 0.92;
}

.course-panel-main p {
    max-width: 48ch;
}

.course-panel-facts {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0;
    min-width: 0;
    padding-top: 8px;
}

.course-fact {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 12px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--course-accent) 18%, white);
}

.course-fact:last-child {
    border-bottom: 0;
}

.course-fact i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--course-strong);
    background: var(--course-soft);
    font-size: 1rem;
}

.course-fact strong {
    color: var(--ink-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pack-sequence {
    position: relative;
    display: grid;
    gap: 10px;
    min-width: 0;
    padding-left: 0;
}

.pack-sequence::before {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 0;
    width: 2px;
    background:
        linear-gradient(180deg,
            rgba(65, 193, 163, 0.66) 0%,
            rgba(93, 149, 255, 0.6) 25%,
            rgba(126, 91, 239, 0.56) 48%,
            rgba(217, 170, 63, 0.66) 70%,
            rgba(37, 72, 145, 0.4) 100%);
}

.pack-step {
    --pack-accent: #5d95ff;
    --pack-accent-strong: #315fba;
    --pack-accent-soft: rgba(93, 149, 255, 0.1);
    --pack-border: rgba(93, 149, 255, 0.16);
    --pack-surface: rgba(241, 246, 255, 0.92);
    position: relative;
    display: grid;
    grid-template-columns: 156px 1fr;
    gap: 18px;
    align-items: stretch;
    min-width: 0;
}

.pack-step:nth-child(1) {
    --pack-accent: #41c1a3;
    --pack-accent-strong: #257f71;
    --pack-accent-soft: rgba(65, 193, 163, 0.12);
    --pack-border: rgba(65, 193, 163, 0.22);
    --pack-surface: rgba(239, 252, 248, 0.96);
}

.pack-step:nth-child(2) {
    --pack-accent: #5d95ff;
    --pack-accent-strong: #315fba;
    --pack-accent-soft: rgba(93, 149, 255, 0.12);
    --pack-border: rgba(93, 149, 255, 0.2);
    --pack-surface: rgba(240, 246, 255, 0.96);
    margin-left: 5%;
}

.pack-step:nth-child(3) {
    --pack-accent: #7e5bef;
    --pack-accent-strong: #5533b8;
    --pack-accent-soft: rgba(126, 91, 239, 0.12);
    --pack-border: rgba(126, 91, 239, 0.2);
    --pack-surface: rgba(246, 243, 255, 0.96);
    margin-left: 10%;
}

.pack-step:nth-child(4) {
    --pack-accent: #d9aa3f;
    --pack-accent-strong: #9a6b12;
    --pack-accent-soft: rgba(217, 170, 63, 0.16);
    --pack-border: rgba(217, 170, 63, 0.3);
    --pack-surface: rgba(255, 247, 226, 0.96);
    margin-left: 14%;
}

.pack-step:nth-child(4) .pack-index,
.pack-step:nth-child(4) .pack-copy strong {
    background: linear-gradient(135deg, #8b5d09 0%, #d9aa3f 34%, #ffe6a3 58%, #b87912 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pack-step:nth-child(4) .pack-icon {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 240, 194, 0.96) 100%);
    border-color: rgba(217, 170, 63, 0.34);
    box-shadow:
        0 12px 24px rgba(154, 107, 18, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.pack-step:nth-child(4) .pack-copy {
    background:
        radial-gradient(circle at 82% 8%, rgba(255, 223, 128, 0.52), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 241, 199, 0.98) 55%, rgba(236, 194, 91, 0.34) 100%);
    box-shadow:
        0 22px 40px rgba(154, 107, 18, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.pack-step:nth-child(1) .pack-copy {
    background:
        radial-gradient(circle at 86% 10%, rgba(65, 193, 163, 0.34), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(226, 250, 244, 0.98) 58%, rgba(199, 242, 232, 0.9) 100%);
}

.pack-step:nth-child(2) .pack-copy {
    background:
        radial-gradient(circle at 86% 10%, rgba(93, 149, 255, 0.34), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(229, 239, 255, 0.98) 58%, rgba(205, 222, 255, 0.9) 100%);
}

.pack-step:nth-child(3) .pack-copy {
    background:
        radial-gradient(circle at 86% 10%, rgba(126, 91, 239, 0.34), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 234, 255, 0.98) 58%, rgba(221, 211, 255, 0.9) 100%);
}

.pack-step:nth-child(5) .pack-copy {
    background:
        radial-gradient(circle at 86% 10%, rgba(40, 71, 102, 0.3), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(228, 237, 247, 0.98) 58%, rgba(207, 222, 238, 0.9) 100%);
}

.pack-step:nth-child(5) {
    --pack-accent: #284766;
    --pack-accent-strong: #1f3550;
    --pack-accent-soft: rgba(40, 71, 102, 0.12);
    --pack-border: rgba(40, 71, 102, 0.2);
    --pack-surface: rgba(239, 244, 249, 0.96);
    margin-left: 7%;
}

.pack-index {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: var(--pack-accent-strong);
    font-family: var(--font-stage);
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 0.86;
    letter-spacing: -0.08em;
}

.pack-marker {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    align-self: stretch;
    justify-items: start;
    width: 156px;
    overflow: hidden;
}

.pack-icon {
    position: absolute;
    top: calc(50% + 14px);
    left: 42px;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    transform: translateY(-50%);
    border-radius: 18px;
    background: var(--pack-accent-soft);
    border: 1px solid var(--pack-border);
    color: var(--pack-accent-strong);
    font-size: 1.55rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.pack-copy {
    min-width: 0;
    padding: 20px 24px;
    border-radius: 22px 30px 22px 22px;
    border: 1px solid var(--pack-border);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, var(--pack-surface) 100%);
    box-shadow:
        0 16px 32px color-mix(in srgb, var(--pack-accent-strong) 16%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pack-copy strong {
    display: block;
    color: var(--ink);
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    line-height: 0.94;
    margin-bottom: 8px;
}

.pack-bullets {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pack-bullets li {
    position: relative;
    min-height: 28px;
    padding-left: 24px;
    color: var(--ink-soft);
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.pack-bullets li::before {
    content: '\203A';
    position: absolute;
    left: 0;
    top: 50%;
    width: auto;
    height: auto;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pack-accent-strong);
    font-family: var(--font-stage);
    font-size: 1.16rem;
    font-weight: 900;
    line-height: 1;
}

@media (min-width: 1025px) {
    .pack-marker {
        position: static;
        overflow: visible;
    }

    .pack-icon {
        top: 50%;
        right: 52px;
        left: auto;
        width: 100px;
        height: 100px;
        font-size: 2.55rem;
        border-radius: 30px;
        transform: translateY(-50%);
        z-index: 2;
    }

    .pack-copy {
        padding-right: 144px;
    }
}

.flex-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    min-width: 0;
}

.flex-config {
    position: relative;
    min-width: 0;
    padding: 24px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(65, 193, 163, 0.14), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(238, 250, 247, 0.9) 100%);
    border: 1px solid rgba(65, 193, 163, 0.18);
    box-shadow:
        0 16px 34px rgba(37, 127, 113, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.flex-config::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(65, 193, 163, 0.035) 0, rgba(65, 193, 163, 0.035) 1px, transparent 1px, transparent 38px);
    opacity: 0.38;
    pointer-events: none;
}

.flex-config-head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.flex-config-head h4 {
    max-width: 13ch;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 0.94;
}

.flex-family {
    position: relative;
    z-index: 1;
    min-height: 100%;
    padding: 0;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.flex-family::before,
.flex-family::after {
    display: none;
}

.flex-family-highlight {
    background: none;
    border-color: transparent;
}

.flex-family-head {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.flex-family h4 {
    width: 100%;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 0.94;
    margin-top: 6px;
}

.flex-option-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.flex-option {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid color-mix(in srgb, var(--accent) 16%, white);
}

.flex-option i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 1.18rem;
}

.flex-option > div {
    min-width: 0;
}

.flex-option strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ink);
    font-size: 1.04rem;
}

.product-footnote {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(65, 193, 163, 0.14);
    color: var(--ink-soft);
}

.product-panel-actions {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    margin-top: 22px;
    padding-inline: 0;
    overflow: visible;
}

.product-panel-cta,
.closing-cta {
    position: relative;
    width: auto;
    min-width: 248px;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid rgba(174, 129, 28, 0.22);
    border-radius: 999px;
    background: linear-gradient(135deg, #fff2a8 0%, #f4d86e 48%, #c69c3a 100%);
    color: #2b220c;
    box-shadow:
        0 16px 30px rgba(198, 156, 58, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-panel-cta i,
.closing-cta i {
    font-size: 1.12rem;
    transition: transform 0.24s ease;
}

.product-panel-cta:hover,
.closing-cta:hover {
    background: linear-gradient(135deg, #fff6bd 0%, #f5dc7c 48%, #cfa845 100%);
    color: #2b220c;
    border-color: rgba(174, 129, 28, 0.32);
    box-shadow:
        0 20px 36px rgba(198, 156, 58, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.product-panel-cta:hover i,
.closing-cta:hover i {
    transform: translate(2px, -2px);
}

.closing-section {
    position: relative;
    margin-top: -18px;
    padding: 48px 0 116px;
    background: linear-gradient(180deg, #f8efde 0%, #fbf7ef 38%, #fbf7ef 100%);
}


.closing-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: start;
    padding: clamp(28px, 4vw, 42px);
    border-radius: 34px;
    border: 1px solid rgba(198, 156, 58, 0.16);
    background:
        radial-gradient(circle at top right, rgba(198, 156, 58, 0.12), transparent 28%),
        linear-gradient(140deg, #fffdf8 0%, #f7efdd 100%);
    box-shadow: var(--shadow-soft);
}

.closing-copy .section-kicker {
    color: var(--gold-deep);
    background: rgba(198, 156, 58, 0.12);
}

.closing-copy .section-title {
    color: var(--ink);
    margin-top: 14px;
    max-width: 13ch;
}

.closing-copy .section-copy {
    color: var(--ink-soft);
    max-width: 50ch;
    margin-top: 14px;
}

.closing-pills {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.closing-pills span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--gold-deep);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.closing-cta {
    color: #2f2108;
}

.closing-form-card {
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(198, 156, 58, 0.18);
    background:
        radial-gradient(circle at top left, rgba(255, 226, 128, 0.22), transparent 32%),
        rgba(255, 253, 247, 0.9);
    box-shadow:
        0 28px 64px rgba(92, 75, 37, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.closing-form-card .form-actions {
    align-items: flex-end;
}

.closing-form-card .form-status {
    max-width: 30ch;
    color: rgba(30, 36, 48, 0.68);
    font-size: 0.84rem;
    line-height: 1.5;
}

.schools-section {
    position: relative;
    padding: 78px 0 88px;
    background:
        radial-gradient(circle at 18% 18%, rgba(198, 156, 58, 0.16), transparent 24%),
        radial-gradient(circle at 82% 28%, rgba(65, 193, 163, 0.09), transparent 24%),
        linear-gradient(180deg, #1e2430 0%, #161b24 100%);
    color: #fffaf1;
    overflow: hidden;
}

.schools-section::before,
.schools-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(198, 156, 58, 0.34), transparent);
}

.schools-section::before {
    top: 0;
}

.schools-section::after {
    bottom: 0;
}

.schools-heading {
    display: grid;
    justify-items: center;
    gap: 16px;
    text-align: center;
}

.schools-heading .section-kicker {
    color: #f4d47c;
    background: rgba(198, 156, 58, 0.14);
    border: 1px solid rgba(198, 156, 58, 0.24);
}

.schools-heading .section-title {
    max-width: 17ch;
    color: #fffaf1;
    font-size: clamp(2.2rem, 4vw, 3.9rem);
}

.schools-marquee {
    position: relative;
    margin-top: 44px;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.schools-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: schoolsMarquee 34s linear infinite;
    will-change: transform;
}

.schools-marquee:hover .schools-track {
    animation-play-state: paused;
}

.school-logo-slot {
    position: relative;
    flex: 0 0 clamp(240px, 21vw, 330px);
    min-height: 108px;
    margin-right: clamp(34px, 5vw, 72px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    color: rgba(255, 250, 241, 0.68);
    text-decoration: none;
    filter: grayscale(1);
    opacity: 0.72;
    transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.school-logo-slot:hover,
.school-logo-slot:focus-visible {
    opacity: 1;
    transform: translateY(-2px);
}

.school-logo-slot span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 12px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(247, 250, 252, 0.94);
    color: #173f36;
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 0.82vw, 0.88rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 10px 24px rgba(27, 50, 70, 0.1);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}

.school-logo-slot:hover span,
.school-logo-slot:focus-visible span {
    opacity: 1;
    transform: translateY(0);
}

.school-logo-slot img {
    max-width: 100%;
    max-height: 82px;
    object-fit: contain;
}

.school-logo-slot.has-landing-image {
    min-height: 118px;
    padding: 16px 28px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 250, 241, 0.16);
    background: rgba(255, 253, 247, 0.94);
    filter: none;
    opacity: 0.92;
}

.school-logo-slot.has-landing-image img {
    width: 100%;
    max-width: 270px;
    max-height: 78px;
    display: block;
    transition: transform 0.22s ease;
}

.school-logo-slot.has-landing-image:hover img,
.school-logo-slot.has-landing-image:focus-visible img {
    transform: translateY(-8px) scale(0.94);
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 12, 5, 0.42);
    backdrop-filter: blur(8px);
    z-index: 1200;
}

.modal-backdrop[hidden] {
    display: none !important;
}

.modal-shell {
    position: relative;
    width: min(100%, 760px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 38px;
    border-radius: 30px;
    background: #fffdf7;
    border: 1px solid rgba(198, 156, 58, 0.16);
    box-shadow: 0 30px 80px rgba(15, 12, 5, 0.18);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(198, 156, 58, 0.12);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
}

.modal-kicker {
    margin: 0 0 10px;
    color: var(--gold-deep);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.modal-title {
    margin: 0 0 12px;
    font-size: clamp(2.3rem, 4.6vw, 3.6rem);
    line-height: 0.94;
}

.modal-copy {
    margin-bottom: 26px;
}

.modal-interest {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: -6px 0 22px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(40, 71, 102, 0.1);
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 700;
}

.info-form {
    display: grid;
    gap: 18px;
}

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

.form-field {
    display: grid;
    gap: 8px;
}

.form-field span {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(198, 156, 58, 0.18);
    border-radius: 16px;
    padding: 14px 16px;
    background: #fff;
    color: var(--ink);
    font-size: 0.98rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(139, 107, 32, 0.45);
    box-shadow: 0 0 0 4px rgba(198, 156, 58, 0.12);
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.closing-form-card .form-field textarea {
    min-height: 112px;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 8px;
}

.form-status {
    min-height: 24px;
}

.form-status.is-success { color: #2e7d32; }
.form-status.is-error { color: #b3261e; }

[data-form-submit]:disabled {
    cursor: wait;
    opacity: 0.68;
    transform: none !important;
}

footer {
    padding: 40px 0;
    border-top: 1px solid rgba(30, 36, 48, 0.08);
    text-align: center;
}

@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes topbarAccessShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.fade-in {
    animation: fadeIn 1.2s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-100 {
    transition-delay: 0.12s;
}

.delay-200 {
    transition-delay: 0.24s;
}

.transition-curtain {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    z-index: 99999;
    background: linear-gradient(135deg, #f9f1d0 0%, #e6c874 50%, #f9f1d0 100%);
    animation: eatTheWorld 0.8s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}

@keyframes eatTheWorld {
    0% { width: 0; }
    100% { width: 100vw; }
}

@keyframes schoolsMarquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.hero-shell.fade-out-content,
.split-hero.fade-out-content {
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .product-trigger,
    .product-trigger::before,
    .product-trigger-no,
    .product-trigger-title,
    .product-trigger-note,
    .pilot-photo-surface,
    .schools-track,
    .topbar-access,
    .product-dock,
    .course-tab,
    .tutorial-play-button {
        transition: none !important;
        animation: none !important;
    }
}

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

    .topbar-inner {
        grid-template-columns: auto auto;
        gap: 10px 18px;
    }

    .topbar-links {
        grid-column: 1 / -1;
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
        padding: 2px 2px 4px;
        scrollbar-width: none;
    }

    .topbar-links::-webkit-scrollbar {
        display: none;
    }

    .topbar-actions {
        justify-self: end;
    }

    .hero-center {
        padding-top: 156px;
    }
}

@media (max-width: 1024px) {
    .impact-editorial,
    .pilot-row,
    .learning-editorial,
    .product-dock-hero,
    .program-layout,
    .flex-layout,
    .closing-shell,
    .section-intro {
        grid-template-columns: 1fr;
    }

    .pilot-row-reverse .pilot-media {
        order: 0;
    }

    .learning-anchor {
        position: static;
    }

    .course-panel-facts {
        grid-template-columns: 1fr;
    }

    .course-fact {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 10px;
    }

    .course-fact strong {
        margin-bottom: 0;
    }

    .product-stage {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        min-height: 520px;
        padding-bottom: 62px;
    }

    .product-experience[data-active-product="program"] .product-trigger-program {
        grid-column: 1 / 6;
        grid-row: 1 / 3;
    }

    .product-experience[data-active-product="program"] .product-trigger-packs {
        grid-column: 6 / 9;
        grid-row: 1 / 2;
    }

    .product-experience[data-active-product="program"] .product-trigger-flex {
        grid-column: 6 / 9;
        grid-row: 2 / 3;
    }

    .product-experience[data-active-product="packs"] .product-trigger-packs,
    .product-experience[data-active-product="flex"] .product-trigger-flex {
        grid-column: 4 / 9;
        grid-row: 1 / 3;
    }

    .product-experience[data-active-product="packs"] .product-trigger-program,
    .product-experience[data-active-product="flex"] .product-trigger-program {
        grid-column: 1 / 4;
        grid-row: 1 / 2;
    }

    .product-experience[data-active-product="packs"] .product-trigger-flex,
    .product-experience[data-active-product="flex"] .product-trigger-packs {
        grid-column: 1 / 4;
        grid-row: 2 / 3;
    }

    .product-trigger.is-active .product-trigger-copy {
        width: min(84%, 34rem);
        margin-bottom: 14px;
    }

    .pack-step:nth-child(2),
    .pack-step:nth-child(3),
    .pack-step:nth-child(4),
    .pack-step:nth-child(5) {
        margin-left: 0;
    }
}

@media (max-width: 900px) {
    .topbar {
        padding: 10px 0;
    }

    .topbar-inner {
        padding: 0 18px;
    }

    .topbar-brand {
        font-size: 0.84rem;
        letter-spacing: 0.1em;
    }

    .topbar-logo {
        width: 30px;
        height: 30px;
    }

    .topbar-links a {
        min-height: 32px;
        font-size: 0.82rem;
    }

    .topbar-access {
        min-height: 38px;
        padding: 9px 13px;
        font-size: 0.7rem;
    }

    .hero-center {
        min-height: 100vh;
        padding: 150px 24px 58px;
    }

    .brand-wrapper,
    .brand-wrapper-centered {
        align-items: center;
    }

    .brand-hero {
        justify-content: center;
        gap: 10px;
        min-height: auto;
    }

    .brand-wordmark {
        display: flex;
        align-items: center;
    }

    .hero-logo-img {
        height: clamp(148px, 33vw, 186px);
    }

    .impact-section,
    .pilot-section,
    .learning-section,
    .tutorial-section,
    .products-section {
        padding: 88px 0;
    }

    .closing-section {
        padding: 44px 0 88px;
    }

    .schools-section {
        padding: 66px 0 76px;
    }

    .hero-actions,
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .impact-card,
    .learning-anchor,
    .learning-step,
    .program-summary,
    .flex-family,
    .closing-shell,
    .modal-shell {
        padding: 24px;
    }

    .product-experience {
        padding: 28px 22px 26px;
    }

    .product-stage {
        min-height: 480px;
        padding-bottom: 48px;
    }

    .product-trigger {
        padding: 24px;
    }

    .product-dock {
        margin-top: -6px;
        padding: 38px 24px 32px;
    }

    .tutorial-video-shell {
        padding: 14px;
        border-radius: 28px;
    }

    .tutorial-video-frame {
        border-radius: 22px;
    }

    .tutorial-play-button {
        width: 88px;
        height: 88px;
        box-shadow:
            0 18px 36px rgba(10, 14, 22, 0.24),
            0 0 0 10px rgba(255, 210, 79, 0.16),
            0 0 0 20px rgba(255, 210, 79, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.54);
    }

    .tutorial-play-button i {
        margin-left: 6px;
        font-size: 2.4rem;
    }

    .impact-card-lead {
        min-height: auto;
    }

    .pilot-row {
        gap: 28px;
    }

    .pilot-copy {
        max-width: none;
    }

    .pilot-photo-portrait {
        width: 100%;
    }

    .schools-marquee {
        margin-top: 34px;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
    }

    .school-logo-slot {
        flex-basis: 220px;
        min-height: 96px;
    }

    .school-logo-slot.has-landing-image img {
        max-width: 230px;
        max-height: 74px;
    }

    .learning-step {
        width: 100%;
        margin-left: 0;
        padding-left: 84px;
    }

    .course-panel {
        grid-template-columns: 1fr;
    }

    .course-panel-6::before {
        display: none;
    }

    .product-dock-title {
        max-width: none;
        font-size: clamp(2.7rem, 6vw, 4.4rem);
    }

    .product-dock-copy {
        max-width: 56ch;
        margin-top: 0;
        font-size: 1rem;
    }

    .product-panel-actions {
        justify-content: center;
    }

    .product-panel-cta {
        width: min(100%, 360px);
        min-width: 0;
        margin-inline: auto;
        justify-content: center;
    }

    .closing-actions {
        justify-items: stretch;
    }

    .closing-cta,
    .products-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .container {
        padding: 0 18px;
    }

    .topbar-inner {
        display: flex;
        justify-content: space-between;
        position: relative;
        min-height: 42px;
    }

    .topbar-links {
        display: none;
    }

    .topbar-actions {
        position: static;
        transform: none;
        min-width: 0;
        margin-left: auto;
        gap: 8px;
    }

    .topbar-access {
        display: inline-flex;
        width: auto;
        min-height: 42px;
        padding: 0 14px 0 16px;
        gap: 8px;
        font-size: 0.62rem;
        letter-spacing: 0.055em;
        max-width: calc(100vw - 104px);
        box-shadow: 0 14px 30px rgba(30, 36, 48, 0.18), 0 6px 16px rgba(198, 156, 58, 0.12);
    }

    .topbar-access span {
        display: inline;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .topbar-access i {
        font-size: 0.98rem;
    }

    .schools-track {
        animation-duration: 28s;
    }

    .school-logo-slot {
        flex-basis: 190px;
        min-height: 92px;
        margin-right: 28px;
    }

    .school-logo-slot span {
        left: 12px;
        right: 12px;
        bottom: 10px;
        min-height: 28px;
        padding: 5px 8px;
        font-size: 0.62rem;
        letter-spacing: 0.055em;
    }

    .school-logo-slot.has-landing-image {
        min-height: 98px;
        padding: 12px 20px 28px;
    }

    .school-logo-slot.has-landing-image img {
        max-width: 190px;
        max-height: 68px;
    }

    .hero-center {
        padding-top: 118px;
    }

    .brand-hero {
        width: auto;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: clamp(2px, 1.5vw, 8px);
    }

    .hero-logo-img {
        height: clamp(56px, 17vw, 80px);
        flex: 0 0 auto;
    }

    .metallic-title {
        font-size: clamp(2.7rem, 12vw, 4.3rem);
        letter-spacing: 0.065em;
    }

    .hero-note {
        max-width: 32ch;
    }

    .product-experience {
        padding: 10px 8px 18px;
        border-radius: 26px;
        overflow: visible;
    }

    .product-stage {
        position: sticky;
        top: 118px;
        z-index: 10;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: none;
        align-items: stretch;
        min-height: 0;
        gap: 6px;
        padding: 6px;
        margin-bottom: 12px;
        border-radius: 22px;
        background: rgba(255, 253, 248, 0.9);
        border: 1px solid rgba(198, 156, 58, 0.16);
        box-shadow:
            0 12px 28px rgba(92, 75, 37, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(16px);
    }

    .product-stage::before,
    .product-stage::after {
        display: none;
    }

    .product-trigger {
        grid-column: auto;
        grid-row: auto;
        min-height: 86px;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 8px;
        border-radius: 16px;
        box-shadow: none;
    }

    .product-experience .product-stage .product-trigger {
        grid-column: auto;
        grid-row: auto;
    }

    .product-trigger.is-active {
        --trigger-title-size: clamp(0.82rem, 2.8vw, 1rem);
        min-height: 86px;
        box-shadow: 0 10px 20px rgba(92, 75, 37, 0.12);
    }

    .product-trigger-copy,
    .product-trigger.is-active .product-trigger-copy {
        display: none;
        width: 100%;
        height: 100%;
        align-content: center;
        gap: 5px;
        margin-bottom: 0;
        padding: 8px;
        border-radius: 12px;
        background: transparent;
        border: none;
        box-shadow: none;
        transform: none;
    }

    .product-trigger::after {
        content: attr(data-mobile-label);
        position: relative;
        inset: auto;
        height: auto;
        background: none;
        opacity: 1;
        color: var(--ink);
        font-family: var(--font-stage);
        font-size: 0.74rem;
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: 0;
    }

    .product-trigger-copy::before,
    .product-trigger-copy::after,
    .product-trigger-subtitle,
    .product-trigger-note {
        display: none;
    }

    .product-trigger-meta {
        min-height: 0;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--accent-strong);
        font-size: 0.58rem;
        line-height: 1.2;
        letter-spacing: 0.07em;
    }

    .product-stage .product-trigger-title {
        max-width: none;
        color: var(--ink);
        font-family: var(--font-stage);
        font-size: clamp(0.82rem, 2.8vw, 1rem);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: 0;
        text-shadow: none;
        text-wrap: pretty;
    }

    .product-trigger-program .product-trigger-no,
    .product-trigger-packs .product-trigger-no,
    .product-trigger-flex .product-trigger-no,
    .product-trigger-packs.is-active .product-trigger-no {
        position: static;
        display: inline-flex;
        width: fit-content;
        min-width: 28px;
        min-height: 20px;
        align-items: center;
        justify-content: center;
        margin-bottom: 7px;
        border-radius: 999px;
        background: var(--accent-soft);
        color: var(--accent-strong);
        font-family: var(--font-stage);
        font-size: 0.68rem;
        line-height: 1;
        letter-spacing: 0;
        writing-mode: initial;
        text-orientation: initial;
        transform: none;
    }

    .product-experience[data-active-product="program"] .product-trigger-program,
    .product-experience[data-active-product="packs"] .product-trigger-packs,
    .product-experience[data-active-product="flex"] .product-trigger-flex {
        order: initial;
    }

    .product-experience[data-active-product="program"] .product-trigger-packs,
    .product-experience[data-active-product="packs"] .product-trigger-program,
    .product-experience[data-active-product="flex"] .product-trigger-program {
        order: initial;
    }

    .product-experience[data-active-product="program"] .product-trigger-flex,
    .product-experience[data-active-product="packs"] .product-trigger-flex,
    .product-experience[data-active-product="flex"] .product-trigger-packs {
        order: initial;
    }

    .product-dock {
        scroll-margin-top: 126px;
        margin-top: 0;
        padding: 24px 16px 24px;
        border-radius: 22px;
    }

    .product-dock::before {
        left: 50%;
        width: min(176px, 72%);
        transform: translateX(-50%);
    }

    .product-dock-copy {
        max-width: none;
    }

    .pilot-collage {
        grid-template-columns: minmax(0, 1.4fr) minmax(82px, 0.58fr);
        grid-template-rows: repeat(3, minmax(58px, 1fr));
        gap: 6px;
        border-radius: 22px;
    }

    .product-dock-hero {
        gap: 16px;
        margin-bottom: 20px;
    }

    .impact-card-lead {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "context"
            "stat"
            "statement"
            "detail"
            "source";
        row-gap: 10px;
        min-height: auto;
    }

    .impact-card-lead .impact-statement {
        max-width: none;
        width: 100%;
        margin-top: 0;
    }

    .impact-card-lead .impact-detail {
        max-width: none;
        width: 100%;
    }

    .impact-title,
    .section-title {
        max-width: none;
        font-size: clamp(2.3rem, 10vw, 3.4rem);
    }

    .metallic-title {
        font-size: clamp(3.2rem, 14vw, 4.8rem);
        letter-spacing: 0.1em;
    }

    .hero-slogan {
        font-size: 1.02rem;
    }

    .stat-number-lead {
        font-size: 5.3rem;
    }

    .stat-number-side {
        font-size: 3.5rem;
    }

    .impact-statement,
    .learning-step h3,
    .product-trigger-title,
    .product-dock-title,
    .program-summary h4,
    .course-panel-main h4,
    .flex-family h4,
    .pack-copy strong,
    .character-title {
        font-size: clamp(1.7rem, 8vw, 2.5rem);
    }

    .course-tabs,
    .flex-layout {
        grid-template-columns: 1fr;
    }

    .course-fact {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 10px;
    }

    .pack-sequence {
        padding-left: 0;
    }

    .pack-sequence::before {
        left: 0;
    }

    .pack-step {
        grid-template-columns: 70px 1fr;
        gap: 18px;
        padding: 18px 0;
    }

    .pack-icon {
        left: 17px;
        margin-left: 0;
    }

    .pack-index {
        font-size: 2.5rem;
    }

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

    .closing-form-card .form-actions {
        align-items: stretch;
    }
}

@media (max-width: 420px) {
    .topbar-inner {
        gap: 8px 12px;
        padding: 0 14px;
    }

    .topbar-links {
        gap: 14px;
    }

    .brand-hero {
        width: 100%;
        gap: 8px;
    }

    .metallic-title {
        font-size: clamp(2.35rem, 10.6vw, 2.78rem);
        letter-spacing: 0.055em;
    }

    .hero-actions {
        width: 100%;
        max-width: 310px;
    }

    .hero-actions .btn-explore,
    .hero-actions .btn-contact {
        justify-content: center;
        gap: 8px;
        padding: 13px 20px;
        font-size: 0.8rem;
        letter-spacing: 0.06em;
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }

    .topbar-inner {
        padding: 0 12px;
    }

    .topbar-logo {
        width: 28px;
        height: 28px;
    }

    .topbar-access {
        min-height: 40px;
        padding: 0 12px 0 14px;
        font-size: 0.56rem;
        letter-spacing: 0.035em;
        max-width: calc(100vw - 88px);
    }

    .topbar-access i {
        font-size: 0.9rem;
    }

    .brand-hero {
        width: 100%;
        gap: 6px;
    }

    .hero-logo-img {
        height: clamp(48px, 16vw, 60px);
        flex: 0 1 auto;
    }

    .metallic-title {
        font-size: clamp(2.15rem, 10.5vw, 2.55rem);
        letter-spacing: 0.045em;
    }

    .hero-actions {
        width: 100%;
        max-width: 300px;
    }

    .hero-actions .btn-explore,
    .hero-actions .btn-contact {
        justify-content: center;
        gap: 8px;
        padding: 13px 20px;
        font-size: 0.8rem;
        letter-spacing: 0.06em;
        white-space: nowrap;
    }

    .product-experience {
        padding: 16px 14px 18px;
        border-radius: 26px;
    }

    .product-stage {
        gap: 6px;
        padding: 7px;
    }

    .product-trigger,
    .product-trigger.is-active {
        min-height: 70px;
        padding: 8px;
    }

    .product-trigger-copy,
    .product-trigger.is-active .product-trigger-copy {
        padding: 6px;
        border-radius: 12px;
    }

    .product-trigger.is-active {
        --trigger-title-size: 0.78rem;
    }

    .product-stage .product-trigger-title {
        font-size: 0.78rem;
        line-height: 1.06;
    }

    .product-trigger-meta {
        font-size: 0.52rem;
    }

    .product-trigger::after {
        font-size: 0.68rem;
        line-height: 1.08;
    }

    .product-trigger-program .product-trigger-no,
    .product-trigger-packs .product-trigger-no,
    .product-trigger-flex .product-trigger-no,
    .product-trigger-packs.is-active .product-trigger-no {
        min-width: 24px;
        min-height: 20px;
        margin-bottom: 5px;
        font-size: 0.62rem;
    }

    .product-dock {
        padding: 24px 14px 22px;
        border-radius: 20px 20px 28px 28px;
    }

    .product-dock-title {
        font-size: clamp(1.65rem, 8vw, 2.1rem);
        line-height: 1;
    }

    .product-dock-copy {
        font-size: 0.94rem;
        line-height: 1.58;
    }

    .course-tab {
        clip-path: none;
    }

    .course-panel {
        padding: 20px 16px;
        border-radius: 22px;
    }

    .flex-config {
        padding: 18px;
        border-radius: 24px;
    }

    .flex-config-head {
        margin-bottom: 16px;
    }

    .flex-config-head h4 {
        max-width: 100%;
        font-size: clamp(1.7rem, 7vw, 2.2rem);
        line-height: 1;
    }

    .flex-layout {
        gap: 16px;
    }

    .flex-family-head {
        margin-bottom: 8px;
    }

    .flex-option-list {
        gap: 8px;
    }

    .pack-sequence {
        gap: 12px;
        padding-left: 0;
    }

    .pack-sequence::before {
        display: none;
    }

    .pack-step {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0;
    }

    .pack-index {
        font-size: 2rem;
        letter-spacing: -0.05em;
    }

    .pack-copy {
        padding: 16px;
        border-radius: 18px;
    }

    .pack-copy strong {
        font-size: 1.5rem;
        line-height: 1;
    }

    .flex-family {
        padding: 0;
        border-radius: 0;
    }

    .flex-option {
        grid-template-columns: 40px 1fr;
        gap: 10px;
        padding: 10px;
        border-radius: 15px;
    }

    .flex-option i {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .flex-option strong {
        margin-bottom: 1px;
        font-size: 0.98rem;
    }

    .flex-option p {
        font-size: 0.92rem;
        line-height: 1.42;
    }

    .product-footnote {
        font-size: 0.92rem;
    }
}
