/* ======================== RESET & TOKENS ======================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Color Palette — Nature · Mystical · High-end */
    --deep-forest:   #0c2714;
    --forest:        #163b20;
    --forest-mid:    #1e4f2b;
    --moss:          #2a6338;
    --bark:          #5c3618;
    --earth:         #7a4a28;
    --cream:         #f5efe3;
    --cream-dark:    #e8dcc8;
    --gold:          #c9a84c;
    --gold-light:    #e8c97a;
    --gold-glow:     rgba(201,168,76,0.25);
    --text-main:     #f0e8d8;
    --text-muted:    #a59e8e;
    --glass-bg:      rgba(12, 39, 20, 0.55);
    --glass-border:  rgba(201,168,76,0.18);

    /* Type */
    --font-display:  'Playfair Display', Georgia, serif;
    --font-caps:     'Inter', system-ui, sans-serif;
    --font-body:     'Inter', system-ui, sans-serif;

    /* Layout */
    --max-w: 1140px;
    --section-py: 110px;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--deep-forest);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ======================== WRAP ======================== */
.wrap {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 24px;
    position: relative;
    z-index: 2;
}

/* ======================== SECTION COMMON ======================== */
.section { padding: var(--section-py) 0; position: relative; overflow: hidden; }

.section-badge {
    display: inline-block;
    font-family: var(--font-caps);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--glass-border);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 22px;
    background: rgba(201,168,76,0.06);
}
.section-badge.light { border-color: rgba(201,168,76,0.4); color: var(--gold-light); }

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 24px;
}
.section-heading em { font-style: italic; color: var(--gold-light); }
.section-heading.light { color: #fff; }

.heading-keep {
    white-space: nowrap;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 44px;
}
.section-sub.light { color: rgba(255,255,255,0.72); }

/* Leaf decoration */
.section-leaf-deco {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 500px;
    background-image: url('cam giac thien nhien.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.09;
    border-radius: 200px;
    pointer-events: none;
    filter: saturate(0.6);
}
.section-leaf-deco.left  { left: -100px; }
.section-leaf-deco.right { right: -100px; }

/* ======================== ANIMATIONS ======================== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.85s cubic-bezier(.22,.61,.36,1), transform 0.85s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.60s; }
.delay-5 { transition-delay: 0.75s; }

/* ======================== BUTTONS ======================== */
.btn-gold {
    display: inline-block;
    font-family: var(--font-caps);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--deep-forest);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    padding: 15px 38px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 28px rgba(201,168,76,0.3);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(201,168,76,0.5);
    background: linear-gradient(135deg, #f0d98a, var(--gold-light));
}
.btn-gold.btn-large { font-size: 0.95rem; padding: 18px 52px; width: 100%; text-align: center; margin-top: 8px; }

.btn-ghost {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--cream-dark);
    border-bottom: 1px solid rgba(245,239,227,0.35);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ======================== NAVBAR ======================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 24px 40px;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(10, 30, 14, 0.88);
    backdrop-filter: blur(20px);
    padding: 16px 40px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
}
.logo-avatar {
    width: 44px;
    height: 44px;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.logo-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.logo-title {
    font-family: var(--font-caps);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #94b182;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--cream-dark);
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
    font-family: var(--font-caps);
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 9px 22px;
    border-radius: 100px;
    transition: all 0.3s;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--deep-forest);
}

/* ======================== HERO ======================== */
.hero {
    min-height: 92svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 24px 48px;
}

.hero-video-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: 
        radial-gradient(ellipse 80% 70% at 50% 40%, rgba(12,39,20,0.5) 0%, transparent 100%),
        linear-gradient(to bottom, rgba(8,25,12,0.65) 0%, rgba(8,25,12,0.88) 75%, var(--deep-forest) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.hero-body {
    position: relative;
    z-index: 3;
    max-width: 1120px;
    margin-inline: auto;
}

/* Ornament Line */
.ornament-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 46px;
}
.orn-star { color: var(--gold); font-size: 1.04rem; }
.orn-line { flex: 1; max-width: 104px; height: 1px; background: linear-gradient(to right, transparent, var(--gold-glow), var(--gold)); opacity: 0.6; }
.orn-line:last-of-type { background: linear-gradient(to left, transparent, var(--gold-glow), var(--gold)); }
.orn-text {
    font-family: var(--font-caps);
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: var(--gold);
    white-space: nowrap;
}

.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(5.85rem, 13vw, 11.7rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 26px;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero-heading em {
    display: block;
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.hero-sub {
    font-family: var(--font-caps);
    font-size: 1.04rem;
    letter-spacing: 5px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-bottom: 36px;
}
.hero-divider span { height: 1px; width: 156px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.hero-divider .diamond { color: var(--gold); font-size: 0.91rem; }

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 44px;
}
.hero-desc strong { color: var(--cream-dark); font-weight: 500; }

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-follow {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 48px 24px 24px;
    background: var(--deep-forest);
    text-align: center;
}

.coach-section {
    background: var(--deep-forest);
    padding-top: 80px;
    padding-bottom: 90px;
}

.coach-wrap {
    display: grid;
    grid-template-columns: minmax(320px, 400px) minmax(420px, 580px);
    gap: 60px;
    justify-content: center;
    align-items: center;
}

.coach-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    max-width: 580px;
}

.coach-media {
    height: auto;
}

.coach-media .coach-photo {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.18);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
    height: 100%;
}

.coach-media .coach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%; /* Keeps the face visible when stretching */
    display: block;
}

.coach-name-heading {
    margin-bottom: 24px;
}

.coach-title {
    display: block;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500;
    margin-bottom: 4px;
    font-style: normal;
    text-transform: uppercase;
}

.coach-name-heading em {
    display: block;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem); /* Reduced to fit in container */
    line-height: 1.1;
    color: var(--gold-light);
    white-space: nowrap; /* Forces text to stay on one line */
}

.coach-copy .section-heading {
    margin-bottom: 20px;
}

.coach-highlight {
    margin-top: 10px;
}

.coach-copy .section-sub {
    max-width: 600px;
    margin-bottom: 18px;
    color: rgba(245, 239, 227, 0.78);
}

.coach-note {
    font-size: 1rem;
    color: rgba(245, 239, 227, 0.72);
    margin-bottom: 24px;
    max-width: 620px;
}

.coach-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.coach-pill-group span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.16);
    color: rgba(245, 239, 227, 0.92);
    font-size: 0.85rem;
}

.coach-highlight {
    margin-top: 28px;
    padding: 40px 30px;
    border-radius: 24px;
    background-image: url('TRIETLYDONGHANH2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.coach-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 25, 14, 0.75);
    border-radius: 24px;
    z-index: 0;
}

.coach-highlight > * {
    position: relative;
    z-index: 1;
}

.coach-philosophy-badge {
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 168, 76, 0.25);
    color: rgba(201, 168, 76, 0.9);
}

.coach-philosophy-heading {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--cream);
    margin-bottom: 24px;
    line-height: 1.15;
    max-width: 100%;
}

