/* ============================================
   ENTREPRENEUR OFFSHORE — V2 PALETTE
   Dark, bold, high-energy. For ambitious builders.
   ============================================ */
:root {
    /* Colors — Midnight + Electric */
    --black: #0d0d0d;
    --dark: #161616;
    --dark-card: #1e1e1e;
    --dark-border: #2a2a2a;
    --white: #f5f5f5;
    --white-muted: rgba(245, 245, 245, 0.7);
    --white-dim: rgba(245, 245, 245, 0.4);
    --electric: #00d4aa;
    --electric-glow: rgba(0, 212, 170, 0.15);
    --electric-bright: #00ffcc;
    --orange: #ff6b35;
    --orange-glow: rgba(255, 107, 53, 0.15);
    --charcoal: #2d2d2d;
    --gray: #888;
    --gray-light: #333;

    /* Typography — Completely different from Ray FO */
    --font-heading: 'Space Grotesk', 'Arial Black', sans-serif;
    --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.5);
    --glow-electric: 0 0 20px rgba(0, 212, 170, 0.3);
    --glow-orange: 0 0 20px rgba(255, 107, 53, 0.3);

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   Container & Layout
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    box-sizing: border-box;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin-bottom: var(--space-sm); }

.text-gradient {
    background: linear-gradient(135deg, var(--electric) 0%, var(--electric-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--electric);
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--white-muted);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--electric);
    color: var(--black);
    border-color: var(--electric);
}

.btn-primary:hover {
    background: var(--electric-bright);
    border-color: var(--electric-bright);
    transform: translateY(-2px);
    box-shadow: var(--glow-electric);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white-dim);
}

.btn-secondary:hover {
    border-color: var(--electric);
    color: var(--electric);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
}

.btn-orange {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.btn-orange:hover {
    box-shadow: var(--glow-orange);
    transform: translateY(-2px);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dark-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--electric);
}

.logo-text {
    color: var(--white);
}

.logo-accent {
    color: var(--electric);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    text-decoration: none;
    color: var(--white-muted);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--electric);
}

.nav-cta {
    padding: 0.625rem 1.25rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    padding: calc(72px + var(--space-3xl)) 0 var(--space-3xl);
    background: var(--black);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-image-container,
.hero-video-container,
.hero-network-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    animation: kenburns 25s ease-in-out infinite alternate;
    opacity: 0.4;
}

@keyframes kenburns {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.08) translate(-1%, -1%); }
    100% { transform: scale(1.04) translate(1%, -0.5%); }
}

.hero-image-overlay,
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.7) 0%,
        rgba(13, 13, 13, 0.85) 60%,
        rgba(13, 13, 13, 1) 100%
    );
    z-index: 1;
}

.hero-network-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.4) 0%,
        rgba(13, 13, 13, 0.6) 60%,
        rgba(13, 13, 13, 0.9) 100%
    );
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, var(--electric-glow) 0%, transparent 60%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white-muted);
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.situation-selector {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.situation-selector label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--white-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.select-situation {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    background: var(--dark);
    color: var(--white);
    min-width: min(300px, 100%);
    cursor: pointer;
}

.select-situation:focus {
    border-color: var(--electric);
    outline: none;
}

.select-situation option {
    color: var(--white);
    background: var(--dark);
}

.hero-trust {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--electric);
}

