/* Hammerhead Tech v08a - Bold Statement (Revised) */
:root {
    --primary-blue: #292f79;
    --secondary-gray: #656276;
    --dark-bg: #0a0c14;
    --light-bg: #fafafa;
    --accent-cyan: #00d4ff;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #292f79 0%, #656276 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
}

/* Custom Cursor - Removed, back to arrow */
#custom-cursor {
    display: none;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    max-width: 400px;
}

/* Option B: Logo card wrapper for loading screen */
.loader-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.loader-logo .logo-card {
    background: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-block;
}

.loader-logo img {
    height: 70px;
    display: block;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9998;
}

#progress-bar {
    height: 100%;
    background: var(--accent-cyan);
    width: 0%;
    transition: width 0.1s ease;
}

/* Header (non-sticky, replaces sticky nav) */
#header {
    background: rgba(10, 12, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo .logo-card {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
}

.header-logo img {
    height: 48px;
    display: block;
}

.header-cta {
    font-size: 13px;
    padding: 14px 28px;
}

/* Logo Card (shared) */
.logo-card {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
}

/* Sections Base */
section {
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.word-pop {
    display: inline-block;
    opacity: 0;
    transform: scale(0.8) translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.word-pop.popped {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 60px;
    font-weight: 300;
}

/* Dark/Light Sections */
.dark-section {
    background: var(--dark-bg);
}

.light-section {
    background: var(--light-bg);
    color: var(--dark-bg);
}

.light-section .section-subtitle {
    color: rgba(0, 0, 0, 0.6);
}

.blue-accent-section {
    background: var(--primary-blue);
}

.blue-accent-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a1f3d 100%);
}

/* Pitch Deck Images */
.pitch-deck-image {
    display: block;
    margin: 0 auto 50px;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Solution diagram wrapper - no longer used (image moved into Communications card) */
.solution-diagram-wrapper {
    display: none;
}

.how-it-works-diagram-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.how-it-works-diagram-wrapper .pitch-deck-image.portrait {
    max-width: 340px;
    max-height: 500px;
    object-fit: contain;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    filter: brightness(2.3) contrast(1.1);
}

.financial-image-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.financial-image-wrapper .pitch-deck-image {
    max-width: 500px;
    margin: 0 auto 50px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 212, 255, 0.1);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.badge-indicator {
    width: 10px;
    height: 10px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.kinetic-word {
    display: block;
    opacity: 0;
    transform: translateY(100px) rotate(5deg);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.kinetic-word.revealed {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.kinetic-word.highlight {
    color: var(--accent-cyan);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    min-height: 1.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--dark-bg);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Outline buttons on light/white backgrounds need dark text and visible borders */
.light-section .btn-outline {
    color: var(--dark-bg);
    border: 2px solid rgba(41, 47, 121, 0.3);
}

.light-section .btn-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Section CTA (end of section buttons) */
.section-cta {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 20px;
}

.section-cta .btn {
    display: inline-flex;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-cyan);
    display: block;
}

.stat-suffix {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    color: var(--accent-cyan);
}

.stat-label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-square {
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent-cyan);
    top: 20%;
    right: 15%;
    animation: float 8s ease-in-out infinite;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid var(--accent-cyan);
    bottom: 30%;
    left: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-circle {
    width: 150px;
    height: 150px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.problem-card {
    padding: 40px 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.light-section .problem-card {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dark-section .problem-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-card:hover {
    transform: translateY(-10px);
}

.light-section .problem-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

.light-section .problem-icon svg {
    stroke: var(--primary-blue);
}

.problem-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
}

.problem-card p {
    line-height: 1.8;
    opacity: 0.7;
}

.problem-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px;
    border-radius: 20px;
}

.light-section .problem-stats {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dark-section .problem-stats {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-stat-item {
    text-align: center;
}

.stagger-number {
    font-family: 'Syne', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-cyan);
    display: block;
}

.problem-stat-label {
    font-size: 14px;
    opacity: 0.7;
    letter-spacing: 1px;
    margin-top: 8px;
    display: block;
    text-transform: uppercase;
}

.problem-stat-divider {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.diagonal-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.diagonal-divider-bottom svg {
    width: 100%;
    height: 100px;
    display: block;
}

/* Solution Section - Bento Grid */
.solution-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 25px;
}

.bento-card {
    padding: 40px 30px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.bento-card.wide {
    grid-column: span 2;
}

/* Image-only card (1/3 width, just the image) */
.bento-card.image-only {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bento-card.image-only .pitch-deck-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.blue-accent-section .bento-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.light-section .bento-card {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dark-section .bento-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-card:hover {
    transform: translateY(-5px);
}

.pillar-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Syne', sans-serif;
    font-size: 60px;
    font-weight: 800;
    opacity: 0.1;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.blue-accent-section .pillar-icon {
    color: var(--white);
}

.bento-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.bento-card > p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pillar-features {
    list-style: none;
}

.pillar-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    opacity: 0.7;
    font-size: 14px;
}

.pillar-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.extra-feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.extra-feature h4 {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.extra-feature p {
    opacity: 0.8;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.light-section .glass-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Ripple Card Effect */
.ripple-card {
    position: relative;
    overflow: hidden;
}

.ripple-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.ripple-card:active::after {
    width: 300px;
    height: 300px;
}

/* How It Works Section */
.steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.steps-connector {
    position: absolute;
    left: 80px;
    top: 0;
    width: 4px;
    height: 100%;
    z-index: 0;
}

.step-line {
    stroke: var(--accent-cyan);
    stroke-width: 3;
    fill: none;
    opacity: 0.5;
}

.step-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.step-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.step-number {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
}

.step-content {
    flex: 1;
    padding: 35px;
    border-radius: 20px;
}

.step-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
}

.step-content p {
    opacity: 0.8;
    line-height: 1.7;
}

/* Traction Section */
.traction-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    align-items: start;
}

.traction-timeline {
    max-width: 100%;
}

.traction-image-side {
    position: sticky;
    top: 40px;
}

.traction-image-side .pitch-deck-image.portrait {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 15px;
    background: var(--white);
}

.timeline-item {
    display: flex;
    gap: 20px;
    padding: 20px 25px;
    border-radius: 16px;
    margin-bottom: 15px;
}

.light-section .timeline-item {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dark-section .timeline-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-year {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-cyan);
    min-width: 90px;
}

.timeline-content h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.timeline-content p {
    opacity: 0.8;
    line-height: 1.5;
    font-size: 13px;
}

.traction-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.traction-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    border-radius: 15px;
}

.light-section .traction-stat {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dark-section .traction-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.traction-stat-icon {
    font-size: 32px;
}

.traction-stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Financials Section */
.financial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.revenue-chart {
    padding: 40px;
    border-radius: 25px;
}

.dark-section .revenue-chart {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.revenue-chart h3 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    margin-bottom: 30px;
}

.revenue-svg {
    width: 100%;
    height: auto;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.6;
}

.revenue-numbers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.revenue-item {
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dark-section .revenue-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.light-section .revenue-item {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.revenue-period {
    font-size: 14px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.revenue-value {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-cyan);
}

.revenue-clients {
    font-size: 14px;
    opacity: 0.7;
}

.use-of-funds {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.use-of-funds h3 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    margin-bottom: 40px;
}

.funds-chart-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.donut-chart {
    width: 250px;
    height: 250px;
    transform: rotate(-90deg);
}

.donut-segment {
    transition: stroke-dashoffset 1.5s ease;
}

.donut-legend {
    text-align: left;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
}

.legend-color {
    width: 20px;
    height: 20px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
}

.light-section .team-card {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dark-section .team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
}

.team-avatar svg {
    width: 100%;
    height: 100%;
}

.team-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.team-role {
    color: var(--accent-cyan);
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-bio {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.7;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info,
.contact-form-container {
    padding: 40px;
    border-radius: 25px;
}

.blue-accent-section .contact-info,
.blue-accent-section .contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    opacity: 0.8;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-cta {
    margin-top: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.light-section .form-group input,
.light-section .form-group select,
.light-section .form-group textarea {
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--dark-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group textarea ~ label {
    top: 20px;
    transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--accent-cyan);
}

/* Fixed Select Dropdown */
.form-group-select {
    position: relative;
}

.form-group-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 50px;
}

/* Style the select options dropdown (browser native) */
.form-group-select select option {
    background: var(--dark-bg);
    color: var(--white);
    padding: 10px;
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-arrow svg {
    width: 100%;
    height: 100%;
    stroke: rgba(255, 255, 255, 0.6);
}

/* Label float for select when it has a value */
.form-group-select select:not([value=""]) ~ label,
.form-group-select select:valid ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--accent-cyan);
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* Calendly Mock Widget */
.calendly-mock {
    max-width: 700px;
    margin: 60px auto 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.calendly-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendly-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.calendly-brand .calendly-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

.calendly-brand span {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.calendly-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.calendly-duration svg {
    width: 16px;
    height: 16px;
}

.calendly-body {
    padding: 30px;
}

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

.calendly-month-label {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.calendly-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--white);
}

.calendly-nav-btn:hover:not(:disabled) {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--accent-cyan);
}

.calendly-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendly-nav-btn svg {
    width: 18px;
    height: 18px;
}

.calendly-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 12px;
    text-align: center;
}

.calendly-weekdays span {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    padding: 8px 0;
}

.calendly-disabled-day {
    opacity: 0.25;
}

.calendly-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 25px;
}

.calendly-date {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.calendly-date:hover:not(.disabled) {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
}

.calendly-date.selected {
    background: var(--accent-cyan);
    color: var(--dark-bg);
    border-color: var(--accent-cyan);
}

.calendly-date.disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

.calendly-timezone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendly-timezone svg {
    width: 16px;
    height: 16px;
}

.calendly-times-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendly-time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.calendly-time {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.calendly-time:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    color: var(--accent-cyan);
}

.calendly-time.selected {
    background: var(--accent-cyan);
    color: var(--dark-bg);
    border-color: var(--accent-cyan);
}

.calendly-confirm {
    display: block;
    width: 100%;
    padding: 16px;
    background: rgba(0, 212, 255, 0.15);
    border: 2px solid var(--accent-cyan);
    border-radius: 12px;
    color: var(--accent-cyan);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.calendly-confirm:hover {
    background: var(--accent-cyan);
    color: var(--dark-bg);
}

.calendly-confirm:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendly-footer {
    padding: 12px 30px;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.calendly-placeholder-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
}

/* Responsive - Calendly */
@media (max-width: 768px) {
    .calendly-mock {
        max-width: 100%;
        margin: 40px auto 0;
    }

    .calendly-body {
        padding: 20px;
    }

    .calendly-date {
        padding: 12px 0;
        font-size: 14px;
    }

    .calendly-time-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
}

/* Footer */
#footer {
    background: var(--dark-bg);
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo .logo-card {
    background: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    display: block;
}

.footer-logo p {
    opacity: 0.6;
    max-width: 500px;
    margin: 0 auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

/* Fixed: Footer links now white/light for readability */
.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    font-size: 14px;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .solution-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .bento-card.wide {
        grid-column: span 1;
    }
    
    .bento-card.image-only {
        min-height: 250px;
    }
    
    .traction-content {
        grid-template-columns: 1fr;
    }
    
    .traction-image-side {
        position: static;
        margin-top: 30px;
    }
    
    .financial-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .header-logo img {
        height: 38px;
    }
    
    .header-cta {
        font-size: 11px;
        padding: 10px 18px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .problem-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .problem-stat-divider {
        width: 50px;
        height: 2px;
    }
    
    .steps-connector {
        left: 30px;
    }
    
    .step-item {
        flex-direction: column !important;
        gap: 20px;
    }
    
    .step-marker {
        width: 50px;
        height: 50px;
    }
    
    .traction-stats {
        grid-template-columns: 1fr;
    }
    
    .funds-chart-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    section {
        padding: 80px 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .pitch-deck-image {
        max-width: 100% !important;
    }
}
