/* ============================================
   LIFESHIP INSTITUTE - STYLES
   ============================================
   Easy to edit CSS file
   Color variables at the top for quick changes
   ============================================ */

/* ============================================
   COLOR VARIABLES - Edit these to change theme
   ============================================ */
:root {
    --navy: #0B1F3A;
    --abyss: #030a14;
    --gold: #D4AF37;
    --gold-hi: #e8c870;
    --teal: #1A7A6E;
    --teal-hi: #22a093;
    --ivory: #F5F2EC;
    --fog: rgba(245,242,236,0.6);
    --slate: #8a9db8;
    --panel: #0d1f35;
    --border-accent: rgba(212,175,55,0.15);
}

/* ============================================
   BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--abyss);
    color: var(--ivory);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--abyss); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--teal));
    border-radius: 4px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 72px;
    transition: all 0.5s;
}

.nav.slim {
    padding: 18px 72px;
    background: rgba(3,10,20,0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-accent);
}

.n-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 5px;
    color: var(--ivory);
    display: flex;
    align-items: center;
    gap: 11px;
    transition: transform 0.3s;
}

.n-brand:hover { transform: scale(1.02); }
.n-brand em { color: var(--gold); font-style: normal; }

.n-links {
    display: flex;
    gap: 40px;
}

.n-links a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--slate);
    transition: color 0.3s;
    position: relative;
}

.n-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.n-links a:hover { color: var(--ivory); }
.n-links a:hover::after { transform: scaleX(1); }

.n-cta {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--abyss);
    background: linear-gradient(135deg, var(--gold), var(--gold-hi));
    padding: 14px 32px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(212,175,55,0.25);
}

.n-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.35);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3,10,20,0.98);
    z-index: 350;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--ivory);
    transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.h-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 100% 60% at 50% 5%, rgba(26,122,110,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 10% 90%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(26,122,110,0.06) 0%, transparent 50%),
        linear-gradient(175deg, #061222 0%, var(--abyss) 35%, #081830 100%);
}

.h-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212,175,55,0.12) 1px, transparent 1px);
    background-size: 52px 52px;
    animation: gDrift 80s linear infinite;
    opacity: 0.35;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
}

@keyframes gDrift {
    0% { background-position: 0 0; }
    100% { background-position: 52px 52px; }
}

.h-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.h-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.h-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    top: 10%;
    left: 5%;
}

.h-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.h-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--teal-hi) 0%, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

.h-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 32px;
}

.h-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.h-eyebrow::before, .h-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.h-eyebrow::after { transform: scaleX(-1); }

.h-hed {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 15vw, 160px);
    letter-spacing: 0.05em;
    line-height: 0.85;
}

.h-hed .solid { color: var(--ivory); }
.h-hed .outline { -webkit-text-stroke: 2px var(--gold); color: transparent; }
.h-hed .teal-fill { color: var(--teal-hi); }

.h-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2vw, 22px);
    font-style: italic;
    color: var(--fog);
    letter-spacing: 0.5px;
    line-height: 1.7;
    margin: 28px 0 52px;
}

.h-sub strong {
    color: var(--gold-hi);
    font-style: normal;
    font-weight: 600;
}

.h-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.h-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--slate);
    font-size: 0.6rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    animation: blink 3s ease infinite;
}

.h-scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes blink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.9; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-fill {
    display: inline-block;
    padding: 16px 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-hi));
    color: var(--abyss);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 25px rgba(212,175,55,0.3);
    cursor: pointer;
    border: none;
}

.btn-fill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212,175,55,0.4);
}

.btn-fill:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-stroke {
    display: inline-block;
    padding: 16px 42px;
    background: transparent;
    border: 1px solid rgba(212,175,55,0.5);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-stroke::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-hi));
    transform: translateY(100%);
    transition: transform 0.4s;
    z-index: 0;
}

.btn-stroke span { position: relative; z-index: 1; }
.btn-stroke:hover { border-color: var(--gold); color: var(--abyss); }
.btn-stroke:hover::before { transform: translateY(0); }

/* ============================================
   TICKER
   ============================================ */
