/* ==========================================================================
   PhotonRisk Design System & Main Stylesheet
   ========================================================================== */

/* Variables & Theme */
:root {
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Color Palette */
    --color-bg: #0B0F19;
    --color-bg-card: rgba(17, 24, 39, 0.45);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-glow: rgba(255, 176, 58, 0.2);
    
    --color-text-primary: #F8FAFC;
    --color-text-secondary: #94A3B8;
    --color-text-muted: #64748B;
    
    --color-solar: #FFB03A;
    --color-solar-glow: rgba(255, 176, 58, 0.15);
    --color-teal: #00F2FE;
    --color-blue: #3B82F6;
    --color-purple: #8B5CF6;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    background-image: url('solar_network_bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(11, 15, 25, 0.72) 0%, rgba(11, 15, 25, 0.93) 90%);
    z-index: -2;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Animated Orbs */
.orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    animation: pulse 15s infinite alternate;
}

.orb-1 {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--color-solar) 0%, transparent 70%);
}

.orb-2 {
    top: 50%;
    right: -150px;
    background: radial-gradient(circle, var(--color-teal) 0%, transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    bottom: -100px;
    left: 20%;
    background: radial-gradient(circle, var(--color-purple) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes pulse {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

/* Typography & General Classes */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--color-text-secondary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-solar) 0%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 176, 58, 0.1);
    border: 1px solid rgba(255, 176, 58, 0.2);
    border-radius: 100px;
    color: var(--color-solar);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.text-uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.1em;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-solar) 0%, #E28500 100%);
    color: #0F172A;
    border: none;
    box-shadow: 0 4px 20px var(--color-solar-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 176, 58, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-icon.small {
    width: 28px;
    height: 28px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text-primary);
    letter-spacing: -0.03em;
}

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

.logo-text.text-sm {
    font-size: 1.15rem;
}

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

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-text-primary);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 32px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Hero Section */
.hero-section {
    padding: 80px 0 100px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-description {
    font-size: 1.25rem;
    margin-top: 24px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Waitlist Form Card */
.waitlist-card-wrapper {
    width: 100%;
    max-width: 520px;
    position: relative;
}

.waitlist-form .input-group {
    display: flex;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 6px;
    transition: var(--transition-fast);
}

.waitlist-form .input-group:focus-within {
    border-color: var(--color-solar);
    box-shadow: 0 0 15px var(--color-solar-glow);
    background: rgba(255, 255, 255, 0.05);
}

.waitlist-form input[type="email"] {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.waitlist-form input[type="email"]::placeholder {
    color: var(--color-text-muted);
}

.form-hint {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Success State */
.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-message h4 {
    color: #10B981;
    margin-bottom: 4px;
}

.success-message p {
    color: #A7F3D0;
    font-size: 0.95rem;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #10B981;
    color: #0F172A;
    font-weight: 700;
    flex-shrink: 0;
}

.hidden {
    display: none !important;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background: radial-gradient(circle, rgba(255, 176, 58, 0.22) 0%, rgba(0, 242, 254, 0.15) 50%, transparent 100%);
    filter: blur(65px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.85;
    animation: visual-glow-pulse 8s infinite alternate;
}

@keyframes visual-glow-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.92);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.95;
    }
}

.image-glass-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 242, 254, 0.05);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s, box-shadow 0.5s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.image-glass-frame:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.35);
    box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.85), 0 0 50px rgba(255, 176, 58, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-glass-frame:hover .hero-image {
    transform: scale(1.03);
}

.image-overlay-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 176, 58, 0.08) 0%, rgba(0, 242, 254, 0.08) 100%);
    pointer-events: none;
}

/* Glass Cards & Layout sections */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Border Glows */
.border-glow-orange:hover {
    border-color: rgba(255, 176, 58, 0.4);
    box-shadow: 0 0 25px rgba(255, 176, 58, 0.15);
}

.border-glow-blue:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.15);
}

.border-glow-teal:hover {
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.15);
}

/* Section Styling */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px auto;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
}

.problem-section, .tech-section, .kpi-section, .audience-section, .cta-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Section specific background overlays for parallax layout */
.hero-section {
    background: rgba(11, 15, 25, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    position: relative;
}

.problem-section {
    background: rgba(11, 15, 25, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}

.tech-section {
    background: rgba(11, 15, 25, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    position: relative;
}

.kpi-section {
    background: rgba(11, 15, 25, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}

.cta-section {
    background: rgba(11, 15, 25, 0.35);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
}

/* Card Icons */
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin-bottom: 24px;
}

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

.icon-orange {
    background: rgba(255, 176, 58, 0.1);
    color: var(--color-solar);
}

.icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-blue);
}

.icon-teal {
    background: rgba(0, 242, 254, 0.1);
    color: var(--color-teal);
}

/* Engine Split Layout */
.engine-split {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.engine-card {
    flex: 1;
    position: relative;
}

.engine-number {
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.15;
    background: linear-gradient(135deg, var(--color-text-primary), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.engine-list {
    margin-top: 24px;
    list-style: none;
}

.engine-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--color-text-secondary);
}

.engine-list .bullet {
    width: 6px;
    height: 6px;
    background-color: var(--color-solar);
    border-radius: 50%;
    display: inline-block;
}

.engine-card:last-child .bullet {
    background-color: var(--color-teal);
}

.engine-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.connector-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--color-solar), var(--color-teal));
    opacity: 0.3;
}