.coach-philosophy-heading em {
    font-style: italic;
    color: var(--gold-light);
}

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

.coach-value-card {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.coach-value-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.coach-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.2);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.coach-value-card h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--cream);
    margin: 4px 0 6px 0;
    line-height: 1.2;
    width: 100%;
}

.coach-value-card p {
    color: rgba(245, 239, 227, 0.7);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
    width: 100%;
}

@media (max-width: 960px) {
    .coach-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-family: var(--font-caps);
}
.scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ======================== PHILOSOPHY SECTION (GLASSMORPHISM) ======================== */
.philosophy-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.phi-bg {
    position: absolute;
    inset: 0;
    background-image: url('TRIETLYDONGHANH.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.phi-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,39,20,0.88) 0%, rgba(12,39,20,0.65) 100%);
    z-index: 1;
}

.phi-content-wrap {
    position: relative;
    z-index: 2;
}

.phi-main-heading {
    text-align: center;
    margin-bottom: 70px;
}

.phi-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.2;
    margin-top: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.phi-heading em {
    font-style: italic;
    color: var(--gold-light);
}

.phi-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.phi-glass-card {
    background: rgba(12, 39, 20, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.phi-glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(12, 39, 20, 0.55);
}

.phi-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.phi-card-icon svg {
    width: 28px;
    height: 28px;
}

.phi-glass-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.phi-glass-card p {
    font-size: 0.9rem;
    color: rgba(245, 239, 227, 0.75);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .phi-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 800px;
    }
}

@media (max-width: 600px) {
    .phi-grid-4 {
        grid-template-columns: 1fr;
    }
    .phi-glass-card {
        padding: 30px 24px;
    }
}

/* ======================== PAIN SECTION ======================== */
.pain-section {
    background: linear-gradient(to bottom, var(--deep-forest), var(--forest));
    padding-top: 90px;
    padding-bottom: 130px;
}

.pain-header {
    margin-bottom: 60px;
    max-width: 100%; /* Let it expand fully to allow single-line text */
}
.pain-header .section-badge { margin: 0 0 24px 0; display: inline-block; }
.pain-header .section-heading,
.pain-header .section-sub { text-align: left; margin-inline: 0; max-width: 100%; }

/* Grid: three columns, align to bottom so stagger works */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: end;
}

/* Base card — tall portrait */
.pain-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 460px;
    border: 1px solid rgba(201,168,76,0.18);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Middle card is taller and elevated */
.pain-card--mid {
    height: 540px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.35);
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 50px rgba(201,168,76,0.18);
}

/* Background image fills the card */
.pain-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}
.pain-card:hover .pain-card-bg { transform: scale(1.05); }

/* Gradient overlay: dark at bottom for text legibility */
.pain-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8, 25, 14, 0.25) 0%,
        rgba(8, 25, 14, 0.55) 45%,
        rgba(5, 18, 10, 0.92) 100%
    );
    z-index: 1;
}

/* Content sits at the bottom of the card */
.pain-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    z-index: 2;
}

.pain-icon { margin-bottom: 18px; }
.pain-icon svg {
    width: 40px;
    height: 40px;
    color: var(--gold);
    filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
    transition: transform 0.4s ease, filter 0.4s ease;
}
.pain-card:hover .pain-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 16px rgba(201,168,76,0.7));
}

.pain-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--cream);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.25;
}

.pain-card-content p {
    font-size: 0.95rem;
    color: rgba(245,239,227,0.72);
    line-height: 1.7;
}

/* Gold top-line accent on middle card */
.pain-card--mid::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    z-index: 3;
}


/* ======================== OUTLINEBOOK SECTION (UYC Framework) ======================== */
.outlinebook-section {
    background:
        radial-gradient(circle at 24% 18%, rgba(201, 168, 76, 0.12), transparent 30%),
        radial-gradient(circle at 74% 64%, rgba(42, 99, 56, 0.22), transparent 34%),
        linear-gradient(135deg, #071f10 0%, var(--deep-forest) 45%, #0f3219 100%);
    color: var(--cream);
    padding: 0;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.outlinebook-wrap {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
    max-width: 1400px;
    margin: 0 auto;
    min-height: 860px;
}

.outlinebook-left {
    border-right: 1px solid rgba(201, 168, 76, 0.16);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 44px;
}

.outlinebook-quote-wrapper {
    padding: 0 0 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.16);
}

.outlinebook-quote {
    text-align: right;
    font-family: var(--font-body);
}

.outlinebook-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.6;
}

.outlinebook-quote .quote-author {
    font-family: var(--font-caps);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--gold-light);
}

/* UYC Book Card — dark green with image background */
.uyc-book-card {
    position: relative;
    flex: 1;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    min-height: 560px;
    background-image: url('UYC.webp');
    background-size: cover;
    background-position: center 52%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(201, 168, 76, 0.22);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.uyc-book-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 18, 10, 0.52) 0%, rgba(5, 18, 10, 0.72) 42%, rgba(5, 18, 10, 0.93) 100%),
        radial-gradient(circle at 50% 78%, rgba(201, 168, 76, 0.14), transparent 42%);
    border-radius: 20px;
    z-index: 1;
}

.uyc-book-content {
    position: relative;
    z-index: 2;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.uyc-book-badge {
    font-family: var(--font-caps);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.uyc-book-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 8px;
}

.uyc-book-sub {
    font-size: 0.9rem;
    color: rgba(245, 239, 227, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.uyc-highlight-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
}

.uyc-pill-letter {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--deep-forest);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.uyc-pill-text {
    display: flex;
    flex-direction: column;
}

.uyc-pill-label {
    font-family: var(--font-caps);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.uyc-pill-text strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
}

.uyc-highlight-desc {
    font-size: 0.88rem;
    color: rgba(245, 239, 227, 0.75);
    font-style: italic;
    line-height: 1.4;
}

.uyc-book-bullets {
    list-style: none;
    padding: 0;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.uyc-book-bullets li {
    position: relative;
    padding-left: 18px;
    font-size: 0.88rem;
    color: rgba(245, 239, 227, 0.8);
    line-height: 1.4;
}

.uyc-book-bullets li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.6rem;
    color: var(--gold);
}

.outlinebook-right {
    padding: 92px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.outlinebook-header {
    text-align: left;
    margin-bottom: 60px;
}

.outlinebook-badge {
    font-family: var(--font-caps);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.outlinebook-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cream);
}

.outlinebook-sub {
    font-size: 1.05rem;
    color: rgba(245, 239, 227, 0.74);
    line-height: 1.6;
    max-width: 500px;
}

.outlinebook-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.outlinebook-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0 4px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.ob-item-content {
    flex: 1;
    padding-right: 40px;
}

.ob-item-content h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(232, 201, 122, 0.65);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
}

.ob-item-content h4 strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
    text-transform: none;
    letter-spacing: normal;
    margin-top: 4px;
    font-weight: 500;
}

.ob-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(245, 239, 227, 0.76);
    margin-bottom: 16px;
    font-style: italic;
}

