/* ═══════════════════════════════════════════════════════════════
   PROTOCOL — Codex dark theme
   Extracted from protocol/index.html
   ═══════════════════════════════════════════════════════════════ */

/* ── Tier cards ─────────────────────────────────────────────────── */

.protocol-tiers .paywall-card--featured .paywall-card__title::after {
    content: none;
}

/* Conditions tag — who this tier is for */
.paywall-card__for {
    grid-column: 2;
    grid-row: 3;
    font-family: var(--font-label, 'Space Grotesk', sans-serif);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold, #d4af37);
    opacity: 0.55;
    margin: 1rem 0 0;
    line-height: 1.8;
    padding-top: 1rem;
    border-top: 1px solid rgba(196, 168, 85, 0.12);
}

/* Card body — separator from header */
.protocol-tiers .paywall-card__body {
    margin-top: var(--spacing-md, 2rem);
    padding-top: var(--spacing-md, 2rem);
    border-top: 1px solid rgba(196, 168, 85, 0.12);
}

/* Prop text — more room, slightly larger */
.protocol-tiers .paywall-card__prop {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(244, 240, 232, 0.75);
    margin: 0 0 var(--spacing-md, 2rem);
}

/* Outcomes — no bullets, clean hairline-separated lines */
.protocol-tiers .paywall-outcomes {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(196, 168, 85, 0.12);
}

.protocol-tiers .paywall-outcomes li {
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(196, 168, 85, 0.08);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.825rem;
    font-weight: 300;
    color: rgba(244, 240, 232, 0.55);
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.protocol-tiers .paywall-outcomes li::marker {
    content: none;
}

.protocol-tiers__synthesis {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: rgba(196,168,85,0.65);
    line-height: 1.65;
    margin-top: 3rem;
    max-width: 640px;
}

/* ═══════════════════════════════════════════════════════════════
   PROTOCOL PAGE — CODEX DARK THEME
   Inspired by Warhammer 40k Codex / Blasphemous
   ═══════════════════════════════════════════════════════════════ */

/* Protocol variables — scoped to body.protocol-dark (not :root) */
body.protocol-dark {
    --p-bg-deep: var(--black);
    --p-bg-mid: var(--charcoal);
    --p-bg-light: #2d2a27;
    --p-bg-card: #322f2b;
    --p-bg-card-hover: #3a3733;

    --p-text: var(--ivory);
    --p-text-body: var(--ivory);
    --p-text-secondary: #E8E5DE;
    --p-text-muted: #a8a5a0;

    --p-gold: var(--gold-on-dark);
    --p-gold-bright: var(--gold-on-dark-bright);
    --p-gold-glow: var(--gold-15);
    --p-gold-border: var(--gold-25);
    --p-border: var(--gold-10);

    --p-red: #ef4444;
    --p-blue: #3b82f6;
    --p-amber: #f59e0b;
    --p-green: #22c55e;

    /* Phase accent pastels (used in cards, hubs, practice tags) */
    --p-phase-1-accent: #fca5a5;
    --p-phase-2-accent: #93c5fd;
    --p-phase-3-accent: #fcd34d;
    /* Phase 4 uses --p-gold */

    /* Teacher node colours */
    --p-teacher-floor: #a8a29e;
    --p-teacher-breath: #5eead4;
    --p-teacher-cold: #93c5fd;
    --p-teacher-heat: #fca5a5;
    --p-teacher-sun: #fde047;
    --p-teacher-dark: #c4b5fd;
    --p-teacher-silence: #e2e8f0;
    --p-teacher-hunger: #86efac;

    /* Caution accent */
    --p-caution: #fcd34d;

    background: var(--p-bg-deep);
}


/* Breathing glow animation */
@keyframes breathe {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px var(--gold-20); }
    50% { box-shadow: 0 0 20px var(--gold-40); }
}

@keyframes trunk-flow {
    0% { background-position: 0 0; }
    100% { background-position: 0 40px; }
}

/* NAV: Now handled by shared body.protocol-dark rules in terraforms.css.
   Protocol-specific border retained: */
.protocol-dark .nav {
    border-bottom: 1px solid var(--p-border);
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Codex Title Page
   ═══════════════════════════════════════════════════════════════ */
.protocol-hero {
    background: linear-gradient(180deg, var(--p-bg-light) 0%, var(--p-bg-mid) 100%);
    padding: 180px var(--page-padding) 120px;
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}

/* Particle container */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--p-gold);
    border-radius: var(--radius-full);
    opacity: 0;
    animation: float-particle 8s ease-in-out infinite;
    box-shadow: 0 0 6px var(--p-gold), 0 0 12px var(--gold-30);
}

.particle--small {
    width: 2px;
    height: 2px;
    box-shadow: 0 0 4px var(--p-gold);
}

.particle--large {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 10px var(--p-gold), 0 0 20px var(--gold-40);
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0);
    }
    15% {
        opacity: 0.9;
        transform: translateY(-40px) translateX(15px) scale(1);
    }
    40% {
        opacity: 0.7;
        transform: translateY(-120px) translateX(-10px) scale(0.9);
    }
    70% {
        opacity: 0.4;
        transform: translateY(-220px) translateX(20px) scale(0.6);
    }
    100% {
        opacity: 0;
        transform: translateY(-350px) translateX(-5px) scale(0.3);
    }
}

