@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700&display=swap');

:root {
    --bg-deep: #0a0c10;
    --brand-teal: #00f2ea;
    --brand-blue: #007aff;
    --border-light: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #8e9aaf;
    --highlight: #00f2ea;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: auto;
    width: 100vw;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.main-container {
    width: 100vw;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
}

section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 0; /* Compacted from 4rem */
    border-bottom: 1px solid var(--border-light);
}

section:last-child {
    border-bottom: none;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section active state removed in favor of reveal animations */

.content-wrapper {
    max-width: 1200px;
    width: 90%;
    padding: 2rem;
}

/* Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

header nav {
    display: flex;
    gap: 2.5rem;
}

header nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: var(--brand-teal);
}

.logo {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.logo span {
    color: var(--brand-teal);
}

/* Typography & Content */
.section-tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.4em;
    color: var(--brand-teal);
    margin-bottom: 2rem;
    text-transform: uppercase;
    display: inline-block;
    border-left: 2px solid var(--brand-teal);
    padding-left: 1rem;
}

.tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--brand-teal);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Compacted font size */
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h1 .highlight {
    font-weight: 700;
    background: linear-gradient(90deg, #00f2ea, #007aff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    border-left: 2px solid var(--brand-teal);
    padding-left: 1.5rem;
}

.executive-summary {
    max-width: 600px;
    margin-bottom: 3rem;
}

.executive-summary p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: white;
    color: black;
}

.scroll-hint {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

/* Grid Questions */
.grid-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.q-item {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.q-num {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-teal);
    display: block;
    margin-bottom: 1rem;
}

.q-item h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.q-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Hover Card System */
.hover-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hover-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 242, 234, 0.3);
    transform: translateY(-5px);
}

.card-reveal {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-card:hover .card-reveal {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}

/* Resolution Grid */
.measures-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.measure-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.card-icon {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--brand-teal);
    background: rgba(0, 242, 234, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.measure-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Timeline */
.timeline {
    display: flex;
    gap: 2rem;
    width: 100%;
}

.time-block {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.time-block:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--brand-teal);
}

.time-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--brand-teal);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.time-block h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.time-block p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ROI Section */
.roi-flex {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.chart-container {
    flex: 1.5;
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border-radius: 12px;
}

.stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.stat-val {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--brand-teal);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-note {
    margin-top: 4rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    opacity: 0.4;
    text-align: center;
}

