@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&family=Outfit:wght@100;200;300;400;600&display=swap');

:root {
    --bg-dark: #FAFAFA;
    --bg-card: #ffffff;
    --border-color: hsla(240, 10%, 15%, 0.12);
    --border-glow: hsla(240, 10%, 15%, 0.05);
    
    --accent-cyan: hsl(215, 100%, 50%); /* Cobalt Blue */
    --accent-cyan-rgb: 0, 110, 255;
    --accent-purple: hsl(270, 75%, 45%); /* Royal Purple */
    --accent-purple-rgb: 128, 0, 255;
    --accent-gold: hsl(42, 85%, 40%); /* Editorial Gold */
    
    --text-main: hsl(240, 20%, 8%);
    --text-muted: hsl(240, 8%, 40%);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Mouse Glow Track Effect */
.cursor-glow {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(180, 100%, 50%, 0.04) 0%, hsla(270, 95%, 65%, 0.03) 50%, transparent 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.08s ease-out;
}

/* Header & Navigation */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    border-bottom: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.6rem;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: hsla(0, 0%, 100%, 0.85);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.nav-links a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.btn-ctek {
    background: #0f111a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.65rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 400;
    font-family: monospace;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-ctek:hover {
    background: #ffffff;
    color: #191B29;
    border-color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

/* Background Vertical Column Grids */
.bg-grid-lines {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    pointer-events: none;
    z-index: 1;
}

.grid-line {
    border-right: 1px solid rgba(120, 130, 180, 0.28);
    height: 100%;
}

.grid-line:last-child {
    border-right: none;
}

/* Midnight Navy Hero Background color block */
.hero-bg-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #191B29;
    z-index: 0;
    pointer-events: none;
}

/* Sections Base Layout */
section {
    position: relative;
    padding: 6.5rem 2rem;
    width: 100%;
    z-index: 2;
}

section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Hero Section Premium CTEK-style Split Layout */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    background-color: transparent;
    color: #ffffff;
}

.hero-layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    align-items: flex-start;
    margin-bottom: 6rem;
    text-align: left;
}