.connector-arrow {
    font-size: 1.5rem;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--color-solar), var(--color-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Split Layout for Cannibalization */
.cannibalization-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 40px;
}

.split-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-orange {
    background: rgba(255, 176, 58, 0.1) !important;
    border: 1px solid rgba(255, 176, 58, 0.2) !important;
    color: var(--color-solar) !important;
    margin-bottom: 16px !important;
}

.split-desc {
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.split-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.split-points li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.point-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-solar);
    background: rgba(255, 176, 58, 0.08);
    border: 1px solid rgba(255, 176, 58, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    line-height: 1;
}

.split-points strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.split-points p {
    font-size: 0.925rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.split-visual {
    width: 100%;
}

.split-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.margin-top-lg {
    margin-top: 48px;
}

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

/* KPI Cards */
.kpi-card {
    position: relative;
    overflow: hidden;
}

.kpi-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
}

.kpi-tag.yellow {
    background: rgba(255, 176, 58, 0.1);
    color: var(--color-solar);
    border: 1px solid rgba(255, 176, 58, 0.2);
}

.kpi-tag.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.kpi-tag.orange {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.kpi-tag.teal {
    background: rgba(0, 242, 254, 0.1);
    color: var(--color-teal);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.kpi-stat {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-top: 8px;
    margin-bottom: 20px;
}

.kpi-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Audience Section */
.audience-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.audience-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(11, 15, 25, 0.5) 0%, rgba(11, 15, 25, 0.92) 80%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
    pointer-events: none;
}

.audience-container {
    position: relative;
    z-index: 2;
}

.audience-group {
    position: relative;
}

.audience-group-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 16px;
}

.audience-group-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

.audience-card {
    text-align: center;
    transition: var(--transition-normal);
}

.audience-section .glass-card {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.audience-section .glass-card:hover {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.audience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    margin-bottom: 24px;
    color: var(--color-teal);
    transition: var(--transition-fast);
}

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

.audience-icon.icon-orange {
    background: rgba(255, 176, 58, 0.1);
    color: var(--color-solar);
    border-color: rgba(255, 176, 58, 0.2);
}

.audience-icon.icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-blue);
    border-color: rgba(59, 130, 246, 0.2);
}

.audience-icon.icon-teal {
    background: rgba(0, 242, 254, 0.1);
    color: var(--color-teal);
    border-color: rgba(0, 242, 254, 0.2);
}

.audience-desc {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA waitlist Section */
.cta-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(20, 30, 55, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    margin-bottom: 16px;
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 36px auto;
    font-size: 1.125rem;
}

.cta-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.inline-form {
    display: flex;
    gap: 12px;
}

.inline-form input[type="email"] {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 14px 20px;
    color: var(--color-text-primary);
    flex-grow: 1;
    outline: none;
    font-family: var(--font-body);
}

.inline-form input[type="email"]:focus {
    border-color: var(--color-teal);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

/* Footer Section */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--color-border);
    background-color: #080B12;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-desc {
    font-size: 0.875rem;
    margin-top: 8px;
    color: var(--color-text-muted);
}

