/* ===========================
   WICKHUNTER SECRETS
   PREMIUM STYLESHEET
=========================== */

:root {

    --bg: #050505;
    --surface: rgba(255,255,255,0.025);
    --surface-hover: rgba(255,255,255,0.045);
    --text: #ffffff;
    --text-soft: #c7c7c7;
    --text-muted: #8a8a8a;
    --line: rgba(255,255,255,0.07);
    --line-strong: rgba(255,255,255,0.16);
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --section-x: 8%;
    --section-y: 170px;
    --max-width: 1500px;
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    min-height: 100vh;
    overflow-x: clip;
   background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* SCROLL PROGRESS */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ffffff;
    z-index: 10000;
    transition: width 0.08s linear;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;

    padding: 18px var(--section-x);

    background: rgba(5,5,5,0.78);
    border-bottom: 1px solid rgba(255,255,255,0.15);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.brand {
    color: var(--text);
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-nav > a:not(.nav-button) {
    position: relative;
    color: #d7d7d7;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.site-nav > a:not(.nav-button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.35s var(--ease-premium);
}

.site-nav > a:not(.nav-button):hover {
    color: #ffffff;
}

.site-nav > a:not(.nav-button):hover::after {
    width: 100%;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: var(--radius-pill);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition:
        transform 0.4s var(--ease-premium),
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.05);
    box-shadow:
        0 14px 34px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.nav-arrow {
    display: inline-block;
    opacity: 0;
    transform: translateX(-6px);
    transition:
        opacity 0.35s ease,
        transform 0.35s var(--ease-premium);
}

.nav-button:hover .nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* SHARED TYPOGRAPHY */

.section-label,
.hero-label {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.78rem;
    font-weight: 600;
}

.section-label {
    margin-bottom: 26px;
}

.section-text {
    max-width: 760px;
    color: var(--text-soft);
    font-size: 1.16rem;
    line-height: 1.95;
}

.card-number,
.hero-card-number {
    color: #777777;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

/* BUTTONS */

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 34px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    transition:
        background 0.4s ease,
        color 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s var(--ease-premium),
        box-shadow 0.4s ease;
}

.primary-button {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

.primary-button:hover {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 45px rgba(255,255,255,0.10);
}

.secondary-button {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.22);
}

.secondary-button:hover {
    background: rgba(255,255,255,0.08);
    border-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(255,255,255,0.05);
}

/* ==========================================
   HERO
========================================== */

.hero {
    width: min(var(--max-width), 100%);
    margin: 0 auto;

    padding: 160px var(--section-x) 60px;

    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: center;

    gap: 80px;
}

.hero-left{

    max-width:760px;

}

.hero-label{

    margin-bottom:28px;

}

.hero h1{

    display:flex;
    flex-direction:column;
    gap:6px;

    margin:0;

    font-size:clamp(4.8rem,7vw,8rem);

    font-weight:900;

    line-height:.88;

    letter-spacing:-0.022em;

}

.hero h1 span{
    display:block;
}

.hero h1 span:nth-child(2){
    margin-bottom:24px;
}

.hero-text{

    max-width:640px;

    margin:42px 0 52px;

    color:var(--text-soft);

    font-size:1.15rem;

    line-height:1.9;

}

.hero-actions{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-right{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding-top:40px;
}

.hero-logo-wrap{
    width:620px;

    margin-left:120px;
    margin-top:-80px;

    animation:floatLogo 7s ease-in-out infinite;
}

.hero-logo-wrap img {
    width: 100%;
    display: block;

    filter:
        brightness(0.62)
        drop-shadow(0 0 35px rgba(255,255,255,.035));

    opacity: 0.8;
}

/* ==========================================
   HERO FEATURES
========================================== */

.hero-features{

    width:min(var(--max-width),100%);

    margin:40px auto 0;

    padding:0 var(--section-x) 100px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.hero-card{

    padding:36px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    transition:.35s ease;

}

.hero-card:hover{

    transform:translateY(-8px);

    border-color:rgba(255,255,255,.16);

    background:rgba(255,255,255,.045);

}

.hero-card h3{

    margin-bottom:16px;

    font-size:1.4rem;

}

.hero-card p{

    color:var(--text-soft);

    line-height:1.8;

}

/* WHY WICKHUNTER */

.about-section {
    position: relative;
    padding: 15px var(--section-x) 125px;
    border-top: 1px solid var(--line);
}

.section-intro {
    width: min(100%, 900px);
    margin: 0 auto;
}

.section-intro h2 {
    max-width: 900px;
    margin-bottom: 38px;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 800;
}

/* =========================
   PRINCIPLES
========================= */

.principles{
    padding:140px var(--section-x) 120px;
    border-top:1px solid var(--line);
}

.principles-hero{
    width:min(1500px,100%);
    margin:0 auto 110px;

    display:grid;
    grid-template-columns:650px 1fr;

    align-items:center;

    gap:100px;
}

.principles-copy{
    max-width:700px;
}

.principles-copy h2{

    margin:18px 0 40px;

    font-size:clamp(4rem,5.6vw,6.3rem);

    line-height:.92;

    letter-spacing:-0.06em;

    font-weight:800;

    max-width:700px;

}

.principles-intro{
    max-width:560px;

    font-size:1.28rem;
    line-height:1.8;
    color:var(--text-muted);
}

.principles-image{

    display:flex;
    justify-content:flex-end;
    align-items:center;

    margin-right:-180px;

    overflow:visible;

}

.knight-image {
    width: 100%;
    max-width: 780px;
    display: block;

    opacity: 1;
    transform: translateX(700px);

    transition:
        transform 2.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.knight-image.knight-enter {
    transform: translateX(0);
}

@keyframes knightLight {
    0%, 100% {
        filter: brightness(0.92) contrast(1.05);
    }

    50% {
        filter: brightness(1.08) contrast(1.12);
    }
}

@keyframes knightFloat{

    0%{
        transform:translateY(0px) scale(1);
    }

    50%{
        transform:translateY(-6px) scale(1.015);
    }

    100%{
        transform:translateY(0px) scale(1);
    }

}

.principles-grid{

    width:min(1400px,100%);
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;

}

.principle-card{

    padding:38px;

    background:var(--surface);

    border:1px solid var(--line);

    border-radius:24px;

    transition:.35s;

}

.principle-card:hover{

    transform:translateY(-8px);

    border-color:rgba(255,255,255,.14);

    background:var(--surface-hover);

}

.principle-card h3{

    margin-bottom:18px;

    font-size:1.65rem;

}

.principle-card p{

    color:var(--text-muted);

    line-height:1.9;

}

@media(max-width:1100px){

    .principles-hero{

        grid-template-columns:1fr;

        text-align:center;

        gap:60px;

    }

    .principles-copy{

        max-width:none;

    }

    .principles-intro{

        margin:auto;

    }

    .principles-grid{

        grid-template-columns:1fr;

    }

}

/* ===========================
   MENTORSHIP
=========================== */

.mentorship {
    padding: 140px var(--section-x) 140px;
    border-top: 1px solid var(--line);
}


/* ===========================
   CONTENT ALIGNMENT
=========================== */

.mentorship > h2,
.mentorship > .section-text,
.mentorship-grid {
    width: min(1400px, 100%);
    margin-left: auto;
    margin-right: auto;
}


/* Section label stays aligned with heading */
.mentorship > .section-label {
    width: min(980px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    transform: none;
}


/* ===========================
   HEADING
=========================== */

.mentorship h2 {
    max-width: 980px;

    margin-top: 18px;
    margin-bottom: 34px;

    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}


/* ===========================
   INTRO TEXT
=========================== */

.mentorship > .section-text {
    max-width: 720px;
    margin-bottom: 76px;
}


/* ===========================
   CARD GRID
=========================== */

.mentorship-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* ===========================
   CARDS
=========================== */

.mentorship-item {
    position: relative;

    padding: 32px 30px;

    background: rgba(255, 255, 255, 0.018);

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;

    overflow: hidden;

    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.5s ease,
        border-color 0.5s ease;
}


/* ===========================
   CARD HOVER
=========================== */

.mentorship-item:hover {
    transform: translateY(-6px);

    background: rgba(255, 255, 255, 0.035);

    border-color: rgba(255, 255, 255, 0.18);
}


/* ===========================
   CARD TITLES
=========================== */

.mentorship-item h3 {
    margin: 0 0 14px;

    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;

    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}


/* ===========================
   CARD TEXT
=========================== */

.mentorship-item p {
    margin: 0;

    color: var(--text-muted);

    font-size: 0.95rem;
    line-height: 1.7;

    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.5s ease;
}


/* ===========================
   INTERNAL HOVER MOVEMENT
=========================== */

.mentorship-item:hover h3 {
    transform: translateX(4px);
}

.mentorship-item:hover p {
    transform: translateX(4px);
    color: rgba(255, 255, 255, 0.72);
}


/* Hide unused card numbers */
.card-number {
    display: none;
}

.mentorship > .section-label,
.mentorship > h2,
.mentorship > .section-text {
    text-align: center;
}S

.mentorship-item {
    position: relative;
    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.mentorship-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.035);
}

.mentorship-item h3,
.mentorship-item p {
    transition: transform 0.35s ease;
}

.mentorship-item:hover h3,
.mentorship-item:hover p {
    transform: translateY(-3px);
}

.mentorship-item {
    position: relative;
    overflow: hidden;

    min-height: 180px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}
/* ===========================
   BRAND IMAGE
=========================== */

.brand-image-section{
    padding:120px var(--section-x);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

.brand-image-wrap{
    width:min(1500px,92vw);
    margin:0 auto;
    overflow:hidden;
    border-radius:18px;
}

.brand-image-wrap img{
    display:block;
    width:100%;
    height:auto;
    object-fit:cover;
    transition:transform .8s ease;
}

.brand-image-wrap:hover img{
    transform:scale(1.03);
}

/* EDUCATION */

.education{
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
    align-items:center;
    gap:clamp(70px,8vw,150px);

    padding: 170px var(--section-x) 80px;

    border-top:1px solid rgba(255,255,255,.08);
}

.education-content{
    max-width:820px;
}

.education h2{
    max-width:900px;
    margin:0 0 36px;
    font-size:clamp(3rem,5vw,4.8rem);
    line-height:1.05;
    letter-spacing:-0.04em;
}

.education-visual{
    display:flex;
    align-items:center;
}

.education-visual{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:22px;
}

.education-card{
    display:flex;
    align-items:center;
    gap:28px;

    width:100%;
    max-width:700px;

    padding:34px;

    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;

    transition:.4s ease;
}

.education-card:hover{

    transform:translateY(-6px);

    border-color:rgba(255,255,255,.18);

    box-shadow:0 20px 50px rgba(255,255,255,.05);

}

.education-icon{

    width:80px;
    height:80px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.10);

    background:rgba(255,255,255,.03);

    flex-shrink:0;
}

.education-icon svg{

    width:34px;
    height:34px;

    color:#ffffff;
    stroke-width:1.8;

}

.education-card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.045);
    border-color:rgba(255,255,255,.15);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.education-card h3{
    margin:0 0 12px;
    font-size:1.35rem;
    font-weight:700;
}

.education-card p{
    margin:0;
    color:var(--text-soft);
    line-height:1.8;
}

/* BRAND STATEMENT */

.brand-statement{
    padding:120px var(--section-x) 180px;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    text-align:center;
}

.brand-content{
    max-width:900px;
    margin:0 auto;
}

.brand-statement h2{
    margin:28px 0;
    font-size:clamp(3.2rem,6vw,5.5rem);
    line-height:1.02;
    letter-spacing:-.05em;
}

.brand-text{
    max-width:620px;
    margin:0 auto;
    color:var(--text-soft);
    font-size:1.2rem;
    line-height:1.8;
}

/* FAQ */

.faq {
    padding: var(--section-y) var(--section-x);
    border-top: 1px solid var(--line);
}

.faq h2 {
    max-width: 900px;
    margin: 0 0 70px;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 22px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.018);
    transition:
        transform 0.4s var(--ease-premium),
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 14px 35px rgba(0,0,0,0.28);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 30px 34px;
    border: none;
    background: transparent;
    color: #ffffff;
    text-align: left;
    font: inherit;
    font-size: 1.18rem;
    font-weight: 700;
    cursor: pointer;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 1.3rem;
    font-weight: 400;
    transition:
        transform 0.4s var(--ease-premium),
        opacity 0.4s ease;
}

.faq-item:hover .faq-icon,
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-premium);
}

.faq-answer p {
    padding: 0 34px 30px;
    color: #b4b4b4;
    font-size: 1.02rem;
    line-height: 1.85;
}

/* APPLY */

.apply {
    position: relative;
    padding: 175px var(--section-x) 180px;
    border-top: 1px solid var(--line);
    text-align: center;
    overflow: hidden;
}

.apply::before {
    content: "";
    position: absolute;
    top: 22%;
    left: 50%;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255,255,255,0.045),
        rgba(255,255,255,0.012) 42%,
        transparent 72%
    );
    transform: translateX(-50%);
    pointer-events: none;
}