.hero-col-left h1 {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-col-right {
    padding-top: 1rem;
}

.hero-description-premium {
    font-size: 1.8rem;
    line-height: 1.45;
    color: hsla(0, 0%, 100%, 0.7);
    font-weight: 300;
    max-width: 580px;
}

/* Premium Floating Console Ingest Bar */
.hero-console-bar {
    width: 100%;
    background: #191B29;
    border: 1px solid hsla(0, 0%, 100%, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 6px;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.console-brand {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
}

.console-logo-bold {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.console-logo-muted {
    font-size: 0.75rem;
    color: hsla(0, 0%, 100%, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.console-message {
    font-family: monospace;
    font-size: 0.95rem;
    color: var(--accent-cyan);
    letter-spacing: -0.01em;
}

.console-btn {
    background: #ffffff;
    color: #191B29;
    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.console-btn:hover {
    background: var(--accent-cyan);
    color: #191B29;
    box-shadow: 0 0 20px rgba(var(--accent-cyan-rgb), 0.3);
}

.arrow-up-right {
    font-weight: 900;
}

/* Quick Metrics Row */
.quick-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
    margin-top: 2rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    background: linear-gradient(180deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Glassmorphic Cards styling */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, transparent 80%, rgba(var(--accent-cyan-rgb), 0.03) 100%);
    pointer-events: none;
}

.glass-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(25, 27, 41, 0.05);
}

/* Grid & Section Layout Utilities */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Showcase Reports Section 2 */
.section-reports-showcase {
    border-top: 1px solid var(--border-color);
    padding-top: 8rem;
}

.showcase-section-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 200;
    margin-bottom: 4rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.showcase-split-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    width: 100%;
    align-items: flex-start;
}

.featured-report-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    transition: var(--transition);
}

.featured-report-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.badge-status-green {
    background: hsla(150, 80%, 40%, 0.1);
    border: 1px solid hsl(150, 80%, 40%);
    color: hsl(150, 80%, 45%);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.report-date {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.report-main-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.15;
    font-weight: 200;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.analyst-info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.analyst-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: hsla(240, 10%, 15%, 0.5);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.analyst-avatar svg {
    width: 16px;
    height: 16px;
}

.analyst-name {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.report-action-link {
    font-size: 0.95rem;
    color: var(--text-main);
    text-decoration: underline;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.report-action-link:hover {
    color: var(--accent-cyan);
}

.report-rows-stack {
    display: flex;
    flex-direction: column;
}

.report-row-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    margin-bottom: 0;
    align-items: stretch;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.report-row-item:last-child {
    border-bottom: none;
}

.report-row-thumbnail {
    flex-shrink: 0;
    width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
    padding-right: 1.5rem;
}

.report-row-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: block;
}

.report-row-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
    padding-left: 0.5rem;
}

.report-row-info h3 {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.25;
    color: var(--text-main);
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}

.report-row-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.4;
}

.bullet-node {
    color: var(--text-main);
    font-size: 0.8rem;
    margin-right: 0.35rem;
}

.report-row-action {
    font-family: monospace;
    font-size: 0.95rem;
    color: var(--text-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 0.5rem;
    transition: var(--transition);
}

.report-row-action:hover {
    color: var(--accent-cyan);
    transform: translateX(6px);
}

.badge-folder-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0.25rem 0;
}

.badge-meta-source {
    font-size: 0.7rem;
    font-weight: 700;
    background: hsla(240, 10%, 15%, 0.5);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    color: var(--text-muted);
}

.badge-folder-location {
    font-family: monospace;
    font-size: 0.75rem;
    background: #000;
    color: var(--accent-cyan);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

/* Strategies & Capabilities Section */
.section-strategies {
    border-top: 1px solid var(--border-color);
    padding-top: 8rem;
}

.strategies-header-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4rem;
    text-align: left;
}

.strat-header-left h2 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 200;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.strat-header-right p {
    font-size: 1.6rem;
    line-height: 1.45;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 580px;
    padding-top: 0.5rem;
}

.strategies-outer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.1fr;
    gap: 2.5rem;
    width: 100%;
}

.strategy-group-box {
    background: var(--bg-card);
    border: 1px dashed hsla(240, 10%, 20%, 0.5);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.strategy-group-box:hover {
    border-color: rgba(var(--accent-cyan-rgb), 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.group-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 200;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.strategy-columns-container {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.container-3col {
    grid-template-columns: repeat(3, 1fr);
}

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

.strat-col-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.strat-col-box:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

.strat-col-icon {
    width: 32px;
    height: 32px;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

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

.strat-col-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
}

.strat-col-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.group-action-arrow {
    font-family: monospace;
    font-size: 0.95rem;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
    align-self: flex-start;
}

.group-action-arrow:hover {
    color: var(--text-main);
    padding-left: 5px;
}
/* Deliverables Section Stacked Rows */
.section-offerings {
    border-top: 1px solid var(--border-color);
    padding-top: 8rem;
}

.offerings-section-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 200;
    margin-bottom: 4rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.offerings-rows-stack {
    display: flex;
    flex-direction: column;
}

.offering-row-item {
    display: flex;
    gap: 7.5rem;
    padding: 1.5rem 0;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    margin-bottom: 0;
    align-items: stretch;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.offering-row-item:last-child {
    border-bottom: none;
}

.offering-thumbnail {
    flex-shrink: 0;
    width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
    padding-right: 1.5rem;
}

.offering-row-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: block;
}

.offering-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
    padding-left: 0.5rem;
}

.offering-meta {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.offering-name {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.25;
    color: var(--text-main);
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}

.offering-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0.25rem 0;
}

.offering-bullets strong {
    color: var(--text-main);
    font-weight: 600;
}

.offering-action-btn {
    font-family: monospace;
    font-size: 0.95rem;
    color: var(--text-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 0.5rem;
    transition: var(--transition);
}

.offering-action-btn:hover {
    color: var(--accent-cyan);
    transform: translateX(6px);
}

/* Timeline / How It Works */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Institutional Bottom Banner */
.institutional-cta-bar {
    background: #191B29;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-bar-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.cta-bar-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-cta-transparent {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-cta-transparent:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
}

.btn-cta-white {
    background: #ffffff;
    border: none;
    color: #191B29;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-cta-white:hover {
    background: var(--accent-cyan);
    color: #191B29;
}

/* Footer Brand Row */
.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 5rem;
    margin-bottom: 2rem;
}

.footer-logo-bold {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--text-main);
}

.footer-logo-sep {
    color: var(--border-color);
    font-size: 1.8rem;
    font-weight: 200;
}

.footer-logo-desc {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* Legal Disclosures */
.legal-disclosures {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2.5rem;
    margin-bottom: 2rem;
}

.legal-disclosures p {
    margin: 0;
}

/* Bottom Links Row */
.bottom-links-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding-top: 0.5rem;
    margin-bottom: 3rem;
}

.bottom-email {
    font-family: monospace;
}

.bottom-email a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.bottom-email a:hover {
    color: var(--accent-cyan);
}

.bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.bottom-links a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 8px rgba(var(--accent-cyan-rgb), 0.2);
    }
    100% {
        box-shadow: 0 0 20px rgba(var(--accent-cyan-rgb), 0.4);
    }
}

/* Reveal Scroll Class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Responsive fixes */
@media (max-width: 1024px) {
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1.25rem 1.5rem;
    }
    .logo {
        font-size: 1.3rem;
    }
    .nav-links {
        display: none;
    }
    .btn-ctek {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    section {
        padding: 4.5rem 1.5rem;
    }
    
    .hero {
        min-height: auto;
        padding-top: 7rem;
        padding-bottom: 3rem;
    }
    .hero-layout-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    .hero-col-left h1 {
        font-size: 2.5rem;
    }
    .hero-description-premium {
        font-size: 1.3rem;
        max-width: 100%;
    }
    .hero-console-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 1.5rem;
        text-align: center;
    }
    .console-message {
        font-size: 0.85rem;
    }
    .console-btn {
        justify-content: center;
    }
    .quick-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 2rem;
    }
    
    .showcase-section-title {
        font-size: 2.6rem;
        margin-bottom: 2.5rem;
    }
    .showcase-split-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .featured-report-card {
        padding: 2rem 1.5rem;
    }
    .featured-report-card h3 {
        font-size: 2.2rem;
    }
    
    .report-row-item {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem 0;
    }
    .report-row-thumbnail {
        width: 100%;
        border-right: none;
        padding-right: 0;
    }
    .report-row-info {
        padding-left: 0;
    }
    .report-row-info h3 {
        font-size: 1.25rem;
    }
    

    .strategies-header-split {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .strat-header-left h2 {
        font-size: 2.6rem;
    }
    .strat-header-right p {
        font-size: 1.25rem;
    }
    .strategies-outer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .container-3col, .container-2col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .strategy-group-box {
        padding: 2rem 1.5rem;
    }
    .group-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .offerings-section-title {
        font-size: 2.6rem;
        margin-bottom: 2.5rem;
    }
    .offering-row-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    .offering-thumbnail {
        width: 100%;
        border-right: none;
        padding-right: 0;
    }
    .offering-info {
        padding-left: 0;
    }
    .offering-name {
        font-size: 1.25rem;
    }
    .offering-bullets {
        font-size: 0.85rem;
    }
    
    .institutional-cta-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    .cta-bar-text {
        font-size: 1.4rem;
    }
    .cta-bar-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    .btn-cta-transparent, .btn-cta-white {
        justify-content: center;
        padding: 0.85rem 1.5rem;
    }
    
    .footer-brand-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-top: 3rem;
    }
    .footer-logo-sep {
        display: none;
    }
    .footer-logo-bold {
        font-size: 1.5rem;
    }
    .footer-logo-desc {
        font-size: 1.1rem;
    }
    
    .legal-disclosures {
        font-size: 0.8rem;
        padding-bottom: 1.5rem;
    }
    .bottom-links-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ==========================================================================
   Why Datums? Subpage Styling
   ========================================================================== */

/* Header Adjustments for Light Background Subpages */
header.light-bg .logo {
    color: var(--text-main);
}
header.light-bg .nav-links a {
    color: var(--text-muted);
}
header.light-bg .nav-links a:hover,
header.light-bg .nav-links a.active {
    color: var(--text-main);
    opacity: 1;
}
header.light-bg .btn-ctek {
    background: #191B29;
    color: #ffffff;
    border-color: #191B29;
}
header.light-bg .btn-ctek:hover {
    background: var(--text-main);
    color: #ffffff;
    border-color: var(--text-main);
}

/* Unique Approach Grid */
.unique-approach-wrapper {
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}
.unique-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: visible;
}
.approach-card {
    padding: 3.5rem 2.5rem;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-right: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}
.approach-card:last-child {
    border-right: none;
}
.approach-card-icon {
    width: 42px;
    height: 42px;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}
.approach-card-icon svg {
    width: 100%;
    height: 100%;
}
.approach-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: -0.01em;
}
.approach-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Highlighting the CTEK Card specifically as requested in screenshots */
.approach-card.highlighted {
    background: #FAFAFA;
    border: 1px dashed var(--accent-purple);
    border-radius: 6px;
    transform: scale(1.025);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(128, 0, 255, 0.06);
}
.approach-card.highlighted .approach-card-icon {
    color: var(--accent-purple);
}
.approach-card:nth-child(3) .approach-card-icon {
    color: var(--accent-gold);
}