.ob-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}




.ob-bullets li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    color: rgba(245, 239, 227, 0.82);
    margin-bottom: 10px;
    line-height: 1.5;
}

.ob-bullets li::before {
    content: "＊";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold);
}

.ob-item-number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1;
    font-weight: 300;
    flex-shrink: 0;
    text-shadow: 0 0 34px rgba(201, 168, 76, 0.22);
}

@media (max-width: 1024px) {
    .outlinebook-wrap {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .outlinebook-left {
        border-right: none;
        border-bottom: 1px solid rgba(201, 168, 76, 0.14);
        padding: 58px 24px 34px;
    }
    .outlinebook-quote-wrapper {
        padding: 0 0 24px;
        margin-bottom: 24px;
    }
    .outlinebook-right {
        padding: 60px 24px;
    }
    .uyc-book-card {
        min-height: 520px;
        max-width: 520px;
        width: 100%;
        margin-inline: auto;
    }
    .ob-item-content {
        padding-right: 20px;
    }
}

/* ======================== UYC FRAMEWORK — PREMIUM GRID ======================== */
.uyc-framework-section {
    padding: 120px 0;
    background: var(--deep-forest);
    background-image: url('UYC BACKGROUND.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Dark overlay to make cards stand out */
.uyc-framework-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 26, 14, 0.5);
    z-index: 1;
}

.uyc-framework-wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.uyc-framework-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.uyc-framework-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.uyc-framework-sub {
    font-size: 1.1rem;
    color: rgba(245, 239, 227, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    text-wrap: pretty;
}

.uyc-framework-quote {
    color: var(--gold-light);
    font-style: italic;
    font-size: 1rem;
}

.uyc-quote-br {
    display: none;
}

.uyc-quote-author {
    font-style: normal;
    font-family: var(--font-caps);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 239, 227, 0.5);
    margin-left: 10px;
}

/* Grid Layout */
.uyc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
    padding-bottom: 40px; /* Space for timeline track */
    max-width: 1140px;
    margin: 0 auto;
}

/* Timeline Track Line */
.uyc-timeline-track-line {
    position: absolute;
    bottom: 12px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(201,168,76,0.1), var(--gold), rgba(201,168,76,0.1));
    z-index: 1;
}

/* Cards (Glass Monoliths) */
.uyc-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    min-height: 580px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.uyc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 168, 76, 0.2);
}

.uyc-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.85);
}

.uyc-card:hover .uyc-card-bg {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Subtle overlay on the card background to tie things together */
.uyc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,35,18,0.1) 0%, rgba(7,26,14,0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Specific Card Backgrounds */
.uyc-card-u .uyc-card-bg { background-image: url('U.webp'); }
.uyc-card-y .uyc-card-bg { background-image: url('Y.jpg'); }
.uyc-card-c .uyc-card-bg { background-image: url('C.webp'); }

/* Giant Glowing Text in the center of the monolith */
.uyc-card-glow-text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 240, 200, 0.8), 0 0 40px rgba(255, 240, 200, 0.6), 0 0 60px rgba(201, 168, 76, 0.8);
    z-index: 3;
    pointer-events: none;
}

/* Frosted glass box containing text */
.uyc-card-content-glass {
    position: relative;
    z-index: 4;
    margin: 16px;
    padding: 24px;
    background: rgba(8, 28, 16, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.25);
}

/* Glowing title inside the box */
.glow-title {
    color: var(--cream);
    text-shadow: 0 0 10px rgba(201, 168, 76, 0.6), 0 0 20px rgba(201, 168, 76, 0.4);
}

.uyc-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.uyc-card-kicker {
    font-family: var(--font-caps);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.uyc-card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.2;
}

.uyc-card-desc {
    font-size: 0.95rem;
    color: rgba(245, 239, 227, 0.7);
    line-height: 1.5;
    margin-bottom: 20px;
}

.uyc-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.uyc-card-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.85rem;
    color: rgba(245, 239, 227, 0.8);
    line-height: 1.4;
}

.uyc-card-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.6rem;
    color: var(--gold-light);
}

/* Card Timeline Footer */
.uyc-card-timeline {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-bottom: 8px;
}

.uyc-timeline-dot {
    width: 12px;
    height: 12px;
    background: rgba(12, 39, 20, 0.8);
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: relative;
    z-index: 3;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.uyc-card:hover .uyc-timeline-dot {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

.uyc-timeline-dot.active {
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
}

.uyc-timeline-label {
    font-family: var(--font-caps);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245, 239, 227, 0.6);
}

@media (max-width: 1024px) {
    .uyc-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }
    .uyc-timeline-track-line {
        display: none;
    }
}

@media (max-width: 600px) {
    .uyc-grid {
        grid-template-columns: 1fr;
    }
}


/* ======================== METRICS SECTION ======================== */
.metrics-section {
    background: var(--deep-forest);
    text-align: center;
    padding: 96px 0 120px;
}

.metrics-row {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr) minmax(0, 0.92fr);
    align-items: end;
    justify-content: center;
    gap: 16px;
    max-width: 1180px;
    margin-inline: auto;
}

.metric-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
    padding: 180px 42px 54px;
    text-align: center;
    background: #061c0d;
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 260px 260px 0 0;
    box-shadow: inset 0 0 80px rgba(4,20,9,0.85), 0 24px 80px rgba(0,0,0,0.28);
}
.metric-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.metric-arch-left .metric-video { object-position: left center; }
.metric-arch-right .metric-video { object-position: right center; }
.metric-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(232,201,122,0.18), transparent 34%),
        linear-gradient(to bottom, rgba(5,18,10,0.2) 0%, rgba(5,18,10,0.68) 48%, rgba(5,18,10,0.94) 100%);
    z-index: 1;
}
.metric-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(245,239,227,0.05);
    pointer-events: none;
    z-index: 2;
}
.metric-arch-center {
    min-height: 500px;
    padding-bottom: 62px;
}
.metric-num,
.metric-title,
.metric-item p {
    position: relative;
    z-index: 3;
}
.metric-num {
    font-family: var(--font-display);
    font-size: clamp(4.6rem, 8vw, 8rem);
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 38px rgba(201,168,76,0.48), 0 6px 28px rgba(0,0,0,0.55);
}
.metric-num span { font-size: 0.45em; vertical-align: top; margin-top: 0.3em; display: inline-block; }
.metric-title {
    font-family: var(--font-caps);
    font-size: clamp(1.05rem, 1.55vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 2.5px;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.25;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.metric-item p { font-size: 0.95rem; color: var(--text-muted); max-width: 280px; margin-inline: auto; }

/* ======================== ROADMAP SECTION ======================== */
/* ======================== ROADMAP SECTION ======================== */
.roadmap-section {
    background:
        radial-gradient(circle at 22% 16%, rgba(201, 168, 76, 0.08), transparent 26%),
        radial-gradient(circle at 80% 72%, rgba(42, 99, 56, 0.18), transparent 34%),
        var(--deep-forest);
    overflow: visible;
}

.roadmap-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.roadmap-main-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--cream);
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.roadmap-intro {
    font-size: 1.05rem;
    color: rgba(245, 239, 227, 0.7);
}

.roadmap-scroll-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 18px;
    color: var(--gold-light);
}

