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

:root {
    --bg:           #06090f;
    --bg-2:         #0d1421;
    --bg-3:         #111827;
    --border:       rgba(148, 163, 184, 0.08);
    --border-hover: rgba(148, 163, 184, 0.16);
    --text:         #f1f5f9;
    --text-muted:   #94a3b8;
    --text-dim:     #475569;
    --accent:       #3b82f6;
    --accent-2:     #60a5fa;
    --accent-glow:  rgba(59, 130, 246, 0.25);
    --gold:         #d4a843;
    --gold-dim:     rgba(212, 168, 67, 0.10);
    --radius:       12px;
    --radius-lg:    20px;
    --radius-sm:    8px;
    --ease:         cubic-bezier(0.16, 1, 0.3, 1);
    --font:         'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* ============================================================
   UTILITIES
============================================================ */
.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 120px 0; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.18s var(--ease), box-shadow 0.18s ease,
                background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    white-space: nowrap;
    letter-spacing: -0.1px;
}

.btn-primary {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 28px var(--accent-glow), 0 4px 16px rgba(59,130,246,0.35);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--border-hover);
    color: var(--text);
    background: rgba(255,255,255,0.04);
}

.btn-outline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    color: var(--text);
    border-color: rgba(148,163,184,0.3);
    background: rgba(255,255,255,0.03);
}

.btn-lg  { padding: 13px 26px; font-size: 15.5px; }
.btn-full { width: 100%; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 16px 0;
    transition: padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
    padding: 10px 0;
    background: rgba(6, 9, 15, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.4px;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    flex-shrink: 0;
}

.nav-cta { flex-shrink: 0; }

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: #04070d;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow-1 {
    width: 700px; height: 700px;
    top: -150px; right: -100px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(59,130,246,0.04) 50%, transparent 70%);
    filter: blur(40px);
}

.hero-glow-2 {
    width: 500px; height: 500px;
    bottom: -50px; left: -80px;
    background: radial-gradient(circle, rgba(56,189,248,0.07) 0%, transparent 65%);
    filter: blur(50px);
}

.hero-glow-3 {
    width: 400px; height: 400px;
    top: 40%; left: 35%;
    background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
    filter: blur(60px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4, 7, 13, 0.30) 0%,
        rgba(4, 7, 13, 0.05) 45%,
        rgba(4, 7, 13, 0.45) 80%,
        rgba(4, 7, 13, 0.92) 100%
    );
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}

.hero-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 8px 40px rgba(96,165,250,0.15));
    margin-bottom: 4px;
}

.forming-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    border: 1px solid rgba(212, 168, 67, 0.28);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
}

.badge-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.6);
    flex-shrink: 0;
    animation: blink 2.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.35; }
}

.hero-headline {
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 820;
    line-height: 1.06;
    letter-spacing: -2.5px;
    color: var(--text);
}

.hero-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.75;
    letter-spacing: -0.1px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-launch-note {
    font-size: 12.5px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    margin-top: -8px;
}

/* ============================================================
   SECTION LABELS & HEADERS
============================================================ */
.section-tag {
    display: inline-block;
    padding: 5px 13px;
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent-2);
    background: rgba(59, 130, 246, 0.07);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 740;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--text);
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.68;
}

/* ============================================================
   THE SHIFT
============================================================ */
.shift {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.shift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.shift-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shift-content p {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.78;
}

.shift-markers {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition-delay: 0.12s;
}

.shift-markers-label {
    padding: 13px 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.015);
}

.marker {
    display: grid;
    grid-template-columns: 1fr 28px 1fr;
    align-items: center;
    padding: 16px 24px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.marker:last-child { border-bottom: none; }
.marker:hover { background: rgba(255,255,255,0.02); }

.marker-from {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.4;
}

.marker-arrow {
    font-size: 14px;
    color: var(--accent);
    text-align: center;
    opacity: 0.5;
}

.marker-to {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
}

/* ============================================================
   ADVISORY PILLARS
============================================================ */
.services { background: var(--bg-2); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card {
    padding: 36px;
    background: var(--bg-2);
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    translate: 0 28px;
    transition: background 0.25s ease,
                opacity 0.5s var(--ease), translate 0.5s var(--ease);
}

.service-card.visible {
    opacity: 1;
    translate: 0 0;
}

.service-card:hover { background: var(--bg-3); }

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2);
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 620;
    letter-spacing: -0.3px;
    color: var(--text);
}

.service-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.68;
    flex: 1;
}

/* ============================================================
   WHO WE SERVE
============================================================ */
.who { background: var(--bg); }

.who-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.who-lead {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 660px;
    margin-bottom: 8px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    text-align: left;
}

.audience-item {
    padding: 15px 20px;
    background: var(--bg-2);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.5;
    transition: background 0.2s ease, color 0.2s ease, border-left-color 0.2s ease;
}

.audience-item:hover {
    background: var(--bg-3);
    color: var(--text);
    border-left-color: var(--accent-2);
}

/* ============================================================
   INTEREST FORM
============================================================ */
.interest { background: var(--bg-2); }

.interest-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.interest-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.interest-info p {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.75;
}

.interest-note {
    font-size: 13px !important;
    color: var(--text-dim) !important;
    font-style: italic;
}

.interest-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition-delay: 0.12s;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.form-group input,
.form-group textarea {
    padding: 11px 15px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font);
    font-size: 14.5px;
    line-height: 1.5;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    resize: vertical;
    outline: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    padding: 40px 0 32px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-tag {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.65;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-note {
    font-size: 12px;
    color: var(--text-dim);
    opacity: 0.7;
}

/* ============================================================
   HONEYPOT (spam trap — must stay hidden from real users)
============================================================ */
.honeypot {
    display: none !important;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
[data-animate] {
    opacity: 0;
    translate: 0 24px;
    transition: opacity 0.6s var(--ease), translate 0.6s var(--ease);
}

[data-animate].visible {
    opacity: 1;
    translate: 0 0;
}

/* ============================================================
   RESPONSIVE — TABLET
============================================================ */
@media (max-width: 900px) {
    .shift-grid,
    .interest-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 640px) {
    .section { padding: 80px 0; }

    .hero { padding: 110px 0 72px; }
    .hero-logo { width: 160px; }
    .hero-headline { letter-spacing: -1.5px; }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .hero-actions .btn { justify-content: center; }

    .services-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .form-row      { grid-template-columns: 1fr; }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
