/* Owner's Alliance — Premium Landing Page */
/* Primary: #1595d1 */

:root {
    --primary: #1595d1;
    --primary-light: #3aafe8;
    --primary-dark: #0d7ab8;
    --primary-glow: rgba(21, 149, 209, 0.35);
    --accent: #60c0e8;
    --bg-deep: #050910;
    --bg-dark: #070c14;
    --bg-card: rgba(11, 18, 30, 0.55);
    --bg-card-solid: #0b121e;
    --bg-card-hover: rgba(16, 26, 42, 0.75);
    --text: #e4eaf3;
    --text-secondary: #94a3b8;
    --text-dim: #4b5c72;
    --border: rgba(21, 149, 209, 0.1);
    --border-hover: rgba(21, 149, 209, 0.28);
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(21, 149, 209, 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(21, 149, 209, 0.45); }

/* =================== BACKGROUND =================== */
.bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 45% at 50% 0%, rgba(21, 149, 209, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 35% at 80% 100%, rgba(21, 149, 209, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-deep) 0%, #080e18 50%, var(--bg-deep) 100%);
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(21, 149, 209, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 149, 209, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 55% at 50% 25%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 25%, black, transparent);
}

.bg-orbs {
    position: absolute;
    inset: 0;
}

.bg-orb {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.15;
    animation: orbFloat 6s infinite ease-in-out;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.1; }
    50% { transform: translateY(-18px) scale(1.4); opacity: 0.3; }
}

.glow-1, .glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    will-change: transform;
}
.glow-1 {
    width: 600px;
    height: 600px;
    top: 10%;
    left: -10%;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.08), transparent 70%);
}
.glow-2 {
    width: 500px;
    height: 500px;
    bottom: 20%;
    right: -5%;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.06), transparent 70%);
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
}

/* =================== PAGE WRAPPER =================== */
.page-wrapper {
    position: relative;
    z-index: 2;
}

/* =================== TEXT GRADIENT =================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =================== NAVIGATION =================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(20px, 4vw, 56px);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(5, 9, 16, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-brand:hover { opacity: 0.85; }

.nav-logo {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 16px var(--primary-glow));
}

.nav-wordmark {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
}

.nav-center {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4px;
}

.nav-link {
    padding: 8px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(21, 149, 209, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 5px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-profile:hover { border-color: var(--border-hover); }
.nav-profile img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.nav-profile span { color: var(--text); font-size: 13px; font-weight: 500; }

.btn-nav-outline {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: inherit;
    cursor: pointer;
}

.btn-nav-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* =================== BUTTONS =================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-chevron { width: 18px; height: 18px; transition: transform 0.3s ease; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 6px 24px rgba(21, 149, 209, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(21, 149, 209, 0.45);
}

.btn-primary:hover::after { opacity: 1; }

.btn-glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-glass:hover {
    border-color: var(--primary);
    background: rgba(21, 149, 209, 0.08);
}

.btn-glass:hover .btn-chevron { transform: translateX(3px); }

.btn-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 18px 44px;
    font-size: 17px;
    box-shadow: 0 8px 32px rgba(21, 149, 209, 0.35);
    border-radius: 14px;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 14px 44px rgba(21, 149, 209, 0.5);
}

/* =================== HERO =================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 110px clamp(20px, 5vw, 80px) 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content { flex: 1; max-width: 660px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(21, 149, 209, 0.08);
    border: 1px solid var(--border);
    border-radius: 28px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 28px;
}

.badge-pulse {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin-bottom: 22px;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 540px;
}

.hero-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 36px;
}

.role-pill {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.role-pill:hover {
    border-color: rgba(21, 149, 209, 0.3);
    color: var(--primary-light);
    background: rgba(21, 149, 209, 0.06);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero constellation visual */
