:root {
    --navy-dark: #07111E;
    --navy-medium: #112240;
    --navy-light: #1E293B;
    --charcoal: #1E293B;
    --slate-light: #94A3B8;
    --slate-dark: #475569;
    --white: #FFFFFF;
    --light-blue: #38BDF8;
    --light-blue-bg: #F8FAFC;
    --safety-amber: #D97706;
    --safety-amber-hover: #B45309;
    --accent-green: #10B981;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(10, 25, 47, 0.05);
    --shadow-lg: 0 16px 36px rgba(10, 25, 47, 0.12);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: var(--charcoal);
}

body {
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Announcement Bar */
.top-announcement {
    background-color: var(--navy-dark);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 0;
    font-size: 0.8rem;
}

.announcement-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
}

.announcement-tag {
    background-color: var(--safety-amber);
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.announcement-text {
    font-weight: 500;
}

.announcement-link {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.announcement-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Button Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary-hero {
    background-color: var(--safety-amber);
    color: var(--white);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-hero:hover {
    background-color: var(--safety-amber-hover);
}

.btn-secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy-dark);
    border-color: var(--white);
}

.btn-amber {
    background-color: var(--safety-amber);
    color: var(--white);
    border: none;
}

.btn-amber:hover {
    background-color: var(--safety-amber-hover);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-nav {
    padding: 8px 18px;
    font-size: 0.85rem;
    background-color: var(--safety-amber);
    color: var(--white);
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: var(--safety-amber-hover);
    color: var(--white);
}

/* Header & Sticky Light Nav (High Contrast, White Background) */
.site-header {
    background-color: var(--white);
    color: var(--navy-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.logo-area {
    display: flex;
    flex-direction: column;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-image-wrap {
    position: relative;
    display: inline-block;
    width: 260px;
    height: 66px;
    overflow: hidden;
    flex-shrink: 0;
}

.header-logo-img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 340px;
    max-width: none;
    height: auto;
    transform: translate(-50%, -50%);
    display: block;
}

.brand-wordmark {
    color: var(--navy-dark);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.main-nav a.nav-link {
    color: var(--slate-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.main-nav a.nav-link:hover,
.main-nav a.nav-link.active-section {
    color: var(--safety-amber);
    border-bottom-color: var(--safety-amber);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--navy-dark);
    transition: var(--transition);
    transform-origin: center;
}

/* Mobile Menu toggling animation - class based CSS transforms */
.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Sections with Premium Spacing */
.section-padding {
    padding: 140px 0;
}

.alt-bg {
    background-color: var(--light-blue-bg);
}

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 72px auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--safety-amber);
    margin-bottom: 16px;
}

.section-tag.white {
    color: var(--light-blue);
}

.section-header h2 {
    font-size: 2.25rem; /* Clean non-dramatic size */
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate-dark);
    line-height: 1.6;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #0d1e36 100%);
    color: var(--white);
    padding: 88px 0 96px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: var(--light-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    gap: 8px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--light-blue);
    box-shadow: 0 0 8px var(--light-blue);
}

.hero-tagline {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--safety-amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-content h1 {
    font-size: 2.95rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.hero-support-line {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-blue);
    margin-bottom: 18px;
    line-height: 1.4;
}

.highlight {
    color: var(--light-blue);
}

.highlight-amber {
    color: var(--safety-amber);
}

.lead {
    font-size: 1.02rem;
    color: var(--slate-light);
    margin-bottom: 24px;
    line-height: 1.65;
}

.pilot-snapshot {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.pilot-snapshot div {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 14px;
}

.pilot-snapshot span {
    display: block;
    color: var(--light-blue);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pilot-snapshot strong {
    display: block;
    color: var(--white);
    font-size: 0.88rem;
    line-height: 1.35;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-badge-footer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--slate-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.shield-icon {
    width: 20px;
    height: 20px;
    color: var(--light-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-visual {
    position: relative;
}

.visual-card {
    background: rgba(17, 34, 64, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card-header {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.green { background-color: var(--accent-green); }
.dot.yellow { background-color: var(--safety-amber); }
.dot.red { background-color: #EF4444; }

.panel-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate-light);
}

.card-body {
    padding: 32px 24px;
}

/* Calm Executive System Diagram */
.system-diagram {
    display: flex;
    flex-direction: column;
    background: rgba(10, 25, 47, 0.5);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.system-node {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 18px;
    border-radius: 6px;
    transition: var(--transition);
}

.system-node:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(56, 189, 248, 0.3);
}

.node-num {
    background: var(--light-blue);
    color: var(--navy-dark);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.85rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.node-num.amber {
    background: var(--safety-amber);
    color: var(--white);
}

.node-num.blue {
    background: #0EA5E9;
    color: var(--white);
}

.node-num.green {
    background: var(--accent-green);
    color: var(--navy-dark);
}

.node-text {
    text-align: left;
}

.node-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 2px;
}

.node-text p {
    font-size: 0.75rem;
    color: var(--slate-light);
    margin: 0;
}

.system-line {
    width: 2px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    margin-left: 39px;
}

.card-footer-text {
    font-size: 0.85rem;
    color: var(--slate-light);
    text-align: center;
    line-height: 1.4;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

/* Problem Section Grid */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
}

.problem-narrative h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.problem-narrative .lead-text {
    font-size: 1.15rem;
    color: var(--slate-dark);
    font-weight: 600;
    margin-bottom: 16px;
}

.problem-narrative .body-text {
    font-size: 1rem;
    color: var(--slate-dark);
    margin-bottom: 16px;
}

.narrative-cta-box {
    background: var(--light-blue-bg);
    border-left: 4px solid var(--safety-amber);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 24px;
}

.narrative-cta-box strong {
    display: block;
    font-size: 1rem;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.narrative-cta-box p {
    font-size: 0.9rem;
    color: var(--slate-dark);
    margin: 0;
}

.examples-header-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.examples-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.example-item {
    display: flex;
    gap: 16px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.example-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--slate-light);
}

.example-icon {
    color: var(--safety-amber);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.example-item strong {
    display: block;
    color: var(--navy-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}

.example-item p {
    font-size: 0.85rem;
    color: var(--slate-dark);
    line-height: 1.5;
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.comparison-panel {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.comparison-panel.active {
    border: 2px solid var(--navy-dark);
    box-shadow: var(--shadow-md);
}

.panel-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
}

.panel-badge.imagined {
    background-color: var(--border-color);
    color: var(--charcoal);
}

.panel-badge.done {
    background-color: var(--safety-amber);
    color: var(--white);
}

.comparison-panel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 12px;
    margin-top: 10px;
}

.panel-intro {
    font-size: 0.95rem;
    color: var(--slate-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.comparison-panel ul {
    list-style: none;
}

.comparison-panel li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.5;
}

.comparison-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--safety-amber);
}

.comparison-panel.active li::before {
    background-color: var(--navy-dark);
}

/* Interactive Simulator */
.interactive-simulator {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 56px;
    box-shadow: var(--shadow-sm);
}

.simulator-header {
    margin-bottom: 32px;
    text-align: center;
}

.simulator-header h3 {
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-bottom: 8px;
    font-weight: 800;
}

.simulator-header p {
    font-size: 0.95rem;
    color: var(--slate-dark);
    line-height: 1.5;
}

.sim-clarification {
    display: block;
    font-size: 0.8rem;
    color: var(--slate-dark);
    margin-top: 8px;
    font-style: italic;
}

.simulator-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.sim-btn {
    background-color: var(--light-blue-bg);
    border: 1.5px solid var(--border-color);
    color: var(--navy-dark);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.sim-btn:hover {
    border-color: var(--navy-dark);
}

.sim-btn.active {
    background-color: var(--navy-dark);
    color: var(--white);
    border-color: var(--navy-dark);
}

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

.sim-panel {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    background-color: var(--light-blue-bg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sim-panel.active-highlight {
    border: 2px solid var(--safety-amber);
    background-color: var(--white);
}

.sim-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.sim-panel-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.sim-panel-badge.blue {
    background-color: #E0F2FE;
    color: #0369A1;
}

.sim-panel-badge.amber {
    background-color: #FEF3C7;
    color: #B45309;
}

.sim-panel h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
}

.sim-description {
    font-size: 0.95rem;
    color: var(--slate-dark);
    min-height: 54px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.sim-metric-container {
    margin-top: auto;
}

.sim-metric-label-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.sim-metric-lbl {
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--slate-dark);
    text-transform: uppercase;
}

.sim-bar-bg {
    background: var(--border-color);
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 6px;
}

.sim-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sim-metric-val {
    font-size: 0.85rem;
    font-weight: 700;
}

.comparison-footer {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--slate-dark);
}

/* How DHF Works */
.how-works-section {
    background-color: var(--white);
}

.how-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.how-step {
    position: relative;
    border-top: 3px solid var(--border-color);
    padding-top: 24px;
}

.step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--safety-amber);
    line-height: 1;
    margin-bottom: 16px;
}

.how-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 16px;
}

.how-step p {
    font-size: 0.95rem;
    color: var(--slate-dark);
    line-height: 1.6;
}

.highlight-context {
    font-weight: 600;
    border-bottom: 2px dashed var(--light-blue);
}

.framework-badge-line {
    margin-top: 48px;
    background-color: var(--light-blue-bg);
    border-left: 4px solid var(--light-blue);
    padding: 16px 24px;
    border-radius: 0 8px 8px 0;
    font-size: 1rem;
}

/* Who It Helps */
.role-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.role-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--safety-amber);
}

.role-card-header {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--safety-amber);
    padding-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.role-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    background-color: var(--light-blue-bg);
    color: var(--navy-dark);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.role-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
}

.role-card p {
    font-size: 0.95rem;
    color: var(--slate-dark);
    line-height: 1.6;
}

.mixed-workforce-container {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.mixed-card {
    background: var(--white);
    border: 2px dashed var(--border-color);
    padding: 24px 40px;
    border-radius: 8px;
    max-width: 800px;
    text-align: center;
}

.mixed-card h4 {
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.mixed-card p {
    font-size: 0.95rem;
    color: var(--slate-dark);
    margin: 0;
}

/* 90-Day Pilot Program */
.pilot-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    background-color: var(--navy-dark);
    color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pilot-info {
    padding: 64px;
}

.pilot-info h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-top: 12px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.pilot-info p {
    font-size: 1.1rem;
    color: var(--slate-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.differentiator-notice {
    background-color: rgba(217, 119, 6, 0.08);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-left: 4px solid var(--safety-amber);
    padding: 24px;
    margin-bottom: 36px;
    border-radius: 0 8px 8px 0;
}

.differentiator-notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.notice-pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    background-color: var(--safety-amber);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.differentiator-notice-header strong {
    color: var(--white);
    font-size: 0.95rem;
}

.differentiator-highlight {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #F3F4F6;
    margin: 0 !important;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-day-badge {
    background: var(--safety-amber);
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 4px;
    flex-shrink: 0;
    text-align: center;
    min-width: 90px;
}

.timeline-content strong {
    color: var(--light-blue);
    display: block;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.timeline-content p {
    color: var(--slate-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.pilot-cta {
    background-color: var(--navy-medium);
    padding: 64px 48px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pilot-cta h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
    margin-bottom: 32px;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--slate-light);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.pilot-inclusions-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 32px;
    line-height: 1.5;
}

.pilot-inclusions-box strong {
    display: block;
    color: var(--light-blue);
    margin-bottom: 6px;
}

.pilot-qualification {
    font-size: 0.75rem;
    color: var(--slate-light);
    margin-top: 16px;
    text-align: center;
    font-style: italic;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--slate-dark);
}

.quote-box {
    border-left: 4px solid var(--safety-amber);
    padding-left: 24px;
    margin-top: 32px;
}

.quote-box blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--navy-dark);
    margin-bottom: 12px;
    line-height: 1.6;
}

.quote-box cite {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 600;
    color: var(--slate-dark);
}

.about-badge-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
}

.focus-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 24px;
}

.focus-box ul {
    list-style: none;
}

.focus-box li {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.focus-box li:last-child {
    margin-bottom: 0;
}

.focus-box strong {
    color: var(--navy-dark);
    display: block;
    margin-bottom: 4px;
}

.focus-box span {
    color: var(--slate-dark);
}

/* Privacy & Trust */
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 64px 48px;
    box-shadow: var(--shadow-md);
}

.privacy-icon {
    margin-bottom: 24px;
    display: inline-flex;
    justify-content: center;
}

.privacy-logo-wrap {
    position: relative;
    display: inline-block;
    width: 72px;
    height: 72px;
    overflow: hidden;
}

.privacy-shield-img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    max-width: none;
    height: auto;
    transform: translate(-50%, -50%);
    display: block;
}

.privacy-container h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.privacy-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: left;
    margin-top: 48px;
}

.p-point {
    background: var(--light-blue-bg);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.p-point:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--light-blue);
}

.p-point-icon {
    color: var(--safety-amber);
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1;
}

.p-point strong {
    display: block;
    font-size: 1.1rem;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.p-point p {
    font-size: 0.9rem;
    color: var(--slate-dark);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-accordion-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-blue-bg);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--slate-dark);
    line-height: 1;
    transition: transform 0.2s ease;
}

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

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: var(--slate-dark);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

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

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
}

.contact-details h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-details p {
    font-size: 1.1rem;
    color: var(--slate-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.qualification-disclaimer {
    background-color: var(--light-blue-bg);
    border-left: 3px solid var(--light-blue);
    padding: 20px;
    font-size: 0.95rem;
    border-radius: 0 4px 4px 0;
    margin-bottom: 32px;
}

.qualification-disclaimer strong {
    display: block;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.meta-item strong {
    font-size: 1rem;
    color: var(--navy-dark);
    display: block;
    margin-bottom: 6px;
}

.meta-item p {
    font-size: 0.95rem;
    color: var(--slate-dark);
    margin: 0;
}

.contact-form-wrapper {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--navy-dark);
    background-color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-dark);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

.form-boundary-note {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--slate-dark);
    background-color: #FFFBEB;
    border: 1px solid #FDE68A;
    padding: 12px 16px;
    border-radius: 4px;
}

/* Footer */
.site-footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.logo-white {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.brand-subtext {
    font-size: 0.95rem;
    color: var(--slate-light);
    max-width: 440px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-email-line a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-email-line a:hover {
    text-decoration: underline;
}

.footer-notes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--slate-light);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0;
    font-size: 0.8rem;
    color: var(--slate-light);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-tagline {
    font-family: 'JetBrains Mono', monospace;
    color: var(--light-blue);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.animate-pulse {
    animation: pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Responsive Layouts */
@media (max-width: 1024px) {
    .hero-grid,
    .problem-grid,
    .comparison-grid,
    .simulator-body,
    .pilot-wrapper,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pilot-cta {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 48px 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .privacy-points {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-section {
        padding: 56px 0 64px 0;
    }

    .grid-3,
    .how-works-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 32px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
        line-height: 1.1;
        letter-spacing: -0.5px;
    }

    .hero-support-line {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        display: none;
    }

    .logo-image-wrap {
        width: 210px;
        height: 54px;
    }

    .header-logo-img {
        width: 280px;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--white);
        border-bottom: 1px solid var(--border-color);
        padding: 24px;
        box-shadow: var(--shadow-md);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .main-nav .btn {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .privacy-container {
        padding: 40px 24px;
    }
}

/* Netlify honeypot spam trap - visually hidden from humans */
.netlify-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
