@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700;800;900&family=Mona+Sans:ital,wght@0,300..900;1,300..900&family=IBM+Plex+Mono:wght@500;600;700&display=swap');

/* ==========================================================================
   PitchCircle Design System & Brand Tokens
   Got an Idea? Pitch it!
   ========================================================================== */

:root {
    /* Brand Colors */
    --pc-navy: #121D2D;
    --pc-navy-dark: #0B111A;
    --pc-navy-deep: #0E1724;
    --pc-navy-surface: #172437;
    --pc-navy-card: #1C2B40;
    --pc-navy-elevated: #22344D;
    --pc-navy-border: rgba(128, 228, 255, 0.16);
    --pc-navy-border-subtle: rgba(255, 255, 255, 0.08);

    --pc-blue: #3364C4;
    --pc-blue-hover: #2650A6;
    --pc-blue-glow: rgba(51, 100, 196, 0.35);
    --pc-blue-tint: rgba(51, 100, 196, 0.12);

    --pc-cyan: #80E4FF;
    --pc-cyan-hover: #63D9F8;
    --pc-cyan-glow: rgba(128, 228, 255, 0.35);
    --pc-cyan-tint: rgba(128, 228, 255, 0.12);
    --pc-cyan-border: rgba(128, 228, 255, 0.28);

    --pc-gold: #F4C04D;
    --pc-gold-hover: #E2AC35;
    --pc-gold-glow: rgba(244, 192, 77, 0.45);
    --pc-gold-tint: rgba(244, 192, 77, 0.14);
    --pc-gold-border: rgba(244, 192, 77, 0.35);

    /* Light Theme Surfaces (for disciplined supporting sections) */
    --paper: #F6F8FB;
    --paper-card: #FFFFFF;
    --paper-dim: #EBF0F7;
    --ink: #121D2D;
    --ink-muted: #5C677D;
    --line: #DFE5F0;
    --line-dark: rgba(128, 228, 255, 0.15);

    /* Functional Accents */
    --pc-teal: #2EC4B6;
    --pc-teal-tint: rgba(46, 196, 182, 0.14);
    --pc-red: #FF5A5F;
    --pc-red-tint: rgba(255, 90, 95, 0.14);

    /* Typography */
    --font-display: 'Gabarito', system-ui, -apple-system, sans-serif;
    --font-body: 'Mona Sans', 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    /* Radii & Shadows */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(11, 17, 26, 0.2);
    --shadow-md: 0 8px 30px -8px rgba(11, 17, 26, 0.4);
    --shadow-lg: 0 16px 48px -12px rgba(11, 17, 26, 0.6);
    --shadow-gold: 0 0 35px -5px rgba(244, 192, 77, 0.35);
    --shadow-cyan: 0 0 35px -5px rgba(128, 228, 255, 0.3);
    --shadow-blue: 0 8px 24px -4px rgba(51, 100, 196, 0.4);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--pc-navy);
}

body {
    font-family: var(--font-body);
    color: var(--pc-navy);
    background: var(--paper);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
    line-height: 1.6;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

input,
select,
textarea {
    font-family: var(--font-body);
}

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

:focus-visible {
    outline: 2px solid var(--pc-cyan);
    outline-offset: 2px;
}

/* Flash alerts */
.flash-banner {
    padding: 12px 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}
.flash-notice {
    background: rgba(46, 196, 182, 0.15);
    color: var(--pc-teal);
    border-bottom: 1px solid rgba(46, 196, 182, 0.3);
}
.flash-alert {
    background: rgba(255, 90, 95, 0.15);
    color: var(--pc-red);
    border-bottom: 1px solid rgba(255, 90, 95, 0.3);
}

/* ==========================================================================
   Top Navigation Bar
   ========================================================================== */

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px clamp(20px, 5vw, 64px);
    background: rgba(18, 29, 45, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--pc-navy-border);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-link:hover {
    opacity: 0.92;
    transform: scale(0.99);
}

.brand-logo {
    height: 34px;
    width: auto;
    display: block;
    object-fit: contain;
}

.topbar-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #CCD6E8;
}