.roadmap-hint-gesture {
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-hint-swipe {
    gap: 8px;
}

.roadmap-hint-chevron {
    font-size: 1.25rem;
    line-height: 1;
    opacity: 0.45;
    font-family: var(--font-display);
}

.roadmap-hint-chevron--left {
    animation: roadmapChevronLeft 1.8s ease-in-out infinite;
}

.roadmap-hint-chevron--right {
    animation: roadmapChevronRight 1.8s ease-in-out infinite;
}

.roadmap-hint-swipe-track {
    position: relative;
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: rgba(232, 201, 122, 0.22);
}

.roadmap-hint-swipe-thumb {
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 14px rgba(232, 201, 122, 0.55);
    animation: roadmapSwipeThumb 1.8s ease-in-out infinite;
}

.roadmap-hint-sep {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, transparent, rgba(232, 201, 122, 0.45), transparent);
}

.roadmap-hint-tap-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.roadmap-hint-tap-icon svg {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 2;
    animation: roadmapTapBounce 1.8s ease-in-out infinite;
}

.roadmap-hint-tap-ring {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1px solid rgba(232, 201, 122, 0.55);
    animation: roadmapTapRing 1.8s ease-out infinite;
}

.roadmap-hint-tap-ring--delay {
    animation-delay: 0.9s;
}

@keyframes roadmapSwipeThumb {
    0%, 100% { left: 0; transform: translateX(0); }
    50% { left: 100%; transform: translateX(-100%); }
}

@keyframes roadmapChevronLeft {
    0%, 100% { opacity: 0.35; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(-3px); }
}

@keyframes roadmapChevronRight {
    0%, 100% { opacity: 0.35; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(3px); }
}

@keyframes roadmapTapBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(2px); }
}

@keyframes roadmapTapRing {
    0% { transform: scale(0.65); opacity: 0.85; }
    100% { transform: scale(1.35); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .roadmap-hint-chevron--left,
    .roadmap-hint-chevron--right,
    .roadmap-hint-swipe-thumb,
    .roadmap-hint-tap-icon svg,
    .roadmap-hint-tap-ring {
        animation: none;
    }

    .roadmap-hint-chevron--left,
    .roadmap-hint-chevron--right {
        opacity: 0.75;
    }
}

.roadmap-phases {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 18px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 34px 24px 46px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 168, 76, 0.55) rgba(255, 255, 255, 0.05);
    perspective: 1200px;
}

.roadmap-phases::-webkit-scrollbar {
    height: 8px;
}

.roadmap-phases::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
}

.roadmap-phases::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.55);
    border-radius: 99px;
}

.phase-card {
    --phase-cover: url('IMG PHASE 1.jpg');
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(to top, rgba(5, 18, 10, 0.96) 0%, rgba(5, 18, 10, 0.72) 42%, rgba(5, 18, 10, 0.18) 100%),
        var(--phase-cover);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(245, 239, 227, 0.16);
    border-radius: 26px;
    padding: 24px;
    display: flex;
    flex: 0 0 236px;
    min-width: 236px;
    height: 390px;
    scroll-snap-align: center;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    cursor: pointer;
    outline: none;
    transform-origin: center;
    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        flex-basis 0.52s cubic-bezier(.2,.8,.2,1),
        min-width 0.52s cubic-bezier(.2,.8,.2,1),
        border-color 0.35s ease,
        box-shadow 0.45s ease,
        filter 0.35s ease;
    will-change: transform;
}

.phase-card:nth-child(2) { --phase-cover: url('IMG PHASE 2.jpg'); }
.phase-card:nth-child(3) { --phase-cover: url('IMG PHASE 3.jpg'); }
.phase-card:nth-child(4) { --phase-cover: url('IMG PHASE 4.jpg'); }

.phase-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background:
        linear-gradient(120deg, transparent 0%, rgba(232, 201, 122, 0.22) 42%, transparent 64%);
    opacity: 0;
    transform: translateX(-42%);
    transition: opacity 0.3s ease, transform 0.75s ease;
    z-index: -1;
}

.phase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 25%, rgba(232, 201, 122, 0.18), transparent 35%),
        linear-gradient(to top, rgba(5, 18, 10, 0.98), transparent 62%);
    z-index: -1;
    transition: opacity 0.35s ease;
}

.phase-card:hover,
.phase-card:focus-visible,
.phase-card.is-expanded {
    z-index: 5;
    flex-basis: 440px;
    min-width: 440px;
    border-color: rgba(201, 168, 76, 0.58);
    transform: translateY(-18px) scale(1.04) rotateY(0deg);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.42),
        0 0 52px rgba(201, 168, 76, 0.16);
    filter: saturate(1.08) brightness(1.08);
}

.phase-card.phase-bonus:hover,
.phase-card.phase-bonus:focus-visible,
.phase-card.phase-bonus.is-expanded {
    flex-basis: 300px;
    min-width: 300px;
}

.phase-card:hover::before,
.phase-card:focus-visible::before,
.phase-card.is-expanded::before {
    opacity: 1;
    transform: translateX(42%);
}

.phase-card:hover::after,
.phase-card:focus-visible::after,
.phase-card.is-expanded::after {
    opacity: 1;
}

.roadmap-phases:hover .phase-card:not(:hover):not(.is-expanded) {
    opacity: 0.72;
    transform: scale(0.94);
    filter: saturate(0.72) brightness(0.78);
}

.phase-sidebar {
    width: 100%;
    border-right: 0;
    padding-right: 0;
    position: relative;
    z-index: 2;
}