/* Additional twinkle effect for some particles */
@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.particle:nth-child(3n) {
    animation: float-particle 10s ease-in-out infinite, twinkle 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   WELCOME WINDOW — Time-Aware Scenic Window
   ═══════════════════════════════════════════════════════════════ */
.welcome-window {
    background: var(--p-bg-deep);
    padding: 0;
    position: relative;
}

.welcome-window__banner {
    background: linear-gradient(180deg, var(--p-bg-mid) 0%, var(--p-bg-deep) 100%);
    padding: 4rem var(--page-padding) 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-window__card {
    position: relative;
    width: 100%;
    max-width: var(--max-width);
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 25px 80px var(--black-60),
        0 0 0 1px var(--gold-20),
        inset 0 0 100px var(--black-30);
}

/* Sky scene background - changes based on time */
.welcome-window__sky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: background 1s ease;
}

/* Night sky - deep dark throughout for text legibility */
.welcome-window__sky--night {
    background: linear-gradient(180deg,
        #050508 0%,
        #0a0a12 30%,
        #0d0d18 60%,
        #10101a 100%);
}

/* Dawn - subtle warmth but still dark enough */
.welcome-window__sky--dawn {
    background: linear-gradient(180deg,
        #0d0d18 0%,
        #1a1a2e 25%,
        #2d2540 50%,
        #3d3050 75%,
        #4a3a55 100%);
}

/* Day - muted blue, not too bright */
.welcome-window__sky--day {
    background: linear-gradient(180deg,
        #2a3a50 0%,
        #3a4a60 40%,
        #4a5a70 70%,
        #556680 100%);
}

/* Evening - warm but dark */
.welcome-window__sky--evening {
    background: linear-gradient(180deg,
        #0d0d18 0%,
        #1a1525 30%,
        #2d2030 60%,
        #3d2a38 100%);
}

/* Stars container */
.welcome-window__stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--ivory);
    border-radius: var(--radius-full);
    animation: twinkle-star 3s ease-in-out infinite;
}

.star--bright {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 6px #fff, 0 0 12px var(--white-50);
}

.star--gold {
    background: var(--p-gold);
    box-shadow: 0 0 4px var(--p-gold);
}

@keyframes twinkle-star {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Moon */
.welcome-window__moon {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #fffde7 0%, #e8e4c9 50%, #d4cfa8 100%);
    border-radius: var(--radius-full);
    box-shadow: 0 0 20px rgba(255, 253, 231, 0.4), 0 0 40px rgba(255, 253, 231, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.welcome-window__card.is-night .welcome-window__moon {
    opacity: 1;
}

/* Weather Effects Container */
.welcome-window__weather-fx {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Rain Effect */
.rain-drop {
    position: absolute;
    width: 1px;
    height: 15px;
    background: linear-gradient(180deg, transparent, rgba(174, 194, 224, 0.5), rgba(174, 194, 224, 0.2));
    animation: rain-fall 0.8s linear infinite;
}

@keyframes rain-fall {
    0% { transform: translateY(-20px); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateY(300px); opacity: 0.3; }
}

/* Snow Effect */
.snowflake {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--ivory);
    border-radius: var(--radius-full);
    opacity: 0.8;
    animation: snow-fall 4s linear infinite;
}

.snowflake--small { width: 2px; height: 2px; opacity: 0.6; }
.snowflake--large { width: 6px; height: 6px; opacity: 0.9; }

@keyframes snow-fall {
    0% { transform: translateY(-10px) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    100% { transform: translateY(300px) translateX(30px) rotate(360deg); opacity: 0.2; }
}

/* Fog Effect */
.welcome-window__fog {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg,
        rgba(200, 200, 210, 0.15) 0%,
        rgba(180, 180, 190, 0.25) 50%,
        rgba(160, 160, 170, 0.2) 100%);
    opacity: 0;
    transition: opacity 1s ease;
}

.welcome-window__card.is-foggy .welcome-window__fog {
    opacity: 1;
}

/* Cloud Effect */
.cloud {
    position: absolute;
    background: var(--white-08);
    border-radius: var(--radius-full);
    filter: blur(10px);
    animation: cloud-drift 20s ease-in-out infinite;
}

@keyframes cloud-drift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(30px); }
}

/* Content overlay */
.welcome-window__content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: var(--spacing-md-plus) var(--spacing-lg);
}

/* Left side - Welcome */
.welcome-window__left {
    flex: 1;
    max-width: 420px;
}

.welcome-window__greeting {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--ivory);
    margin: 0 0 0.75rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 15px var(--black-60);
}

.welcome-window__message {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--white-85);
    margin: 0 0 1rem;
    line-height: 1.7;
    text-shadow: 0 2px 8px var(--black-60);
}

/* Teacher link */
.welcome-window__teacher-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--p-gold);
    text-decoration: none;
    padding: var(--spacing-xs) var(--spacing-xs-plus);
    border: 1px solid var(--gold-30);
    border-radius: var(--radius-sm);
    background: var(--black-30);
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px var(--black-50);
}

.welcome-window__teacher-link:hover {
    background: var(--gold-15);
    border-color: var(--gold-50);
    color: var(--ivory);
}

.welcome-window__teacher-icon {
    font-size: var(--text-base);
    opacity: 0.8;
}

.welcome-window__teacher-text {
    letter-spacing: 0.02em;
}

.welcome-window__teacher-text strong {
    color: var(--ivory);
}

.welcome-window__teacher-arrow {
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.welcome-window__teacher-link:hover .welcome-window__teacher-arrow {
    transform: translateX(3px);
    opacity: 1;
}

/* Divider */
.welcome-window__divider {
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--gold-50), transparent);
    margin: 0 2.5rem;
}

/* Right side - Time & Weather */
.welcome-window__right {
    text-align: right;
    min-width: 180px;
}

.welcome-window__time {
    font-family: var(--font-mono);
    font-size: var(--text-4xl);
    font-weight: 300;
    color: var(--p-gold);
    letter-spacing: 0.02em;
    text-shadow: 0 0 30px var(--gold-50);
    line-height: 1;
    margin-bottom: var(--spacing-2xs);
}

.welcome-window__date {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--white-85);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm-mid);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--gold-20);
}

.welcome-window__weather {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-2xs);
}

.welcome-window__temp {
    font-family: var(--font-mono);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--white-90);
    letter-spacing: 0.02em;
}

.welcome-window__condition {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    color: var(--white-85);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.welcome-window__season {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    color: var(--p-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: var(--spacing-xs);
    opacity: 0.7;
}

/* Window frame corners */
.welcome-window__frame {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--p-gold-border);
    z-index: 3;
    opacity: 0.6;
}

.welcome-window__frame--tl {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.welcome-window__frame--tr {
    top: 8px;
    right: 8px;
    border-left: none;
    border-bottom: none;
}

.welcome-window__frame--bl {
    bottom: 8px;
    left: 8px;
    border-right: none;
    border-top: none;
}

.welcome-window__frame--br {
    bottom: 8px;
    right: 8px;
    border-left: none;
    border-top: none;
}

@media (max-width: 700px) {
    .welcome-window__banner {
        padding: 3rem var(--page-padding) 4rem;
    }

    .welcome-window__card {
        height: auto;
        min-height: 360px;
    }

    .welcome-window__content {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md) var(--spacing-sm-plus);
        gap: var(--spacing-sm-plus);
    }

    .welcome-window__left {
        max-width: none;
        text-align: center;
    }

    .welcome-window__divider {
        width: 100px;
        height: 1px;
        margin: 0;
    }

    .welcome-window__right {
        text-align: center;
    }

    .welcome-window__weather {
        justify-content: center;
    }

    .welcome-window__greeting {
        font-size: var(--text-2xl);
    }

    .welcome-window__message {
        font-size: var(--text-xs-plus);
    }

    .welcome-window__teacher-link {
        font-size: var(--text-xs);
        padding: 0.4rem 0.6rem;
    }

    .welcome-window__time {
        font-size: var(--text-5xl);
    }

    .welcome-window__date {
        font-size: var(--text-xs);
    }

    .welcome-window__moon {
        width: 30px;
        height: 30px;
        top: 15px;
        right: 20px;
    }

    .welcome-window__frame {
        width: 15px;
        height: 15px;
    }
}

.protocol-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background:
        radial-gradient(ellipse 80% 50% at 20% 0%, var(--gold-10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 10%, var(--gold-05) 0%, transparent 50%);
    pointer-events: none;
}
/* Decorative corner flourishes */
.protocol-hero::after {
    content: '◆ ◇ ◆';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-xs);
    color: var(--p-gold-border);
    letter-spacing: 1rem;
    animation: breathe 4s ease-in-out infinite;
}
.protocol-hero__inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.protocol-dark .protocol-hero__label {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--p-gold);
    margin-bottom: var(--spacing-sm-plus);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.protocol-dark .protocol-hero__label::before,