.topbar-user .avatar {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    background: var(--pc-navy-card);
    border: 1px solid var(--pc-cyan-border);
    color: var(--pc-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
}

.topbar-user .user-name {
    font-weight: 500;
    color: #E2EAF8;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    white-space: nowrap;
    text-decoration: none;
}

/* Gold CTA - The "Idea / Spotlight Spark" Button */
.btn-gold {
    background: var(--pc-gold);
    color: var(--pc-navy-dark);
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(244, 192, 77, 0.3);
}

.btn-gold:hover {
    background: var(--pc-gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

/* Primary Brand Blue Button */
.btn-primary {
    background: var(--pc-blue);
    color: #FFFFFF;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--pc-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px -4px rgba(51, 100, 196, 0.55), 0 0 20px rgba(128, 228, 255, 0.25);
}

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

/* Cyan Accent Button */
.btn-cyan {
    background: var(--pc-cyan);
    color: var(--pc-navy-dark);
    font-weight: 700;
}

.btn-cyan:hover {
    background: var(--pc-cyan-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
}

/* Ghost Button for Dark Surfaces */
.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: #E2EAF8;
    border-color: rgba(128, 228, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(128, 228, 255, 0.12);
    border-color: var(--pc-cyan);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(128, 228, 255, 0.2);
}

/* Ghost on Light Backgrounds */
.btn-ghost-light {
    background: transparent;
    color: var(--pc-navy);
    border-color: var(--line);
}

.btn-ghost-light:hover {
    background: var(--paper-dim);
    border-color: var(--pc-blue);
    color: var(--pc-blue);
}

.btn-text {
    background: transparent;
    color: var(--pc-blue);
    padding: 8px 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.15s ease, gap 0.15s ease;
}

.btn-text:hover {
    color: var(--pc-blue-hover);
    gap: 7px;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 13.5px;
}

.btn-lg {
    padding: 16px 34px;
    font-size: 17px;
    letter-spacing: -0.01em;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ==========================================================================
   Signature Hero Section — Stage Spotlight & Concentric Rings
   ========================================================================== */

.hero-spotlight {
    position: relative;
    background: radial-gradient(circle at 50% -10%, rgba(51, 100, 196, 0.35) 0%, transparent 65%),
                radial-gradient(circle at 50% 30%, rgba(18, 29, 45, 0.8) 0%, var(--pc-navy-dark) 100%);
    background-color: var(--pc-navy);
    color: #FFFFFF;
    padding: clamp(70px, 11vw, 130px) clamp(20px, 5vw, 64px) clamp(80px, 12vw, 130px);
    overflow: hidden;
}

/* Background Radiating Concentric Rings Motif */
.hero-rings-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
}

.hero-rings-bg .ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(128, 228, 255, 0.15);
    animation: ringPulse 8s ease-in-out infinite alternate;
}

.hero-rings-bg .ring-1 { width: 300px; height: 300px; border-color: rgba(244, 192, 77, 0.22); animation-delay: 0s; }
.hero-rings-bg .ring-2 { width: 520px; height: 520px; border-color: rgba(128, 228, 255, 0.18); animation-delay: 1.5s; }
.hero-rings-bg .ring-3 { width: 780px; height: 780px; border-color: rgba(51, 100, 196, 0.25); animation-delay: 3s; }
.hero-rings-bg .ring-4 { width: 1060px; height: 1060px; border-color: rgba(128, 228, 255, 0.09); animation-delay: 4.5s; }

@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.98);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.02);
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.98);
        opacity: 0.5;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 192, 77, 0.12);
    border: 1px solid var(--pc-gold-border);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pc-gold);
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(244, 192, 77, 0.15);
}

.hero-badge-tag .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pc-gold);
    animation: goldPulse 2s infinite ease-in-out;
}

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

.hero-title {
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    max-width: 14ch;
}

.hero-title .highlight-gold {
    color: var(--pc-gold);
    text-shadow: 0 0 30px rgba(244, 192, 77, 0.4);
    display: inline-block;
}

.hero-title .highlight-cyan {
    color: var(--pc-cyan);
    display: inline-block;
}

