/* ====================== DECENTRALIZED MASTERS — GLOBAL STYLES ====================== */
html, body { overflow-x: hidden; }
section { overflow: hidden; }
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
    --bg:        #020408;
    --bg2:       #080d14;
    --bg3:       #0c1521;
    --panel:     rgba(12,21,33,0.8);
    --glass:     rgba(255,255,255,0.04);
    --glass2:    rgba(255,255,255,0.07);
    --border:    rgba(255,255,255,0.08);
    --border2:   rgba(255,255,255,0.14);
    --accent:    #3b82f6;
    --accent2:   #60a5fa;
    --success:   #10b981;
    --success2:  #34d399;
    --warning:   #f59e0b;
    --danger:    #ef4444;
    --text:      #f1f5f9;
    --muted:     #64748b;
    --muted2:    #94a3b8;
    --gold:      #f59e0b;
    --orange:    #f97316;
    --shadow:    0 4px 32px rgba(0,0,0,0.5);
    --shadow2:   0 8px 48px rgba(0,0,0,0.6);
    --glow-blue: 0 0 40px rgba(59,130,246,0.15);
    --glow-green:0 0 40px rgba(16,185,129,0.15);
    --radius:    16px;
    --radius2:   24px;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ── BACKGROUND MESH ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 10% 20%, rgba(59,130,246,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(16,185,129,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 50% 50%, rgba(59,130,246,0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

* { position: relative; z-index: 1; }

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

h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── HEADER ── */
header {
    background: rgba(2,4,8,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 68px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 0 var(--border), var(--shadow);
}

.logo-link { display: flex; align-items: center; }
.logo { height: 38px; filter: brightness(1.15); }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li, .nav-links a {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--muted2);
    cursor: pointer;
    transition: color 0.2s;
    text-transform: uppercase;
}

.nav-links li:hover, .nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text); }

.apply-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(59,130,246,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.apply-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,130,246,0.4); }
.apply-btn.large { font-size: 1rem; padding: 0.9rem 2.2rem; }

/* ── GLASS CARD ── */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.glass-card:hover { border-color: var(--border2); }

/* ── BUTTONS ── */
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff; border: none; border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
    cursor: pointer; letter-spacing: 0.03em;
    box-shadow: 0 4px 16px rgba(59,130,246,0.3);
    transition: all 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,130,246,0.4); }

.btn-success {
    background: linear-gradient(135deg, var(--success), var(--success2));
    color: #fff; border: none; border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(16,185,129,0.3);
    transition: all 0.2s;
}
.btn-success:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,185,129,0.4); }

.btn-danger {
    background: linear-gradient(135deg, var(--danger), #f87171);
    color: #fff; border: none; border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(239,68,68,0.3);
    transition: all 0.2s;
}
.btn-danger:hover { transform: translateY(-2px); }

/* ── BADGE ── */
.badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.2rem 0.7rem; border-radius: 50px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
    text-transform: uppercase;
}
.badge-green  { background: rgba(16,185,129,0.15); color: var(--success2); border: 1px solid rgba(16,185,129,0.25); }
.badge-blue   { background: rgba(59,130,246,0.15);  color: var(--accent2);  border: 1px solid rgba(59,130,246,0.25);  }
.badge-yellow { background: rgba(245,158,11,0.15);  color: var(--warning);  border: 1px solid rgba(245,158,11,0.25);  }
.badge-red    { background: rgba(239,68,68,0.15);   color: #f87171;         border: 1px solid rgba(239,68,68,0.25);   }

/* ── TABLE ── */
.dm-table { width: 100%; border-collapse: collapse; }
.dm-table th {
    padding: 0.85rem 1rem;
    text-align: left;
    font-family: var(--font-head);
    font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); border-bottom: 1px solid var(--border);
}
.dm-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.9rem; color: var(--muted2);
}
.dm-table tr:last-child td { border-bottom: none; }
.dm-table tr:hover td { background: rgba(255,255,255,0.02); color: var(--text); }

/* ── INPUTS ── */
.dm-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body); font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.dm-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.dm-input::placeholder { color: var(--muted); }
.dm-input option { background: var(--bg2); color: var(--text); }