.ticker-wrap {
    background: linear-gradient(90deg, var(--gold), var(--gold-hi), var(--gold));
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.ticker-track {
    display: inline-block;
    animation: tick 35s linear infinite;
}

.ticker-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 4.5px;
    color: var(--abyss);
    margin: 0 48px;
}

@keyframes tick {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--panel);
    border-bottom: 1px solid var(--border-accent);
}

.s-cell {
    padding: 60px 32px;
    text-align: center;
    border-right: 1px solid rgba(212,175,55,0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.5s;
}

.s-cell:last-child { border-right: none; }
.s-cell:hover { background: rgba(212,175,55,0.03); }

.s-cell::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.6s;
}

.s-cell:hover::after { transform: scaleX(1); }

.s-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.8rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold), var(--gold-hi));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.s-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--slate);
    line-height: 1.7;
}

/* ============================================
   SECTIONS - GENERAL
   ============================================ */
.wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 72px;
}

.section {
    padding: 130px 0;
}

.tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 5.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.tag-center {
    justify-content: center;
}

.tag-center::before { display: none; }

.display {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(46px, 6.5vw, 76px);
    letter-spacing: 2px;
    line-height: 0.92;
    color: var(--ivory);
}

.display em {
    color: var(--gold);
    font-style: normal;
}

.prose {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--fog);
    font-weight: 300;
}

.prose strong {
    color: var(--ivory);
    font-weight: 500;
}

.prose + .prose { margin-top: 22px; }

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

/* ============================================
   PROBLEM SECTION
   ============================================ */
#problem { background: var(--abyss); }

.problem-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.pull-box {
    background: linear-gradient(145deg, var(--teal), #0a4f48);
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.pull-box::before {
    content: open-quote;
    position: absolute;
    top: -30px;
    left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18rem;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
}

.pull-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 600;
    font-style: italic;
    line-height: 1.5;
    color: var(--ivory);
    position: relative;
    z-index: 1;
}

.pull-text em {
    color: var(--gold-hi);
    font-style: normal;
}

/* ============================================
   IDENTITY FORECLOSURE BAND
   ============================================ */
.fcl-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #0a3531, var(--teal), #0c423b);
    padding: 130px 72px;
    text-align: center;
}

.fcl-ghost {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4.5rem, 14vw, 13rem);
    color: rgba(255,255,255,0.025);
    white-space: nowrap;
    letter-spacing: 10px;
    pointer-events: none;
    line-height: 1;
}

.fcl-inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
}

.fcl-hed {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(58px, 9vw, 104px);
    letter-spacing: 5px;
    line-height: 0.88;
    color: var(--ivory);
    margin-bottom: 32px;
}

.fcl-hed em {
    -webkit-text-stroke: 2px var(--gold-hi);
    color: transparent;
    font-style: normal;
}

.fcl-body {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255,255,255,0.8);
    margin-bottom: 48px;
}

.fcl-body strong { color: var(--ivory); }

/* ============================================
   FRAMEWORK SECTION
   ============================================ */
#framework { background: var(--abyss); }

.fw-intro {
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
    padding: 130px 32px 80px;
}

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

.phase {
    padding: 90px 56px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s;
    cursor: default;
}

.phase:hover {
    transform: scale(1.03);
    z-index: 3;
}

.phase-1 { background: linear-gradient(160deg, var(--teal), #0a4d46); }
.phase-2 { background: linear-gradient(160deg, var(--navy), #04101e); border-top: 4px solid var(--gold); }
.phase-3 { background: linear-gradient(160deg, #5c3a0b, #2e1a04); }

.phase-ghost {
    position: absolute;
    bottom: -28px;
    right: -10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10rem;
    line-height: 1;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    letter-spacing: -4px;
}

.phase-step {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}

.phase-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.6rem;
    letter-spacing: 3.5px;
    color: var(--ivory);
    line-height: 0.95;
    margin-bottom: 12px;
}

.phase-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 30px;
    line-height: 1.55;
}

.phase-rule {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    margin-bottom: 26px;
}

.phase-body {
    font-size: 0.92rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.65);
}

/* ============================================
   ROADMAP SECTION
   ============================================ */
.roadmap-section {
    background: var(--panel);
    padding: 130px 0;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 64px;
}

.r-card {
    background: var(--abyss);
    padding: 44px 34px;
    border-top: 2px solid transparent;
    transition: border-color 0.4s, background 0.4s, transform 0.4s;
}

.r-card:hover {
    border-top-color: var(--gold);
    background: #0b1a2c;
    transform: translateY(-4px);
}

.r-phase {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--teal-hi);
    margin-bottom: 12px;
}

.r-weeks {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-hi));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 14px;
}