.hero-visual {
    flex: 0 0 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.constellation {
    position: relative;
    width: 400px;
    height: 400px;
}

.constellation-mesh {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pulse-ring {
    animation: svgPulse 4s infinite ease-in-out;
    transform-origin: center;
}

.pulse-ring.delay { animation-delay: 2s; }

@keyframes svgPulse {
    0%, 100% { opacity: 0.04; transform: scale(1); }
    50% { opacity: 0.1; transform: scale(1.04); }
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(21, 149, 209, 0.06);
}

.orbit-1 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbitSpin 45s linear infinite;
}

.orbit-2 {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbitSpin 60s linear infinite reverse;
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Center hub */
.constellation-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hub-logo {
    width: 62px;
    height: 62px;
    filter: drop-shadow(0 0 20px var(--primary-glow));
    position: relative;
    z-index: 2;
}

.hub-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 1;
}

/* Constellation nodes */
.c-node {
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(11, 18, 30, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(21, 149, 209, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.c-node:hover {
    border-color: rgba(21, 149, 209, 0.5);
    box-shadow: 0 0 20px rgba(21, 149, 209, 0.15);
}

.c-node svg {
    width: 20px;
    height: 20px;
    color: var(--primary-light);
}

/* Hex positions: center at (200,200), radius ~155 */
.c-node[data-pos="1"] { top: 6%; left: 50%; transform: translateX(-50%); }
.c-node[data-pos="2"] { top: 25.5%; left: 83%; transform: translateX(-50%); }
.c-node[data-pos="3"] { top: 64.5%; left: 83%; transform: translateX(-50%); }
.c-node[data-pos="4"] { top: 84%; left: 50%; transform: translateX(-50%); }
.c-node[data-pos="5"] { top: 64.5%; left: 17%; transform: translateX(-50%); }
.c-node[data-pos="6"] { top: 25.5%; left: 17%; transform: translateX(-50%); }

/* =================== SOCIAL PROOF BAR =================== */
.proof-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 36px 20px;
    max-width: 900px;
    margin: -20px auto 0;
    background: rgba(11, 18, 30, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    z-index: 3;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.proof-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-light);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -1px;
}

.proof-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* =================== SECTIONS COMMON =================== */
.section {
    padding: 120px clamp(20px, 5vw, 80px);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(21, 149, 209, 0.08);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =================== VERIFICATION TIMELINE =================== */
.timeline {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    padding-left: 56px;
}

.timeline-track {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    border-radius: 1px;
}

.timeline-fill {
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    box-shadow: 0 0 12px var(--primary-glow);
    border-radius: 1px;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding-bottom: 48px;
    position: relative;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-node {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -56px;
    top: 0;
    z-index: 3;
    transition: box-shadow 0.3s;
}

.timeline-node svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.timeline-node.node-accent {
    border-color: var(--warning);
}

.timeline-node.node-accent svg { color: var(--warning); }

.timeline-node.node-success {
    border-color: var(--success);
    background: rgba(34, 197, 94, 0.08);
}

.timeline-node.node-success svg { color: var(--success); }

.timeline-body {
    padding-top: 6px;
    flex: 1;
}

.timeline-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
    letter-spacing: -0.3px;
}

.timeline-body p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-branch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    color: var(--warning);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.timeline-branch:hover {
    background: rgba(245, 158, 11, 0.15);
}

.timeline-branch svg { color: var(--warning); }

/* =================== ROLES SHOWCASE =================== */
.roles-showcase {
    margin-top: 88px;
    text-align: center;
}

.roles-showcase h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

.roles-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.role-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 12px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.role-chip:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.chip-icon {
    width: 32px;
    height: 32px;
    background: rgba(21, 149, 209, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chip-icon svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.role-chip span {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
}

/* =================== NETWORKING BENTO GRID =================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bento-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(21, 149, 209, 0.25), transparent 50%, rgba(96, 192, 232, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

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

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(21, 149, 209, 0.12);
}

.bento-card-glow {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(21, 149, 209, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-card:hover .bento-card-glow { opacity: 1; }

.bento-icon {
    width: 52px;
    height: 52px;
    background: rgba(21, 149, 209, 0.08);
    border: 1px solid rgba(21, 149, 209, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.bento-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.bento-card:hover .bento-icon {
    background: rgba(21, 149, 209, 0.15);
    border-color: rgba(21, 149, 209, 0.25);
}

.bento-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
    letter-spacing: -0.3px;
}

.bento-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* =================== ACADEMY =================== */
.academy-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.academy-gradient {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 90% 45% at 50% 0%, rgba(21, 149, 209, 0.06) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.04) 0%, transparent 40%);
}

.academy-content {
    position: relative;
    z-index: 1;
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.academy-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.academy-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(21, 149, 209, 0.2), transparent 50%, rgba(96, 192, 232, 0.12));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.academy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.academy-card.highlight {
    border-color: rgba(245, 158, 11, 0.2);
    background: linear-gradient(160deg, rgba(245, 158, 11, 0.04) 0%, var(--bg-card) 40%);
}

.academy-card.highlight::before {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), transparent 50%, rgba(245, 158, 11, 0.1));
}

.growth-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 8px 18px;
    border-radius: 0 0 14px 14px;
    text-align: center;
}

.badge-amount {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: white;
}

.badge-period {
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.academy-icon {
    width: 52px;
    height: 52px;
    background: rgba(21, 149, 209, 0.08);
    border: 1px solid rgba(21, 149, 209, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.academy-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.academy-icon.accent {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
}

.academy-icon.accent svg { color: var(--warning); }

.academy-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
    letter-spacing: -0.3px;
}

.academy-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Feature list with dots (no arrows) */
.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* Growth details with SVG icons */
.growth-details {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.detail-svg {
    width: 18px;
    height: 18px;
    color: var(--warning);
    flex-shrink: 0;
}

/* Academy Journey Path */
.academy-journey {
    margin-top: 72px;
}

.journey-path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 28px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.journey-step:hover { transform: translateY(-2px); }

.journey-step.step-rejected { border-color: rgba(239, 68, 68, 0.2); }
.journey-step.step-learn { border-color: rgba(245, 158, 11, 0.2); }
.journey-step.step-grow { border-color: rgba(21, 149, 209, 0.2); }
.journey-step.step-success {
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.04);
}

.journey-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.step-rejected .journey-icon svg { color: var(--danger); }
.step-learn .journey-icon svg { color: var(--warning); }
.step-grow .journey-icon svg { color: var(--primary); }
.step-success .journey-icon svg { color: var(--success); }

.journey-step span {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-secondary);
}

.journey-connector {
    display: flex;
    align-items: center;
}

.journey-connector svg {
    width: 20px;
    height: 20px;
    color: var(--text-dim);
}

/* =================== EVENTS =================== */
.events-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-spotlight {
    display: flex;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.event-spotlight:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.spotlight-visual {
    flex: 0 0 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(21, 149, 209, 0.08) 0%, rgba(21, 149, 209, 0.02) 100%);
    overflow: hidden;
}

.spotlight-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 12px;
    background: rgba(21, 149, 209, 0.12);
    border: 1px solid var(--border);
    border-radius: 16px;
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.spotlight-icon-wrap {
    width: 72px;
    height: 72px;
    background: rgba(21, 149, 209, 0.12);
    border: 1.5px solid var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.spotlight-icon-wrap svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

/* Geometric shapes (replacing emoji particles) */
.spotlight-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-shape {
    position: absolute;
    border: 1.5px solid rgba(21, 149, 209, 0.15);
    animation: geoFloat 6s infinite ease-in-out;
}

.geo-shape.shape-1 {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    top: 20%;
    left: 15%;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.geo-shape.shape-2 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 28%;
    right: 20%;
    animation-delay: 1.5s;
}

.geo-shape.shape-3 {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    bottom: 25%;
    left: 25%;
    transform: rotate(45deg);
    animation-delay: 3s;
}

.geo-shape.shape-4 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    bottom: 22%;
    right: 18%;
    animation-delay: 4.5s;
}

@keyframes geoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-8px) rotate(15deg); opacity: 0.8; }
}