.hero-desc {
    margin-top: 24px;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.6;
    color: #A6B4CC;
    max-width: 48ch;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-note {
    margin-top: 22px;
    font-size: 13.5px;
    color: #7A89A3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-note span.spark {
    color: var(--pc-gold);
}

/* Hero Showcase Card & Stage Spotlight Visual */
.hero-visual-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-founder-stage-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(128, 228, 255, 0.35);
    box-shadow: 0 24px 64px -12px rgba(0, 0, 0, 0.8), 0 0 50px rgba(128, 228, 255, 0.22);
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.hero-founder-stage-frame:hover {
    transform: translateY(-4px) scale(1.015);
    border-color: rgba(244, 192, 77, 0.55);
    box-shadow: 0 32px 84px -10px rgba(0, 0, 0, 0.9), 0 0 60px rgba(244, 192, 77, 0.28);
}

.hero-founder-stage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    filter: contrast(1.06) brightness(1.02);
}


/* Founder Spotlight Portrait Device */
.founder-spotlight-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(128, 228, 255, 0.2);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    aspect-ratio: 16 / 10;
    max-height: 220px;
}

.founder-spotlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    filter: contrast(1.05) brightness(1.02);
}

.founder-spotlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(0deg, rgba(11, 17, 26, 0.95) 0%, rgba(11, 17, 26, 0.6) 60%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.founder-spotlight-tagline {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
}

.founder-spotlight-sub {
    font-size: 12px;
    color: var(--pc-cyan);
    font-family: var(--font-mono);
}

/* Score Ring Graphic Device */
.score-ring-unit {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ring-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    flex: none;
}

.ring-wrap svg {
    transform: rotate(-90deg);
}

.ring-track {
    fill: none;
    stroke: rgba(51, 100, 196, 0.3);
    stroke-width: 8;
}

.ring-fill {
    fill: none;
    stroke: var(--pc-gold);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 251;
    stroke-dashoffset: 40;
    filter: drop-shadow(0 0 8px rgba(244, 192, 77, 0.5));
    transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ring-fill.cyan-fill {
    stroke: var(--pc-cyan);
    filter: drop-shadow(0 0 8px rgba(128, 228, 255, 0.5));
}

.ring-value {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.ring-value small {
    font-family: var(--font-mono);
    font-size: 10px;
    color: #8E9BB2;
    margin-top: 2px;
}

.signal-meta h3 {
    font-size: 18px;
    color: #FFFFFF;
}

.signal-meta p {
    font-size: 13.5px;
    color: #9DB0CC;
    margin-top: 4px;
}

.chip-group {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.chip {
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #CCD6E8;
    background: rgba(255, 255, 255, 0.04);
}

.chip.chip-gold {
    border-color: var(--pc-gold-border);
    color: var(--pc-gold);
    background: var(--pc-gold-tint);
}

.chip.chip-cyan {
    border-color: var(--pc-cyan-border);
    color: var(--pc-cyan);
    background: var(--pc-cyan-tint);
}

.chip.chip-teal {
    border-color: rgba(46, 196, 182, 0.4);
    color: var(--pc-teal);
    background: var(--pc-teal-tint);
}

.chip.chip-red {
    border-color: rgba(255, 90, 95, 0.4);
    color: var(--pc-red);
    background: var(--pc-red-tint);
}

/* ==========================================================================
   Ecosystem Social Proof Bar
   ========================================================================== */

.ecosystem-bar {
    border-top: 1px solid var(--pc-navy-border);
    border-bottom: 1px solid var(--pc-navy-border);
    background: var(--pc-navy-deep);
    color: #FFFFFF;
    padding: 34px clamp(20px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.ecosystem-bar .label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pc-cyan);
    text-align: center;
}

.ecosystem-logos {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.ecosystem-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(23, 36, 55, 0.7);
    border: 1px solid var(--pc-navy-border);
    border-radius: var(--radius-full);
    padding: 9px 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: #E2EAF8;
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ecosystem-badge:hover {
    transform: translateY(-2px);
    border-color: var(--pc-cyan);
    box-shadow: 0 0 16px rgba(128, 228, 255, 0.2);
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    opacity: 0.88;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.partner-logo-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}


.ecosystem-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.stat-pill {
    font-size: 13.5px;
    color: #9DB0CC;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-pill strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* ==========================================================================
   Dual-Value Proposition (Founders & Capital Partners)
   ========================================================================== */

.section-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(70px, 9vw, 110px) 24px;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head .section-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pc-blue);
    margin-bottom: 12px;
    display: inline-block;
    font-weight: 600;
}

.section-head h2 {
    font-size: clamp(32px, 4.5vw, 46px);
    color: var(--pc-navy);
    line-height: 1.15;
}

.section-head p {
    color: var(--ink-muted);
    font-size: clamp(15px, 1.8vw, 17px);
    margin-top: 14px;
    max-width: 58ch;
    margin-left: auto;
    margin-right: auto;
}

.persona-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.persona-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    position: relative;
    overflow: hidden;
}

.persona-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--pc-blue);
}

.persona-card.founder-card {
    border-top: 4px solid var(--pc-gold);
}

.persona-card.investor-card {
    border-top: 4px solid var(--pc-blue);
}

.persona-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pc-navy);
    font-weight: 700;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.persona-tag.gold-tag {
    color: #B27B08;
}