.phase-tag {
    display: inline-block;
    font-family: var(--font-caps);
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(245, 239, 227, 0.24);
    background: rgba(5, 18, 10, 0.36);
    margin-bottom: 18px;
    color: rgba(245, 239, 227, 0.74);
    backdrop-filter: blur(10px);
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.phase-tag.color-y { border-color: rgba(201, 168, 76, 0.4); color: var(--gold-light); }
.phase-tag.color-c { border-color: rgba(255, 255, 255, 0.4); color: #fff; }

.phase-card:hover .phase-tag,
.phase-card:focus-visible .phase-tag {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(232, 201, 122, 0.58);
    color: var(--gold-light);
}

.phase-label {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 6px;
    line-height: 1.05;
    transition: transform 0.35s ease, text-shadow 0.35s ease;
}

.phase-card:hover .phase-label,
.phase-card:focus-visible .phase-label {
    transform: translateX(3px);
    text-shadow: 0 0 22px rgba(201, 168, 76, 0.24);
}

.phase-modules {
    font-size: 0.85rem;
    color: rgba(245, 239, 227, 0.58);
}

.phase-main {
    position: relative;
    z-index: 2;
    flex: 0;
    min-width: 0;
}

.phase-card:not(.phase-bonus):hover,
.phase-card:not(.phase-bonus):focus-visible,
.phase-card:not(.phase-bonus).is-expanded {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    height: auto;
    min-height: 390px;
    max-height: 480px;
    overflow-x: hidden;
    overflow-y: auto;
}

.phase-card:not(.phase-bonus):hover .phase-sidebar,
.phase-card:not(.phase-bonus):focus-visible .phase-sidebar,
.phase-card:not(.phase-bonus).is-expanded .phase-sidebar {
    flex: 0 0 34%;
    max-width: 148px;
    padding-right: 8px;
}

.phase-card:not(.phase-bonus):hover .phase-main,
.phase-card:not(.phase-bonus):focus-visible .phase-main,
.phase-card:not(.phase-bonus).is-expanded .phase-main {
    flex: 1;
    min-width: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phase-title {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.35;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: color 0.35s ease, font-size 0.35s ease, margin-bottom 0.35s ease;
}

.phase-card:hover .phase-title,
.phase-card:focus-visible .phase-title {
    color: #fff8e7;
}

.phase-card:not(.phase-bonus):hover .phase-title,
.phase-card:not(.phase-bonus):focus-visible .phase-title,
.phase-card:not(.phase-bonus).is-expanded .phase-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 14px;
    line-height: 1.3;
}

.phase-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.phase-card:not(.phase-bonus):hover .phase-bullets,
.phase-card:not(.phase-bonus):focus-visible .phase-bullets,
.phase-card:not(.phase-bonus).is-expanded .phase-bullets {
    display: flex;
}

.phase-bullets li {
    position: relative;
    padding-left: 22px;
    font-size: 0.88rem;
    color: rgba(245, 239, 227, 0.82);
    line-height: 1.45;
}

.phase-bullets li strong {
    color: #fff8e7;
    font-weight: 600;
}

.phase-card:nth-child(1) .phase-bullets li::before,
.phase-card:nth-child(3) .phase-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9ec4a8;
    box-shadow: 0 0 8px rgba(158, 196, 168, 0.45);
}

.phase-card:nth-child(2) .phase-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 8px rgba(232, 201, 122, 0.4);
}