.spotlight-body {
    flex: 1;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
    letter-spacing: -0.3px;
}

.spotlight-body p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.spotlight-meta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.meta-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.meta-value {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Event cards row */
.events-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.event-card {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.35s ease;
}

.event-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.event-icon {
    width: 44px;
    height: 44px;
    background: rgba(21, 149, 209, 0.08);
    border: 1px solid rgba(21, 149, 209, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.event-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.event-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.event-card p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* =================== SECURITY =================== */
.security-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.security-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-container {
    position: relative;
    width: 240px;
    height: 240px;
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border-style: solid;
    border-width: 1px;
}

.ring-1 {
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-color: rgba(21, 149, 209, 0.2);
    border-style: dashed;
}

.ring-2 {
    width: 195px;
    height: 195px;
    margin: -97.5px 0 0 -97.5px;
    border-color: rgba(21, 149, 209, 0.12);
}

.ring-3 {
    width: 235px;
    height: 235px;
    margin: -117.5px 0 0 -117.5px;
    border-color: rgba(21, 149, 209, 0.07);
    border-style: dashed;
}

.shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px var(--primary-glow);
}

.shield-logo {
    width: 48px;
    height: 48px;
    filter: brightness(1.1);
}

.security-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.security-card {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.35s ease;
}

.security-card:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.security-icon {
    width: 44px;
    height: 44px;
    background: rgba(21, 149, 209, 0.08);
    border: 1px solid rgba(21, 149, 209, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.security-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.security-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.security-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link svg {
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--primary-light);
}

.card-link:hover svg {
    transform: translate(2px, -2px);
}

/* =================== CTA SECTION =================== */
.cta-section {
    text-align: center;
    padding: 140px clamp(20px, 5vw, 80px);
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(21, 149, 209, 0.08) 0%, transparent 65%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 28px;
}

.cta-logo img {
    width: 88px;
    height: 88px;
    filter: drop-shadow(0 0 24px var(--primary-glow));
    position: relative;
    z-index: 2;
}

.cta-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--primary);
    filter: blur(50px);
    opacity: 0.2;
    border-radius: 50%;
}

.cta-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* =================== FOOTER =================== */
.footer {
    border-top: 1px solid var(--border);
    padding: 36px clamp(20px, 5vw, 80px);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 28px;
    width: auto;
}

.footer-brand span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--primary); }