.persona-tag.blue-tag {
    color: var(--pc-blue);
}

.persona-card h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    color: var(--pc-navy);
    line-height: 1.2;
    margin-bottom: 14px;
}

.persona-card .persona-intro {
    color: var(--ink-muted);
    font-size: 15px;
    line-height: 1.6;
}

.persona-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 28px 0 36px;
}

.persona-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.persona-item .check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--pc-gold-tint);
    color: #946500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex: none;
    margin-top: 2px;
}

.persona-item.blue-check .check-icon {
    background: var(--pc-blue-tint);
    color: var(--pc-blue);
}

.persona-item div h4 {
    font-size: 16px;
    color: var(--pc-navy);
    margin-bottom: 4px;
}

.persona-item div p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.5;
}

/* ==========================================================================
   The Pitch Engine (How It Works)
   ========================================================================== */

.engine-section {
    background: var(--pc-navy);
    color: #FFFFFF;
    padding: clamp(80px, 10vw, 120px) 24px;
    border-top: 1px solid var(--pc-navy-border);
    border-bottom: 1px solid var(--pc-navy-border);
    position: relative;
    overflow: hidden;
}

.engine-section .section-head h2 {
    color: #FFFFFF;
}

.engine-section .section-head p {
    color: #9DB0CC;
}

.engine-section .section-tag {
    color: var(--pc-cyan);
}

.engine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

.engine-card {
    background: rgba(23, 36, 55, 0.7);
    border: 1px solid var(--pc-navy-border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    position: relative;
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.engine-card:hover {
    transform: translateY(-6px);
    border-color: var(--pc-cyan);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(128, 228, 255, 0.2);
}

.engine-ring-mark {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(51, 100, 196, 0.2);
    border: 2px solid var(--pc-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 22px;
    box-shadow: 0 0 18px rgba(128, 228, 255, 0.3);
}

.engine-card:first-child .engine-ring-mark {
    border-color: var(--pc-gold);
    box-shadow: 0 0 18px rgba(244, 192, 77, 0.35);
    color: var(--pc-gold);
}

.engine-card h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.engine-card .engine-tech {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--pc-cyan);
    margin-bottom: 14px;
    display: inline-block;
    letter-spacing: 0.04em;
}

.engine-card p {
    font-size: 14.5px;
    color: #9DB0CC;
    line-height: 1.6;
}

/* ==========================================================================
   Feature Deep-Dive Modules
   ========================================================================== */

.deep-dive-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.deep-dive-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 5vw, 50px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.deep-dive-content h3 {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--pc-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.deep-dive-content p {
    font-size: 15.5px;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Dark Preview Widgets within Deep Dives */
.dark-widget-box {
    background: var(--pc-navy);
    border: 1px solid var(--pc-navy-border);
    border-radius: var(--radius-md);
    padding: 28px;
    color: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.widget-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pc-cyan);
    display: block;
    margin-bottom: 16px;
}

.risk-matrix-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.risk-matrix-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   Auth & Card Forms
   ========================================================================== */

.center-wrap {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: radial-gradient(circle at 50% 10%, rgba(51, 100, 196, 0.15) 0%, transparent 60%),
                var(--paper);
}

.card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(30px, 5vw, 44px);
    width: 100%;
    max-width: 460px;
    box-shadow: var(--shadow-md);
}

.card-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pc-blue);
    font-weight: 600;
}