.protocol-dark .protocol-hero__label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--p-gold-border));
}
.protocol-dark .protocol-hero__label::after {
    background: linear-gradient(90deg, var(--p-gold-border), transparent);
}
.protocol-dark .protocol-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    color: var(--ivory);
    margin: 0 0 1.5rem;
    line-height: 1;
    letter-spacing: 0.02em;
    text-shadow: 0 0 60px var(--gold-20);
}
.protocol-dark .protocol-hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--p-text-secondary);
    line-height: 1.9;
    max-width: 580px;
    margin: 0 0 3.5rem;
}
.protocol-stats {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
}
.protocol-stat {
    position: relative;
}
.protocol-stat::after {
    content: '';
    position: absolute;
    right: -1.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--p-gold-border);
}
.protocol-stat:last-child::after {
    display: none;
}
.protocol-dark .protocol-stat__value {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--p-gold);
    line-height: 1;
}
.protocol-dark .protocol-stat__label {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--p-text-muted);
    margin-top: 0.625rem;
}

@media (max-width: 600px) {
    .protocol-hero {
        padding: 140px var(--page-padding) 100px;
    }
    .protocol-hero::after {
        display: none;
    }
    .protocol-stats {
        gap: var(--spacing-md);
    }
    .protocol-stat::after {
        display: none;
    }
    .protocol-dark .protocol-stat__value {
        font-size: var(--text-4xl);
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION BASE — Wide, spacious layout
   ═══════════════════════════════════════════════════════════════ */
.protocol-section {
    padding: 100px var(--page-padding);
    border: none;
    position: relative;
}
.protocol-section__inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}
.protocol-section--wide .protocol-section__inner {
    max-width: var(--max-width-wide);
}

/* Elegant section divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm-plus);
    padding: 3rem 0;
    color: var(--p-gold-border);
    font-size: var(--text-xs);
    letter-spacing: 0.5rem;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--p-gold-border), transparent);
}

/* Remove all boxing borders */
.protocol-dark .protocol-section,
.protocol-dark .protocol-theory,
.protocol-dark .protocol-foundations,
.protocol-dark .protocol-principles-strip,
.protocol-dark .protocol-timeline,
.protocol-dark .protocol-progress,
.protocol-dark .protocol-commitment,
.protocol-dark .protocol-adaptations,
.protocol-dark .protocol-cta,
.protocol-dark .footer {
    border-top: none;
    border-bottom: none;
}

.protocol-dark .protocol-section__label {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--p-gold);
    margin-bottom: var(--spacing-sm-mid);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.protocol-dark .protocol-section__label::before {
    content: '◇';
    font-size: 0.5rem;
    opacity: 0.7;
}
.protocol-dark .protocol-section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 400;
    color: var(--ivory);
    margin: 0 0 1.5rem;
    letter-spacing: 0.01em;
}
.protocol-dark .protocol-section__intro {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--p-text-secondary);
    line-height: 1.9;
    max-width: 750px;
    margin-bottom: 3.5rem;
}

@media (max-width: 600px) {
    .protocol-section {
        padding: 60px var(--page-padding);
    }
}

/* ═══════════════════════════════════════════════════════════════
   DIGITAL TWIN — section image
   ═══════════════════════════════════════════════════════════════ */
.protocol-twin__image {
    display: block;
    width: 100%;
    height: auto;
    border-top: 1px solid var(--p-gold-border);
    border-bottom: 1px solid var(--p-gold-border);
    margin: 0 0 3.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   WHY THIS WORKS — THEORY SECTION
   ═══════════════════════════════════════════════════════════════ */
.protocol-theory {
    background: var(--p-bg-deep);
    border-top: 1px solid var(--p-border);
}
.theory-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm-plus);
}
@media (max-width: 700px) {
    .theory-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm-mid);
    }
}
.theory-block {
    background: linear-gradient(160deg, var(--p-bg-card) 0%, rgba(45, 42, 39, 0.9) 100%);
    border: 1px solid var(--p-border);
    border-radius: var(--radius-sm);
    padding: var(--spacing-md);
    position: relative;
    transition: all 0.3s ease;
}
.theory-block:hover {
    border-color: var(--p-gold-border);
    transform: translateY(-2px);
}
.theory-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--p-gold-border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.theory-block:hover::before {
    opacity: 1;
}
.protocol-dark .theory-block__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--p-gold);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
}
.protocol-dark .theory-block__text {
    font-family: var(--font-body);
    font-size: var(--text-xs-plus);
    color: var(--p-text-secondary);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   FOUNDATIONS GRID
   ═══════════════════════════════════════════════════════════════ */
.protocol-foundations {
    background: var(--p-bg-mid);
    border-top: 1px solid var(--p-border);
}
.foundations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm-plus);
}
@media (max-width: 700px) {
    .foundations-grid {
        grid-template-columns: 1fr;
    }
}
.foundation-card {
    background: linear-gradient(160deg, var(--p-bg-card) 0%, rgba(45, 42, 39, 0.9) 100%);
    border: 1px solid var(--p-border);
    border-radius: var(--radius-sm);
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}
.foundation-card:hover {
    border-color: var(--p-gold-border);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--black-20);
}
.foundation-card__icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-sm-mid);
    display: block;
}
.foundation-card--ground .foundation-card__icon { color: var(--p-teacher-floor); }
.foundation-card--autonomic .foundation-card__icon { color: var(--p-phase-2-accent); }
.foundation-card--circadian .foundation-card__icon { color: var(--p-phase-3-accent); }
.foundation-card--contemplative .foundation-card__icon { color: var(--p-teacher-dark); }