.phase-card:nth-child(3) .phase-bullets li::before {
    background: rgba(245, 239, 227, 0.92);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

/* BONUS card */
.phase-bonus {
    justify-content: flex-end;
    align-items: stretch;
}

.phase-bonus-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-tag {
    display: block;
    font-family: var(--font-caps);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.2;
}

.bonus-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.bonus-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 400;
    color: rgba(245, 239, 227, 0.88);
    line-height: 1.45;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.phase-playbar {
    max-width: 980px;
    margin: 18px auto 0;
    min-height: 82px;
    padding: 18px 28px;
    border: 1px solid rgba(245, 239, 227, 0.18);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.phase-controls {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    color: var(--cream);
}

.phase-control {
    display: inline-block;
    position: relative;
    width: 22px;
    height: 22px;
}

.phase-control.prev::before,
.phase-control.next::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: currentColor;
    clip-path: polygon(0 50%, 52% 0, 52% 36%, 100% 0, 100% 100%, 52% 64%, 52% 100%);
}

.phase-control.next::before {
    transform: scaleX(-1);
}

.phase-control.pause::before,
.phase-control.pause::after {
    content: '';
    position: absolute;
    top: 2px;
    bottom: 2px;
    width: 6px;
    border-radius: 2px;
    background: currentColor;
}

.phase-control.pause::before { left: 4px; }
.phase-control.pause::after { right: 4px; }

.phase-now {
    min-width: 0;
    flex: 1;
    max-width: 420px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 14px 8px 8px;
    border-radius: 18px;
    background: rgba(5, 18, 10, 0.52);
}

.phase-now-thumb {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background-color: rgba(5, 18, 10, 0.85);
    background-image: url('logo-02.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.phase-now strong,
.phase-now span {
    display: block;
}

.phase-now strong {
    color: var(--cream);
    font-size: 0.92rem;
    line-height: 1.25;
}

.phase-now div > span {
    color: rgba(245, 239, 227, 0.56);
    font-size: 0.78rem;
}

.phase-eq {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 24px;
}

.phase-eq span {
    width: 4px;
    border-radius: 99px;
    background: var(--cream);
    animation: eqPulse 1.2s ease-in-out infinite;
}

.phase-eq span:nth-child(1) { height: 10px; }
.phase-eq span:nth-child(2) { height: 18px; animation-delay: 0.18s; }
.phase-eq span:nth-child(3) { height: 13px; animation-delay: 0.34s; }

@keyframes eqPulse {
    0%, 100% { transform: scaleY(0.7); opacity: 0.55; }
    50% { transform: scaleY(1.18); opacity: 1; }
}

.phase-menu-lines {
    display: grid;
    gap: 5px;
}

.phase-menu-lines span {
    width: 26px;
    height: 2px;
    border-radius: 99px;
    background: rgba(245, 239, 227, 0.74);
}

@media (max-width: 760px) {
    .roadmap-header {
        margin-bottom: 28px;
    }

    .roadmap-main-title {
        font-size: clamp(1.2rem, 4.6vw, 2.35rem);
        line-height: 1.1;
        letter-spacing: 0.01em;
        white-space: nowrap;
    }

    .roadmap-intro {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .roadmap-scroll-hint {
        display: flex;
    }

    .roadmap-phases {
        gap: 12px;
        margin-inline: -18px;
        padding: 20px 18px 32px;
        max-width: none;
        scroll-padding-inline: 18px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .phase-card {
        flex: 0 0 78vw;
        min-width: 78vw;
        max-width: 320px;
        height: auto;
        min-height: 360px;
        padding: 18px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .phase-card:hover,
    .phase-card:focus-visible,
    .phase-card.is-expanded {
        flex-basis: 86vw;
        min-width: 86vw;
        max-width: 340px;
        transform: translateY(-6px);
    }

    .phase-card.phase-bonus:hover,
    .phase-card.phase-bonus:focus-visible,
    .phase-card.phase-bonus.is-expanded {
        flex-basis: 78vw;
        min-width: 78vw;
        max-width: 320px;
    }

    .phase-card:not(.phase-bonus):hover,
    .phase-card:not(.phase-bonus):focus-visible,
    .phase-card:not(.phase-bonus).is-expanded {
        min-height: 360px;
        max-height: min(72vh, 520px);
    }

    .roadmap-phases:hover .phase-card:not(:hover):not(.is-expanded) {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .phase-sidebar {
        border-bottom: 0;
        padding: 0;
    }

    .phase-tag {
        margin-bottom: 12px;
        font-size: 0.64rem;
        letter-spacing: 1.5px;
    }

    .phase-label {
        font-size: 1.55rem;
    }

    .phase-modules {
        font-size: 0.8rem;
    }

    .phase-title {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .phase-bullets {
        gap: 10px;
    }

    .phase-bullets li {
        font-size: 0.8rem;
        padding-left: 18px;
        line-height: 1.42;
    }

    .phase-card:not(.phase-bonus):hover,
    .phase-card:not(.phase-bonus):focus-visible,
    .phase-card:not(.phase-bonus).is-expanded {
        flex-direction: column;
        gap: 14px;
    }

    .phase-card:not(.phase-bonus):hover .phase-sidebar,
    .phase-card:not(.phase-bonus):focus-visible .phase-sidebar,
    .phase-card:not(.phase-bonus).is-expanded .phase-sidebar {
        flex: none;
        max-width: none;
        width: 100%;
    }

    .phase-card:not(.phase-bonus):hover .phase-main,
    .phase-card:not(.phase-bonus):focus-visible .phase-main,
    .phase-card:not(.phase-bonus).is-expanded .phase-main {
        justify-content: flex-start;
    }

    .phase-bonus {
        padding: 18px;
    }

    .bonus-tag {
        font-size: 0.88rem;
    }

    .bonus-title {
        font-size: 0.95rem;
    }

    .bonus-desc {
        font-size: 0.84rem;
    }

    .phase-playbar {
        border-radius: 24px;
        padding: 14px 16px;
        gap: 14px;
        align-items: stretch;
        flex-wrap: wrap;
        margin-top: 8px;
    }

    .phase-controls {
        order: 1;
        gap: 16px;
    }

    .phase-now {
        order: 0;
        flex-basis: 100%;
        max-width: none;
    }

    .phase-now strong {
        font-size: 0.92rem;
    }

    .phase-now div > span {
        font-size: 0.78rem;
    }

    .phase-eq,
    .phase-menu-lines {
        order: 2;
    }

    .format-container {
        margin-top: 8px;
        padding: 16px 10px 18px;
    }

    .format-header {
        margin-bottom: 18px;
    }

    .format-title {
        font-size: 1.1rem;
        margin-top: 10px;
    }

    .format-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px 4px;
    }

    .format-val {
        font-size: 1.35rem;
        margin-bottom: 6px;
        line-height: 1.1;
    }

    .format-label {
        font-size: 0.58rem;
        line-height: 1.25;
    }
}

/* ======================== COACHING FORMAT ======================== */
.format-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 60px auto 0;
    max-width: 1000px;
}

.format-header {
    text-align: center;
    margin-bottom: 50px;
}

.format-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--cream);
    margin-top: 16px;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.format-val {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 16px;
}

.format-label {
    font-size: 0.95rem;
    color: rgba(245, 239, 227, 0.8);
    line-height: 1.4;
}

/* ======================== CTA SECTION ======================== */
.cta-section { padding: 130px 24px; }

.cta-bg-img {
    position: absolute; inset: 0;
    background-image: url('IMG 2.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, var(--deep-forest) 0%, rgba(12,39,20,0.6) 20%, rgba(12,39,20,0.6) 80%, var(--deep-forest) 100%);
    z-index: 1;
}

.cta-wrap {
    max-width: 920px;
    text-align: center;
}
.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--cream);
    margin: 32px 0 20px;
}
.cta-heading em { font-style: italic; color: var(--gold-light); }
.cta-heading-line {
    display: block;
    white-space: nowrap;
}

.cta-sub {
    font-size: 1.1rem;
    color: rgba(245, 239, 227, 0.7);
    margin: 0 auto 44px;
    max-width: 900px;
    line-height: 1.7;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 760px;
    margin-inline: auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-form input {
    width: 100%;
    padding: 16px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}
.cta-form input::placeholder { color: var(--text-muted); }
.cta-form input:focus {
    border-color: rgba(201,168,76,0.6);
    background: rgba(255,255,255,0.09);
}

.cta-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 16px;
    font-family: var(--font-caps);
}

/* ======================== FOOTER ======================== */
.site-footer {
    background: var(--deep-forest);
    border-top: 1px solid var(--glass-border);
    padding: 42px 24px 28px;
}
.footer-inner { max-width: var(--max-w); margin-inline: auto; }
.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.site-footer .logo-title {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0;
    text-transform: none;
}
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 26px;
    text-align: center;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-top: 10px; letter-spacing: 1px; }
.cta-note {
    max-width: 600px;
    margin: 24px auto 0;
    color: rgba(245, 239, 227, 0.6);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    text-align: center;
    text-wrap: pretty;
}

@media (min-width: 761px) {
    .uyc-framework-header {
        max-width: 960px;
    }

    .uyc-framework-sub {
        max-width: 900px;
        margin-inline: auto;
    }

    .cta-note {
        max-width: 820px;
    }
}
.footer-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    color: var(--cream-dark);
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}
.footer-contact a { transition: color 0.3s ease; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact .dot { color: var(--gold); opacity: 0.72; }
.footer-divider { color: var(--gold); font-size: 0.7rem; margin: 20px 0 12px; opacity: 0.4; text-align: center; }
.footer-copy { font-size: 0.8rem; color: rgba(165,158,142,0.5); text-align: center; }

/* ======================== PARTICLE DOTS ======================== */
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    animation: floatParticle linear infinite;
    opacity: 0;
}
@keyframes floatParticle {
    0%   { opacity: 0; transform: translateY(0) scale(1); }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-120px) scale(0.4); }
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 960px) {
    .pain-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
    .pain-card { height: 400px; }
    .pain-card--mid { height: 400px; margin-bottom: 0; }
    .solution-wrap { flex-direction: column; gap: 60px; }
    .arch-frame { max-width: 400px; margin-inline: auto; }
    .nav-links { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .hero-heading { font-size: clamp(3.5rem, 12vw, 7rem); }
    .orn-text {
        font-size: clamp(0.5rem, 1.8vw, 0.72rem);
        letter-spacing: clamp(1px, 0.5vw, 3px);
        white-space: nowrap;
    }
    .hero-sub { font-size: 0.9rem; letter-spacing: 3px; }
    .footer-main { align-items: flex-start; flex-direction: column; gap: 28px; }
    .footer-contact { justify-content: flex-start; flex-wrap: wrap; gap: 14px 24px; white-space: normal; }
}

@media (max-width: 600px) {
    :root { --section-py: 80px; }
    .hero-heading { font-size: clamp(3rem, 14vw, 5rem); }
    .hero-body { max-width: 100%; }
    .ornament-line { gap: 10px; margin-bottom: 28px; }
    .orn-line { max-width: 46px; }
    .hero-sub { font-size: 0.72rem; letter-spacing: 2px; }
    .hero-divider span { width: 92px; }
    .cta-heading-line { white-space: normal; }
    .roadmap-steps::before { display: none; }
    .roadmap-step { flex-direction: column; gap: 20px; }
    .coach-values-grid { grid-template-columns: 1fr; }
    .navbar { padding: 18px 20px; }
    .navbar.scrolled { padding: 14px 20px; }
}

@media (max-width: 760px) {
    body {
        font-size: 16px;
        line-height: 1.65;
    }

    .wrap {
        padding-inline: 18px;
    }

    .section {
        padding-block: 72px;
    }

    .section-heading {
        font-size: 2.35rem;
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .section-sub {
        font-size: 0.98rem;
        margin-bottom: 32px;
    }

    .section-badge {
        font-size: 0.62rem;
        letter-spacing: 1.8px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .section-leaf-deco {
        display: none;
    }

    .btn-gold {
        padding: 13px 22px;
        font-size: 0.74rem;
        letter-spacing: 1.1px;
        line-height: 1.35;
    }

    .navbar,
    .navbar.scrolled {
        padding: 12px 14px;
    }

    .nav-inner {
        gap: 10px;
    }

    .logo {
        gap: 8px;
        min-width: 0;
    }

    .logo-avatar {
        width: 36px;
        height: 36px;
        flex: 0 0 auto;
    }

    .logo-name {
        font-size: 0.98rem;
        line-height: 1.12;
    }

    .logo-title {
        display: none;
    }

    .nav-cta {
        padding: 8px 10px;
        font-size: 0.58rem;
        letter-spacing: 1px;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
        max-width: 118px;
    }

    .hero {
        min-height: 82svh;
        padding: 92px 16px 32px;
    }

    .hero-video-bg {
        object-position: center;
    }

    .hero-overlay {
        background:
            radial-gradient(ellipse 95% 62% at 50% 34%, rgba(12,39,20,0.38) 0%, transparent 100%),
            linear-gradient(to bottom, rgba(8,25,12,0.58) 0%, rgba(8,25,12,0.9) 74%, var(--deep-forest) 100%);
    }

    .hero-heading {
        font-size: 4rem;
        line-height: 1.02;
        letter-spacing: 0;
        margin-bottom: 18px;
    }

    .hero-sub {
        max-width: 300px;
        margin-inline: auto;
        font-size: 0.76rem;
        letter-spacing: 1.6px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .ornament-line {
        gap: 8px;
        margin-bottom: 24px;
        flex-wrap: nowrap;
    }

    .orn-line {
        flex: 1 1 14px;
        max-width: 28px;
        min-width: 10px;
    }

    .orn-text {
        white-space: nowrap;
        max-width: none;
        font-size: clamp(0.42rem, 2.35vw, 0.58rem);
        letter-spacing: clamp(0.2px, 0.35vw, 1.5px);
        line-height: 1.3;
    }

    .hero-divider {
        gap: 14px;
        margin-bottom: 22px;
    }

    .hero-divider span {
        width: 72px;
    }

    .hero-follow {
        padding: 28px 16px 8px;
    }

    .metrics-section {
        padding: 48px 0 56px;
    }

    .metrics-section .wrap {
        padding-inline: 10px;
    }

    .metrics-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: end;
        gap: 8px;
        max-width: none;
        width: 100%;
        overflow: hidden;
    }

    .metric-item,
    .metric-arch-center {
        min-height: 228px;
        padding: 22px 8px 14px;
        border-radius: 100px 100px 0 0;
        justify-content: flex-end;
        gap: 6px;
    }

    .metric-arch-center {
        min-height: 248px;
        padding: 18px 8px 16px;
        transform: scale(1.04);
        transform-origin: bottom center;
    }

    .metric-num {
        font-size: clamp(2.35rem, 9vw, 3.1rem);
        margin-bottom: 4px;
        line-height: 0.95;
        text-shadow: 0 0 18px rgba(201, 168, 76, 0.4), 0 3px 12px rgba(0, 0, 0, 0.5);
    }

    .metric-num span {
        font-size: 0.42em;
        margin-top: 0.1em;
    }

    .metric-title {
        font-size: clamp(0.95rem, 4.5vw, 1.25rem);
        letter-spacing: 1.2px;
        margin-bottom: 6px;
        line-height: 1.2;
        font-weight: 500;
    }

    .metric-item p {
        font-size: clamp(0.72rem, 3vw, 0.9rem);
        line-height: 1.32;
        max-width: none;
        margin-inline: 0;
        display: block;
        overflow: visible;
    }

    .coach-section {
        padding-top: 64px;
        padding-bottom: 68px;
    }

    .coach-wrap {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .coach-media,
    .coach-details {
        grid-column: auto;
        justify-self: stretch;
        max-width: none;
    }

    .coach-media {
        width: min(100%, 330px);
        justify-self: center;
    }

    .coach-media .coach-photo {
        height: auto;
        aspect-ratio: 4 / 5;
        border-radius: 22px;
    }

    .coach-media .coach-photo img {
        object-position: center 12%;
    }

    .coach-title {
        font-size: 1.25rem;
    }

    .coach-name-heading em {
        white-space: nowrap;
        font-size: clamp(1.42rem, calc((100vw - 2.75rem) / 10.85), 2.3rem);
        letter-spacing: -0.02em;
        line-height: 1.05;
        max-width: 100%;
    }

    .coach-copy .section-sub,
    .coach-note {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .coach-pill-group {
        gap: 8px;
        margin-bottom: 0;
    }

    .coach-pill-group span {
        padding: 8px 12px;
        font-size: 0.76rem;
    }

    .philosophy-section {
        padding: 74px 0;
    }

    .phi-bg {
        background-attachment: scroll;
    }

    .phi-main-heading {
        margin-bottom: 34px;
    }

    .phi-heading {
        font-size: clamp(1.65rem, 5.6vw, 2.15rem);
        line-height: 1.22;
    }

    .pain-header .section-heading {
        font-size: clamp(1.7rem, 5.8vw, 2.35rem);
    }

    .phi-grid-4 {
        gap: 16px;
        padding: 0;
    }

    .phi-glass-card {
        align-items: flex-start;
        text-align: left;
        border-radius: 16px;
        padding: 22px 16px;
    }

    .phi-glass-card h4 {
        font-size: 1.05rem;
        line-height: 1.3;
    }

    .phi-glass-card p,
    .uyc-card-desc,
    .uyc-card-list li,
    .uyc-book-bullets li,
    .phase-bullets li {
        font-size: 0.8rem;
        line-height: 1.42;
        text-wrap: pretty;
    }

    .phi-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .pain-section {
        padding-top: 68px;
        padding-bottom: 80px;
    }

    .pain-header {
        margin-bottom: 34px;
    }

    .pain-grid {
        max-width: 360px;
        gap: 18px;
    }

    .pain-card,
    .pain-card--mid {
        height: 360px;
        border-radius: 20px;
    }

    .pain-card-content {
        padding: 24px 20px;
    }

    .pain-card-content h3 {
        font-size: 1.35rem;
    }

    .pain-card-content p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .outlinebook-left {
        padding: 56px 18px 30px;
    }

    .outlinebook-quote {
        text-align: left;
    }

    .outlinebook-quote p {
        font-size: 1.02rem;
        line-height: 1.55;
    }

    .uyc-book-card {
        min-height: 460px;
        border-radius: 18px;
    }

    .uyc-book-overlay {
        border-radius: 18px;
    }

    .uyc-book-content {
        padding: 26px 20px;
    }

    .uyc-book-title {
        font-size: 2rem;
    }

    .uyc-highlight-pill {
        padding: 10px 12px;
    }

    .outlinebook-right {
        padding: 54px 18px 66px;
    }

    .outlinebook-header {
        margin-bottom: 34px;
    }

    .outlinebook-badge {
        font-size: 0.66rem;
        letter-spacing: 2.4px;
    }

    .outlinebook-title {
        font-size: 2.32rem;
        letter-spacing: 1px;
        line-height: 1.1;
    }

    .outlinebook-sub {
        font-size: 0.94rem;
    }

    .outlinebook-list {
        gap: 34px;
    }

    .outlinebook-item {
        gap: 18px;
    }

    .ob-item-content {
        padding-right: 0;
    }

    .ob-item-content h4 {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .ob-item-content h4 strong {
        font-size: 1.45rem;
    }

    .ob-desc,
    .ob-bullets li {
        font-size: 0.88rem;
    }

    .ob-item-number {
        font-size: 3.25rem;
    }

    .solution-wrap {
        gap: 38px;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .solution-section {
        padding: 0;
    }

    .solution-overlay {
        background: linear-gradient(to bottom, rgba(10,30,14,0.96) 0%, rgba(10,30,14,0.86) 100%);
    }

    .feature-list {
        gap: 22px;
    }

    .feature-list li {
        gap: 14px;
    }

    .feature-list strong {
        font-size: 1.08rem;
    }

    .feature-list p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .arch-frame {
        max-width: 310px;
    }

    .uyc-framework-section {
        padding: 72px 0;
    }

    .uyc-framework-title {
        font-size: 2.1rem;
    }

    .uyc-framework-sub,
    .uyc-framework-quote {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .uyc-quote-br {
        display: block;
    }

    .uyc-quote-text {
        display: block;
    }

    .uyc-quote-author {
        display: block;
        margin-left: 0;
        margin-top: 10px;
    }

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

    .uyc-card {
        min-height: 0;
    }

    .uyc-card-content-glass {
        padding: 22px 18px;
    }

    .uyc-card-title {
        font-size: 1.65rem;
    }

    .uyc-card-desc,
    .uyc-card-list li {
        font-size: 0.8rem;
        line-height: 1.42;
        text-wrap: pretty;
    }

    .roadmap-section {
        padding: 72px 0 64px;
    }

    .roadmap-step {
        padding: 28px 0;
        gap: 16px;
    }

    .step-content h3 {
        font-size: 1.45rem;
    }

    .step-content p {
        font-size: 0.94rem;
    }

    .cta-section {
        padding: 78px 16px;
    }

    .cta-wrap .ornament-line {
        margin-bottom: 18px;
    }

    .cta-heading {
        font-size: 2.35rem;
        line-height: 1.12;
        margin: 22px 0 16px;
    }

    .cta-heading-line {
        white-space: normal;
    }

    .cta-sub {
        font-size: 0.58rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .cta-note {
        font-size: 0.57rem;
        line-height: 1.45;
    }

    .cta-form input {
        padding: 14px 16px;
        font-size: 16px;
    }

    .btn-gold.btn-large {
        padding: 15px 18px;
        font-size: 0.78rem;
        letter-spacing: 1px;
    }

    .site-footer {
        padding: 34px 18px 26px;
    }

    .footer-main {
        gap: 22px;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.94rem;
    }

    .footer-contact .dot {
        display: none;
    }

    .site-footer .logo {
        align-items: flex-start;
    }

    .site-footer .logo-title {
        display: block;
        font-size: 0.68rem;
        line-height: 1.4;
    }

    @media (max-width: 600px) {
        .orn-line {
            max-width: 22px;
            min-width: 8px;
        }

        .orn-text {
            font-size: clamp(0.4rem, 2.2vw, 0.52rem);
            letter-spacing: clamp(0px, 0.25vw, 1.2px);
        }

        .phi-heading {
            font-size: clamp(1.5rem, 5.2vw, 1.85rem);
        }

        .roadmap-main-title {
            font-size: clamp(1.1rem, 4.3vw, 2.05rem);
        }

        .pain-header .section-heading {
            font-size: clamp(1.55rem, 5.4vw, 2rem);
        }
    }
}

@media (max-width: 390px) {
    .hero-heading {
        font-size: 3.35rem;
    }

    .nav-cta {
        max-width: 104px;
        padding-inline: 8px;
    }

    .logo-name {
        font-size: 0.9rem;
    }

    .metrics-row {
        gap: 6px;
    }

    .metric-item {
        min-height: 210px;
        padding: 18px 6px 12px;
        border-radius: 88px 88px 0 0;
    }

    .metric-arch-center {
        min-height: 228px;
        padding: 14px 6px 14px;
    }

    .metric-num {
        font-size: 2.2rem;
    }

    .metric-title {
        font-size: clamp(0.88rem, 4vw, 1.1rem);
        letter-spacing: 0.8px;
    }

    .metric-item p {
        font-size: 0.68rem;
        line-height: 1.3;
    }

    .pain-card,
    .pain-card--mid {
        height: 340px;
    }

    .uyc-book-card {
        min-height: 420px;
    }

    .outlinebook-title {
        font-size: 2.05rem;
    }

    .ob-item-number {
        font-size: 2.85rem;
    }

    .roadmap-main-title {
        font-size: clamp(1.02rem, 4.1vw, 1.9rem);
        letter-spacing: 0;
    }

    .phi-glass-card p,
    .uyc-card-desc,
    .uyc-card-list li,
    .uyc-book-bullets li {
        font-size: 0.76rem;
    }

    .phase-card {
        flex: 0 0 84vw;
        min-width: 84vw;
        min-height: 340px;
        padding: 16px;
    }

    .phase-card:hover,
    .phase-card.is-expanded {
        flex-basis: 90vw;
        min-width: 90vw;
    }

    .format-container {
        padding: 14px 6px 16px;
    }

    .format-header {
        margin-bottom: 12px;
    }

    .format-title {
        font-size: 0.95rem;
    }

    .format-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px 2px;
    }

    .format-val {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .format-label {
        font-size: 0.5rem;
    }
}

/* ======================== MUSIC TOGGLE ======================== */
.music-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background: rgba(10, 30, 14, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--gold-light);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.music-toggle:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(10, 30, 14, 0.8);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.music-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.music-icon-box svg {
    width: 20px;
    height: 20px;
}

.music-status {
    font-family: var(--font-caps);
    font-size: 0.65rem;
    letter-spacing: 2px;
    font-weight: 500;
    width: 30px;
}

/* Playing Animation */
.music-toggle.playing {
    border-color: var(--gold);
}

.music-toggle.playing #music-icon-on {
    animation: musicPulse 1.5s infinite ease-in-out;
}

@keyframes musicPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Responsive adjust */
@media (max-width: 600px) {
    .music-toggle {
        bottom: max(20px, env(safe-area-inset-bottom));
        left: max(20px, env(safe-area-inset-left));
        padding: 8px 14px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .phase-card {
        will-change: auto;
    }

    .phase-card:active {
        opacity: 0.94;
    }
}