.card h2 {
    font-size: 30px;
    margin-top: 8px;
    color: var(--pc-navy);
}

.card-sub {
    color: var(--ink-muted);
    font-size: 14.5px;
    margin-top: 8px;
    line-height: 1.5;
}

.field {
    margin-top: 20px;
}

.field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--pc-navy);
    margin-bottom: 8px;
}

.field .hint {
    font-weight: 400;
    color: var(--ink-muted);
    font-size: 12px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--paper);
    font-size: 14.5px;
    color: var(--pc-navy);
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--pc-blue);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(51, 100, 196, 0.18);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.card-foot {
    margin-top: 26px;
    text-align: center;
    font-size: 14px;
    color: var(--ink-muted);
}

/* ==========================================================================
   Role Selection Grid
   ========================================================================== */

.role-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: clamp(50px, 8vw, 80px) 20px;
}

.role-head {
    text-align: center;
    margin-bottom: 48px;
}

.role-head .card-eyebrow {
    display: block;
    margin-bottom: 10px;
}

.role-head h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--pc-navy);
}

.role-head p {
    color: var(--ink-muted);
    margin-top: 10px;
    font-size: 15.5px;
}

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

.role-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    text-align: left;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: inherit;
    box-shadow: var(--shadow-sm);
}

.role-card:hover {
    border-color: var(--pc-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.role-card .icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--paper-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.role-card h3 {
    font-size: 20px;
    color: var(--pc-navy);
}

.role-card p {
    font-size: 14px;
    color: var(--ink-muted);
    margin-top: 10px;
    line-height: 1.5;
}

.role-card .go {
    margin-top: 22px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--pc-blue);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   Onboarding Wizard
   ========================================================================== */

.wizard-shell {
    max-width: 680px;
    margin: 0 auto;
    padding: 54px 20px 90px;
}

.wizard-head {
    margin-bottom: 32px;
}

.wizard-head .back-link {
    font-size: 13.5px;
    color: var(--ink-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    font-weight: 500;
}

.wizard-head .back-link:hover {
    color: var(--pc-blue);
}

.wizard-head h2 {
    font-size: 28px;
    color: var(--pc-navy);
}

.wizard-head p {
    color: var(--ink-muted);
    font-size: 14.5px;
    margin-top: 6px;
}

.signal-progress {
    display: flex;
    gap: 8px;
    margin-top: 26px;
}

.signal-progress .seg {
    flex: 1;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--line);
    position: relative;
    overflow: hidden;
}

.signal-progress .seg span {
    position: absolute;
    inset: 0;
    background: var(--pc-gold);
    width: 0%;
    transition: width 0.4s ease;
}

.signal-progress .seg.done span {
    width: 100%;
}

.signal-progress .seg.current span {
    width: 65%;
}

.step-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
}

.wizard-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    margin-top: 26px;
    box-shadow: var(--shadow-sm);
}

.step-title {
    font-size: 21px;
    color: var(--pc-navy);
    font-weight: 700;
    margin-bottom: 6px;
}

.step-desc {
    color: var(--ink-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    padding: 9px 18px;
    border-radius: var(--radius-full);
    border: 1px solid var(--line);
    font-size: 13.5px;
    background: var(--paper);
    color: var(--pc-navy);
    transition: all 0.15s ease;
    cursor: pointer;
    font-weight: 500;
}

.pill.selected {
    background: var(--pc-navy);
    border-color: var(--pc-navy);
    color: #FFFFFF;
}

.upload-box {
    border: 2px dashed var(--line);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    background: var(--paper);
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
    display: block;
}

.upload-box:hover {
    border-color: var(--pc-blue);
    background: #FFFFFF;
}

.upload-box .up-icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.upload-box .up-text {
    font-size: 14.5px;
    color: var(--pc-navy);
    font-weight: 600;
}

.upload-box .up-hint {
    font-size: 12.5px;
    color: var(--ink-muted);
    margin-top: 4px;
}

.file-chip {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pc-navy-surface);
    color: var(--pc-cyan);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    font-size: 13px;
    font-family: var(--font-mono);
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.review-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
}

.review-row:last-child {
    border-bottom: none;
}

.review-row .k {
    color: var(--ink-muted);
}