.protocol-dark .foundation-card__title {
    font-family: var(--font-important);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: var(--spacing-xs-plus);
}
.protocol-dark .foundation-card__text {
    font-family: var(--font-body);
    font-size: var(--text-xs-plus);
    color: var(--ivory);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm-mid);
}
.foundation-card__practices {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

/* ═══════════════════════════════════════════════════════════════
   PRACTICE TAGS
   ═══════════════════════════════════════════════════════════════ */
.protocol-dark .practice-tag {
    background: var(--gold-10);
    border: 1px solid var(--p-gold-border);
    color: var(--ivory);
    font-size: var(--text-xs);
    padding: var(--spacing-2xs) var(--spacing-xs-plus);
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all 0.2s ease;
}
.protocol-dark .practice-tag:hover {
    background: var(--gold-20);
}
.protocol-dark .practice-tag--floor { color: var(--ivory); }
.protocol-dark .practice-tag--cold { color: var(--p-teacher-cold); }
.protocol-dark .practice-tag--heat { color: var(--p-teacher-heat); }
.protocol-dark .practice-tag--sun { color: var(--p-teacher-sun); }
.protocol-dark .practice-tag--dark { color: var(--p-teacher-dark); }
.protocol-dark .practice-tag--silence { color: var(--ivory); }
.protocol-dark .practice-tag--hunger { color: var(--p-teacher-hunger); }
.protocol-dark .practice-tag--breath { color: var(--p-teacher-breath); }

/* ═══════════════════════════════════════════════════════════════
   PRINCIPLES STRIP
   ═══════════════════════════════════════════════════════════════ */
.protocol-principles-strip {
    background: var(--p-bg-deep);
    padding: 60px var(--page-padding);
    border-top: 1px solid var(--p-border);
    border-bottom: 1px solid var(--p-border);
}
.principles-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    max-width: var(--max-width);
    margin: 0 auto;
}
@media (max-width: 800px) {
    .principles-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .principles-row { grid-template-columns: 1fr; gap: var(--spacing-sm-plus); }
}
.principle-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.protocol-dark .principle-item__icon {
    font-size: var(--text-xl);
    color: var(--p-gold);
    margin-bottom: 0.625rem;
}
.protocol-dark .principle-item__title {
    font-family: var(--font-important);
    font-size: var(--text-xs-plus);
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: var(--spacing-2xs);
}
.protocol-dark .principle-item__text {
    font-family: var(--font-body);
    font-size: var(--text-xs-plus);
    color: var(--p-text-secondary);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   PHASES TIMELINE
   ═══════════════════════════════════════════════════════════════ */
.protocol-timeline {
    background: var(--p-bg-mid);
    border-top: 1px solid var(--p-border);
}
.timeline-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm-plus);
}
.phase-card {
    background: var(--p-bg-card);
    border: 1px solid var(--p-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) var(--spacing-md-plus);
    position: relative;
    transition: border-color 0.2s ease;
}
.phase-card:hover {
    border-color: var(--p-gold-border);
}
.phase-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}
.phase-card--1::before { background: var(--p-red); }
.phase-card--2::before { background: var(--p-blue); }
.phase-card--3::before { background: var(--p-amber); }
.phase-card--4::before { background: var(--p-gold); }

.phase-card__header {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}
.phase-card__number {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.phase-card--1 .phase-card__number { color: var(--p-phase-1-accent); }
.phase-card--2 .phase-card__number { color: var(--p-phase-2-accent); }
.phase-card--3 .phase-card__number { color: var(--p-phase-3-accent); }
.phase-card--4 .phase-card__number { color: var(--p-gold); }

.protocol-dark .phase-card__name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--ivory);
    margin: 0;
}
.protocol-dark .phase-card__weeks {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--p-text-muted);
    margin-left: auto;
}

@media (max-width: 550px) {
    .phase-card {
        padding: var(--spacing-sm-plus) var(--spacing-sm-plus) var(--spacing-sm-plus) var(--spacing-md);
    }
    .phase-card__header {
        flex-direction: column;
        gap: var(--spacing-2xs);
    }
    .phase-card__weeks {
        margin-left: 0;
        order: -1;
    }
}

.protocol-dark .phase-card__description {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--ivory);
    line-height: 1.75;
    margin-bottom: var(--spacing-sm-plus);
}

/* Week-by-week breakdown */
.phase-card__weeks-detail {
    background: var(--p-bg-mid);
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm-mid);
    margin-bottom: var(--spacing-sm-plus);
}
.protocol-dark .week-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--p-border);
}
.week-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.week-item:first-child {
    padding-top: 0;
}
.protocol-dark .week-item__num {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    color: var(--p-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 50px;
    padding-top: 0.125rem;
}
.protocol-dark .week-item__text {
    font-family: var(--font-body);
    font-size: var(--text-xs-plus);
    color: var(--ivory);
    line-height: 1.6;
}

.protocol-dark .phase-card__link {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--p-gold);
    text-decoration: none;
    padding: 0.625rem var(--spacing-sm-mid);
    background: var(--gold-10);
    border: 1px solid var(--p-gold-border);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}
.phase-card__link:hover {
    background: var(--gold-20);
}

/* ═══════════════════════════════════════════════════════════════
   SIGNS OF PROGRESS
   ═══════════════════════════════════════════════════════════════ */
.protocol-progress {
    background: var(--p-bg-deep);
    border-top: 1px solid var(--p-border);
}
.progress-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm-plus);
}
@media (max-width: 700px) {
    .progress-grid {
        grid-template-columns: 1fr;
    }
}
.progress-card {
    background: var(--p-bg-card);
    border: 1px solid var(--p-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm-plus);
}
.protocol-dark .progress-card__title {
    font-family: var(--font-important);
    font-size: var(--text-xs-plus);
    font-weight: 500;
    color: var(--p-gold);
    margin-bottom: var(--spacing-sm);
}
.progress-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.protocol-dark .progress-card__list li {
    font-family: var(--font-body);
    font-size: var(--text-xs-plus);
    color: var(--ivory);
    line-height: 1.6;
    padding: var(--spacing-2xs) 0;
    padding-left: var(--spacing-sm);
    position: relative;
}
.progress-card__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--p-gold);
    font-size: var(--text-xs);
}

/* ═══════════════════════════════════════════════════════════════
   COMMITMENT SECTION
   ═══════════════════════════════════════════════════════════════ */
