﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&display=swap");

:root {
    --pink: #f00057;
    --pink-dark: #c90048;
    --pink-soft: #fff0f5;
    --black: #0a0a0d;
    --ink: #17171b;
    --gray: #686871;
    --line: #e8e8ec;
    --soft: #f6f6f8;
    --white: #fff;
    --shadow: 0 24px 70px rgba(19, 17, 25, .12);
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

.section {
    padding: 120px 0;
}

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

.section-black {
    color: var(--white);
    background: var(--black);
}

em {
    color: var(--pink);
    font-style: normal;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    height: 84px;
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(20px);
    transition: .25s ease;
}

.site-header.scrolled {
    height: 72px;
    border-color: var(--line);
    box-shadow: 0 5px 30px rgba(0, 0, 0, .04);
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    width: 188px;
    height: 62px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.brand img {
    width: 100%;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav > a {
    position: relative;
    color: #494951;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.main-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: var(--pink);
    transition: right .2s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
    right: 0;
}

.main-nav > a.active {
    color: var(--black);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    background: var(--black);
    transition: .25s ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 52px;
    padding: 0 24px;
    color: var(--white);
    background: var(--pink);
    border: 1px solid var(--pink);
    border-radius: 3px;
    box-shadow: 0 12px 30px rgba(240, 0, 87, .22);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .25s ease;
    cursor: pointer;
}

.button:hover {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(240, 0, 87, .3);
}

.button b {
    font-size: 17px;
}

.button-small {
    min-height: 42px;
    padding: 0 19px;
    color: var(--white) !important;
}

.button-light {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
    box-shadow: none;
}

.button-light:hover {
    color: var(--white);
    background: transparent;
    border-color: var(--white);
}

.text-link {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    color: var(--black);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.text-link span {
    color: var(--pink);
    font-size: 19px;
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.inline-link {
    color: var(--pink);
    font-weight: 800;
    border-bottom: 1px solid rgba(240, 0, 87, .28);
}

.inline-link:hover {
    border-color: var(--pink);
}

.eyebrow {
    margin: 0 0 22px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #55555d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 28px;
    height: 2px;
    background: var(--pink);
}

.eyebrow-light {
    color: rgba(255, 255, 255, .64);
}

.hero {
    position: relative;
    min-height: calc(100vh - 84px);
    padding: 70px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #fff 53%, #fff5f8 100%);
}

.hero-minimal {
    padding-bottom: 50px;
}

.hero::before {
    content: "x10";
    position: absolute;
    top: 12%;
    right: -5%;
    color: transparent;
    font-size: clamp(180px, 25vw, 430px);
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(240, 0, 87, .08);
    transform: rotate(-8deg);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    min-height: 570px;
}

.hero-copy h1, .page-hero h1, .contact-hero h1 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(53px, 6vw, 88px);
    line-height: .98;
    letter-spacing: -.066em;
}

.hero-copy h1 em {
    display: block;
}

.hero-lead {
    max-width: 550px;
    margin: 30px 0;
    color: var(--gray);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
}

.hero-proof {
    display: flex;
    gap: 38px;
    margin-top: 55px;
}

.hero-proof div {
    display: grid;
}

.hero-proof strong {
    font-size: 24px;
    line-height: 1;
}

.hero-proof span {
    margin-top: 8px;
    color: var(--gray);
    font-size: 11px;
    letter-spacing: .04em;
}

.hero-visual {
    position: relative;
    min-height: 570px;
}

.x-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 460px;
    height: 510px;
    transform: translate(-50%, -50%);
}

.x-dark, .x-arrow, .x-trail {
    position: absolute;
    border-radius: 2px;
    transform: rotate(-43deg);
}

.x-dark {
    width: 66px;
    height: 260px;
    background: linear-gradient(90deg, #070708, #35353a, #070708);
}

.x-dark-a {
    top: 40px;
    left: 165px;
    transform: rotate(-43deg);
}

.x-dark-b {
    right: 105px;
    bottom: 30px;
    transform: rotate(-43deg);
}

.x-arrow {
    z-index: 3;
    top: 56px;
    left: 210px;
    width: 79px;
    height: 400px;
    background: linear-gradient(90deg, var(--pink-dark), #ff0061 52%, #ff3b82);
    box-shadow: 8px 12px 30px rgba(240, 0, 87, .25);
}

.x-arrow-tip {
    position: absolute;
    z-index: 4;
    top: 3px;
    right: 49px;
    width: 0;
    height: 0;
    border-left: 72px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 110px solid var(--pink);
    transform: rotate(47deg);
}

.x-trail {
    z-index: 2;
    width: 9px;
    height: 330px;
    background: linear-gradient(to bottom, transparent, rgba(240, 0, 87, .22), var(--pink));
}

.x-trail-a {
    bottom: -25px;
    left: 160px;
}

.x-trail-b {
    bottom: -40px;
    left: 190px;
    opacity: .35;
}

.impact-badge {
    position: absolute;
    z-index: 6;
    top: 45px;
    right: 5px;
    width: 118px;
    height: 118px;
    display: grid;
    place-content: center;
    color: var(--white);
    background: var(--black);
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow);
}

.impact-badge span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.impact-badge strong {
    color: var(--pink);
    font-size: 33px;
    line-height: 1.1;
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 11px 15px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 3px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.floating-card span {
    color: var(--pink);
}

.floating-card-one {
    top: 28%;
    left: 0;
}

.floating-card-two {
    right: 0;
    bottom: 30%;
}

.floating-card-three {
    bottom: 9%;
    left: 12%;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.hero-orb-one {
    top: 15%;
    right: 15%;
    width: 260px;
    height: 260px;
    background: rgba(240, 0, 87, .06);
}

.hero-orb-two {
    right: 33%;
    bottom: 11%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(240, 0, 87, .18);
}

.promise-strip {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}

.promise-strip p {
    margin: 0;
    padding: 27px 22px;
    display: grid;
    color: var(--gray);
    border-right: 1px solid var(--line);
    font-size: 10px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.promise-strip p:first-child {
    border-left: 1px solid var(--line);
}

.promise-strip p > span {
    color: var(--pink);
    font-weight: 900;
}

.promise-strip strong {
    margin: 4px 0 2px;
    color: var(--black);
    font-size: 11px;
}

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

.section-heading h2, .method-copy h2, .split-content h2, .story-grid h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -.055em;
}

.section-heading > p:last-child {
    max-width: 640px;
    margin-top: 24px;
    color: var(--gray);
    font-size: 18px;
}

.heading-row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.path-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.path-card {
    position: relative;
    min-height: 510px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: var(--white);
    border-radius: 4px;
    transition: .35s ease;
}

.path-card-short {
    min-height: 400px;
}

.path-card::after {
    content: "x10";
    position: absolute;
    right: -25px;
    bottom: -40px;
    color: rgba(255, 255, 255, .07);
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.09em;
}

.path-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.path-dark {
    background: var(--black);
}

.path-pink {
    background: var(--pink);
}

.card-index {
    margin: 0;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.path-card h3 {
    max-width: 520px;
    margin: 13px 0 18px;
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.path-card p {
    max-width: 500px;
    color: rgba(255, 255, 255, .7);
}

.path-tag {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.card-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    font-size: 22px;
    transition: .25s ease;
}

.path-card:hover .card-arrow {
    color: var(--pink);
    background: var(--white);
    transform: rotate(45deg);
}

.method-intro {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.method-copy > p:not(.eyebrow) {
    margin: 28px 0 36px;
    color: rgba(255, 255, 255, .62);
    font-size: 17px;
}

.pillars {
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.pillars article {
    position: relative;
    padding: 26px 20px 26px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    transition: .2s ease;
}

.pillars article:hover {
    background: rgba(255, 255, 255, .04);
    padding-left: 70px;
}

.pillars span {
    position: absolute;
    top: 32px;
    left: 10px;
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
}

.pillars h3 {
    margin: 0;
    font-size: 25px;
    letter-spacing: -.03em;
}

.pillars p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .52);
    font-size: 13px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.topic {
    min-height: 235px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: .25s ease;
}

.topic:hover {
    background: var(--pink-soft);
}

.topic span {
    color: var(--pink);
    font-size: 10px;
    font-weight: 900;
}

.topic h3 {
    margin: 62px 0 10px;
    font-size: 22px;
    letter-spacing: -.04em;
}

.topic p {
    margin: 0;
    color: var(--gray);
    font-size: 13px;
}

.testimonial-section {
    padding-top: 20px;
}

.testimonial {
    position: relative;
    padding: 75px 11%;
    background: var(--soft);
    text-align: center;
}

.quote-mark {
    color: var(--pink);
    font-family: Georgia, serif;
    font-size: 100px;
    line-height: .4;
}

.testimonial blockquote {
    max-width: 850px;
    margin: 32px auto;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -.045em;
}

.testimonial p {
    color: var(--gray);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cta-section {
    padding-top: 0;
}

.cta-last {
    padding-top: 80px;
}

.cta-box {
    min-height: 320px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: var(--white);
    background: var(--pink);
    overflow: hidden;
    position: relative;
}

.cta-box::after {
    content: "x10";
    position: absolute;
    right: 24%;
    color: rgba(255, 255, 255, .09);
    font-size: 210px;
    font-weight: 900;
    letter-spacing: -.1em;
}

.cta-box h2 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.cta-box .button {
    z-index: 2;
    flex-shrink: 0;
}

.help-section {
    position: relative;
    overflow: hidden;
    padding: 84px 0 78px;
    background: var(--soft);
}

.help-section::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -180px;
    width: 22.5rem;
    height: 22.5rem;
    background: radial-gradient(circle, rgba(240, 0, 87, .11), transparent 66%);
    pointer-events: none;
}

.help-panel {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 54px 58px 50px;
    background: rgba(255, 255, 255, .66);
    border: 1px solid rgba(232, 232, 236, .9);
    box-shadow: 0 22px 70px rgba(17, 15, 22, .07);
}

.help-copy h2 {
    max-width: 780px;
    margin: 0;
    color: var(--black);
    font-size: clamp(40px, 5vw, 64px);
    line-height: .98;
    letter-spacing: -.065em;
}

.help-copy h2 em {
    color: var(--pink);
    font-style: normal;
}

.help-copy p:not(.eyebrow) {
    max-width: 720px;
    margin: 30px 0 0;
    color: var(--gray);
    font-size: clamp(18px, 2.1vw, 25px);
    line-height: 1.55;
    letter-spacing: -.025em;
}

.help-actions {
    margin-top: 34px;
    display: grid;
    gap: 20px;
    justify-items: start;
}

.help-actions .button {
    min-width: min(100%, 390px);
    min-height: 60px;
    padding: 0 28px;
    gap: 20px;
    font-size: 12px;
    letter-spacing: .12em;
    box-shadow: 0 18px 38px rgba(240, 0, 87, .17);
}

.campus-link {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    color: var(--black);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: color .2s ease, transform .2s ease;
}

.campus-link span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--white);
    background: linear-gradient(135deg, #8ea7b8, #536b7c);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 10px 22px rgba(21, 39, 51, .14);
    font-size: 15px;
    letter-spacing: 0;
}

.campus-link:hover {
    color: var(--pink);
    transform: translateX(4px);
}

.page-hero {
    min-height: 650px;
    padding: 100px 0 80px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white), var(--pink-soft));
}

.page-hero-dark {
    color: var(--white);
    background: var(--black);
}

.page-hero-pink {
    color: var(--white);
    background: var(--pink);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 50px;
    align-items: center;
}

.page-hero h1 {
    max-width: 900px;
}

.page-hero p:not(.eyebrow) {
    max-width: 670px;
    margin: 30px 0;
    color: var(--gray);
    font-size: 19px;
}

.page-hero-dark p:not(.eyebrow), .page-hero-pink p:not(.eyebrow) {
    color: rgba(255, 255, 255, .65);
}

.page-number {
    position: relative;
    min-height: 350px;
    display: grid;
    place-content: center;
    text-align: center;
}

.page-number::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(240, 0, 87, .22);
    border-radius: 50%;
}

.page-number::after {
    content: "";
    position: absolute;
    inset: 35px;
    border: 1px solid rgba(240, 0, 87, .12);
    border-radius: 50%;
}

.page-number strong {
    position: relative;
    z-index: 2;
    color: var(--pink);
    font-size: clamp(80px, 11vw, 150px);
    line-height: .9;
    letter-spacing: -.1em;
}

.page-number span {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.page-hero-pink .page-number strong {
    color: var(--white);
}

.page-hero-pink .page-number::before, .page-hero-pink .page-number::after {
    border-color: rgba(255, 255, 255, .25);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.course-card {
    min-height: 310px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    background: var(--soft);
    border-top: 3px solid transparent;
    transition: .25s ease;
}

.course-card:hover {
    border-color: var(--pink);
    transform: translateY(-5px);
}

.course-card > span, .process-grid span, .big-pillars span, .life-grid span {
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
}

.course-card h3 {
    margin: 42px 0 12px;
    font-size: 25px;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.course-card p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
}

.course-card a {
    margin-top: auto;
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.course-featured {
    color: var(--white);
    background: var(--pink);
}

.course-featured p, .course-featured a, .course-featured > span {
    color: rgba(255, 255, 255, .8);
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.format-grid article {
    padding: 35px;
    background: var(--white);
    border-bottom: 3px solid var(--pink);
}

.format-grid strong {
    font-size: 28px;
    letter-spacing: -.04em;
}

.format-grid p {
    color: var(--gray);
    font-size: 14px;
}

.big-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.big-pillars article {
    min-height: 380px;
    padding: 28px;
    border: 1px solid var(--line);
    border-right: 0;
    transition: .25s ease;
}

.big-pillars article:last-child {
    border-right: 1px solid var(--line);
}

.big-pillars article:hover {
    color: var(--white);
    background: var(--pink);
}

.big-pillars article:hover span, .big-pillars article:hover p {
    color: rgba(255, 255, 255, .75);
}

.big-pillars h3 {
    margin: 155px 0 15px;
    font-size: 29px;
    letter-spacing: -.05em;
}

.big-pillars p {
    color: var(--gray);
    font-size: 14px;
}

.life-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid rgba(255, 255, 255, .15);
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.life-grid article {
    min-height: 210px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    transition: .25s ease;
}

.life-grid article:hover {
    background: var(--pink);
}

.life-grid article:hover span {
    color: var(--white);
}

.life-grid h3 {
    margin: 70px 0 0;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.split-content, .story-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
}

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

.stack-list article {
    padding: 25px 10px;
    border-bottom: 1px solid var(--line);
}

.stack-list span {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.stack-list p {
    margin: 5px 0 0;
    color: var(--gray);
    font-size: 14px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--line);
}

.process-grid article {
    min-height: 290px;
    padding: 28px;
    background: var(--white);
}

.process-grid h3 {
    margin: 100px 0 10px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.process-grid p {
    color: var(--gray);
    font-size: 13px;
}

.result-banner {
    position: relative;
    padding: 75px;
    color: var(--white);
    background: var(--black);
    overflow: hidden;
}

.result-banner p, .result-banner strong {
    position: relative;
    z-index: 2;
    display: block;
    margin: 0;
    font-size: clamp(35px, 5vw, 65px);
    line-height: 1.05;
    letter-spacing: -.06em;
}

.result-banner p {
    color: rgba(255, 255, 255, .35);
}

.result-banner strong {
    color: var(--pink);
}

.result-banner span {
    position: absolute;
    right: 30px;
    bottom: -60px;
    color: rgba(255, 255, 255, .05);
    font-size: 220px;
    font-weight: 900;
    letter-spacing: -.1em;
}

.story-text p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, .63);
    font-size: 18px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.values-grid article {
    min-height: 290px;
    padding: 28px;
    background: var(--soft);
    border-top: 3px solid var(--pink);
}

.values-grid strong {
    color: var(--pink);
    font-size: 12px;
}

.values-grid h3 {
    margin: 100px 0 8px;
    font-size: 26px;
    letter-spacing: -.04em;
}

.values-grid p {
    color: var(--gray);
    font-size: 13px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stats-row div {
    padding: 30px;
    border-right: 1px solid var(--line);
}

.stats-row div:last-child {
    border-right: 0;
}

.stats-row strong, .stats-row span {
    display: block;
}

.stats-row strong {
    color: var(--pink);
    font-size: 55px;
    line-height: 1;
    letter-spacing: -.07em;
}

.stats-row span {
    margin-top: 12px;
    color: var(--gray);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-hero {
    padding: 100px 0;
    color: var(--white);
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.contact-hero h1 {
    font-size: clamp(50px, 6vw, 82px);
}

.contact-hero > .container > div > p:not(.eyebrow) {
    max-width: 540px;
    margin: 28px 0;
    color: rgba(255, 255, 255, .58);
    font-size: 18px;
}

.contact-details {
    display: grid;
    gap: 8px;
    margin-top: 50px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.contact-details a:first-child {
    color: var(--pink);
    font-size: 21px;
    font-weight: 800;
}

.contact-grid-simple {
    align-items: center;
}

.contact-card-simple {
    padding: 46px;
    display: grid;
    background: var(--white);
}

.contact-card-simple span {
    margin: 20px 0 3px;
    color: var(--gray);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.contact-card-simple span:first-child {
    margin-top: 0;
}

.contact-card-simple strong {
    color: var(--black);
    font-size: clamp(21px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -.04em;
    overflow-wrap: anywhere;
}

.contact-card-simple p {
    margin: 28px 0 0;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

.contact-form {
    padding: 45px;
    color: var(--ink);
    background: var(--white);
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

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

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    outline: 0;
    background: transparent;
    font-size: 14px;
    transition: border .2s ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--pink);
}

.contact-form .check-field {
    display: flex;
    grid-template-columns: none;
    flex-direction: row;
    align-items: center;
    gap: 9px;
    color: var(--gray);
    font-size: 9px;
}

.check-field input {
    width: auto;
}

.check-field a {
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-status {
    margin: 15px 0 0;
    color: var(--pink);
    font-size: 13px;
}

.form-status.success {
    color: #157347;
}

.form-status.error {
    color: #b42318;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

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

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

.faq-list summary {
    padding: 25px 5px;
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-list summary span {
    color: var(--pink);
    font-size: 20px;
}

.faq-list p {
    margin: 0;
    padding: 0 40px 25px 5px;
    color: var(--gray);
    font-size: 14px;
}

.trusted-section {
    padding: 82px 0 76px;
    overflow: hidden;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trusted-heading {
    margin-bottom: 46px;
    text-align: center;
}

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

.trusted-heading h2 {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -.055em;
}

.trusted-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.trusted-track {
    width: max-content;
    display: flex;
    animation: trusted-scroll 58s linear infinite;
}

.trusted-group {
    padding-right: 64px;
    display: flex;
    gap: 64px;
    align-items: center;
}

.trusted-logo {
    width: 205px;
    height: 112px;
    flex: 0 0 205px;
    display: grid;
    place-items: center;
}

.trusted-logo img {
    width: auto;
    max-width: 180px;
    height: auto;
    max-height: 86px;
    object-fit: contain;
    opacity: .82;
    mix-blend-mode: multiply;
    transition: opacity .25s ease, transform .25s ease;
}

.trusted-logo:hover img {
    opacity: 1;
    transform: scale(1.06);
}

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

@keyframes trusted-scroll {
    to {
        transform: translateX(-50%);
    }
}

.site-footer {
    padding: 75px 0 22px;
    background: var(--soft);
}

.footer-brand .brand-footer {
    width: 164px;
    height: auto;
    overflow: visible;
}

.footer-brand .brand-footer img {
    width: 164px;
    height: auto;
    object-fit: contain;
}

.footer-tagline {
    max-width: 330px;
    margin-top: 24px;
    display: grid;
    gap: 10px;
    font-family: Montserrat, "Segoe UI", Arial, sans-serif;
    text-transform: uppercase;
}

.footer-tagline span {
    position: relative;
    min-height: 19px;
    padding-left: 13px;
    display: flex;
    align-items: center;
    color: #3e3e45;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .11em;
    line-height: 1.35;
}

.footer-tagline span::before {
    content: "";
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 0;
    width: 2px;
    background: var(--pink);
}

.footer-tagline .footer-result {
    color: var(--black);
    font-weight: 800;
}

.footer-tagline .footer-result b {
    margin-right: 4px;
    color: var(--pink);
    font-weight: 800;
    text-transform: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.25fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-compact {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
}

.brand-footer {
    width: 230px;
}

.footer-brand p {
    max-width: 330px;
    color: var(--gray);
    font-size: 13px;
}

.footer-brand p strong {
    color: var(--ink);
    font-weight: 800;
}

.brand-footer img {
    background: transparent;
}

.footer-top > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-top h4 {
    margin: 0 0 10px;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer-top a, .footer-top p {
    margin: 0;
    color: var(--gray);
    font-size: 12px;
}

.footer-top a:hover {
    color: var(--pink);
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #96969d;
    border-top: 1px solid var(--line);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

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

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

.reveal-delay {
    transition-delay: .15s;
}

.statement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.statement-grid h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -.055em;
}

.statement-words {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.statement-words span {
    padding: 17px 0;
    color: rgba(255, 255, 255, .68);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    font-size: 20px;
    font-weight: 800;
}

.statement-words .button {
    justify-self: start;
    margin-top: 28px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud span {
    padding: 13px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
}

.audience-strip {
    display: grid;
    grid-template-columns: .65fr repeat(4, 1fr);
    align-items: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.audience-strip p, .audience-strip strong {
    margin: 0;
    padding: 28px 20px;
}

.audience-strip p {
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.audience-strip strong {
    border-left: 1px solid var(--line);
    font-size: 14px;
}

.question-section {
    position: relative;
    color: var(--white);
    background: var(--black);
    overflow: hidden;
}

.question-section::after {
    content: "?";
    position: absolute;
    right: -2%;
    bottom: -36%;
    color: rgba(255, 255, 255, .035);
    font-size: 520px;
    font-weight: 900;
    line-height: 1;
}

.question-intro {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin-bottom: 60px;
}

.question-intro h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: -.055em;
}

.question-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.question-grid article {
    min-height: 310px;
    padding: 34px;
    border-right: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    transition: .3s ease;
}

.question-grid article:hover {
    background: var(--pink);
    transform: translateY(-5px);
}

.question-grid span, .growth-focus-card > span, .career-grid span {
    color: var(--pink);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.question-grid article:hover span {
    color: var(--white);
}

.question-grid h3 {
    max-width: 470px;
    margin: 105px 0 0;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

.growth-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.growth-focus-card {
    min-height: 230px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: .28s ease;
}

.growth-focus-card:hover {
    color: var(--white);
    background: var(--black);
    transform: translateY(-5px);
}

.growth-focus-card h3 {
    max-width: 260px;
    margin: auto 0 0;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.growth-focus-featured {
    grid-column: span 4;
    min-height: 310px;
    padding: 40px;
    color: var(--white);
    background: var(--pink);
}

.growth-focus-featured > span {
    color: var(--white);
}

.growth-focus-featured h3 {
    max-width: none;
    margin: 55px 0 12px;
    font-size: clamp(40px, 6vw, 68px);
}

.growth-focus-featured p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
}

.growth-focus-featured a {
    margin-top: 28px;
    align-self: flex-start;
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

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

.career-grid article {
    min-height: 330px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    background: var(--soft);
    border-top: 3px solid var(--pink);
    transition: .28s ease;
}

.career-grid article:hover {
    color: var(--white);
    background: var(--black);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.career-grid h3 {
    margin: auto 0 10px;
    font-size: 28px;
    line-height: 1.06;
    letter-spacing: -.05em;
}

.career-grid p {
    margin: 0;
    color: var(--gray);
    font-size: 13px;
}

.career-grid article:hover p {
    color: rgba(255, 255, 255, .65);
}

.big-pillars-clean article {
    min-height: 320px;
}

.big-pillars-clean h3 {
    margin-top: 110px;
}

.service-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-panel {
    min-height: 480px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.service-panel-dark {
    background: var(--black);
}

.service-panel-pink {
    background: var(--pink);
}

.service-panel > span {
    margin-bottom: auto;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.service-panel h2 {
    max-width: 480px;
    margin: 0 0 16px;
    font-size: clamp(36px, 4vw, 55px);
    line-height: 1;
    letter-spacing: -.06em;
}

.service-panel p {
    max-width: 430px;
    color: rgba(255, 255, 255, .68);
}

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

.simple-lead, .simple-copy {
    color: var(--gray);
    font-size: 18px;
}

.section-black .simple-copy {
    color: rgba(255, 255, 255, .64);
}

.component-error {
    margin: 0;
    padding: 12px;
    color: var(--white);
    background: var(--pink);
    text-align: center;
    font-size: 12px;
}

.professional-label {
    color: var(--black);
    font-size: 16px;
}

.public-hero {
    min-height: 650px;
    padding: 110px 0;
    display: grid;
    align-items: center;
    color: var(--white);
    background: linear-gradient(120deg, #09090c 0%, #171219 60%, #5f0025 140%);
}

.public-hero .container {
    max-width: 1050px;
}

.public-hero h1 {
    max-width: 1050px;
    margin: 0;
    font-size: clamp(50px, 7vw, 88px);
    line-height: .98;
    letter-spacing: -.065em;
}

.public-hero p:not(.eyebrow) {
    max-width: 780px;
    margin: 28px 0;
    color: rgba(255, 255, 255, .68);
    font-size: 19px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

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

.benefit-grid article {
    min-height: 260px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.benefit-grid span {
    color: var(--pink);
    font-size: 13px;
    font-weight: 900;
}

.benefit-grid h3 {
    margin: 95px 0 10px;
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.benefit-grid p {
    margin: 0;
    color: var(--gray);
    font-size: 13px;
}

.tag-cloud-dark span {
    color: var(--white);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .15);
}

.admin-invite {
    padding-bottom: 80px;
}

.result-banner .button {
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

.legal-hero {
    padding: 100px 0 70px;
    background: var(--soft);
}

.legal-hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(50px, 7vw, 82px);
    line-height: 1;
    letter-spacing: -.065em;
}

.legal-hero > .container > p:last-child {
    color: var(--gray);
}

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

.legal-grid {
    display: grid;
    grid-template-columns: .32fr .68fr;
    gap: 80px;
    align-items: start;
}

.legal-grid aside {
    position: sticky;
    top: 110px;
    padding: 25px;
    background: var(--pink-soft);
    border-top: 3px solid var(--pink);
}

.legal-grid aside strong {
    font-size: 13px;
    text-transform: uppercase;
}

.legal-grid aside p {
    color: var(--gray);
    font-size: 12px;
}

.legal-grid article h2 {
    margin: 0 0 12px;
    padding-top: 35px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.legal-grid article h2:first-child {
    padding-top: 0;
}

.legal-grid article p {
    color: var(--gray);
}

.legal-table {
    margin: 25px 0;
    display: grid;
    grid-template-columns: .7fr 1.5fr .7fr;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    font-size: 12px;
}

.legal-table > * {
    padding: 13px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.footer-bottom a:hover {
    color: var(--pink);
}

.method-new-hero {
    min-height: 720px;
    padding: 90px 0;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 78% 45%, var(--pink-soft), var(--white) 42%);
}

.method-new-grid, .method-detail-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.method-new-hero h1, .method-detail-hero h1 {
    margin: 0;
    font-size: clamp(62px, 8vw, 106px);
    line-height: .92;
    letter-spacing: -.075em;
}

.method-logo-wrap {
    display: grid;
    place-items: center;
}

.method-logo-wrap img {
    width: min(540px, 100%);
    max-height: 560px;
    filter: drop-shadow(0 24px 32px rgba(240, 0, 87, .13));
}

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

.method-audience-card {
    min-height: 340px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: var(--soft);
    border-top: 3px solid var(--pink);
    transition: .3s ease;
}

.method-audience-card:hover {
    color: var(--white);
    background: var(--black);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.method-audience-card > span {
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
}

.method-audience-card p {
    margin: auto 0 8px;
    color: var(--pink);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.method-audience-card h3 {
    max-width: 500px;
    margin: 0 0 30px;
    font-size: 33px;
    line-height: 1.05;
    letter-spacing: -.05em;
}

.method-audience-card b {
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.method-audience-featured {
    color: var(--white);
    background: var(--pink);
}

.method-audience-featured > span, .method-audience-featured p {
    color: var(--white);
}

.cycle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.cycle-grid article {
    min-height: 250px;
    padding: 25px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cycle-grid span, .session-grid span {
    color: var(--pink);
    font-size: 10px;
    font-weight: 900;
}

.cycle-grid h3 {
    margin: 80px 0 8px;
    font-size: 21px;
    letter-spacing: -.04em;
}

.cycle-grid p {
    color: var(--gray);
    font-size: 12px;
}

.method-detail-hero {
    min-height: 680px;
    padding: 85px 0;
    display: grid;
    align-items: center;
    background: linear-gradient(135deg, var(--white), var(--pink-soft));
}

.method-detail-hero h1 {
    font-size: clamp(54px, 7vw, 88px);
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--pink);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.session-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.session-grid article {
    min-height: 290px;
    padding: 25px;
    background: var(--white);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.session-grid h3 {
    margin: 95px 0 10px;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.session-grid p {
    color: var(--gray);
    font-size: 12px;
}

.impact-list {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.impact-list span {
    padding: 17px 5px;
    color: rgba(255, 255, 255, .74);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    font-weight: 700;
}

.impact-list span::before {
    content: "→";
    margin-right: 15px;
    color: var(--pink);
}

.method-quote {
    padding: 75px;
    background: var(--soft);
    text-align: center;
}

.method-quote span {
    color: var(--pink);
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: .4;
}

.method-quote blockquote {
    max-width: 850px;
    margin: 35px auto 0;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.05em;
}

@media (max-width: 1180px) {
    .site-header, .site-header.scrolled {
        height: 70px;
    }

    .brand {
        width: 160px;
    }

    .menu-toggle {
        display: block;
        z-index: 52;
    }

    .menu-open .menu-toggle span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-open .menu-toggle span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        z-index: 51;
        inset: 0;
        padding: 100px 30px 40px;
        display: flex;
        visibility: hidden;
        clip-path: inset(0 0 0 100%);
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        transition: clip-path .3s ease, visibility 0s .3s;
    }

    .menu-open .main-nav {
        visibility: visible;
        clip-path: inset(0);
        transition-delay: 0s;
    }

    .main-nav > a {
        padding: 17px 0;
        border-bottom: 1px solid var(--line);
        font-size: 17px;
    }

    .main-nav .button-small {
        margin-top: 20px;
        color: var(--white) !important;
        border: 0;
    }
}

.vallejo-hero {
    position: relative;
    min-height: 720px;
    padding: 90px 0;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 78% 45%, #fff0f5 0, #fff 38%);
}

.vallejo-hero::after {
    content: "VALLEJO";
    position: absolute;
    right: -3%;
    bottom: -5%;
    color: transparent;
    font-size: clamp(120px, 19vw, 300px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.1em;
    -webkit-text-stroke: 1px rgba(240, 0, 87, .07);
}

.vallejo-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.vallejo-hero h1 {
    margin: 0;
    font-size: clamp(65px, 8vw, 112px);
    line-height: .9;
    letter-spacing: -.08em;
}

.vallejo-hero .hero-lead {
    margin: 30px 0;
    font-size: 21px;
}

.vallejo-symbol {
    position: relative;
    width: min(480px, 100%);
    aspect-ratio: 1;
    margin-inline: auto;
    filter: drop-shadow(0 30px 35px rgba(240, 0, 87, .12));
}

.heart-half {
    position: absolute;
    z-index: 2;
    top: 15%;
    left: 11%;
    width: 42%;
    height: 58%;
    background: linear-gradient(135deg, #ff4b8b, var(--pink) 62%, #c80048);
    border-radius: 50% 50% 12% 50%;
    transform: rotate(-45deg);
    box-shadow: inset 18px 18px 30px rgba(255, 255, 255, .22);
}

.heart-half::before {
    content: "";
    position: absolute;
    top: -1%;
    right: -49%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4b8b, var(--pink));
    border-radius: 50% 50% 50% 12%;
}

.heart-half span:first-child {
    position: absolute;
    z-index: 2;
    top: 10%;
    left: 18%;
    width: 28%;
    height: 20%;
    background: rgba(255, 255, 255, .25);
    border-radius: 50%;
}

.heart-half span:last-child {
    position: absolute;
    z-index: 3;
    right: -45%;
    bottom: 17%;
    width: 155%;
    height: 2px;
    background: rgba(255, 255, 255, .72);
    transform: rotate(72deg);
}

.brain-half {
    position: absolute;
    z-index: 3;
    top: 12%;
    right: 6%;
    width: 48%;
    height: 65%;
    border: 10px solid #a8a2ae;
    border-left: 0;
    border-radius: 42% 48% 48% 40%;
    filter: drop-shadow(0 12px 8px rgba(60, 48, 72, .1));
}

.brain-half::before, .brain-half::after {
    content: "";
    position: absolute;
    border: 9px solid #a8a2ae;
    border-radius: 50%;
    background: rgba(255, 255, 255, .8);
}

.brain-half::before {
    top: 7%;
    left: -26%;
    width: 62%;
    height: 35%;
}

.brain-half::after {
    bottom: 5%;
    left: -30%;
    width: 70%;
    height: 38%;
}

.brain-line {
    position: absolute;
    z-index: 4;
    display: block;
    width: 40%;
    height: 20%;
    border: 7px solid #a8a2ae;
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
}

.brain-one {
    top: 17%;
    right: 14%;
    transform: rotate(-40deg);
}

.brain-two {
    top: 43%;
    right: 7%;
    transform: rotate(25deg);
}

.brain-three {
    bottom: 15%;
    right: 20%;
    transform: rotate(-28deg);
}

.brain-four {
    top: 34%;
    left: 4%;
    transform: rotate(130deg);
}

.brain-five {
    bottom: 26%;
    left: 4%;
    transform: rotate(150deg);
}

.symbol-glow {
    position: absolute;
    z-index: 1;
    right: 15%;
    bottom: 12%;
    left: 15%;
    height: 13%;
    background: rgba(240, 0, 87, .18);
    border-radius: 50%;
    filter: blur(20px);
}

.vallejo-symbol small {
    position: absolute;
    right: 0;
    bottom: 4%;
    left: 0;
    color: #686871;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .24em;
    text-align: center;
    text-transform: uppercase;
}

.vallejo-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.vallejo-step {
    position: relative;
    min-height: 390px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: .3s ease;
}

.vallejo-step:hover {
    color: var(--white);
    background: var(--pink);
    transform: translateY(-7px);
}

.step-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--pink);
    border: 1px solid var(--pink);
    border-radius: 50%;
    font-size: 32px;
    transition: .3s ease;
}

.vallejo-step:hover .step-icon {
    color: var(--pink);
    background: var(--white);
    border-color: var(--white);
}

.vallejo-step > span {
    position: absolute;
    top: 34px;
    right: 28px;
    color: var(--pink);
    font-size: 10px;
    font-weight: 900;
}

.vallejo-step:hover > span, .vallejo-step:hover p {
    color: rgba(255, 255, 255, .72);
}

.vallejo-step h3 {
    margin: 110px 0 0;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -.05em;
}

.vallejo-step strong {
    color: var(--pink);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vallejo-step:hover strong {
    color: var(--white);
}

.vallejo-step p {
    margin-top: 18px;
    color: var(--gray);
    font-size: 13px;
}

.statement-words-numbered span {
    display: flex;
    gap: 18px;
    align-items: center;
}

.statement-words-numbered b {
    color: var(--pink);
    font-size: 10px;
}

@media (max-width: 1050px) {
    .main-nav {
        gap: 0;
    }

    .main-nav > a {
        font-size: 17px;
    }

    .hero-grid {
        grid-template-columns: .9fr 1.1fr;
    }

    .x-mark {
        transform: translate(-50%, -50%) scale(.8);
    }

    .promise-strip {
        grid-template-columns: 1fr 1fr;
    }

    .method-intro, .contact-grid {
        gap: 55px;
    }

    .topics-grid, .course-grid, .life-grid {
        grid-template-columns: 1fr 1fr;
    }

    .growth-focus-grid, .career-grid {
        grid-template-columns: 1fr 1fr;
    }

    .growth-focus-featured {
        grid-column: span 2;
    }

    .big-pillars, .process-grid, .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .big-pillars article:nth-child(2) {
        border-right: 1px solid var(--line);
    }

    .footer-top {
        grid-template-columns: 1.8fr 1fr 1fr;
    }

    .footer-top > div:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 80px 0;
    }

    .site-header, .site-header.scrolled {
        height: 70px;
    }

    .brand {
        width: 160px;
    }

    .menu-toggle {
        display: block;
        z-index: 52;
    }

    .menu-open .menu-toggle span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-open .menu-toggle span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        z-index: 51;
        inset: 0;
        padding: 100px 30px 40px;
        display: flex;
        visibility: hidden;
        clip-path: inset(0 0 0 100%);
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        transition: clip-path .3s ease, visibility 0s .3s;
    }

    .menu-open .main-nav {
        visibility: visible;
        clip-path: inset(0);
        transition-delay: 0s;
    }

    .main-nav > a {
        padding: 17px 0;
        border-bottom: 1px solid var(--line);
        font-size: 18px;
    }

    .main-nav .button-small {
        margin-top: 20px;
        color: var(--white) !important;
        border: 0;
    }

    .hero {
        padding-top: 45px;
    }

    .hero-grid {
        display: block;
        min-height: 0;
    }

    .hero-copy h1, .page-hero h1, .contact-hero h1 {
        font-size: clamp(49px, 12vw, 72px);
    }

    .hero-visual {
        min-height: 500px;
    }

    .x-mark {
        transform: translate(-50%, -50%) scale(.74);
    }

    .hero-proof {
        justify-content: space-between;
        gap: 12px;
    }

    .promise-strip {
        grid-template-columns: 1fr 1fr;
    }

    .path-grid, .method-intro, .page-hero-grid, .split-content, .story-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .statement-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .vallejo-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vallejo-symbol {
        max-width: 420px;
    }

    .vallejo-steps {
        grid-template-columns: 1fr 1fr;
    }

    .path-card {
        min-height: 440px;
    }

    .heading-row {
        display: block;
    }

    .heading-row .text-link {
        margin-top: 25px;
    }

    .page-hero {
        min-height: auto;
        padding: 85px 0;
    }

    .page-number {
        min-height: 280px;
    }

    .method-intro, .split-content, .story-grid, .contact-grid {
        gap: 55px;
    }

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

    .method-new-grid, .method-detail-grid {
        grid-template-columns: 1fr;
    }

    .method-logo-wrap img {
        width: min(420px, 80%);
    }

    .cycle-grid, .session-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .legal-grid aside {
        position: static;
    }

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

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

    .audience-strip p {
        grid-column: 1 / 3;
        border-bottom: 1px solid var(--line);
    }

    .service-duo {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 45px;
        display: block;
    }

    .cta-box .button {
        margin-top: 30px;
    }

    .help-panel {
        padding: 44px 38px;
    }

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

    .stats-row div:nth-child(2) {
        border-right: 0;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / 3;
    }

    .footer-top > div:last-child {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 68px 0;
    }

    .hero-copy h1, .page-hero h1, .contact-hero h1 {
        font-size: 46px;
    }

    .hero-lead {
        font-size: 16px;
    }

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

    .hero-actions .button {
        align-self: flex-start;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 40px;
    }

    .hero-proof strong {
        font-size: 19px;
    }

    .hero-proof span {
        font-size: 9px;
    }

    .hero-visual {
        min-height: 410px;
    }

    .x-mark {
        transform: translate(-50%, -50%) scale(.6);
    }

    .impact-badge {
        top: 28px;
        right: 0;
        width: 90px;
        height: 90px;
    }

    .floating-card {
        font-size: 9px;
    }

    .floating-card-two {
        bottom: 17%;
    }

    .promise-strip, .topics-grid, .course-grid, .life-grid, .big-pillars, .process-grid, .values-grid {
        grid-template-columns: 1fr;
    }

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

    .benefit-grid, .benefit-grid-three {
        grid-template-columns: 1fr;
    }

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

    .question-grid, .growth-focus-grid, .career-grid {
        grid-template-columns: 1fr;
    }

    .growth-focus-featured {
        grid-column: auto;
    }

    .method-audience-card {
        min-height: 300px;
    }

    .cycle-grid, .session-grid {
        grid-template-columns: 1fr;
    }

    .cycle-grid article, .session-grid article {
        min-height: 220px;
    }

    .cycle-grid h3, .session-grid h3 {
        margin-top: 55px;
    }

    .method-new-hero, .method-detail-hero {
        min-height: auto;
        padding: 70px 0;
    }

    .method-new-hero h1, .method-detail-hero h1 {
        font-size: 52px;
    }

    .method-quote {
        padding: 50px 22px;
    }

    .trusted-section {
        padding: 62px 0 56px;
    }

    .trusted-heading {
        margin-bottom: 34px;
    }

    .trusted-heading h2 {
        font-size: 34px;
    }

    .trusted-group {
        padding-right: 38px;
        gap: 38px;
    }

    .trusted-logo {
        width: 150px;
        height: 90px;
        flex-basis: 150px;
    }

    .trusted-logo img {
        max-width: 138px;
        max-height: 72px;
    }

    .public-hero {
        min-height: auto;
        padding: 80px 0;
    }

    .public-hero h1 {
        font-size: 44px;
    }

    .legal-table {
        grid-template-columns: 1fr;
    }

    .vallejo-hero {
        min-height: auto;
        padding: 70px 0;
    }

    .vallejo-hero h1 {
        font-size: 62px;
    }

    .vallejo-symbol {
        max-width: 340px;
    }

    .vallejo-steps {
        grid-template-columns: 1fr;
    }

    .vallejo-step {
        min-height: 310px;
    }

    .vallejo-step h3 {
        margin-top: 70px;
    }

    .promise-strip p {
        border-left: 1px solid var(--line);
    }

    .path-card {
        min-height: 410px;
        padding: 25px;
    }

    .path-card h3 {
        font-size: 34px;
    }

    .section-heading h2, .method-copy h2, .split-content h2, .story-grid h2 {
        font-size: 39px;
    }

    .topic {
        min-height: 190px;
    }

    .topic h3 {
        margin-top: 42px;
    }

    .big-pillars article {
        min-height: 300px;
        border-right: 1px solid var(--line);
    }

    .big-pillars h3 {
        margin-top: 100px;
    }

    .process-grid, .values-grid {
        gap: 1px;
    }

    .process-grid h3, .values-grid h3 {
        margin-top: 60px;
    }

    .cta-box {
        min-height: 350px;
        padding: 32px 25px;
    }

    .help-section {
        padding: 58px 0 56px;
    }

    .help-panel {
        padding: 36px 24px 34px;
    }

    .help-copy h2 {
        font-size: 38px;
    }

    .help-copy p:not(.eyebrow) {
        margin-top: 24px;
        font-size: 18px;
    }

    .help-actions {
        margin-top: 28px;
    }

    .help-actions .button {
        min-height: 56px;
        padding: 0 20px;
        font-size: 11px;
    }

    .campus-link {
        gap: 13px;
        font-size: 11px;
    }

    .campus-link span {
        width: 31px;
        height: 31px;
        border-radius: 7px;
    }

    .result-banner {
        padding: 45px 25px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .stats-row div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand, .footer-top > div:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        gap: 15px;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trusted-track {
        animation-play-state: paused;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

@media (max-width: 1180px) {
    body.menu-open .site-header {
        height: 100vh;
        background: var(--white);
        backdrop-filter: none;
    }

    body.menu-open .nav-wrap {
        height: 70px;
    }

    body.menu-open .main-nav {
        overflow-y: auto;
    }
}

/* Ajuste global de escala, ritmo y lectura */
.site-header {
    height: 74px;
}

.site-header.scrolled {
    height: 66px;
}

.nav-wrap {
    gap: 18px;
}

.brand {
    width: 154px;
}

.main-nav {
    gap: 14px;
}

.main-nav > a {
    font-size: 9.5px;
    letter-spacing: .055em;
}

.button {
    min-height: 46px;
    padding: 0 20px;
    gap: 11px;
    font-size: 10.5px;
    box-shadow: 0 12px 26px rgba(240, 0, 87, .16);
}

.button-small {
    min-height: 38px;
    padding: 0 14px;
    font-size: 9.5px;
}

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

.section {
    padding: 82px 0;
}

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

.section-heading h2,
.method-copy h2,
.split-content h2,
.story-grid h2,
.statement-grid h2,
.question-intro h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -.05em;
}

.section-heading > p:last-child,
.simple-lead,
.simple-copy {
    font-size: 16px;
    line-height: 1.7;
}

.hero,
.page-hero,
.public-hero,
.method-new-hero,
.method-detail-hero,
.vallejo-hero {
    min-height: auto;
    padding: 76px 0;
}

.hero::before {
    font-size: clamp(120px, 18vw, 260px);
}

.hero-copy h1,
.page-hero h1,
.public-hero h1,
.contact-hero h1,
.method-new-hero h1,
.method-detail-hero h1,
.vallejo-hero h1 {
    font-size: clamp(42px, 5.4vw, 68px);
    line-height: 1;
    letter-spacing: -.06em;
}

.hero-lead,
.page-hero p:not(.eyebrow),
.public-hero p:not(.eyebrow),
.vallejo-hero .hero-lead {
    margin: 24px 0;
    font-size: 17px;
    line-height: 1.7;
}

.path-card {
    min-height: 360px;
    padding: 30px;
}

.path-card::after {
    font-size: 125px;
}

.path-card h3 {
    font-size: clamp(28px, 3vw, 38px);
}

.card-arrow {
    top: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    font-size: 18px;
}

.topic {
    min-height: 200px;
    padding: 24px;
}

.topic h3 {
    margin-top: 48px;
    font-size: 20px;
}

.course-card {
    min-height: 245px;
    padding: 24px;
}

.course-card h3 {
    margin-top: 34px;
    font-size: 22px;
}

.format-grid article {
    padding: 28px;
}

.format-grid strong {
    font-size: 24px;
}

.big-pillars article {
    min-height: 300px;
    padding: 24px;
}

.big-pillars h3 {
    margin-top: 115px;
    font-size: 25px;
}

.life-grid article {
    min-height: 180px;
    padding: 24px;
}

.life-grid h3 {
    margin-top: 54px;
    font-size: 20px;
}

.process-grid article,
.values-grid article,
.session-grid article,
.cycle-grid article,
.benefit-grid article {
    min-height: 220px;
    padding: 24px;
}

.process-grid h3,
.values-grid h3,
.session-grid h3,
.cycle-grid h3,
.benefit-grid h3 {
    margin-top: 58px;
    font-size: 21px;
}

.result-banner,
.method-quote,
.testimonial {
    padding: 55px 8%;
}

.result-banner p,
.result-banner strong,
.testimonial blockquote,
.method-quote blockquote {
    font-size: clamp(27px, 3.5vw, 42px);
}

.result-banner span {
    font-size: 150px;
}

.cta-box {
    min-height: 230px;
    padding: 38px;
}

.cta-box::after {
    font-size: 140px;
}

.cta-box h2 {
    font-size: clamp(30px, 3.8vw, 46px);
}

.page-number {
    min-height: 280px;
}

.page-number strong {
    font-size: clamp(64px, 9vw, 110px);
}

.service-panel {
    min-height: 350px;
    padding: 32px;
}

.service-panel h2 {
    font-size: clamp(31px, 3.5vw, 44px);
}

.question-grid article {
    min-height: 245px;
    padding: 28px;
}

.question-grid h3 {
    margin-top: 72px;
    font-size: clamp(25px, 2.7vw, 34px);
}

.growth-focus-card {
    min-height: 185px;
    padding: 24px;
}

.growth-focus-featured {
    min-height: 245px;
    padding: 32px;
}

.growth-focus-featured h3 {
    margin-top: 38px;
    font-size: clamp(32px, 4.5vw, 52px);
}

.career-grid article {
    min-height: 250px;
    padding: 24px;
}

.career-grid h3 {
    font-size: 24px;
}

.method-audience-card {
    min-height: 250px;
    padding: 26px;
}

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

.vallejo-hero-grid {
    gap: 48px;
}

.vallejo-symbol {
    width: min(390px, 100%);
}

.vallejo-step {
    min-height: 285px;
    padding: 24px;
}

.vallejo-step h3 {
    margin-top: 74px;
    font-size: 26px;
}

.step-icon {
    width: 50px;
    height: 50px;
    font-size: 26px;
}

.help-section {
    padding: 62px 0 58px;
}

.help-panel {
    max-width: 860px;
    padding: 40px 44px 38px;
}

.help-copy h2 {
    font-size: clamp(31px, 4.1vw, 48px);
    line-height: 1.02;
}

.help-copy p:not(.eyebrow) {
    margin-top: 22px;
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.62;
}

.help-actions {
    margin-top: 26px;
    gap: 16px;
}

.help-actions .button {
    min-width: min(100%, 330px);
    min-height: 52px;
    padding: 0 22px;
    font-size: 11px;
}

.trusted-section {
    padding: 58px 0 54px;
}

.trusted-heading {
    margin-bottom: 30px;
}

.trusted-heading h2 {
    max-width: 650px;
    font-size: clamp(26px, 3vw, 38px);
}

.trusted-group {
    padding-right: 46px;
    gap: 46px;
}

.trusted-logo {
    width: 168px;
    height: 88px;
    flex-basis: 168px;
}

.trusted-logo img {
    max-width: 152px;
    max-height: 70px;
}

.site-footer {
    padding-top: 56px;
}

.footer-top {
    gap: 38px;
    padding-bottom: 42px;
}

.footer-brand .brand-footer,
.footer-brand .brand-footer img {
    width: 150px;
}

.footer-tagline {
    margin-top: 18px;
}

.footer-tagline span {
    color: #2f2f35;
    font-weight: 800;
}

.footer-tagline .footer-result {
    color: var(--black);
}

.footer-tagline .footer-result b {
    color: var(--pink);
    font-weight: 900;
    text-transform: none;
}

@media (max-width: 1050px) {
    .site-header,
    .site-header.scrolled {
        height: 68px;
    }

    .brand {
        width: 148px;
    }

    .main-nav > a {
        font-size: 17px;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 62px 0;
    }

    .hero,
    .page-hero,
    .public-hero,
    .method-new-hero,
    .method-detail-hero,
    .vallejo-hero {
        padding: 60px 0;
    }

    .hero-copy h1,
    .page-hero h1,
    .public-hero h1,
    .contact-hero h1,
    .method-new-hero h1,
    .method-detail-hero h1,
    .vallejo-hero h1 {
        font-size: clamp(38px, 9vw, 56px);
    }

    .path-card {
        min-height: 300px;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 52px 0;
    }

    .hero-copy h1,
    .page-hero h1,
    .public-hero h1,
    .contact-hero h1,
    .method-new-hero h1,
    .method-detail-hero h1,
    .vallejo-hero h1 {
        font-size: 36px;
    }

    .hero-lead,
    .page-hero p:not(.eyebrow),
    .public-hero p:not(.eyebrow),
    .vallejo-hero .hero-lead {
        font-size: 15.5px;
    }

    .section-heading h2,
    .method-copy h2,
    .split-content h2,
    .story-grid h2,
    .statement-grid h2,
    .question-intro h2 {
        font-size: 31px;
    }

    .path-card,
    .course-card,
    .topic,
    .big-pillars article,
    .life-grid article,
    .process-grid article,
    .values-grid article,
    .session-grid article,
    .cycle-grid article,
    .benefit-grid article,
    .method-audience-card,
    .vallejo-step {
        min-height: 0;
    }

    .cta-box,
    .help-panel {
        padding: 25px;
    }

    .trusted-logo {
        width: 132px;
        height: 78px;
        flex-basis: 132px;
    }

    .trusted-logo img {
        max-width: 120px;
        max-height: 62px;
    }
}

@media (max-width: 1180px) {
    .site-header,
    .site-header.scrolled {
        height: 68px;
    }

    .brand {
        width: 148px;
    }

    .menu-toggle {
        display: block;
        z-index: 52;
    }

    .main-nav {
        position: fixed;
        z-index: 51;
        inset: 0;
        padding: 100px 30px 40px;
        visibility: hidden;
        clip-path: inset(0 0 0 100%);
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        transition: clip-path .3s ease, visibility 0s .3s;
    }

    .menu-open .main-nav {
        visibility: visible;
        clip-path: inset(0);
        transition-delay: 0s;
    }

    .main-nav > a {
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
        letter-spacing: .05em;
    }

    .main-nav .button-small {
        width: fit-content;
        margin-top: 20px;
        padding: 0 20px;
        color: var(--white) !important;
        border: 0;
    }
}

/* Administraciones: mas luz y calidez institucional */
body[data-page="administraciones"] .public-hero-bright {
    color: var(--ink);
    background: radial-gradient(circle at 82% 20%, rgba(240, 0, 87, .12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 56%, #f6f8ff 100%);
}

body[data-page="administraciones"] .public-hero-grid {
    max-width: 980px;
}

body[data-page="administraciones"] .public-hero h1 {
    max-width: 930px;
}

body[data-page="administraciones"] .public-hero p:not(.eyebrow) {
    max-width: 720px;
    color: var(--gray);
}

body[data-page="administraciones"] .public-human-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 92% 0%, rgba(240, 0, 87, .10), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fff4f8 100%);
}

body[data-page="administraciones"] .public-human-section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -150px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(240, 0, 87, .16);
    border-radius: 50%;
}

body[data-page="administraciones"] .public-strategy-section {
    background: #ffffff;
    border-top: 1px solid var(--line);
}

body[data-page="administraciones"] .public-strategy-section .tag-cloud span {
    background: var(--soft);
    border-color: rgba(240, 0, 87, .16);
    box-shadow: inset 0 -2px 0 rgba(240, 0, 87, .08);
}

/* Direccion visual general: mas luz, calidez y presencia humana */
.page-hero-dark,
.section-black,
.question-section,
.contact-hero {
    color: var(--ink);
    background: radial-gradient(circle at 86% 10%, rgba(240, 0, 87, .11), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 58%, #f6f8ff 100%);
    border-top: 1px solid rgba(240, 0, 87, .08);
    border-bottom: 1px solid var(--line);
}

.page-hero-pink {
    color: var(--ink);
    background: radial-gradient(circle at 82% 18%, rgba(240, 0, 87, .15), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fff4f8 100%);
}

.page-hero-dark p:not(.eyebrow),
.page-hero-pink p:not(.eyebrow),
.section-black .simple-copy,
.section-black .story-text p,
.contact-hero > .container > div > p:not(.eyebrow),
.question-section p,
.section-black p {
    color: var(--gray);
}

.eyebrow-light {
    color: #55555d;
}

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

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

.section-black .tag-cloud-dark span,
.tag-cloud-dark span {
    color: var(--black);
    background: var(--white);
    border-color: rgba(240, 0, 87, .16);
    box-shadow: inset 0 -2px 0 rgba(240, 0, 87, .08);
}

.section-black .impact-list,
.impact-list {
    border-top-color: rgba(240, 0, 87, .16);
}

.section-black .impact-list span,
.impact-list span {
    color: var(--ink);
    border-bottom-color: rgba(240, 0, 87, .13);
}

.page-hero-pink .page-number strong {
    color: var(--pink);
}

.page-hero-pink .page-number::before,
.page-hero-pink .page-number::after {
    border-color: rgba(240, 0, 87, .18);
}

.contact-details {
    color: var(--gray);
}

.contact-details a:first-child {
    color: var(--pink);
}

/* Sellos visuales de Formacion profesional y Coaching */
.formation-mark,
.coaching-infinity {
    isolation: isolate;
    min-height: 310px;
    overflow: hidden;
    border-radius: 28px;
    background: radial-gradient(circle at 72% 20%, rgba(240, 0, 87, .16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 247, 250, .76));
    border: 1px solid rgba(240, 0, 87, .16);
    box-shadow: 0 24px 70px rgba(17, 15, 22, .08);
}

.formation-mark::before,
.coaching-infinity::before {
    inset: 28px;
    border-color: rgba(240, 0, 87, .20);
    border-radius: 24px;
}

.formation-mark::after,
.coaching-infinity::after {
    inset: auto 30px 30px auto;
    width: 112px;
    height: 112px;
    border-color: rgba(17, 15, 22, .08);
}

.formation-mark strong {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: .03em;
    color: var(--pink);
    font-size: clamp(74px, 9vw, 122px);
    letter-spacing: -.12em;
    text-shadow: 0 12px 32px rgba(240, 0, 87, .16);
}

.formation-mark strong i {
    font-style: normal;
    font-size: .72em;
    letter-spacing: -.08em;
    transform: translateY(-.05em);
}

.formation-mark span,
.coaching-infinity span {
    margin-top: 14px;
    color: #3d3d45;
    letter-spacing: .18em;
}

.coaching-infinity strong {
    color: transparent;
    font-size: clamp(88px, 10vw, 138px);
    letter-spacing: -.06em;
    -webkit-text-stroke: 2px var(--pink);
    text-shadow: 0 18px 44px rgba(240, 0, 87, .14);
}

.coaching-infinity::before {
    border-radius: 50%;
}

/* Escuelas online municipales */
.municipal-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(68px, 8vw, 104px) 0 62px;
    background: radial-gradient(circle at 82% 10%, rgba(240, 0, 87, .14), transparent 30%),
    radial-gradient(circle at 8% 90%, rgba(240, 0, 87, .08), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 55%, #f6f8ff 100%);
    border-bottom: 1px solid var(--line);
}

.municipal-hero::after {
    content: "0€";
    position: absolute;
    right: -28px;
    bottom: -76px;
    color: transparent;
    font-size: clamp(170px, 24vw, 380px);
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(240, 0, 87, .09);
    pointer-events: none;
}

.municipal-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .62fr);
    gap: 48px;
    align-items: center;
}

.municipal-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(38px, 5.5vw, 72px);
    line-height: .98;
    letter-spacing: -.06em;
}

.municipal-hero .hero-lead {
    max-width: 680px;
    margin: 22px 0 28px;
    color: var(--gray);
    font-size: clamp(16px, 1.55vw, 19px);
    line-height: 1.68;
}

.municipal-cost-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    background: radial-gradient(circle at 80% 10%, rgba(255, 255, 255, .30), transparent 24%),
    linear-gradient(145deg, #f00057 0%, #c90049 54%, #15151b 130%);
    border-radius: 24px;
    box-shadow: 0 26px 80px rgba(240, 0, 87, .22);
}

.municipal-cost-card::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, .30);
    border-radius: 18px;
}

.municipal-cost-card span,
.municipal-cost-card strong,
.municipal-cost-card p {
    position: relative;
    z-index: 2;
}

.municipal-cost-card span {
    margin-bottom: auto;
    font-size: clamp(58px, 7vw, 88px);
    font-weight: 900;
    line-height: .85;
    letter-spacing: -.08em;
}

.municipal-cost-card strong {
    max-width: 320px;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.04;
    letter-spacing: -.05em;
}

.municipal-cost-card p {
    max-width: 320px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .78);
}

.municipal-intro-section {
    background: var(--white);
}

body[data-page="escuelas-online"] .section {
    padding: clamp(62px, 7vw, 88px) 0;
}

body[data-page="escuelas-online"] .section-heading h2,
body[data-page="escuelas-online"] .statement-grid h2 {
    max-width: 820px;
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.06;
    letter-spacing: -.055em;
}

body[data-page="escuelas-online"] .section-heading p,
body[data-page="escuelas-online"] .simple-copy p {
    font-size: .98rem;
    line-height: 1.72;
}

.municipal-feature-grid,
.municipal-route-grid {
    display: grid;
    gap: 16px;
}

.municipal-feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.municipal-feature-grid article {
    min-height: 235px;
    padding: 23px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 16px 44px rgba(17, 15, 22, .04);
}

.municipal-feature-grid span,
.municipal-route-card span {
    color: var(--pink);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.municipal-feature-grid h3 {
    margin: auto 0 12px;
    font-size: 1.22rem;
    line-height: 1.08;
}

.municipal-feature-grid p {
    margin: 0;
    color: var(--gray);
    font-size: .88rem;
}

.municipal-zero-section {
    color: var(--white);
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .14), transparent 28%),
    linear-gradient(135deg, #15151b 0%, #2b1b25 54%, #f00057 160%);
}

.municipal-zero-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.municipal-zero-panel h2 {
    max-width: 640px;
    margin: 0;
    font-size: clamp(32px, 4.2vw, 54px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.municipal-zero-intro {
    max-width: 600px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(16px, 1.55vw, 19px);
    line-height: 1.68;
}

.municipal-zero-points {
    display: grid;
    gap: 14px;
}

.municipal-zero-points p {
    margin: 0;
    padding: 19px;
    display: grid;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
}

.municipal-zero-points strong {
    font-size: .98rem;
}

.municipal-zero-points span {
    color: rgba(255, 255, 255, .72);
}

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

.municipal-route-card {
    min-height: 310px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 58px rgba(17, 15, 22, .06);
}

.municipal-route-card-pink {
    color: var(--white);
    background: radial-gradient(circle at 86% 10%, rgba(255, 255, 255, .20), transparent 22%),
    linear-gradient(135deg, #f00057 0%, #d0004a 100%);
    border-color: rgba(240, 0, 87, .20);
}

.municipal-route-card h3 {
    max-width: 560px;
    margin: auto 0 14px;
    font-size: clamp(24px, 2.55vw, 34px);
    line-height: 1.06;
    letter-spacing: -.05em;
}

.municipal-route-card p {
    max-width: 600px;
    margin: 0;
    color: var(--gray);
    font-size: .94rem;
    line-height: 1.66;
}

.municipal-route-card-pink p {
    color: rgba(255, 255, 255, .76);
}

.municipal-route-card a {
    margin-top: 28px;
    color: var(--black);
    font-weight: 900;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.municipal-route-card-pink a,
.municipal-route-card-pink span {
    color: var(--white);
}

.municipal-final-section {
    padding-top: 42px;
}

@media (max-width: 1020px) {
    .municipal-hero-grid,
    .municipal-zero-panel,
    .municipal-route-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {
    .municipal-hero {
        padding-top: 64px;
    }

    .municipal-feature-grid {
        grid-template-columns: 1fr;
    }

    .municipal-cost-card,
    .municipal-route-card {
        min-height: 0;
        padding: 26px;
    }
}

/* Bloques de contenido añadidos: vida, PNL y empresas */
.life-purpose-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 88% 18%, rgba(240, 0, 87, .10), transparent 28%),
    linear-gradient(135deg, #fff 0%, #fff8fb 58%, #f7f8ff 100%);
}

.life-purpose-grid,
.pnl-grid,
.business-diagnostic-grid,
.breakfast-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
    gap: clamp(34px, 5vw, 70px);
    align-items: center;
}

.life-purpose-copy h2,
.pnl-grid h2,
.business-diagnostic-grid h2,
.breakfast-panel h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.03;
    letter-spacing: -.055em;
}

.life-purpose-copy p,
.pnl-grid p,
.business-diagnostic-grid p,
.breakfast-panel p {
    max-width: 680px;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.78;
}

.life-purpose-copy p strong,
.business-diagnostic-grid p strong {
    color: var(--black);
}

.life-wake-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: clamp(28px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    background: radial-gradient(circle at 82% 14%, rgba(255, 255, 255, .25), transparent 24%),
    linear-gradient(135deg, #111116 0%, #2c1722 46%, #f00057 140%);
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(17, 15, 22, .13);
}

.life-wake-card::before {
    content: "¿?";
    position: absolute;
    top: -26px;
    right: 18px;
    color: rgba(255, 255, 255, .08);
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.1em;
}

.life-wake-card span,
.business-question-grid span {
    color: var(--pink);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.life-wake-card span {
    color: rgba(255, 255, 255, .68);
}

.life-wake-card h3 {
    position: relative;
    margin: 18px 0 18px;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.life-wake-card p {
    position: relative;
    margin: 0;
    color: rgba(255, 255, 255, .74);
}

.pnl-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pnl-benefits span {
    padding: 10px 13px;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(17, 15, 22, .04);
    font-size: .78rem;
    font-weight: 800;
}

.pnl-cta {
    margin-top: 28px;
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    align-items: center;
    border-top: 1px solid var(--line);
}

.pnl-cta strong {
    color: var(--black);
    font-size: .92rem;
}

.business-diagnostic-section {
    background: var(--white);
}

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

.business-question-grid article {
    min-height: 210px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(17, 15, 22, .04);
}

.business-question-grid h3 {
    margin: auto 0 10px;
    font-size: 1.45rem;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.business-question-grid p {
    margin: 0;
    font-size: .9rem;
}

.breakfast-section {
    padding-top: 44px;
}

.breakfast-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 64px);
    color: var(--white);
    background: radial-gradient(circle at 82% 12%, rgba(255, 255, 255, .20), transparent 25%),
    linear-gradient(135deg, #111116 0%, #2a1822 52%, #f00057 160%);
    border-radius: 26px;
    box-shadow: 0 26px 76px rgba(17, 15, 22, .13);
}

.breakfast-panel::after {
    content: "x10";
    position: absolute;
    right: -12px;
    bottom: -56px;
    color: rgba(255, 255, 255, .06);
    font-size: clamp(110px, 18vw, 230px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.1em;
}

.breakfast-panel > div {
    position: relative;
    z-index: 2;
}

.breakfast-panel p {
    color: rgba(255, 255, 255, .76);
}

.breakfast-copy {
    display: grid;
    gap: 16px;
}

.breakfast-copy .button {
    justify-self: start;
    margin-top: 8px;
}

@media (min-width: 1181px) {
    .main-nav {
        gap: 10px;
    }

    .main-nav > a {
        font-size: 8.8px;
        letter-spacing: .04em;
    }

    .button-small {
        padding: 0 12px;
    }
}

@media (max-width: 900px) {
    .life-purpose-grid,
    .pnl-grid,
    .business-diagnostic-grid,
    .breakfast-panel {
        grid-template-columns: 1fr;
    }

    .life-wake-card {
        min-height: 320px;
    }

    .business-question-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .life-purpose-copy h2,
    .pnl-grid h2,
    .business-diagnostic-grid h2,
    .breakfast-panel h2 {
        font-size: 31px;
    }

    .life-wake-card,
    .breakfast-panel {
        border-radius: 18px;
    }
}

/* Fixed header: keeps the navigation visible while scrolling */
:root {
    --fixed-header-height: 74px;
    --fixed-header-height-scrolled: 66px;
}

html {
    scroll-padding-top: calc(var(--fixed-header-height) + 18px);
}

body {
    padding-top: var(--fixed-header-height);
}

.site-header,
.site-header.scrolled {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transform: translate3d(0, 0, 0);
}

.site-header {
    height: var(--fixed-header-height);
}

.site-header.scrolled {
    height: var(--fixed-header-height-scrolled);
}

body.menu-open .site-header {
    height: 100vh;
}

@media (max-width: 1180px) {
    :root {
        --fixed-header-height: 68px;
        --fixed-header-height-scrolled: 68px;
    }
}