/* ── MODAL ── */
.modal {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
    z-index: 10001; align-items: center; justify-content: center;
    padding: 1rem; overflow-y: auto;
}
.modal.open { display: flex; }
.modal-box {
    background: linear-gradient(145deg, var(--bg2), var(--bg3));
    border: 1px solid var(--border2);
    border-radius: var(--radius2);
    padding: 2.5rem;
    width: 100%; max-width: 560px;
    box-shadow: var(--shadow2);
    position: relative;
    animation: modal-in 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modal-in {
    from { opacity:0; transform: scale(0.92) translateY(20px); }
    to   { opacity:1; transform: scale(1)    translateY(0);    }
}
.modal-close {
    position: absolute; top: 1.2rem; right: 1.2rem;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--glass2); border: 1px solid var(--border);
    color: var(--muted2); font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s;
}
.modal-close:hover { background: var(--danger); color: #fff; border-color: var(--danger); }

/* ── FOOTER ── */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 2.5rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.8;
    margin-top: 5rem;
}

/* ── HERO (index.html) ── */
.hero {
    padding: 7rem 2rem 5rem;
    text-align: center;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: var(--font-head);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, var(--accent2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.hero p { font-size: 1.1rem; color: var(--muted2); max-width: 600px; margin: 0 auto 2rem; }
.trustpilot { color: var(--muted); font-size: 0.85rem; margin-top: 1rem; }

/* ── FEATURED ── */
.featured {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    background: rgba(255,255,255,0.01);
}
.featured-eyebrow {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: var(--font-head);
    font-weight: 600;
    margin-bottom: 1.75rem;
}
.logos-track-wrap {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden;
}
.logos-fade-left,
.logos-fade-right {
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.logos-fade-left  { left:  0; background: linear-gradient(to right,  var(--bg), transparent); }
.logos-fade-right { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.logos-track { overflow: hidden; }
.logos-inner {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: logo-scroll 18s linear infinite;
}
.logos-inner:hover { animation-play-state: paused; }
@keyframes logo-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.logo-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.75rem;
    margin: 0 0.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50px;
    transition: background 0.3s, border-color 0.3s;
}
.logo-pill:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
}
.logo-pill img {
    height: 20px;
    width: auto;
    filter: brightness(1.4) invert(1);
    opacity: 1;
    transition: opacity 0.3s, filter 0.3s;
    display: block;
}
.logo-pill:hover img {
    opacity: 1;
    filter: brightness(2) invert(1);
}

/* ── STATS ── */
.stats { padding: 5rem 2rem; text-align: center; }
.stats h2 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 0.5rem; }
.stats > p { color: var(--muted2); margin-bottom: 3rem; }
.stat-cards { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.stat-cards .card {
    background: var(--glass); border: 1px solid var(--border);
    padding: 2rem; border-radius: var(--radius2); min-width: 180px;
    text-align: center; backdrop-filter: blur(16px);
    transition: transform 0.3s, border-color 0.3s;
}
.stat-cards .card:hover { transform: translateY(-6px); border-color: var(--border2); }
.stat-cards .card .icon { font-size: 2rem; margin-bottom: 1rem; color: var(--accent); }
.stat-cards .card h3 { font-size: 2.2rem; font-family: var(--font-head); background: linear-gradient(135deg, #fff, var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-cards .card p { color: var(--muted2); font-size: 0.85rem; margin-top: 0.3rem; }

/* ── ABN SYSTEM ── */
.abn-system {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, transparent, var(--bg2), transparent);
    text-align: center;
}
.abn-system h2 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 0.5rem; }
.abn-system .proven { color: var(--success); font-size: 0.75rem; vertical-align: middle; margin-left: 0.5rem; }
.abn-system .subtext { color: var(--muted2); margin-bottom: 3rem; }
.phase-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; align-items: center; flex-wrap: wrap; }
.phase-buttons span { color: var(--muted); }
.phase-btn {
    background: var(--glass); border: 1px solid var(--border2);
    color: var(--text); padding: 0.6rem 1.5rem; border-radius: 50px;
    font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
    cursor: pointer; transition: all 0.2s;
}
.phase-btn:hover { background: var(--accent); border-color: var(--accent); }
.phase {
    max-width: 900px; margin: 0 auto 2rem;
    background: var(--glass); border: 1px solid var(--border);
    border-radius: var(--radius2); padding: 2.5rem; text-align: left;
    backdrop-filter: blur(16px);
}
.phase h3 { font-size: 1rem; color: var(--accent); letter-spacing: 0.05em; margin-bottom: 0.3rem; }
.phase h4 { font-size: 1.5rem; margin-bottom: 1rem; }
.phase > p { color: var(--muted2); margin-bottom: 1.5rem; }
.phase-content { display: flex; gap: 2rem; align-items: flex-start; }
.phase-text { flex: 1; }
.detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.detail .icon { font-size: 1.5rem; color: var(--accent); flex-shrink: 0; margin-top: 0.2rem; }
.detail p { color: var(--muted2); font-size: 0.9rem; }
.detail p strong { display: block; color: var(--text); margin-bottom: 0.2rem; }
.phase-image { width: 220px; height: 220px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; border: 1px solid var(--border); }
.phase-image video { width: 100%; height: 100%; object-fit: cover; }

/* ── SYSTEM WORKS ── */
.system-works { padding: 5rem 2rem; text-align: center; }
.system-works h2 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 1rem; }
.system-works > p { color: var(--muted2); max-width: 700px; margin: 0 auto 1rem; }
.members { color: var(--muted); font-size: 0.85rem; margin-bottom: 2rem; }
.member-photos { display: flex; justify-content: center; gap: 1rem; margin: 2rem 0; flex-wrap: wrap; }
.member-photo { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; border: 2px solid var(--border2); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.trustpilot-section { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; max-width: 1200px; margin: 3rem auto 0; }
.trustpilot-stats { background: var(--glass); border: 1px solid var(--border); padding: 2rem; border-radius: var(--radius2); max-width: 280px; text-align: center; }
.see-all-btn { background: var(--glass); border: 1px solid var(--border2); color: var(--text); padding: 0.6rem 1.4rem; border-radius: 50px; font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; cursor: pointer; margin-top: 1rem; transition: all 0.2s; }
.see-all-btn:hover { background: var(--accent); border-color: var(--accent); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; max-width: 1200px; margin: 0 auto; }
.testimonial { background: var(--glass); border: 1px solid var(--border); padding: 1.5rem; border-radius: var(--radius2); text-align: left; }
.testimonial .rating { color: var(--gold); margin-bottom: 0.75rem; }
.testimonial p { font-size: 0.88rem; color: var(--muted2); margin-bottom: 0.75rem; line-height: 1.6; }
.testimonial span { font-size: 0.8rem; color: var(--muted); font-style: italic; }

/* ── STORY / SMART MONEY ── */
.story-vision, .smart-money { padding: 5rem 2rem; text-align: center; }
.story-vision h2, .smart-money h2 { font-size: clamp(1.6rem,3vw,2.5rem); margin-bottom: 2rem; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.video-container { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius2); overflow: hidden; border: 1px solid var(--border); }
.video-container iframe { width: 100%; height: 100%; border: none; }

/* ── SUCCESS HUB ── */
.success-hub { padding: 5rem 2rem; text-align: center; }
.success-nav { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; flex-wrap: wrap; }
.success-nav a { background: var(--glass); border: 1px solid var(--border); color: var(--muted2); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.82rem; transition: all 0.2s; }
.success-nav a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.success-hub h2 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 0.5rem; }
.success-hub > p { color: var(--muted2); margin-bottom: 2rem; }
.hub-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hub-btn { background: var(--glass); border: 1px solid var(--border2); color: var(--text); padding: 0.6rem 1.5rem; border-radius: 50px; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; cursor: pointer; letter-spacing: 0.04em; transition: all 0.2s; }
.hub-btn:hover, .hub-btn.active { background: var(--accent); border-color: var(--accent); }
.success-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.success-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius2); overflow: hidden; }
.success-card iframe { width: 100%; aspect-ratio: 16/9; border: none; }
.success-card p { padding: 1rem; font-size: 0.88rem; color: var(--muted2); }