.protocol-commitment {
    background: var(--p-bg-mid);
    border-top: 1px solid var(--p-border);
}
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm-plus);
    margin-bottom: var(--spacing-md-plus);
}
@media (max-width: 600px) {
    .commitment-grid { grid-template-columns: 1fr; gap: var(--spacing-sm); }
}
.commitment-item {
    background: var(--p-bg-card);
    border: 1px solid var(--p-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-sm-plus);
}
.protocol-dark .commitment-item__value {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    color: var(--p-gold);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}
.protocol-dark .commitment-item__label {
    font-family: var(--font-body);
    font-size: var(--text-xs-plus);
    color: var(--light-text-primary, #FFFFFF);
}
.protocol-dark .commitment-text {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--light-text-primary, #FFFFFF);
    line-height: 1.8;
    max-width: 560px;
}

/* ═══════════════════════════════════════════════════════════════
   DAILY SCHEDULE TIMELINE
   ═══════════════════════════════════════════════════════════════ */
.protocol-schedule {
    background: var(--p-bg-deep);
    border-top: 1px solid var(--p-border);
}

.schedule-timeline {
    position: relative;
    max-width: 700px;
    padding-left: 100px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--p-gold) 0%, var(--p-gold-border) 50%, transparent 100%);
}

.schedule-item {
    display: flex;
    gap: var(--spacing-sm-plus);
    margin-bottom: var(--spacing-sm-mid);
    position: relative;
    background: transparent;
    padding: 0.5rem 0;
    border-left: none;
}

/* Override main CSS color rules */
.schedule-item h4,
.schedule-item__title {
    color: var(--ivory);
}

.schedule-item p,
.schedule-item__text {
    color: var(--p-text-secondary);
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    background: var(--p-bg-deep);
    border: 2px solid var(--p-gold);
    border-radius: var(--radius-full);
    z-index: 2;
}

.schedule-item:hover::before {
    background: var(--p-gold);
    box-shadow: 0 0 15px var(--p-gold);
}

.schedule-item__time {
    position: absolute;
    left: -95px;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--p-gold);
    width: 55px;
    text-align: right;
    padding-top: 0.2rem;
}

.schedule-item__content {
    flex: 1;
    padding-bottom: var(--spacing-sm-mid);
    border-bottom: 1px solid var(--p-border);
}

.schedule-item:last-child .schedule-item__content {
    border-bottom: none;
}

.schedule-item__title {
    font-family: var(--font-important);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--ivory);
    margin: 0 0 0.5rem;
}

.schedule-item__text {
    font-family: var(--font-body);
    font-size: var(--text-xs-plus);
    color: var(--p-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.schedule-note {
    font-family: var(--font-body);
    font-size: var(--text-xs-plus);
    font-style: italic;
    color: var(--p-text-secondary);
    line-height: 1.7;
    margin-top: 3rem;
    padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-sm) 4.5rem;
    border-left: 2px solid var(--p-gold-border);
    background: transparent;
}

.schedule-note p {
    color: var(--p-text-secondary);
    margin: 0;
}

@media (max-width: 600px) {
    .schedule-timeline {
        padding-left: 60px;
    }
    .schedule-timeline::before {
        left: 45px;
    }
    .schedule-item::before {
        left: -22px;
        width: 10px;
        height: 10px;
    }
    .schedule-item__time {
        left: -58px;
        width: 42px;
        font-size: var(--text-xs);
    }
    .schedule-item__content {
        padding-bottom: var(--spacing-sm);
    }
    .schedule-note {
        padding-left: 0;
        margin-left: 0;
        border-left: 2px solid var(--p-gold-border);
        padding: var(--spacing-sm);
    }
}

/* ═══════════════════════════════════════════════════════════════
   CAUTION / ADAPTATIONS
   ═══════════════════════════════════════════════════════════════ */
.protocol-adaptations {
    background: var(--p-bg-deep);
    border-top: 1px solid var(--p-border);
}
.adaptations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm-plus);
}
@media (max-width: 700px) {
    .adaptations-grid {
        grid-template-columns: 1fr;
    }
}
.adaptation-card {
    background: var(--p-bg-card);
    border: 1px solid var(--p-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm-plus);
}
.protocol-dark .adaptation-card__title {
    font-family: var(--font-important);
    font-size: var(--text-xs-plus);
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: var(--spacing-xs-plus);
}
.protocol-dark .adaptation-card__text {
    font-family: var(--font-body);
    font-size: var(--text-xs-plus);
    color: var(--p-text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════ */
.protocol-cta {
    background: linear-gradient(180deg, var(--p-bg-mid) 0%, var(--p-bg-light) 100%);
    padding: 80px var(--page-padding);
    position: relative;
    border-top: 1px solid var(--p-border);
}
.protocol-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse 60% 100% at 50% 100%, var(--gold-08) 0%, transparent 70%);
    pointer-events: none;
}
.protocol-cta__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}
.protocol-cta__button {
    display: inline-block;
    padding: var(--spacing-sm-mid) var(--spacing-lg);
    background: linear-gradient(135deg, var(--p-gold) 0%, var(--gold) 100%);
    color: var(--p-bg-deep);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    box-shadow:
        0 4px 20px var(--gold-30),
        inset 0 1px 0 var(--white-20);
    position: relative;
    overflow: hidden;
}
.protocol-cta__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white-20), transparent);
    transition: left 0.5s ease;
}
.protocol-cta__button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px var(--gold-40),
        inset 0 1px 0 var(--white-20);
}
.protocol-cta__button:hover::before {
    left: 100%;
}
.protocol-caution {
    max-width: 500px;
    margin: 3rem auto 0;
    padding: var(--spacing-sm-plus) var(--spacing-md);
    background: rgba(252, 211, 77, 0.08);
    border: 1px solid rgba(252, 211, 77, 0.2);
    border-radius: var(--radius-sm);
    text-align: left;
}
.protocol-caution__title {
    font-family: var(--font-important);
    font-size: var(--text-xs-plus);
    font-weight: 500;
    color: var(--p-caution);
    margin-bottom: 0.625rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}