.r-title {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: 12px;
    line-height: 1.5;
}

.r-body {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.78;
}

/* ============================================
   WHO SECTION
   ============================================ */
#who { background: var(--abyss); }

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
}

.w-card {
    background: var(--panel);
    padding: 48px 40px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.4s, transform 0.4s;
    position: relative;
    overflow: hidden;
}

.w-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(212,175,55,0.06), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.w-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-6px);
}

.w-card:hover::before { opacity: 1; }

.w-icon {
    font-size: 2.2rem;
    margin-bottom: 22px;
    display: block;
    color: var(--gold);
}

.w-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2.5px;
    color: var(--ivory);
    margin-bottom: 14px;
}

.w-body {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.82;
}

/* ============================================
   OUTCOMES SECTION
   ============================================ */
#outcomes { background: var(--panel); }

.outcomes-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.o-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.o-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    font-size: 1.02rem;
    line-height: 1.78;
    color: var(--ivory);
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(212,175,55,0.08);
}

.o-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.o-tick {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--teal), var(--teal-hi));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ivory);
    margin-top: 2px;
}

.def-panel {
    background: var(--abyss);
    border-left: 4px solid var(--gold);
    padding: 60px 52px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.def-panel::after {
    content: 'LS';
    position: absolute;
    right: -16px;
    bottom: -24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14rem;
    color: rgba(212,175,55,0.03);
    line-height: 1;
    pointer-events: none;
}

.def-tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.def-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    line-height: 2.1;
    color: var(--ivory);
    font-style: italic;
}

.def-quote strong {
    color: var(--gold-hi);
    font-style: normal;
}

.def-attr {
    margin-top: 28px;
    font-size: 0.65rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--slate);
}

/* ============================================
   BOOK SECTION
   ============================================ */
#book {
    background: var(--navy);
    border-top: 1px solid var(--border-accent);
    border-bottom: 1px solid var(--border-accent);
    padding: 130px 0;
}

.book-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.book-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-hi));
    color: var(--abyss);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    margin-bottom: 28px;
}

.book-hed {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 100px);
    letter-spacing: 8px;
    color: var(--ivory);
    line-height: 0.86;
    margin-bottom: 24px;
}

.book-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 36px;
}

.book-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.book-cover-img {
    width: 360px;
    max-width: 100%;
    border: 1px solid var(--border-accent);
    box-shadow: 45px 45px 90px rgba(0,0,0,0.6), -10px -10px 35px rgba(212,175,55,0.08);
    transform: perspective(800px) rotateY(-10deg) rotateX(3deg);
    transition: transform 0.6s;
    background: linear-gradient(145deg, var(--panel), var(--abyss));
}

.book-cover-img:hover {
    transform: perspective(800px) rotateY(-3deg) rotateX(1deg);
}

.book-placeholder-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    letter-spacing: 4px;
}

.book-placeholder-subtitle {
    font-size: 0.9rem;
    color: var(--slate);
}

/* ============================================
   PRICING SECTION
   ============================================ */
#pricing {
    background: var(--abyss);
    padding: 130px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 68px;
}

.p-card {
    background: var(--panel);
    padding: 68px 56px;
    position: relative;
    border-top: 3px solid rgba(212,175,55,0.15);
    transition: transform 0.4s;
}

.p-card:hover { transform: translateY(-8px); }

.p-card.p-featured {
    background: linear-gradient(160deg, rgba(212,175,55,0.08), var(--panel));
    border-top-color: var(--gold);
    box-shadow: 0 0 60px rgba(212,175,55,0.08);
}

.p-best {
    position: absolute;
    top: 0;
    right: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-hi));
    color: var(--abyss);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 20px;
}