/* ── WHO WE ARE ── */
.who-we-are { padding: 5rem 2rem; text-align: center; }
.who-we-are h2 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 1rem; }
.founder-section { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; max-width: 1200px; margin: 2rem auto 0; }
.founder-card { display: flex; gap: 1.5rem; max-width: 560px; background: var(--glass); border: 1px solid var(--border); padding: 1.5rem; border-radius: var(--radius2); text-align: left; }
.founder-img { width: 160px; height: 200px; object-fit: cover; object-position: top; border-radius: var(--radius); flex-shrink: 0; }
.founder-text p { font-size: 0.88rem; color: var(--muted2); line-height: 1.7; }
.founder-text p strong { display: block; color: var(--text); font-size: 1rem; margin-bottom: 0.2rem; }

/* ── TEAM ── */
.team { padding: 5rem 2rem; text-align: center; max-width: 1100px; margin: 0 auto; }
.team h1 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 3rem; }
.team-members { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.team-member { text-align: center; width: 140px; }
.team-member img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border2); margin: 0 auto 0.75rem; }
.team-member p { font-size: 0.88rem; font-weight: 600; }
.team-member small { color: var(--muted); font-size: 0.78rem; }

/* ── REVIEWS ── */
.reviews { padding: 5rem 2rem; text-align: center; max-width: 1200px; margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.review { background: var(--glass); border: 1px solid var(--border); padding: 1.5rem; border-radius: var(--radius2); text-align: left; }
.review h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--accent); }
.review p { font-size: 0.88rem; color: var(--muted2); }