.footer-right {
    text-align: right;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-domain {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.footer-email {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-email:hover {
    color: var(--color-solar);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .waitlist-card-wrapper {
        margin: 0 auto;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .engine-split {
        flex-direction: column;
        gap: 24px;
    }
    
    .engine-connector {
        transform: rotate(90deg);
        margin: 12px 0;
    }
    
    .connector-line {
        height: 40px;
    }

    .cannibalization-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .split-image {
        max-width: 600px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    .nav {
        display: none; /* Mobile nav hidden for clean coming soon mockup */
    }
    
    .problem-section, .tech-section, .kpi-section, .audience-section, .cta-section {
        padding: 64px 0;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .inline-form {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .footer-info {
        align-items: center;
    }
}

/* ==========================================================================
   Executive Risk Dashboard CSS Styles
   ========================================================================== */
.dashboard-wrapper {
    width: 100%;
}

.dashboard-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(10, 15, 30, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Header bar styling */
.db-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.db-logo-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.db-logo-icon {
    width: 38px;
    height: 38px;
}

.db-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.db-logo-text span {
    color: var(--color-solar);
}

.db-logo-text span.db-divider {
    color: var(--color-text-muted);
    font-weight: 300;
}

.db-logo-text span.db-project-name {
    color: var(--color-text-primary);
}

.db-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.db-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.db-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    color: var(--color-text-secondary);
}

.db-date-badge svg {
    color: var(--color-solar);
    opacity: 0.85;
}

/* Metrics Grid & Panel layout */
.db-metrics-row {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr;
    gap: 18px;
    margin-bottom: 32px;
}

.db-group-panel {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 14px;
    min-width: 0;
}

.db-group-title {
    font-size: 0.9rem;
    color: var(--color-text-primary);
    margin-bottom: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-left: 3px solid var(--color-solar);
    padding-left: 8px;
}

.panel-risk .db-group-title {
    border-left-color: var(--color-teal);
}

.db-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.db-metric-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.db-metric-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.db-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.db-card-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    line-height: 1.2;
}

.tag-p50 {
    background: rgba(255, 176, 58, 0.1);
    color: var(--color-solar);
    border: 1px solid rgba(255, 176, 58, 0.2);
}

.tag-p90 {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.tag-ear {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.tag-var {
    background: rgba(0, 242, 254, 0.1);
    color: var(--color-teal);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.db-card-label {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.db-card-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.db-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
}

.db-trend-indicator {
    font-size: 1rem;
    font-weight: 700;
}

.db-trend-indicator.positive {
    color: #10B981;
}

.db-card-subtext {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Charts Section Styling */
.db-charts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}

.db-chart-panel {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.db-chart-header {
    margin-bottom: 20px;
}

.db-chart-header h6 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.db-chart-sub {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.db-chart-container {
    height: 280px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer & Controls */
.db-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.db-footer-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.db-select-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.db-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-secondary);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
}

.db-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-text-primary);
}

.db-btn .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-text-muted);
    transition: var(--transition-fast);
    display: inline-block;
}

.db-btn.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--color-text-primary);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.db-btn.active .dot {
    background: var(--color-blue);
    box-shadow: 0 0 8px var(--color-blue);
}

/* SVG Chart Elements Styling */
.chart-grid-line {
    stroke: rgba(255, 255, 255, 0.04);
    stroke-width: 1px;
}

.chart-axis-line {
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 1px;
}

.chart-axis-text {
    fill: var(--color-text-muted);
    font-size: 10px;
    font-family: var(--font-body);
}

.chart-bar {
    fill: url(#bar-grad-default);
    rx: 2px;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), y 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-bar:hover {
    filter: brightness(1.2);
}

.chart-threshold-line {
    stroke-dasharray: 4 4;
    stroke-width: 1.5px;
    transition: x1 0.5s cubic-bezier(0.4, 0, 0.2, 1), x2 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.line-p50 {
    stroke: var(--color-solar);
}

.line-p90 {
    stroke: var(--color-blue);
}

.chart-label-bg {
    fill: rgba(15, 23, 42, 0.95);
    stroke-width: 1px;
    rx: 4px;
}

.label-bg-p50 {
    stroke: var(--color-solar);
}

.label-bg-p90 {
    stroke: var(--color-blue);
}

.chart-label-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 10px;
    text-anchor: middle;
}

.text-p50 {
    fill: var(--color-solar);
}

.text-p90 {
    fill: var(--color-blue);
}

.chart-curve-path {
    fill: none;
    stroke: url(#curve-stroke-grad);
    stroke-width: 3px;
    transition: d 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-area-path {
    fill: url(#area-grad);
    opacity: 0.15;
    transition: d 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-glow-dot {
    stroke-width: 2px;
    transition: cx 0.5s cubic-bezier(0.4, 0, 0.2, 1), cy 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot-p50 {
    fill: var(--color-solar);
    stroke: #fff;
    box-shadow: 0 0 10px var(--color-solar);
}

.dot-p90 {
    fill: var(--color-blue);
    stroke: #fff;
}

/* Responsive Styles for Dashboard */
@media (max-width: 1200px) {
    .db-value {
        font-size: 1.25rem;
    }
    .db-card-label {
        font-size: 0.75rem;
    }
    .db-card-subtext {
        font-size: 0.72rem;
    }
    .db-metric-card {
        padding: 10px;
    }
}

@media (max-width: 1100px) {
    .db-metrics-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .db-charts-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .db-chart-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .dashboard-card {
        padding: 20px;
    }
    
    .db-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .db-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }
    
    .db-subtitle {
        font-size: 0.85rem;
    }
    
    .db-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .db-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .db-select-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .db-btn {
        width: 100%;
        justify-content: flex-start;
    }
}