.p-opt {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.p-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.3rem;
    letter-spacing: 2.5px;
    color: var(--ivory);
    margin-bottom: 6px;
}

.p-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--slate);
    margin-bottom: 40px;
}

.p-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-hi));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: 2.5px;
}

.p-note {
    font-size: 0.78rem;
    color: var(--teal-hi);
    margin-bottom: 40px;
}

.p-rule {
    height: 1px;
    background: rgba(212,175,55,0.08);
    margin-bottom: 36px;
}

.p-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.p-list li {
    display: flex;
    gap: 14px;
    font-size: 0.92rem;
    color: var(--ivory);
    line-height: 1.6;
}

.p-list li::before {
    content: '>';
    color: var(--gold);
    flex-shrink: 0;
}

.btn-fill-w {
    display: block;
    width: 100%;
    padding: 18px;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-hi));
    color: var(--abyss);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(212,175,55,0.25);
    cursor: pointer;
    border: none;
}

.btn-fill-w:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.35);
}

.btn-stroke-w {
    display: block;
    width: 100%;
    padding: 18px;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(212,175,55,0.4);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-stroke-w::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-hi));
    transform: translateY(100%);
    transition: transform 0.4s;
}

.btn-stroke-w span { position: relative; z-index: 1; }
.btn-stroke-w:hover { border-color: var(--gold); color: var(--abyss); }
.btn-stroke-w:hover::before { transform: translateY(0); }

.p-footnote {
    text-align: center;
    margin-top: 32px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--slate);
}

/* ============================================
   CREDENTIALS SECTION
   ============================================ */
#credentials {
    background: var(--abyss);
    padding: 130px 0;
}

.cred-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 100px;
    align-items: start;
}

.cred-card {
    background: var(--panel);
    border-top: 4px solid var(--gold);
    padding: 56px 44px;
    text-align: center;
    position: sticky;
    top: 120px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cred-img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 12px;
    display: block;
    margin: 0 auto 32px;
    border: 3px solid var(--gold);
    background: linear-gradient(145deg, var(--abyss), var(--panel));
    object-fit: cover;
}

.profile-placeholder-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-hi));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--abyss);
    font-size: 2rem;
}

.profile-placeholder-text {
    font-size: 0.75rem;
    color: var(--slate);
    text-align: center;
}

.cred-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    letter-spacing: 3.5px;
    color: var(--ivory);
    margin-bottom: 6px;
}

.cred-role-tag {
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cred-divider {
    height: 1px;
    background: rgba(212,175,55,0.12);
    margin: 30px 0;
}

.cred-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    background: linear-gradient(135deg, var(--teal-hi), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cs-lbl {
    font-size: 0.72rem;
    color: var(--slate);
    text-align: right;
    max-width: 150px;
    line-height: 1.5;
}

.cs-heading {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 44px 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cs-heading:first-of-type { margin-top: 0; }

.cs-heading::before {
    content: '';
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.cred-body {
    font-size: 1rem;
    line-height: 2;
    color: var(--fog);
}

.cred-body strong { color: var(--ivory); }

.ci-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.ci {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--ivory);
    line-height: 1.55;
}

.ci::before {
    content: '*';
    color: var(--gold);
    flex-shrink: 0;
}

/* ============================================
   FUNDING SECTION
   ============================================ */
#funding {
    background: var(--panel);
    padding: 130px 0;
}

.funding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 52px;
}

.f-card {
    background: var(--abyss);
    padding: 48px 40px;
    border-top: 2px solid var(--gold);
    transition: transform 0.4s;
}

.f-card:hover { transform: translateY(-5px); }
.f-card:nth-child(2) { border-top-color: var(--teal); }
.f-card:nth-child(n+3) { border-top-color: rgba(212,175,55,0.35); }

.f-icon {
    font-size: 2rem;
    margin-bottom: 18px;
    display: block;
    color: var(--gold);
}

.f-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 14px;
}

.f-body {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.8;
}

.funding-cta {
    background: var(--abyss);
    border-left: 4px solid var(--gold);
    padding: 48px 52px;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.funding-cta p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--ivory);
    line-height: 2;
}