/* Core Benefits List Stack */
.benefits-list-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}
.benefit-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    transition: var(--transition);
}
.benefit-list-row:hover {
    background: rgba(95, 158, 130, 0.03); /* Soft Sage Green Highlight */
}
.benefit-list-left {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-shrink: 0;
}
.benefit-list-arrow {
    color: #5F9E82;
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}
.benefit-list-row:hover .benefit-list-arrow {
    transform: translateX(6px);
}
.benefit-list-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-main);
    letter-spacing: -0.01em;
}
.benefit-list-right {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: right;
    max-width: 55%;
    line-height: 1.5;
}

/* Actions Row Styling */
.benefits-actions-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
    margin-top: 3.5rem;
    padding: 0 1.5rem;
}
.benefits-action-link {
    font-family: monospace;
    font-size: 0.95rem;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}
.benefits-action-link:hover {
    color: #5F9E82;
    transform: translateX(4px);
}
.btn-green-download {
    background-color: #5F9E82;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(95, 158, 130, 0.15);
}
.btn-green-download:hover {
    background-color: #4D826B;
    box-shadow: 0 4px 20px rgba(95, 158, 130, 0.25);
}

/* Responsive Overrides for Why Datums? Subpage */
@media (max-width: 768px) {
    .unique-approach-wrapper {
        padding: 1.5rem;
    }
    .unique-approach-grid {
        grid-template-columns: 1fr;
    }
    .approach-card {
        padding: 2.5rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .approach-card:last-child {
        border-bottom: none;
    }
    .approach-card.highlighted {
        transform: none;
        margin: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    }
    
    .benefit-list-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.5rem 0.5rem;
    }
    .benefit-list-right {
        text-align: left;
        max-width: 100%;
        padding-left: 3rem;
    }
    
    .benefits-actions-row {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 1.5rem;
        text-align: center;
    }
    .btn-green-download {
        text-align: center;
    }
}

/* Global Responsive Split Grid Helper */
.responsive-grid-split {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .responsive-grid-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Responsive Navbar Styling for Mobile */
.nav-links-wrapper .mobile-text {
    display: none !important;
}
@media (max-width: 768px) {
    .nav-links-wrapper {
        gap: 1rem !important;
    }
    .nav-links-wrapper .full-text {
        display: none !important;
    }
    .nav-links-wrapper .mobile-text {
        display: inline-block !important;
    }
    .btn-ctek {
        padding: 0.5rem 0.6rem !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 34px;
        min-height: 34px;
    }
}