.review-row .v {
    font-weight: 600;
    color: var(--pc-navy);
    text-align: right;
}

.processing-note {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--pc-navy-deep);
    border: 1px solid var(--pc-navy-border);
    border-radius: var(--radius-md);
    padding: 18px;
    color: #FFFFFF;
}

.processing-note .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pc-cyan);
    margin-top: 5px;
    flex: none;
    animation: goldPulse 1.6s ease-in-out infinite;
}

.processing-note p {
    font-size: 13.5px;
    color: #A6B4CC;
    line-height: 1.5;
}

.processing-note strong {
    display: block;
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 3px;
}

/* ==========================================================================
   Dashboards & Startup Profiles
   ========================================================================== */

.dash-shell {
    max-width: 1160px;
    margin: 0 auto;
    padding: 44px 24px 90px;
}

.dash-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 32px;
}

.dash-head h2 {
    font-size: 30px;
    color: var(--pc-navy);
}

.dash-head p {
    color: var(--ink-muted);
    font-size: 14.5px;
    margin-top: 6px;
}

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

.stat-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.stat-card .label {
    font-family: var(--font-mono);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
}

.stat-card .value {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--pc-navy);
    margin-top: 8px;
}

.panel {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.panel-head h3 {
    font-size: 18px;
    color: var(--pc-navy);
}

.score-panel {
    display: flex;
    gap: 36px;
    align-items: center;
    flex-wrap: wrap;
}

.score-panel .ring-wrap {
    width: 120px;
    height: 120px;
}

.score-panel .ring-track {
    stroke: var(--paper-dim);
}

.score-panel .ring-fill {
    stroke: var(--pc-gold);
}

.score-panel .ring-value {
    font-size: 32px;
    color: var(--pc-navy);
}

.score-detail {
    flex: 1;
    min-width: 240px;
}

.score-detail h3 {
    font-size: 18px;
    color: var(--pc-navy);
    margin-bottom: 8px;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    text-align: left;
    font-family: var(--font-mono);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
    padding: 0 14px 12px;
    font-weight: 600;
}

.table td {
    padding: 16px 14px;
    border-top: 1px solid var(--line);
    font-size: 14.5px;
}

.table tr td:first-child,
.table th:first-child {
    padding-left: 0;
}

.name-cell {
    font-weight: 600;
    color: var(--pc-navy);
}

.sub-cell {
    font-size: 13px;
    color: var(--ink-muted);
}

.badge {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.badge.high {
    background: var(--pc-teal-tint);
    color: var(--pc-teal);
    border: 1px solid rgba(46, 196, 182, 0.3);
}

.badge.mid {
    background: var(--pc-gold-tint);
    color: #B27B08;
    border: 1px solid var(--pc-gold-border);
}

.badge.low {
    background: var(--pc-red-tint);
    color: var(--pc-red);
    border: 1px solid rgba(255, 90, 95, 0.3);
}

.flag {
    font-family: var(--font-mono);
    font-size: 11.5px;
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--paper-dim);
    color: var(--ink-muted);
    margin-right: 6px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.landing-footer {
    background: var(--pc-navy);
    color: #FFFFFF;
    padding: clamp(70px, 9vw, 90px) clamp(20px, 5vw, 64px) 40px;
    border-top: 1px solid var(--pc-navy-border);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 48px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-brand p {
    color: #9DB0CC;
    font-size: 14.5px;
    margin-top: 18px;
    line-height: 1.6;
    max-width: 34ch;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--pc-gold);
    margin-top: 12px;
    display: block;
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pc-cyan);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14.5px;
    color: #9DB0CC;
}

.footer-col ul a {
    transition: color 0.15s ease, padding-left 0.15s ease;
}

.footer-col ul a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #9DB0CC;
    margin-bottom: 14px;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(128, 228, 255, 0.12);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: #7A89A3;
    flex-wrap: wrap;
    gap: 16px;
}

footer.appfoot {
    text-align: center;
    padding: 32px 20px;
    color: var(--ink-muted);
    font-size: 13px;
    border-top: 1px solid var(--line);
    background: var(--paper-card);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .persona-grid,
    .engine-grid,
    .deep-dive-card,
    .footer-grid,
    .dash-grid,
    .role-grid {
        grid-template-columns: 1fr;
    }

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