.apply > * {
    position: relative;
    z-index: 1;
}

.apply-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.apply-logo img {
    width: 110px;
    height: auto;
    opacity: 0.84;
    transition:
        transform 0.45s var(--ease-premium),
        opacity 0.45s ease;
}

.apply-logo img:hover {
    transform: scale(1.045);
    opacity: 1;
}

.apply h2 {
    max-width: 960px;
    margin: 0 auto 34px;
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.apply-intro {
    max-width: 680px;
    margin: 0 auto;
    color: #bcbcbc;
    font-size: 1.12rem;
    line-height: 1.9;
}

.apply-price {
    margin: 92px 0 58px;
}

.apply-price h3 {
    margin-bottom: 10px;
    font-size: clamp(3.8rem, 6vw, 5.6rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.apply-price > p {
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 1rem;
}

.payment-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.payment-options span {
    padding: 12px 22px;
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.025);
    color: #d2d2d2;
    font-size: 0.92rem;
    transition:
        transform 0.35s var(--ease-premium),
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.payment-options span:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.apply-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.apply .primary-button {
    min-width: 250px;
    padding: 18px 40px;
}

.apply-note {
    color: #6f6f6f;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* FOOTER */

.footer {
    padding: 110px var(--section-x) 56px;
    border-top: 1px solid var(--line);
    background:
        linear-gradient(to bottom, rgba(255,255,255,0.015), transparent 18%);
    text-align: center;
}

.footer-top h2 {
    margin-bottom: 20px;
    font-size: 2.15rem;
    letter-spacing: -0.03em;
}

.footer-top p {
    max-width: 650px;
    margin: 0 auto 60px;
    color: #b8b8b8;
    font-size: 1.05rem;
    line-height: 1.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 38px;
    margin-bottom: 52px;
}

.footer-links a {
    position: relative;
    color: #8e8e8e;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.35s ease;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.35s var(--ease-premium);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-divider {
    width: 100%;
    max-width: 980px;
    height: 1px;
    margin: 0 auto 30px;
    background: rgba(255,255,255,0.06);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}

/* SCROLL REVEAL */

.hidden {
    opacity: 0;
    transform: translateY(80px);
    transition:
        opacity 2.2s var(--ease-premium),
        transform 2.2s var(--ease-premium);
    transition-delay: 0.25s;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.card-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s var(--ease-premium),
        transform 0.8s var(--ease-premium);
}

.card-show {
    opacity: 1;
    transform: translateY(0);
}

/* ANIMATIONS */

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    :root {
        --section-x: 6%;
        --section-y: 145px;
    }

    .hero {
        grid-template-columns: 1fr 0.82fr;
        gap: 60px;
    }

    .hero-visual {
        min-height: 600px;
    }

    .principles-grid,
    .mentorship-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .education {
        gap: 70px;
    }
}

@media (max-width: 950px) {
    .site-header {
        padding: 16px 5%;
    }

    .site-nav {
        gap: 18px;
    }

    .site-nav > a:not(.nav-button) {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 110px;
    }

  .hero-content{
    max-width:760px;
}

    .hero-visual {
        min-height: auto;
        margin-top: 30px;
    }

    .hero-card {
        width: min(100%, 520px);
    }

    .hero-card-one,
    .hero-card-two,
    .hero-card-three {
        transform: none;
    }

    .hero-card-one:hover,
    .hero-card-two:hover,
    .hero-card-three:hover {
        transform: translateY(-7px);
    }

    .principles-grid,
    .mentorship-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .education {
        grid-template-columns: 1fr;
    }

.education-visual {
    min-height: auto;
}

}

@media (max-width: 650px) {
    :root {
        --section-x: 5%;
        --section-y: 115px;
    }

    .brand {
        font-size: 1.05rem;
    }

    .nav-button {
        padding: 10px 18px;
        font-size: 0.84rem;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 90px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 16vw, 5.2rem);
    }

    .hero-text {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-logo-wrap {
        width: 240px;
        height: 200px;
    }

    .hero-logo-wrap img {
        width: 190px;
    }

    .hero-visual::before {
        width: 360px;
        height: 360px;
    }

    .hero-visual::after {
        width: 270px;
        height: 270px;
    }

    .hero-card {
        padding: 22px;
    }

    .about-section {
        padding-top: 110px;
        padding-bottom: 95px;
    }

    .section-intro h2,
    .principles h2,
    .mentorship h2,
    .education h2,
    .faq h2,
    .apply h2 {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .section-text {
        font-size: 1.04rem;
    }

    .principle-card,
    .mentorship-item {
        min-height: 0;
        padding: 30px;
    }

    .education-visual {
        padding: 36px;
    }

    .faq-question {
        padding: 24px 22px;
        font-size: 1.05rem;
    }

    .faq-answer p {
        padding: 0 22px 24px;
    }

    .apply {
        padding-top: 125px;
        padding-bottom: 130px;
    }

    .apply-price {
        margin-top: 72px;
    }

    .footer {
        padding-top: 90px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
    }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.principles-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.principles-left {
    flex: 1;
}

.principles-right {
    flex: 0 0 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}



html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* FIXED BACKGROUND WATERMARK */

body > .site-watermark {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;

    width: 1200px !important;
    max-width: 85vw !important;
    height: auto !important;

    transform: translate(-50%, -50%) !important;

    z-index: 0 !important;
    pointer-events: none !important;
    opacity: 0.04 !important;
}

body > .site-watermark img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
}

main,
footer {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(42px, 12vw, 58px);
        line-height: 0.94;
        letter-spacing: -2px;
        max-width: 100%;
    }

    .hero {
    padding-top: 120px;
}

.hero-cards,
.hero-features {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

.hero-card,
.hero-feature {
    width: 100%;
    max-width: 100%;
}
}
@media (max-width: 768px) {

    .knight-image {
        width: 90%;
        max-width: 420px;
        margin: 0 auto;
        transform: translateX(-90px) !important;
    }

    .knight-image.knight-enter {
        transform: translateX(-90px) !important;
    }

} 
/* FOOTER LEGAL LINKS */

.footer-legal {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px 22px;
    margin-top: 0px;
}

.footer-legal a {
    color: #777777;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-legal {
        gap: 10px 16px;
    }
}

/* =========================================
   LEGAL PAGES
========================================= */

.legal-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    padding: 20px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(5, 5, 5, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.legal-brand {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.legal-back {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;

    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;

    transition: 0.25s ease;
}

.legal-back:hover {
    background: #ffffff;
    color: #050505;
}

.legal-page {
    width: min(900px, 88%);
    margin: 0 auto;
    padding: 110px 0 140px;
}

.legal-container {
    width: 100%;
}

.legal-eyebrow {
    margin-bottom: 22px;

    color: #8d8d8d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
}

.legal-page h1 {
    margin-bottom: 20px;

    color: #ffffff;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.95;
    letter-spacing: -3.5px;
    font-weight: 900;
}

.legal-updated {
    padding-bottom: 40px;
    margin-bottom: 50px;

    color: #777777;
    font-size: 13px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.legal-content {
    color: #a5a5a5;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {

    .legal-header {
        padding: 18px 20px;
    }

    .legal-brand {
        font-size: 14px;
    }

    .legal-back {
        padding: 10px 15px;
        font-size: 12px;
    }

    .legal-page {
        width: calc(100% - 40px);
        padding: 70px 0 90px;
    }

    .legal-page h1 {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -2.5px;
    }

    .legal-updated {
        padding-bottom: 30px;
        margin-bottom: 40px;
    }
}
.legal-section {
    margin-bottom: 52px;
}

.legal-section h2 {
    margin-bottom: 20px;

    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.legal-section p {
    margin-bottom: 18px;

    color: #9b9b9b;
    font-size: 15px;
    line-height: 1.8;
}

.legal-section p:last-child {
    margin-bottom: 0;
}


/* FINAL CLEAN OVERRIDES */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.knight-image {
    width: 100%;
    max-width: 780px;
    height: auto;
    display: block;
}