.trust-label {
    font-size: 0.8rem;
    color: var(--white-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* ============================================
   Problem Section
   ============================================ */
.problem-section {
    padding: var(--space-3xl) 0;
    background: var(--dark);
    text-align: center;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.problem-card {
    padding: var(--space-lg);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    text-align: left;
    transition: border-color 0.3s;
}

.problem-card:hover {
    border-color: var(--orange);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.problem-card h3 {
    margin-bottom: var(--space-sm);
}

.problem-card p {
    color: var(--white-muted);
    margin-bottom: 0;
}

/* ============================================
   Solutions Section
   ============================================ */
.solutions-section {
    padding: var(--space-3xl) 0;
    background: var(--black);
    text-align: center;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: var(--space-md);
}

.solution-card {
    display: block;
    padding: var(--space-lg);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    text-align: left;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--electric);
    transform: translateY(-4px);
    box-shadow: var(--glow-electric);
}

.solution-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.solution-card h3 {
    margin-bottom: var(--space-xs);
}

.solution-card p {
    color: var(--white-muted);
    margin-bottom: var(--space-sm);
}

.solution-link {
    color: var(--electric);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

/* ============================================
   Personas Section
   ============================================ */
.personas-section {
    padding: var(--space-3xl) 0;
    background: var(--dark);
    text-align: center;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.persona-card {
    padding: var(--space-lg);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    text-align: left;
    transition: border-color 0.3s ease;
}

.persona-card:hover {
    border-color: var(--orange);
}

.persona-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.persona-icon {
    font-size: 2rem;
}

.persona-header h3 {
    font-size: 1.125rem;
}

.persona-stat {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--electric);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.persona-card > p {
    color: var(--white-muted);
}

.persona-link {
    display: inline-block;
    margin-top: var(--space-sm);
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
}

.persona-link:hover {
    text-decoration: underline;
}

/* ============================================
   Spotlight Section
   ============================================ */
.spotlight-section {
    padding: var(--space-3xl) 0;
    background: var(--black);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.spotlight-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.spotlight-content {
    color: var(--white);
}

.spotlight-section .section-eyebrow {
    color: var(--orange);
}

.spotlight-title {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.spotlight-text {
    color: var(--white-muted);
    font-size: 1.125rem;
}

.spotlight-benefits {
    margin: var(--space-lg) 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--white-muted);
}

.benefit-check {
    color: var(--electric);
    font-weight: bold;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--white-muted);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--electric);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--white);
}

.author-title {
    font-size: 0.875rem;
    color: var(--white-dim);
}

/* ============================================
   Process Section
   ============================================ */
.process-section {
    padding: var(--space-3xl) 0;
    background: var(--dark);
    text-align: center;
}

.process-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: var(--space-md);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--electric);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto var(--space-sm);
}

.process-step h3 {
    margin-bottom: var(--space-xs);
}

.process-step p {
    color: var(--white-muted);
    font-size: 0.9375rem;
}

.process-arrow {
    color: var(--dark-border);
    font-size: 1.5rem;
    padding-top: var(--space-md);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: var(--space-3xl) 0;
    background: var(--black);
    text-align: center;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--dark-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    text-align: left;
}

.faq-question:hover {
    color: var(--electric);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--electric);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: var(--space-md);
}

.faq-answer p {
    color: var(--white-muted);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--dark);
    text-align: center;
    border-top: 1px solid var(--dark-border);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cta-text {
    color: var(--white-muted);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--white-muted);
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.feature-check {
    color: var(--electric);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--black);
    color: var(--white-dim);
    border-top: 1px solid var(--dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--dark-border);
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--white-dim);
}

.footer-links h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.footer-links a {
    display: block;
    color: var(--white-dim);
    text-decoration: none;
    margin-bottom: var(--space-xs);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: var(--space-lg);
    text-align: center;
    font-size: 0.875rem;
}

.footer-disclaimer {
    max-width: 700px;
    margin: var(--space-sm) auto 0;
    font-size: 0.8125rem;
    opacity: 0.5;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .spotlight-section .container {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        border-top: 1px solid var(--dark-border);
        flex-direction: column;
        padding: var(--space-md);
        gap: var(--space-xs);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        padding: var(--space-sm) var(--space-md);
        border-radius: var(--radius-sm);
    }
    .nav-links a:hover {
        background: var(--dark-card);
    }
    .nav-cta { display: none; }
    .nav-cta.mobile-show {
        display: inline-flex;
        margin-top: var(--space-xs);
    }
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: calc(72px + var(--space-xl)) 0 var(--space-xl);
        min-height: auto;
        overflow: hidden;
    }

    .hero-bg {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn { width: 100%; text-align: center; }
    .select-situation { min-width: 100%; width: 100%; }
    .hero-trust { flex-wrap: wrap; gap: var(--space-md); }

    .container {
        padding: 0 var(--space-sm);
    }

    section {
        overflow-x: hidden;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-arrow {
        transform: rotate(90deg);
        padding: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-brand { grid-column: span 1; }
    .cta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
    .trust-divider { display: none; }
    .hero-trust {
        justify-content: space-between;
        width: 100%;
    }
}