.protocol-dark .protocol-caution__text {
    font-family: var(--font-body);
    font-size: var(--text-xs-plus);
    color: var(--ivory);
    line-height: 1.7;
}
.protocol-caution__text a {
    color: var(--p-caution);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER DARK OVERRIDE
   ═══════════════════════════════════════════════════════════════ */
.protocol-dark .footer {
    background: linear-gradient(to bottom, var(--p-bg-deep), var(--black));
    border-top: 1px solid var(--p-border);
}
.protocol-dark .footer__logo { color: var(--p-text); }
.protocol-dark .footer__links a {
    color: var(--p-text-secondary);
}
.protocol-dark .footer__links a:hover {
    color: var(--p-gold);
}
.protocol-dark .footer__credit { color: var(--p-text-muted); }

/* ═══════════════════════════════════════════════════════════════
   DISABLE SITE-WIDE PATHWAY CONNECTORS ON PROTOCOL PAGE
   ═══════════════════════════════════════════════════════════════ */
.protocol-dark section::after {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   SKILL TREE — BRANCHING KNOWLEDGE VISUALIZATION
   Codex-style sprawling knowledge map
   ═══════════════════════════════════════════════════════════════ */
.skill-tree {
    position: relative;
    padding: 100px var(--page-padding) 140px;
    background: var(--p-bg-deep);
    overflow: hidden;
}

/* Background grid pattern - Codex style */
.skill-tree::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(var(--gold-03) 1px, transparent 1px),
        linear-gradient(90deg, var(--gold-03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.skill-tree__inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    position: relative;
}

/* Central trunk container - only spans the phases */
.skill-tree__trunk {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    pointer-events: none;
}

/* Trunk line segments drawn per-phase - animated energy flow */
.skill-tree__phase::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -2rem;
    bottom: -2rem;
    width: 3px;
    background:
        linear-gradient(180deg,
            transparent 0%,
            var(--p-gold) 10%,
            var(--p-gold-border) 50%,
            var(--p-gold) 90%,
            transparent 100%
        );
    background-size: 100% 40px;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow:
        0 0 15px var(--gold-40),
        0 0 30px var(--gold-20);
    animation: trunk-flow 2s linear infinite;
}

.skill-tree__phase:first-child::before {
    top: 0;
    border-radius: var(--radius-xs) var(--radius-xs) 0 0;
}

.skill-tree__phase:last-child::before {
    bottom: 0;
    background: linear-gradient(180deg, var(--p-gold-border) 0%, transparent 100%);
    animation: none;
}

/* Central origin node at top */
.skill-tree__header::after {
    content: '◈';
    display: block;
    font-size: var(--text-2xl);
    color: var(--p-gold);
    margin-top: var(--spacing-md);
    animation: breathe 3s ease-in-out infinite;
    text-shadow: 0 0 20px var(--p-gold);
}

.skill-tree__header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 5;
}

/* Phase container */
.skill-tree__phase {
    position: relative;
    margin-bottom: 4rem;
    z-index: 2;
}

.skill-tree__phase:last-child {
    margin-bottom: 0;
}

/* Branch grid: left teacher - center hub - right teacher */
.skill-tree__branches {
    display: grid;
    grid-template-columns: 1fr 180px 1fr;
    gap: 3rem;
    align-items: start;
    padding: 0 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   PHASE HUB — Central node on trunk (Codex Medallion Style)
   ═══════════════════════════════════════════════════════════════ */
.phase-hub {
    background: linear-gradient(145deg, var(--p-bg-light) 0%, var(--p-bg-card) 100%);
    border: 2px solid;
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm-plus) var(--spacing-sm);
    text-align: center;
    position: relative;
    z-index: 5;
    box-shadow:
        0 0 30px var(--black-40),
        inset 0 1px 0 var(--white-05);
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Corner ornaments - Codex style */
.phase-hub::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid var(--p-gold-border);
    border-radius: var(--radius-xs);
    pointer-events: none;
}

.phase-hub--1 { border-color: var(--p-phase-1-accent); }
.phase-hub--2 { border-color: var(--p-phase-2-accent); }
.phase-hub--3 { border-color: var(--p-phase-3-accent); }
.phase-hub--4 { border-color: var(--p-gold); }

.phase-hub__roman {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 400;
    display: block;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 10px var(--black-30);
}

.phase-hub--1 .phase-hub__roman { color: var(--p-phase-1-accent); }
.phase-hub--2 .phase-hub__roman { color: var(--p-phase-2-accent); }
.phase-hub--3 .phase-hub__roman { color: var(--p-phase-3-accent); }
.phase-hub--4 .phase-hub__roman { color: var(--p-gold); }

.phase-hub__number {
    font-family: var(--font-mono);
    font-size: 0.5625rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--spacing-xs);
    opacity: 0.7;
}

.phase-hub--1 .phase-hub__number { color: var(--p-phase-1-accent); }
.phase-hub--2 .phase-hub__number { color: var(--p-phase-2-accent); }
.phase-hub--3 .phase-hub__number { color: var(--p-phase-3-accent); }
.phase-hub--4 .phase-hub__number { color: var(--p-gold); }

.phase-hub__title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    color: var(--ivory);
    margin: 0 0 var(--spacing-2xs);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.phase-hub__weeks {
    font-family: var(--font-mono);
    font-size: 0.5625rem;
    color: var(--p-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   TEACHER NODE — Expandable knowledge cards (Workshop Cards)
   ═══════════════════════════════════════════════════════════════ */
.teacher-node {
    background: linear-gradient(160deg, var(--p-bg-card) 0%, rgba(45, 42, 39, 0.95) 100%);
    border: 1px solid var(--p-border);
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm-plus);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.teacher-node:hover {
    border-color: var(--p-gold-border);
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px var(--black-30),
        0 0 20px var(--gold-10);
}

.teacher-node.expanded {
    border-color: var(--p-gold);
    box-shadow:
        0 12px 40px var(--black-30),
        0 0 30px var(--gold-15);
}

/* Corner marker - Codex style */
.teacher-node::after {
    content: '◈';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.5rem;
    color: var(--p-gold-border);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.teacher-node:hover::after,
.teacher-node.expanded::after {
    opacity: 1;
    color: var(--p-gold);
}

.branch--left {
    justify-self: end;
    max-width: 340px;
}

.branch--right {
    justify-self: start;
    max-width: 340px;
}

/* Branch connector lines */
.teacher-node__connector {
    display: block;
    position: absolute;
    top: 2rem;
    width: calc(1.5rem + 2px);
    height: 2px;
    background: var(--p-gold-border);
}

.branch--left .teacher-node__connector {
    right: calc(-1.5rem - 2px);
}

.branch--right .teacher-node__connector {
    left: calc(-1.5rem - 2px);
}

/* Connector dots */
.teacher-node__connector::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 8px;
    height: 8px;
    background: var(--p-gold);
    border-radius: var(--radius-full);
    box-shadow: 0 0 8px var(--p-gold);
}

.branch--left .teacher-node__connector::after {
    right: -4px;
}

.branch--right .teacher-node__connector::after {
    left: -4px;
}

.teacher-node__icon {
    font-size: var(--text-2xl);
    margin-bottom: var(--spacing-xs-plus);
    display: block;
}

.teacher-node--floor .teacher-node__icon { color: var(--p-teacher-floor); }
.teacher-node--breath .teacher-node__icon { color: var(--p-teacher-breath); }
.teacher-node--cold .teacher-node__icon { color: var(--p-teacher-cold); }
.teacher-node--heat .teacher-node__icon { color: var(--p-teacher-heat); }
.teacher-node--sun .teacher-node__icon { color: var(--p-teacher-sun); }
.teacher-node--dark .teacher-node__icon { color: var(--p-teacher-dark); }
.teacher-node--silence .teacher-node__icon { color: var(--p-teacher-silence); }
.teacher-node--hunger .teacher-node__icon { color: var(--p-teacher-hunger); }

.teacher-node__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--ivory);
    margin: 0 0 0.25rem;
}