/* ── TRANSITION ── */
.transition { padding: 6rem 2rem; text-align: center; max-width: 900px; margin: 0 auto; }
.transition h1 { font-size: clamp(2rem,5vw,3.5rem); margin-bottom: 1rem; }
.transition p { color: var(--muted2); margin-bottom: 1rem; }
.btn { display: inline-block; margin: 1.5rem 0; padding: 0.9rem 2.2rem; border-radius: 50px; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; box-shadow: 0 4px 16px rgba(59,130,246,0.3); transition: all 0.2s; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(59,130,246,0.4); }

/* ── FAQ ── */
.faq { padding: 5rem 2rem; max-width: 1000px; margin: 0 auto; text-align: center; }
.faq h2 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 2rem; }
.faq-questions { text-align: left; margin-top: 2rem; }
.faq-item { margin-bottom: 0.75rem; }
.faq-question { background: var(--glass); border: 1px solid var(--border); padding: 1.1rem 1.5rem; border-radius: var(--radius); font-family: var(--font-head); font-size: 0.95rem; cursor: pointer; transition: all 0.2s; display: flex; justify-content: space-between; align-items: center; }
.faq-question:hover { background: var(--glass2); border-color: var(--border2); color: var(--accent); }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-question.open::after { transform: rotate(45deg); color: var(--accent); }
.faq-answer { display: none; padding: 1.5rem; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius) var(--radius); font-size: 0.9rem; color: var(--muted2); line-height: 1.8; }

/* ── CONTENT HUB ── */
.content-hub { padding: 5rem 2rem; text-align: center; max-width: 1200px; margin: 0 auto; }
.content-hub h2 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 2rem; }
.content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.content-grid .video-container { aspect-ratio: 16/9; }

/* ── COMMUNITY ── */
.community { padding: 5rem 2rem; text-align: center; max-width: 800px; margin: 0 auto; }
.community h2 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 1rem; }
.community-icons { display: flex; justify-content: center; gap: 3rem; margin: 2.5rem 0; flex-wrap: wrap; }
.community-icons div { text-align: center; color: var(--muted2); }
.community-icons div:hover { color: var(--accent); }