.funding-cta strong {
    color: var(--gold-hi);
    font-style: normal;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--teal), #063530 40%, var(--abyss));
    padding: 160px 72px;
    text-align: center;
}

.cta-ghost {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 20vw, 18rem);
    color: rgba(255,255,255,0.02);
    letter-spacing: 12px;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-eyebrow {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 5.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 26px;
}

.cta-hed {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 11vw, 116px);
    letter-spacing: 5px;
    color: var(--ivory);
    line-height: 0.88;
    margin-bottom: 22px;
}

.cta-hed span { color: var(--gold); }

.cta-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.55);
    max-width: 580px;
    margin: 0 auto 58px;
    line-height: 1.9;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contacts {
    display: flex;
    gap: 72px;
    justify-content: center;
    margin-top: 70px;
    flex-wrap: wrap;
}

.cc-block { text-align: center; }

.cc-lbl {
    font-size: 0.6rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 8px;
}

.cc-val {
    font-size: 0.98rem;
    color: var(--ivory);
}

.cc-val a {
    color: var(--ivory);
    transition: color 0.3s;
}

.cc-val a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-wrapper {
    max-width: 600px;
    margin: 60px auto 0;
    background: rgba(0,0,0,0.3);
    padding: 48px;
    border: 1px solid rgba(212,175,55,0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 16px;
    color: var(--ivory);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 16px;
}

.form-message {
    padding: 20px;
    text-align: center;
    margin-top: 24px;
}

.form-message.success {
    background: rgba(26,122,110,0.2);
    border: 1px solid var(--teal);
    color: var(--teal-hi);
}

.form-message.error {
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.3);
    color: #ff6b6b;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--abyss);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 48px 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.ft-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 5.5px;
    color: var(--ivory);
}

.ft-brand em {
    color: var(--gold);
    font-style: normal;
}

.ft-tagline {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: 6px;
}

.ft-email {
    margin-top: 12px;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
}

.ft-email a {
    color: var(--gold);
    transition: color 0.3s;
}

.ft-email a:hover { color: var(--gold-hi); }

.ft-shop {
    margin-top: 16px;
}

.ft-shop a {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.ft-shop a:hover {
    background: var(--gold);
    color: var(--abyss);
}

.ft-copy {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.2);
    text-align: right;
    line-height: 1.9;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media(max-width: 1200px) {
    .wrap { padding: 0 48px; }
    .cred-layout { grid-template-columns: 340px 1fr; gap: 80px; }
}

@media(max-width: 1080px) {
    .nav { padding: 18px 28px; }
    .n-links { display: none; }
    .n-cta { display: none; }
    .nav-toggle { display: flex; }
    .wrap { padding: 0 28px; }
    .section { padding: 100px 0; }
    .problem-layout, .outcomes-layout, .book-layout, .cred-layout { grid-template-columns: 1fr; gap: 60px; }
    .phases, .roadmap-grid, .who-grid, .pricing-grid, .ci-grid, .funding-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .fcl-band, #contact { padding: 100px 28px; }
    .cred-card { position: static; }
    .book-visual { order: -1; margin-bottom: 40px; }
    .book-cover-img { width: 300px; transform: none; }
    .cta-ghost, .fcl-ghost { display: none; }
    .footer { padding: 40px 28px; flex-direction: column; text-align: center; }
    .ft-copy { text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 32px 24px; }
}

@media(max-width: 600px) {
    .stats-row { grid-template-columns: 1fr; }
    .h-hed { font-size: clamp(56px, 18vw, 90px); }
    .display { font-size: clamp(36px, 10vw, 52px); }
    .book-cover-img { width: 260px; min-height: 360px; }
    .cta-contacts { flex-direction: column; gap: 32px; }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.sr {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s, transform 0.9s;
}

.sr.on {
    opacity: 1;
    transform: translateY(0);
}

.sr.d1 { transition-delay: 0.12s; }
.sr.d2 { transition-delay: 0.24s; }
.sr.d3 { transition-delay: 0.36s; }
.sr.left { transform: translateX(-40px); }
.sr.right { transform: translateX(40px); }
.sr.left.on, .sr.right.on { transform: translateX(0); }