.teacher-node__essence {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--p-gold);
    margin: 0;
}

.teacher-node__expand {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    color: var(--p-text-muted);
    margin-top: var(--spacing-sm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.teacher-node__expand::before {
    content: '[ ';
}

.teacher-node__expand::after {
    content: ' ]';
}

.teacher-node__expand-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: var(--spacing-2xs);
}

.teacher-node.expanded .teacher-node__expand-arrow {
    transform: rotate(180deg);
}

/* Hidden detail panel */
.teacher-node__detail {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.3s ease, padding 0.3s ease;
}

.teacher-node.expanded .teacher-node__detail {
    max-height: 1200px;
    opacity: 1;
    margin-top: var(--spacing-sm-mid);
    padding-top: var(--spacing-sm-mid);
    border-top: 1px solid var(--p-gold-border);
}

.teacher-node__teaching {
    font-family: var(--font-body);
    font-size: var(--text-xs-plus);
    font-style: italic;
    color: var(--p-text-secondary);
    line-height: 1.7;
    margin: 0 0 1rem;
    padding-left: var(--spacing-sm);
    border-left: 2px solid var(--p-gold-border);
}

.teacher-node__section {
    margin-bottom: var(--spacing-sm);
}

.teacher-node__section:last-child {
    margin-bottom: 0;
}

.teacher-node__section-title {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--p-gold);
    margin: 0 0 0.5rem;
}

.teacher-node__section-text {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--p-text-secondary);
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
}

.teacher-node__practices {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2xs);
}

.teacher-node__practice-tag {
    background: var(--gold-10);
    border: 1px solid var(--p-gold-border);
    color: var(--ivory);
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    padding: var(--spacing-2xs) var(--spacing-xs);
    border-radius: var(--radius-xs);
}

/* ═══════════════════════════════════════════════════════════════
   SKILL TREE MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .skill-tree__branches {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm-mid);
    }

    .skill-tree__phase::before {
        left: 1.5rem;
        transform: none;
    }

    .branch--left,
    .branch--right {
        justify-self: stretch;
        max-width: none;
        margin-left: 3.5rem;
    }

    .teacher-node__connector {
        display: none;
    }

    .teacher-node::after {
        display: none;
    }

    .phase-hub {
        margin-left: 3.5rem;
        text-align: left;
        padding: var(--spacing-sm) var(--spacing-sm-mid);
        animation: none;
    }

    .phase-hub::before {
        display: none;
    }

    .phase-hub__roman {
        font-size: var(--text-xl);
        display: inline;
        margin-right: var(--spacing-xs);
        margin-bottom: 0;
    }

    .phase-hub__number {
        display: none;
    }

    .phase-hub__title {
        display: inline;
    }

    /* Connector dots on left for mobile */
    .teacher-node .teacher-node__dot,
    .phase-hub .phase-hub__dot {
        position: absolute;
        left: -2.5rem;
        top: 1.5rem;
        width: 8px;
        height: 8px;
        background: var(--p-gold);
        border-radius: var(--radius-full);
        display: block;
        box-shadow: 0 0 6px var(--p-gold);
    }

    .phase-hub .phase-hub__dot {
        top: var(--spacing-sm-mid);
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 600px) {
    .skill-tree {
        padding: 60px var(--page-padding) 80px;
    }

    .skill-tree__phase::before {
        left: 1rem;
    }

    .branch--left,
    .branch--right,
    .phase-hub {
        margin-left: 2.75rem;
    }

    .teacher-node .teacher-node__dot,
    .phase-hub .phase-hub__dot {
        left: -2rem;
    }

    .teacher-node {
        padding: var(--spacing-sm-mid);
    }

    .teacher-node__icon {
        font-size: var(--text-xl);
    }

    .teacher-node__title {
        font-size: var(--text-base);
    }

    .teacher-node__section-text {
        font-size: var(--text-xs);
    }

    .teacher-node__practice-tag {
        font-size: var(--text-2xs);
        padding: var(--spacing-2xs) var(--spacing-2xs);
    }
}

/* Hide mobile dots on desktop */
.teacher-node__dot,
.phase-hub__dot {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   WELCOME WINDOW CAPTION — Below the card
   ═══════════════════════════════════════════════════════════════ */

.welcome-window__caption {
    font-family: var(--font-mono, 'Space Grotesk', monospace);
    font-size: var(--text-2xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--p-text-muted, rgba(200, 190, 170, 0.5));
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-lg);
}

/* ═══════════════════════════════════════════════════════════════
   PHASES GRID — Simplified 4-phase shape display
   ═══════════════════════════════════════════════════════════════ */

.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.phases-grid .phase-card {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.phase-card__roman {
    font-family: var(--font-display, 'Cinzel', serif);
    font-size: var(--text-2xl);
    color: var(--gold, #c4a855);
    line-height: 1;
    flex-shrink: 0;
}

.phase-card__header {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
}

.phase-card__weeks {
    font-family: var(--font-mono, 'Space Grotesk', monospace);
    font-size: var(--text-2xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--p-text-muted, rgba(200, 190, 170, 0.5));
    margin-left: auto;
}

.phase-card__title {
    font-family: var(--font-display, 'Cinzel', serif);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--ivory);
    margin: 0;
    line-height: 1.3;
}

.phase-card__teachers {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.phase-card__teacher {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: var(--text-sm);
    color: var(--white-70, rgba(255,255,255,0.7));
    font-weight: 500;
}

.phase-card__essence {
    font-family: var(--font-mono, 'Space Grotesk', monospace);
    font-size: var(--text-2xs);
    color: var(--gold, #c4a855);
    font-weight: 400;
    margin-left: 0.5em;
    letter-spacing: 0.05em;
}

.phase-card__sentence {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--white-55, rgba(255,255,255,0.55));
    margin: 0;
    flex: 1;
}

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

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

/* ═══════════════════════════════════════════════════════════════════
   FOUR SKETCHES — scenario vignettes
   ═══════════════════════════════════════════════════════════════════ */

.sketches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.sketch-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--gold-15);
    border-radius: 0.75rem;
    padding: var(--spacing-lg);
    position: relative;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.sketch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.55;
}

.sketch-card:hover {
    border-color: var(--gold-30, rgba(212,184,114,0.30));
    transform: translateY(-2px);
}