.footer-copy {
    font-size: 13px;
    color: var(--text-dim);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1100px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 130px;
        gap: 40px;
    }

    .hero-content { max-width: 100%; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-roles { justify-content: center; }
    .hero-actions { justify-content: center; }

    .hero-visual {
        flex: none;
    }

    .constellation {
        width: 320px;
        height: 320px;
    }

    .bento-grid { grid-template-columns: 1fr 1fr; }

    .academy-grid { grid-template-columns: 1fr; }

    .events-row { grid-template-columns: repeat(2, 1fr); }

    .event-spotlight { flex-direction: column; }
    .spotlight-visual { flex: none; height: 200px; }

    .security-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .security-visual { order: -1; }
}

@media (max-width: 768px) {
    .nav-center { display: none; }

    .hero-title {
        font-size: clamp(30px, 8vw, 44px);
        letter-spacing: -1.5px;
    }

    .section { padding: 80px 20px; }
    .section-title { font-size: clamp(26px, 6vw, 38px); }
    .section-header { margin-bottom: 48px; }

    .constellation {
        width: 260px;
        height: 260px;
    }

    .c-node {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .c-node svg { width: 16px; height: 16px; }

    .hub-logo { width: 48px; height: 48px; }

    .proof-bar {
        flex-direction: column;
        gap: 20px;
        padding: 28px 20px;
    }

    .proof-divider {
        width: 48px;
        height: 1px;
    }

    .timeline { padding-left: 48px; }

    .timeline-node {
        width: 42px;
        height: 42px;
        left: -48px;
    }

    .timeline-node svg { width: 18px; height: 18px; }

    .bento-grid { grid-template-columns: 1fr; }

    .events-row { grid-template-columns: 1fr 1fr; }

    .security-cards { grid-template-columns: 1fr; }

    .journey-path { flex-direction: column; }

    .journey-connector svg { transform: rotate(90deg); }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn { width: 100%; }

    .constellation {
        width: 220px;
        height: 220px;
    }

    .c-node {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .c-node svg { width: 14px; height: 14px; }

    .hub-logo { width: 40px; height: 40px; }

    .roles-row { flex-direction: column; }
    .role-chip { width: 100%; justify-content: center; }

    .events-row { grid-template-columns: 1fr; }
}