/* ── CONTACT ── */
.contact-us { padding: 5rem 2rem; text-align: center; max-width: 600px; margin: 0 auto; }
.contact-us h2 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 1rem; }
.contact-us form { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; text-align: left; }
.contact-us input, .contact-us textarea { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.9rem 1rem; color: var(--text); font-family: var(--font-body); font-size: 1rem; outline: none; transition: border-color 0.2s; }
.contact-us input:focus, .contact-us textarea:focus { border-color: var(--accent); }
.contact-us input::placeholder, .contact-us textarea::placeholder { color: var(--muted); }
.contact-us textarea { height: 120px; resize: vertical; }

/* ── APPLICATION PAGE ── */
.header { text-align: center; padding: 2rem 1rem 1rem; display: flex; flex-direction: column; align-items: center; }
.apply-now-section { text-align: center; max-width: 560px; }
.headline { font-size: clamp(1.4rem,3vw,2rem); font-family: var(--font-head); font-weight: 800; margin: 0.5rem 0; }
.headline .accent { color: var(--accent); }
.sub { color: var(--muted2); font-size: 0.9rem; margin-top: 0.5rem; }
.trust { display: inline-flex; gap: 0.75rem; align-items: center; margin-top: 0.75rem; font-size: 0.85rem; }
.avatar-row { display: flex; justify-content: center; gap: 0.5rem; margin: 1rem 0 0.5rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #818cf8); border: 2px solid rgba(255,255,255,0.2); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 0.75rem; color: #fff; }
.wrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.card { width: 100%; max-width: 600px; background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: var(--radius2); overflow: hidden; }
.card-top-stripe { height: 4px; background: linear-gradient(90deg, var(--accent) var(--prog, 0%), rgba(255,255,255,0.05) var(--prog, 0%)); transition: --prog 0.3s; }
.card-body { padding: 2.5rem; min-height: 360px; position: relative; }
.step-indicator { color: var(--accent); font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.question { font-size: 1.15rem; font-family: var(--font-head); font-weight: 700; margin-bottom: 1.5rem; line-height: 1.4; }
.options label { display: block; margin-bottom: 0.75rem; padding: 0.9rem 1.1rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--glass); cursor: pointer; font-size: 0.92rem; transition: all 0.2s; }
.options label:hover { background: var(--glass2); border-color: var(--border2); }
.options input[type="radio"] { margin-right: 0.6rem; accent-color: var(--accent); }
.ok-row { display: flex; gap: 1rem; align-items: center; margin-top: 1.25rem; }
.ok-row .btn { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; padding: 0.7rem 1.4rem; border-radius: 50px; border: none; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; box-shadow: 0 4px 16px rgba(59,130,246,0.3); transition: all 0.2s; }
.ok-row .btn:hover { transform: translateY(-2px); }
.hint { color: var(--muted); font-size: 0.78rem; }
.error { color: var(--danger); font-size: 0.85rem; margin-top: 0.75rem; display: none; }
.nav-ctrl { position: absolute; right: 1.2rem; bottom: 1rem; display: flex; gap: 0.5rem; }
.nav-btn { width: 36px; height: 32px; background: var(--glass2); border: 1px solid var(--border); color: var(--text); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; font-size: 0.8rem; }
.nav-btn:hover { background: var(--accent); border-color: var(--accent); }
.step { opacity:0; transform: translateY(12px); transition: opacity 0.28s, transform 0.28s; pointer-events: none; position: absolute; inset: 0; padding: 2.5rem; }
.step.active { opacity:1; transform: translateY(0); pointer-events: auto; position: relative; }
.footer { background: var(--bg2); border-top: 1px solid var(--border); color: var(--muted); font-size: 0.78rem; padding: 2rem; line-height: 1.7; text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.active { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: rgba(2,4,8,0.98); backdrop-filter: blur(20px); padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); gap: 1.2rem; z-index: 9999; }
    .hamburger { display: block; }
    .apply-btn { display: none; }
    .phase-content { flex-direction: column; }
    .phase-image { width: 100%; height: 200px; }
    .founder-card { flex-direction: column; }
    .founder-img { width: 100%; height: 320px; object-position: top; }
    .card-body, .step { padding: 1.5rem; }
    .hero { padding: 4rem 1.5rem 3rem; }
}