.sketch-card__header {
    margin-bottom: 1.25rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--gold-15);
}

.sketch-card__tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.sketch-card__title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--ivory);
    margin: 0;
    letter-spacing: 0.02em;
}

.sketch-card__presenting,
.sketch-card__arc {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 1rem;
}

.sketch-card__presenting strong,
.sketch-card__arc strong {
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-right: 0.5rem;
}

.sketch-card__arc {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .sketches-grid { grid-template-columns: 1fr; gap: var(--spacing-md); }
}

/* ═══════════════════════════════════════════════════════════════════
   INTAKE SAMPLE — excerpt from the AUM onboarding diagnostic
   ═══════════════════════════════════════════════════════════════════ */

.intake-sample {
    max-width: 760px;
    margin: var(--spacing-xl) auto 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--gold-20, rgba(212,184,114,0.20));
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.intake-sample__header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.25rem 1.75rem;
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid var(--gold-15);
}

.intake-sample__page {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.9;
}

.intake-sample__section-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244,240,232,0.6);
}

.intake-sample__questions {
    list-style: none;
    margin: 0;
    padding: 1.75rem;
    counter-reset: intake-q;
}

.intake-sample__q {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--white-08, rgba(255,255,255,0.08));
    display: grid;
    grid-template-columns: 3rem 1fr;
    column-gap: 1rem;
    row-gap: 0.5rem;
}
.intake-sample__q:first-child { padding-top: 0; }
.intake-sample__q:last-child { padding-bottom: 0; border-bottom: none; }

.intake-sample__q-num {
    grid-row: 1;
    grid-column: 1;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--gold);
    opacity: 0.85;
    padding-top: 0.2rem;
}

.intake-sample__q-text {
    grid-row: 1;
    grid-column: 2;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.55;
    color: var(--ivory);
    margin: 0;
    font-weight: 500;
}

.intake-sample__options {
    grid-row: 2;
    grid-column: 2;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.intake-sample__options li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(244,240,232,0.72);
}
.intake-sample__options li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 0.7rem;
    height: 0.7rem;
    border: 1px solid var(--gold-30, rgba(212,184,114,0.30));
    border-radius: 50%;
}

.intake-sample__free {
    grid-row: 2;
    grid-column: 2;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: rgba(244,240,232,0.5);
    margin: 0;
    padding: 0.6rem 0.85rem;
    border: 1px dashed var(--gold-20, rgba(212,184,114,0.20));
    border-radius: 0.35rem;
    background: rgba(0,0,0,0.15);
}

.intake-sample__note {
    grid-row: 3;
    grid-column: 2;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    opacity: 0.65;
    margin: 0.35rem 0 0;
    padding-left: 0.75rem;
    border-left: 2px solid var(--gold-30, rgba(212,184,114,0.30));
    line-height: 1.5;
}

.intake-sample__footer {
    padding: 1.5rem 1.75rem;
    background: rgba(0,0,0,0.20);
    border-top: 1px solid var(--gold-15);
}
.intake-sample__footer p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(244,240,232,0.7);
    font-style: normal;
}

@media (max-width: 600px) {
    .intake-sample__questions { padding: 1.25rem; }
    .intake-sample__q { grid-template-columns: 2.25rem 1fr; column-gap: 0.65rem; }
    .intake-sample__q-text { font-size: 0.95rem; }
    .intake-sample__header { padding: 1rem 1.25rem; }
    .intake-sample__footer { padding: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   CTA — multi-button bottom
   ═══════════════════════════════════════════════════════════════════ */

.protocol-cta__lead {
    text-align: center;
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(244,240,232,0.85);
    max-width: 38rem;
    margin: 0 auto 2rem;
}

.protocol-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.protocol-cta__button--primary {
    /* keep existing button styling; no override */
}

.protocol-cta__button--secondary {
    background: transparent;
    border: 1px solid var(--gold-30, rgba(212,184,114,0.30));
    color: var(--gold);
}
.protocol-cta__button--secondary:hover {
    border-color: var(--gold);
    background: var(--gold-10, rgba(212,184,114,0.10));
}

@media (max-width: 600px) {
    .protocol-cta__actions { flex-direction: column; align-items: stretch; max-width: 22rem; margin: 0 auto; }
    .protocol-cta__button { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   FIT BLOCK — "Who this is for / who this isn't"
   ═══════════════════════════════════════════════════════════════════ */

.fit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.fit-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
    border: 1px solid var(--gold-15);
    border-radius: 0.75rem;
    padding: var(--spacing-lg);
    position: relative;
}
.fit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    border-radius: 0.75rem 0 0 0.75rem;
}
.fit-card--for::before    { background: var(--gold); opacity: 0.55; }
.fit-card--against::before { background: var(--burgundy); opacity: 0.45; }

.fit-card__heading {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.88;
    margin: 0 0 1rem;
}
.fit-card--against .fit-card__heading {
    color: var(--burgundy-light, #8A3A46);
    opacity: 0.92;
}

.fit-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.fit-card__list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.96rem;
    line-height: 1.6;
    color: rgba(244, 240, 232, 0.9);
}
.fit-card--for .fit-card__list li::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--gold);
    opacity: 0.75;
}
.fit-card--against .fit-card__list li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-mono);
    color: var(--burgundy-light, #8A3A46);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .fit-grid { grid-template-columns: 1fr; gap: var(--spacing-md); }
}

/* ═══════════════════════════════════════════════════════════════════
   DELIVERABLES — "What you get" three rows before the CTA
   ═══════════════════════════════════════════════════════════════════ */

.deliverables-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: var(--spacing-xl);
    max-width: 780px;
}

.deliverable {
    display: grid;
    grid-template-columns: 4rem 1fr;
    column-gap: 1.5rem;
    align-items: start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gold-15);
}
.deliverable:last-child {
    border-bottom: none;
}

.deliverable__num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
    opacity: 0.85;
}

.deliverable__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--ivory);
    letter-spacing: 0.01em;
    margin: 0 0 0.5rem;
}

.deliverable__text {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(244, 240, 232, 0.78);
    margin: 0;
}

@media (max-width: 600px) {
    .deliverable {
        grid-template-columns: 3rem 1fr;
        column-gap: 1rem;
    }
    .deliverable__num { font-size: 1.5rem; }
    .deliverable__title { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   CTA COOLDOWN — quiet line above the lead, low vocabulary, second-person
   ═══════════════════════════════════════════════════════════════════ */

.protocol-cta__cooldown {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-style: normal;
    color: rgba(244, 240, 232, 0.6);
    text-align: center;
    margin: 0 auto 1.25rem;
    letter-spacing: 0.01em;
    max-width: 36rem;
    line-height: 1.6;
}
