/* =============================================================================
 * Phantom Lights — Cloud Craft Research Preliminary Note
 * Premium Editorial Redesign — "Bloomberg Editorial × Renaissance Medallion"
 * v2.0  ·  Mayıs 2026
 * ========================================================================== */

/* --------------------------------------------------------------------------
 * Design Tokens
 * -------------------------------------------------------------------------- */
:root {
    /* Surface */
    --bg:        #050b0b;
    --bg-soft:   #0d1f1f;
    --bg-paper:  #1a1410;
    --bg-elev:   #0b1616;
    --bg-deep:   #030606;

    /* Text */
    --text:      #ecf6f6;
    --text-warm: #f5efe2;
    --text-dim:  #95a7a7;
    --muted:     #6a7a8a;

    /* Accent */
    --teal:      #00d9a6;
    --teal-dim:  #00876a;
    --teal-glow: rgba(0, 217, 166, 0.32);
    --gold:      #d4a54b;
    --gold-warm: #e8c878;
    --crimson:   #ff4976;
    --ivory:     #ecf6f6;

    /* Lines & glass */
    --line:      rgba(255, 255, 255, 0.14);
    --line-soft: rgba(255, 255, 255, 0.06);
    --card:      rgba(11, 22, 22, 0.72);
    --glass:     rgba(13, 31, 31, 0.6);

    /* Typography — ana sayfa standardı (Inter dominant) */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono:    'JetBrains Mono', 'SF Mono', 'Fira Code', Consolas, monospace;

    /* Rhythm */
    --gap: 8px;
    --rule-width: clamp(960px, 78vw, 1180px);

    /* Motion */
    --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
 * Reset & base
 * -------------------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    background-image:
        radial-gradient(circle at 18% -8%, #133838 0%, transparent 38%),
        radial-gradient(circle at 92% 12%, rgba(212, 165, 75, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 50% 110%, rgba(0, 217, 166, 0.05) 0%, transparent 45%);
    background-attachment: fixed;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection { background: var(--teal); color: var(--bg); }

a { color: var(--teal); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-warm); }

strong { color: var(--text); font-weight: 600; }
em { font-style: italic; font-family: var(--font-display); font-weight: 400; }

/* --------------------------------------------------------------------------
 * Scroll progress bar
 * -------------------------------------------------------------------------- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.03);
    z-index: 1000;
    pointer-events: none;
}
#scroll-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 70%, var(--gold-warm) 100%);
    box-shadow: 0 0 12px var(--teal-glow);
    transition: width 0.12s var(--ease-soft);
}

/* --------------------------------------------------------------------------
 * Grain noise overlay
 * -------------------------------------------------------------------------- */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.4 0 0 0 0 0.4 0 0 0 0.22 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* --------------------------------------------------------------------------
 * Reveal cascade (Intersection Observer driven)
 * -------------------------------------------------------------------------- */
.reveal-init {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
 * Header
 * -------------------------------------------------------------------------- */
.report-header {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid var(--line-soft);
    padding: 22px clamp(20px, 5vw, 56px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(8px);
    background: linear-gradient(180deg, rgba(5, 11, 11, 0.92) 0%, rgba(5, 11, 11, 0.62) 100%);
}
.brand {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand em { font-style: italic; font-weight: 400; color: var(--teal); }
.brand-mark {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 12px var(--teal-glow);
    animation: brand-pulse 2.6s ease-in-out infinite;
}
@keyframes brand-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(1.18); }
}
.meta {
    font-family: var(--font-mono);
    color: var(--text-dim);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.meta-sep { color: var(--muted); }
.meta-tag { color: var(--gold); }

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dim));
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.22s, box-shadow 0.22s;
    white-space: nowrap;
    box-shadow: 0 4px 14px -6px var(--teal-glow);
}
.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px -8px var(--teal-glow);
    color: var(--bg);
}
.header-cta-arrow {
    transition: transform 0.22s;
    display: inline-block;
}
.header-cta:hover .header-cta-arrow {
    transform: translateX(3px);
}

/* PDF pill in header — secondary, gold-bordered ghost */
.header-pdf {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid rgba(212, 165, 75, 0.45);
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    background: transparent;
    transition: border-color 0.22s, background 0.22s, color 0.22s;
    white-space: nowrap;
}
.header-pdf:hover {
    border-color: var(--gold);
    background: rgba(212, 165, 75, 0.08);
    color: var(--gold);
}
.header-pdf-icon {
    display: inline-block;
    font-size: 13px;
    line-height: 1;
}

/* PDF banner — full-width strip below header, dark accent */
.pdf-banner {
    background: linear-gradient(90deg, rgba(212, 165, 75, 0.04) 0%, rgba(54, 211, 178, 0.04) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px clamp(20px, 5vw, 56px);
}
.pdf-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.pdf-banner-icon {
    font-size: 18px;
    line-height: 1;
}
.pdf-banner-text {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    flex: 1 1 auto;
    min-width: 200px;
    text-align: left;
}
.pdf-banner-text strong {
    color: var(--text);
    font-weight: 600;
}
.pdf-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-warm, #c99b3d));
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: transform 0.22s, box-shadow 0.22s;
    white-space: nowrap;
    box-shadow: 0 4px 14px -6px rgba(212, 165, 75, 0.5);
}
.pdf-banner-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px -8px rgba(212, 165, 75, 0.5);
    color: var(--bg);
}

/* --------------------------------------------------------------------------
 * Main container
 * -------------------------------------------------------------------------- */
.report-content {
    position: relative;
    z-index: 2;
    max-width: var(--rule-width);
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 56px);
}

.report-content > section {
    margin-bottom: clamp(64px, 9vw, 128px);
    position: relative;
}

/* --------------------------------------------------------------------------
 * Section markers (editorial column letters)
 * -------------------------------------------------------------------------- */
.section-marker {
    position: absolute;
    top: -8px;
    left: -8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    opacity: 0.55;
    pointer-events: none;
}
.marker-letter {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 76px;
    font-weight: 300;
    line-height: 0.85;
    color: var(--gold);
    font-variation-settings: 'opsz' 144;
    letter-spacing: -0.04em;
}
.marker-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-left: 4px;
}

/* --------------------------------------------------------------------------
 * Section H — universal editorial heading
 * -------------------------------------------------------------------------- */
.section-h {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.4px;
    color: var(--text);
    margin-bottom: 24px;
    max-width: 22ch;
}
.section-h em {
    font-style: normal;
    font-weight: 600;
    color: var(--teal);
}

/* --------------------------------------------------------------------------
 * Hero
 * -------------------------------------------------------------------------- */
.hero {
    text-align: center;
    padding: clamp(40px, 7vw, 88px) 0 clamp(48px, 6vw, 80px);
    border-bottom: 1px solid var(--line-soft);
    position: relative;
}

/* Full-bleed cinematic hero: video covers viewport edge-to-edge, content overlays */
.hero.hero-split {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Full-bleed: container'ın max-width'ini bypass et, viewport genişliğine yay */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* Parent .report-content padding-top'u nötralize et — hero header'a kadar uzasın */
    margin-top: calc(-1 * clamp(48px, 8vw, 96px));
    /* Padding: üst kısma header yüksekliği kadar (~64px), alt boşluk daha geniş */
    padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 80px) clamp(120px, 14vw, 200px);
    text-align: left;
}
.hero-split > .hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 640px;
    width: 100%;
}
.hero-split .hero-eyebrow { align-self: flex-start; }
.hero-split .hero-title { align-items: flex-start; text-align: left; }
.hero-split .hero-subtitle { text-align: left; margin-left: 0; }
.hero-split .paper-quote { margin-left: 0; }
.hero-split .lead { text-align: left; }

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: #050b0b;
}
.hero-visual::after {
    /* Cinematic readability overlay — sol koyu, sağ video açık */
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg,
            rgba(5, 11, 11, 0.94) 0%,
            rgba(5, 11, 11, 0.86) 28%,
            rgba(5, 11, 11, 0.55) 52%,
            rgba(5, 11, 11, 0.18) 76%,
            rgba(5, 11, 11, 0) 100%),
        linear-gradient(180deg,
            rgba(5, 11, 11, 0.3) 0%,
            transparent 28%,
            transparent 72%,
            rgba(5, 11, 11, 0.5) 100%);
    pointer-events: none;
}
.hero-video,
.hero-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0;
}
.hero-video { object-fit: cover; object-position: 70% center; }
.hero-placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
}
.hero-placeholder-note {
    position: absolute;
    bottom: 18px;
    right: 22px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(212, 165, 75, 0.55);
    pointer-events: none;
    z-index: 3;
}
@keyframes phantom-pulse {
    0%, 100% { transform: scale(1); opacity: 0.92; }
    50%      { transform: scale(1.04); opacity: 1; }
}

@media (max-width: 980px) {
    .hero.hero-split {
        min-height: 88vh;
        text-align: center;
        padding: clamp(90px, 14vw, 140px) clamp(20px, 4vw, 32px);
    }
    .hero-split > .hero-content {
        align-items: center;
        margin: 0 auto;
    }
    .hero-split .hero-eyebrow { align-self: center; }
    .hero-split .hero-title { align-items: center; text-align: center; }
    .hero-split .hero-subtitle { text-align: center; margin-left: auto; margin-right: auto; }
    .hero-split .paper-quote { margin-left: auto; margin-right: auto; }
    .hero-split .lead { text-align: center; }
    /* Mobile: gradient daha agresif (yazı her yere baskı yapar) */
    .hero-visual::after {
        background:
            linear-gradient(180deg,
                rgba(5, 11, 11, 0.85) 0%,
                rgba(5, 11, 11, 0.6) 35%,
                rgba(5, 11, 11, 0.5) 65%,
                rgba(5, 11, 11, 0.85) 100%);
    }
    .hero-video { object-position: center center; }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(28px, 4vw, 44px);
    color: var(--text-dim);
}
.eyebrow-line {
    width: clamp(40px, 6vw, 80px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.eyebrow-text {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(36px, 6.2vw, 92px);
    line-height: 1.05;
    color: var(--text);
    letter-spacing: -0.5px;
    margin-bottom: clamp(20px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(-2px, -0.1vw, 0px);
}
.hero-title-line { display: block; }
.hero-title-italic {
    font-weight: 600;
    color: var(--teal);
}

/* New viral headline (ana sayfa post-cine-hero h1 stilinde) */
.hero-headline {
    font-family: var(--font-body);
    font-size: clamp(32px, 5.5vw, 68px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text);
    letter-spacing: -0.5px;
    max-width: 820px;
    margin: 0 0 clamp(28px, 4vw, 44px);
}
.hero-headline .accent-teal { color: var(--teal); }
.hero-headline .hl-secondary {
    color: var(--text-dim);
    font-weight: 600;
}
.hero-headline [data-counter] { color: var(--text); }

.hero-ornament {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(20px, 3vw, 32px);
    color: var(--gold);
}
.orn-line {
    width: clamp(60px, 9vw, 120px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.orn-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(212, 165, 75, 0.6);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.6vw, 23px);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(228, 238, 238, 0.86);
    max-width: 56ch;
    margin: 0 auto clamp(36px, 5vw, 56px);
}
.hero-subtitle em {
    color: var(--teal);
    font-style: normal;
    font-weight: 600;
}

/* Vintage paper-quote anchor */
.paper-quote {
    position: relative;
    max-width: 56ch;
    margin: 0 auto clamp(28px, 4vw, 44px);
    padding: clamp(30px, 4vw, 48px) clamp(32px, 5vw, 64px);
    background:
        linear-gradient(135deg, #1f1812 0%, #2a1f15 40%, #1a1410 100%);
    border: 1px solid rgba(212, 165, 75, 0.22);
    box-shadow:
        0 24px 48px -16px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}
.paper-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='paper'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' /><feColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.78 0 0 0 0 0.62 0 0 0 0.12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23paper)'/></svg>");
    opacity: 0.5;
    pointer-events: none;
    border-radius: inherit;
    mix-blend-mode: overlay;
}
.paper-quote > * { position: relative; z-index: 1; }
.paper-quote .quote-mark {
    position: absolute;
    top: -8px;
    left: 14px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(80px, 10vw, 140px);
    line-height: 1;
    color: var(--gold);
    opacity: 0.32;
    z-index: 0;
    font-variation-settings: 'opsz' 144;
}
.paper-quote p {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 24px);
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-warm);
}
.paper-quote .quote-attribution {
    margin-top: 18px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: right;
}

.lead {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.lead-num { color: var(--gold); font-weight: 700; }

/* --------------------------------------------------------------------------
 * Headline stats
 * -------------------------------------------------------------------------- */
.headline-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.6vw, 22px);
}

.stat {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: clamp(22px, 2.8vw, 36px) clamp(20px, 2.4vw, 28px) clamp(22px, 2.8vw, 32px);
    transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
    overflow: hidden;
    backdrop-filter: blur(8px);
}
.stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}
.stat-b { transform: translateY(-14px); }
.stat-d { transform: translateY(14px); }
.stat:hover {
    transform: translateY(-4px);
    border-color: var(--teal);
    box-shadow: 0 16px 36px -12px rgba(0, 217, 166, 0.22);
}
.stat-b:hover { transform: translateY(-18px); }
.stat-d:hover { transform: translateY(10px); }

.stat-index {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--muted);
    opacity: 0.6;
}
.stat .value {
    font-family: var(--font-mono);
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 700;
    color: var(--teal);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.stat .value-sep { color: var(--muted); font-weight: 400; }
.stat .label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.stat .label-sub {
    font-weight: 400;
    text-transform: none;
    color: var(--text-dim);
    letter-spacing: 0;
}
.stat .sub {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}
.stat.highlight {
    border-color: rgba(0, 217, 166, 0.42);
    background: linear-gradient(135deg, var(--card), rgba(0, 217, 166, 0.06));
}
.stat.highlight .value { color: var(--gold-warm); }
.stat.live {
    border-color: rgba(255, 73, 118, 0.32);
    background: linear-gradient(135deg, var(--card), rgba(255, 73, 118, 0.05));
}
.stat.live .value { color: var(--crimson); }
.stat .badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--crimson);
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 3px 8px;
    border-radius: 2px;
    text-transform: uppercase;
}
.stat .badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--bg);
    animation: badge-pulse 1.4s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}
.stat.live .stat-index { color: var(--crimson); opacity: 0.4; }

/* --------------------------------------------------------------------------
 * Rarity — editorial spread + animated SVG timeline
 * -------------------------------------------------------------------------- */
.editorial-spread {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
}
.spread-left  { padding-top: clamp(20px, 3vw, 36px); }
.spread-right { position: relative; }

.rarity-lead {
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--text);
    line-height: 1.62;
    margin-bottom: 22px;
    max-width: 42ch;
}
.rarity-note {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--text-dim);
    line-height: 1.55;
    margin-bottom: 28px;
    padding-left: 18px;
    border-left: 2px solid var(--gold);
    max-width: 42ch;
    font-variation-settings: 'opsz' 144;
}
.rarity-note strong { color: var(--gold-warm); font-weight: 600; font-style: normal; }

/* Timeline frame */
.timeline-frame {
    position: relative;
    padding: 28px clamp(18px, 2vw, 28px) 38px;
    background: var(--glass);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: 0 24px 56px -24px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}
.timeline-frame-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.frame-axis-label { color: var(--gold); }
.frame-axis-legend { display: inline-flex; gap: 14px; }
.lg-item { display: inline-flex; align-items: center; gap: 5px; }
.lg-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}
.lg-dip { background: var(--teal); }
.lg-ath { background: var(--crimson); }
.lg-ara { background: var(--gold); }

.phantom-timeline-svg {
    width: 100%;
    height: clamp(80px, 9vw, 110px);
    overflow: visible;
}
.track-line {
    stroke-width: 1.5;
    fill: none;
}
.tick {
    stroke: rgba(255, 255, 255, 0.16);
    stroke-width: 1;
}
.phantom-timeline-svg .dot {
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
    animation: dot-fade-in 0.7s var(--ease-out) forwards;
    animation-delay: calc(var(--i, 0) * 0.08s);
    transition: r 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}
@keyframes dot-fade-in {
    0%   { opacity: 0; transform: scale(0.2); }
    60%  { opacity: 1; transform: scale(1.35); }
    100% { opacity: 1; transform: scale(1); }
}
.phantom-timeline-svg .dot-dip { fill: var(--teal); }
.phantom-timeline-svg .dot-ath { fill: var(--crimson); }
.phantom-timeline-svg .dot-ara { fill: var(--gold); }
.phantom-timeline-svg .dot:hover {
    r: 9;
    opacity: 1;
}
.phantom-timeline-svg .dot-live {
    fill: var(--gold-warm);
    stroke: var(--gold);
    stroke-width: 2;
    animation: dot-fade-in 0.7s var(--ease-out) forwards, dot-live-pulse 2.2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.08s), calc(var(--i, 0) * 0.08s + 0.7s);
}
@keyframes dot-live-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.18); }
}
.phantom-timeline-svg .dot-halo {
    fill: var(--gold);
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
    animation: dot-halo-pulse 2.2s ease-in-out infinite;
    animation-delay: 1.2s;
}
@keyframes dot-halo-pulse {
    0%   { opacity: 0.36; transform: scale(1); }
    100% { opacity: 0; transform: scale(2.6); }
}

.timeline-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.timeline-labels .lbl-now { color: var(--gold); }

.timeline-callout {
    position: absolute;
    bottom: -16px;
    right: 16px;
    background: var(--bg-soft);
    padding: 6px 12px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 22px -10px rgba(212, 165, 75, 0.4);
}
.timeline-callout em {
    color: var(--text-warm);
    font-family: var(--font-display);
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
}
.callout-arrow {
    font-family: var(--font-body);
    color: var(--gold);
    font-size: 14px;
}

/* --------------------------------------------------------------------------
 * CTA mini button
 * -------------------------------------------------------------------------- */
.cta-mini {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 2px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.cta-mini::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.cta-mini > span { position: relative; z-index: 1; }
.cta-mini:hover {
    color: var(--bg);
    border-color: transparent;
    transform: translateY(-2px);
}
.cta-mini:hover::before { opacity: 1; }
.cta-mini:hover .cta-arrow { transform: translateX(4px); }
.cta-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--gold);
}
.cta-mini:hover .cta-arrow { color: var(--bg); }

/* --------------------------------------------------------------------------
 * Case studies
 * -------------------------------------------------------------------------- */
.case-studies {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(20px, 2.6vw, 32px);
}
.case-studies > .section-marker,
.case-studies > .section-h { grid-column: 1 / -1; }

.case {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: clamp(26px, 3vw, 40px);
    transition: border-color 0.3s, transform 0.4s var(--ease-out), box-shadow 0.4s;
    backdrop-filter: blur(8px);
}
.case:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 217, 166, 0.5);
    box-shadow: 0 24px 52px -20px rgba(0, 217, 166, 0.22);
}
.live-case {
    background: linear-gradient(135deg, var(--card), rgba(255, 73, 118, 0.04));
    border-color: rgba(255, 73, 118, 0.32);
}
.live-case:hover { border-color: var(--crimson); box-shadow: 0 24px 52px -20px rgba(255, 73, 118, 0.32); }

.case-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--crimson);
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 14px;
}
.case-tag-hist {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--line);
}
.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bg);
    animation: badge-pulse 1.4s ease-in-out infinite;
}

.case h4 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 8px;
    font-variation-settings: 'opsz' 144;
}
.case-h-sub {
    font-style: italic;
    font-weight: 300;
    color: var(--text-dim);
}
.case-meta {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.case-body {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
}
.dropcap {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 4em;
    line-height: 0.78;
    color: var(--gold);
    float: left;
    margin: 0.08em 0.12em -0.04em 0;
    font-variation-settings: 'opsz' 144;
}
.case-stats {
    list-style: none;
    padding: 14px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.case-stats li {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.02em;
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}
.case-stats li strong {
    color: var(--teal);
    font-weight: 700;
}
.case-note {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    font-variation-settings: 'opsz' 144;
}

/* --------------------------------------------------------------------------
 * Live tracker — Bloomberg terminal aesthetic
 * -------------------------------------------------------------------------- */
.live-tracker {
    position: relative;
    padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px);
    background:
        linear-gradient(135deg, var(--bg-elev) 0%, #0a1818 60%, var(--bg-deep) 100%);
    border: 1px solid rgba(255, 73, 118, 0.22);
    border-radius: 4px;
    overflow: hidden;
}
.live-tracker::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(255, 73, 118, 0.08) 0%, transparent 55%);
    pointer-events: none;
}
.live-tracker > * { position: relative; }

.live-badge-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.badge-live-pulse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--crimson);
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    padding: 6px 12px;
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(255, 73, 118, 0.45);
}
.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bg);
    animation: pulse-dot 1.3s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: 0.35; }
}
.live-badge-row h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.015em;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 0;
    font-variation-settings: 'opsz' 144;
    max-width: none;
}
.live-badge-row h3 em { color: var(--gold-warm); font-style: italic; font-weight: 400; }

.live-lead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 28px;
    max-width: 70ch;
}
.live-lead strong { color: var(--text); }

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(10px, 1.4vw, 18px);
    margin-bottom: 32px;
}
.countdown-box {
    position: relative;
    background: rgba(3, 6, 6, 0.62);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: clamp(18px, 2vw, 24px) clamp(14px, 1.6vw, 20px);
    overflow: hidden;
}
.countdown-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 32px;
    height: 1px;
    background: var(--crimson);
}
.countdown-box.highlight {
    border-color: rgba(0, 217, 166, 0.4);
    background: linear-gradient(135deg, rgba(0, 217, 166, 0.08) 0%, rgba(3, 6, 6, 0.7) 100%);
}
.countdown-box.highlight::before { background: var(--teal); }
.cd-value {
    font-family: var(--font-mono);
    font-size: clamp(24px, 3.4vw, 38px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}
.countdown-box.highlight .cd-value { color: var(--teal); }
.cd-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.cd-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.04em;
}

.progress-section {
    margin-bottom: 28px;
    padding-top: 14px;
}
.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}
.progress-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.progress-pct {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: -0.01em;
}
.progress-bar-wrap {
    position: relative;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 6px;
}
.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
    border-radius: 999px;
    box-shadow: 0 0 12px var(--teal-glow);
    position: relative;
    overflow: hidden;
}
.progress-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: translateX(-100%);
    animation: bar-shimmer 2.4s ease-in-out infinite;
}
@keyframes bar-shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(220%); }
}
.progress-target {
    position: absolute;
    bottom: -22px;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.progress-footnote {
    margin-top: 30px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-dim);
    font-variation-settings: 'opsz' 144;
}
.progress-footnote strong { color: var(--text); font-style: normal; }

.live-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 26px;
}
.metric-pill {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pill-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.pill-value {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.pill-value.pos { color: var(--teal); }
.pill-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.04em;
}

.live-warning {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-dim);
    padding: 18px 22px;
    background: rgba(212, 165, 75, 0.04);
    border-left: 3px solid var(--gold);
    margin-bottom: 24px;
    border-radius: 0 2px 2px 0;
}
.live-warning strong { color: var(--text-warm); }
.live-warning a { color: var(--gold); border-bottom: 1px solid rgba(212, 165, 75, 0.4); }

/* --------------------------------------------------------------------------
 * Methodology
 * -------------------------------------------------------------------------- */
.methodology-lead {
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.72;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 64ch;
}
.methodology-lead .dropcap { color: var(--teal); }
.methodology-lead strong { color: var(--text-warm); }

.zones {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 1.6vw, 22px);
    margin-bottom: 36px;
}
.zone-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.4s var(--ease-out), border-color 0.3s;
    overflow: hidden;
}
.zone-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
}
.zone-dip::before { background: var(--teal); }
.zone-ath::before { background: var(--crimson); }
.zone-ara::before { background: var(--gold); }
.zone-card:hover { transform: translateY(-3px); border-color: var(--line); }
.zone-dip:hover { border-color: rgba(0, 217, 166, 0.5); }
.zone-ath:hover { border-color: rgba(255, 73, 118, 0.5); }
.zone-ara:hover { border-color: rgba(212, 165, 75, 0.5); }

.zone-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.zone-dip .zone-tag { color: var(--teal); }
.zone-ath .zone-tag { color: var(--crimson); }
.zone-ara .zone-tag { color: var(--gold); }
.zone-desc {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text);
    font-variation-settings: 'opsz' 144;
}
.zone-bias {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.medallion-note {
    max-width: 64ch;
}

/* --------------------------------------------------------------------------
 * Profit math
 * -------------------------------------------------------------------------- */
.profit-lead {
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 68ch;
}
.profit-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    font-family: var(--font-mono);
    font-size: 13px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}
.profit-table thead { background: rgba(255, 255, 255, 0.03); }
.profit-table th {
    text-align: left;
    padding: 14px 18px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 13px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--line);
    font-variation-settings: 'opsz' 144;
}
.profit-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--text);
}
.profit-table tr:last-child td { border-bottom: none; }
.profit-table .dim { color: var(--muted); }
.profit-table .pos { color: var(--teal); font-weight: 600; }
.profit-table .row-live {
    background: rgba(255, 73, 118, 0.06);
}
.profit-table .row-live td { color: var(--text); }
.profit-table .row-live .pos { color: var(--gold-warm); }
.profit-table .total-row {
    background: linear-gradient(90deg, rgba(0, 217, 166, 0.08), rgba(212, 165, 75, 0.08));
    font-family: var(--font-display);
    font-style: italic;
}
.profit-table .total-row td {
    padding: 16px 18px;
    font-size: 16px;
    color: var(--text-warm);
}
.profit-table .total-row .pos { color: var(--teal); }

.profit-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 28px;
}
.comp-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 24px 28px;
    text-align: center;
    transition: transform 0.4s var(--ease-out);
}
.comp-card:hover { transform: translateY(-3px); }
.comp-card:first-child { border-color: rgba(0, 217, 166, 0.42); }
.comp-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 10px;
}
.comp-value {
    font-family: var(--font-mono);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.comp-value.pos { color: var(--teal); }
.comp-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--muted);
    margin-top: 6px;
}
.comp-vs {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--gold);
    font-variation-settings: 'opsz' 144;
}

.profit-note {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dim);
    max-width: 68ch;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--gold);
    margin-bottom: 28px;
    border-radius: 0 2px 2px 0;
    font-variation-settings: 'opsz' 144;
}
.profit-note strong { color: var(--text-warm); font-weight: 600; font-style: normal; }

/* --------------------------------------------------------------------------
 * Pricing
 * -------------------------------------------------------------------------- */
.pricing-lead {
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 36px;
    max-width: 64ch;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
    align-items: stretch;
    margin-bottom: 24px;
}
.price-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: clamp(28px, 3vw, 38px);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}
.price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
}
.price-tier {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}
.price-value {
    font-family: var(--font-mono);
    font-size: clamp(34px, 4.4vw, 52px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.025em;
    line-height: 1;
    margin-bottom: 22px;
}
.price-value span {
    font-size: 15px;
    color: var(--text-dim);
    font-weight: 400;
    letter-spacing: 0;
    margin-left: 4px;
}
.price-daily {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 13px;
    color: var(--gold);
    margin-top: -14px;
    margin-bottom: 18px;
    font-variation-settings: 'opsz' 144;
}
.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex-grow: 1;
}
.price-features li {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text);
    padding-left: 18px;
    position: relative;
}
.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 1px;
    background: var(--teal);
}
.price-features li.dim {
    color: var(--muted);
}
.price-features li.dim::before { background: var(--muted); }

.price-card.highlight {
    background: linear-gradient(170deg, rgba(212, 165, 75, 0.08) 0%, var(--card) 60%);
    border: 1px solid rgba(212, 165, 75, 0.45);
    transform: scale(1.04);
    box-shadow: 0 28px 64px -24px rgba(212, 165, 75, 0.32);
    z-index: 1;
}
.price-card.highlight:hover {
    transform: scale(1.04) translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 36px 72px -24px rgba(212, 165, 75, 0.48);
}
.price-card.highlight .price-tier { color: var(--gold); }
.price-card.highlight .price-value { color: var(--gold-warm); }
.price-halo {
    position: absolute;
    inset: -1px;
    border-radius: 4px;
    background: linear-gradient(135deg, transparent, rgba(212, 165, 75, 0.18), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.price-card.highlight:hover .price-halo { opacity: 1; }

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-warm));
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    padding: 6px 14px;
    border-radius: 2px;
    box-shadow: 0 12px 24px -8px rgba(212, 165, 75, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: badge-float 3.6s ease-in-out infinite;
}
@keyframes badge-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-2px); }
}
.bp-mark { color: var(--bg); font-size: 11px; }

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dim));
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -12px var(--teal-glow);
    color: var(--bg);
}
.cta-elite {
    background: linear-gradient(135deg, var(--gold), var(--gold-warm));
    color: var(--bg-paper);
}
.cta-elite:hover {
    box-shadow: 0 16px 36px -12px rgba(212, 165, 75, 0.5);
    color: var(--bg-paper);
}

.pricing-note {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 72ch;
    margin: 0 auto;
    text-align: center;
    font-variation-settings: 'opsz' 144;
}

/* --------------------------------------------------------------------------
 * Paywall
 * -------------------------------------------------------------------------- */
.paywall { position: relative; }

.paywall-card {
    position: relative;
    padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 80px);
    background:
        linear-gradient(135deg, var(--bg-elev) 0%, var(--bg-deep) 70%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 75, 0.12) 0%, transparent 50%);
    background-blend-mode: overlay;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
}
.paywall-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(212, 165, 75, 0.14) 0%, transparent 55%);
    pointer-events: none;
}
.paywall-card > * { position: relative; }

.social-proof-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 217, 166, 0.06);
    border: 1px solid rgba(0, 217, 166, 0.22);
    border-radius: 999px;
    margin-bottom: 28px;
}
.proof-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 10px var(--teal-glow);
    animation: badge-pulse 1.8s ease-in-out infinite;
}
.proof-text {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}
.proof-text strong { color: var(--teal); }

.paywall .section-h { margin-left: auto; margin-right: auto; }

.paywall-lead {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 300;
    line-height: 1.45;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
    font-variation-settings: 'opsz' 144;
}
.paywall-lead strong { color: var(--gold-warm); font-weight: 600; }

.elite-includes {
    list-style: none;
    text-align: left;
    max-width: 56ch;
    margin: 0 auto 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.elite-includes li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    padding-left: 26px;
    position: relative;
}
.elite-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--teal);
    font-weight: 700;
}

.paywall .cta-button {
    padding: 16px 36px;
    font-size: 13px;
    background: linear-gradient(135deg, var(--gold), var(--gold-warm));
    color: var(--bg-paper);
    box-shadow: 0 16px 36px -12px rgba(212, 165, 75, 0.42);
}
.paywall .cta-button:hover {
    box-shadow: 0 24px 48px -16px rgba(212, 165, 75, 0.55);
}
.cta-text {
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--text-dim);
}

/* Secondary CTA — soft fallback (free signup) */
.cta-secondary-wrap {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    text-align: center;
}
.cta-secondary-sep {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 12px;
}
.cta-secondary {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid rgba(54, 211, 178, 0.35);
    color: var(--teal);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 2px;
    background: transparent;
    text-decoration: none;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.cta-secondary:hover {
    border-color: var(--teal);
    background: rgba(54, 211, 178, 0.08);
    color: var(--teal);
}
.cta-secondary-note {
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
 * Gated content
 * -------------------------------------------------------------------------- */
.gated-content { position: relative; }
.gate-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.badge-elite {
    background: linear-gradient(135deg, var(--gold), var(--gold-warm));
    color: var(--bg-paper);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    padding: 5px 11px;
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
 * FAQ
 * -------------------------------------------------------------------------- */
.faq-item {
    border-bottom: 1px solid var(--line-soft);
    padding: 0;
    transition: background 0.3s;
}
.faq-item[open] { background: rgba(255, 255, 255, 0.02); }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 24px 0;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.35;
    color: var(--text);
    position: relative;
    padding-right: 56px;
    transition: color 0.3s;
    font-variation-settings: 'opsz' 144;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    transition: transform 0.4s var(--ease-out), border-color 0.3s, background 0.3s;
}
.faq-item[open] summary { color: var(--gold-warm); }
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    border-color: var(--gold);
    background: rgba(212, 165, 75, 0.12);
}
.faq-item summary:hover { color: var(--gold-warm); }
.faq-item p {
    padding: 0 56px 26px 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dim);
    max-width: 78ch;
}
.faq-item p strong { color: var(--text-warm); }

/* --------------------------------------------------------------------------
 * Final CTA block
 * -------------------------------------------------------------------------- */
.final-cta-block {
    margin-top: clamp(60px, 8vw, 100px);
    padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 64px);
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 165, 75, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.final-cta-block > * { position: relative; }
.final-ornament {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: var(--gold);
}
.final-h {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    font-variation-settings: 'opsz' 144;
}
.final-h em { font-style: italic; font-weight: 400; color: var(--gold-warm); }
.final-cta-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dim);
    max-width: 64ch;
    margin: 0 auto 28px;
}
.final-cta-block p strong { color: var(--text-warm); }
.final-cta-block .cta-button {
    background: linear-gradient(135deg, var(--gold), var(--gold-warm));
    color: var(--bg-paper);
    padding: 16px 38px;
    font-size: 13px;
}
.final-cta-block .cta-text {
    margin-top: 16px;
    font-style: italic;
    font-family: var(--font-display);
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    font-variation-settings: 'opsz' 144;
}

/* --------------------------------------------------------------------------
 * Footer
 * -------------------------------------------------------------------------- */
.report-footer {
    position: relative;
    z-index: 2;
    padding: clamp(36px, 5vw, 60px) clamp(20px, 5vw, 56px) clamp(24px, 4vw, 40px);
    max-width: var(--rule-width);
    margin: 0 auto;
    text-align: center;
}
.footer-rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
    opacity: 0.6;
}
.footer-method {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 12px;
    max-width: 64ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
    font-variation-settings: 'opsz' 144;
}
.footer-copyright {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}
.fc-brand { color: var(--gold); }

/* --------------------------------------------------------------------------
 * Responsive
 * -------------------------------------------------------------------------- */
@media (max-width: 980px) {
    .headline-stats { grid-template-columns: repeat(2, 1fr); }
    .stat-b, .stat-d { transform: translateY(0); }
    .stat-b:hover, .stat-d:hover { transform: translateY(-4px); }
    .editorial-spread { grid-template-columns: 1fr; }
    .case-studies { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .price-card.highlight { transform: none; order: -1; }
    .price-card.highlight:hover { transform: translateY(-4px); }
    .zones { grid-template-columns: 1fr; }
    .countdown-grid { grid-template-columns: repeat(2, 1fr); }
    .live-metrics { grid-template-columns: 1fr; }
    .profit-comparison { grid-template-columns: 1fr; }
    .comp-vs { padding: 12px 0; }
    .section-marker { position: relative; top: auto; left: auto; margin-bottom: 12px; }
    .marker-letter { font-size: 52px; }
}

@media (max-width: 640px) {
    .report-content { padding: 36px 18px; }
    .report-header { padding: 16px 18px; flex-wrap: wrap; gap: 10px; }
    .header-right { gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
    .header-cta { padding: 7px 14px; font-size: 10px; letter-spacing: 0.12em; }
    .header-pdf { padding: 6px 11px; font-size: 10px; letter-spacing: 0.12em; }
    .meta { font-size: 10px; }
    .pdf-banner { padding: 12px 18px; }
    .pdf-banner-inner { gap: 10px; }
    .pdf-banner-text { font-size: 11px; text-align: center; }
    .pdf-banner-cta { padding: 8px 14px; font-size: 10px; letter-spacing: 0.12em; }
    .hero-title { font-size: clamp(48px, 16vw, 84px); }
    .headline-stats { grid-template-columns: 1fr; }
    .countdown-grid { grid-template-columns: 1fr; }
    .case-stats li { font-size: 11px; }
    .profit-table { font-size: 11px; }
    .profit-table th, .profit-table td { padding: 10px 12px; }
    .paper-quote { padding: 24px 28px; }
    .paper-quote .quote-mark { font-size: 70px; }
    .timeline-callout { position: relative; bottom: auto; right: auto; margin-top: 18px; display: inline-flex; }
    .faq-item summary { padding-right: 44px; }
    .faq-item p { padding-right: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal-init { opacity: 1; transform: none; }
}

/* Print fallback */
@media print {
    .grain-overlay, #scroll-progress, .cta-mini, .cta-button, .paywall { display: none; }
    body { background: white; color: black; }
}

/* --------------------------------------------------------------------------
 * Proof Section — Tweet vindication + Video kanıtı
 * -------------------------------------------------------------------------- */
.proof {
    margin-bottom: clamp(64px, 9vw, 128px);
}
.proof .section-h { margin-bottom: 16px; }
.proof-lead {
    color: var(--text-dim);
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.7;
    max-width: 78ch;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.proof-video-card {
    position: relative;
    background: var(--bg-elev);
    border: 1px solid rgba(212, 165, 75, 0.28);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 24px 48px -16px rgba(0, 0, 0, 0.6),
        0 8px 16px -8px rgba(212, 165, 75, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    margin-bottom: clamp(48px, 6vw, 72px);
}
.proof-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    background: #050b0b;
}
.proof-video-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-top: 1px solid var(--line-soft);
    background: rgba(5, 11, 11, 0.6);
}
.proof-vmeta-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: var(--gold);
    color: var(--bg);
    border-radius: 3px;
    font-weight: 700;
}
.proof-vmeta-title {
    flex: 1;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}
.proof-vmeta-time {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 12px;
}

.proof-tweets-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 24px;
    letter-spacing: -0.2px;
}

.proof-tweets-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: clamp(32px, 4vw, 48px);
}

.tweet-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    min-height: 220px;
}
.tweet-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 217, 166, 0.45);
    box-shadow:
        0 12px 32px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 217, 166, 0.18);
}
.tweet-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.tweet-user {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.tweet-avatar {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d9a6 0%, #009688 100%);
    color: #050b0b;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: -0.5px;
    display: grid;
    place-items: center;
    box-shadow: 0 0 12px rgba(0, 217, 166, 0.2);
}
.tweet-userinfo {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.tweet-name {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tweet-handle {
    color: var(--text-muted);
    font-size: 11px;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}
.tweet-tag {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 3px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
}
.tag-live { background: rgba(255, 183, 77, 0.18); color: var(--gold); border: 1px solid rgba(255, 183, 77, 0.35); }
.tag-dip  { background: rgba(0, 217, 166, 0.14); color: var(--teal); border: 1px solid rgba(0, 217, 166, 0.32); }
.tag-ath  { background: rgba(255, 73, 118, 0.14); color: var(--warn); border: 1px solid rgba(255, 73, 118, 0.32); }
.tag-eth  { background: rgba(100, 181, 246, 0.14); color: var(--info); border: 1px solid rgba(100, 181, 246, 0.32); }
.tag-auth { background: rgba(212, 165, 75, 0.14); color: var(--gold); border: 1px solid rgba(212, 165, 75, 0.32); }

.tweet-text {
    flex: 1;
    color: var(--text);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0 0 16px;
    font-style: italic;
}
.tweet-card-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
    color: var(--text-muted);
    font-size: 11px;
    font-family: var(--font-mono);
}
.tweet-date { flex: 1; }
.tweet-engagement { color: var(--text-dim); font-weight: 600; }
.tweet-open {
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: transform 0.18s ease;
}
.tweet-card:hover .tweet-open { transform: translateX(3px); }

.proof-footer {
    color: var(--text-muted);
    font-size: 13px;
    font-style: italic;
    line-height: 1.7;
    max-width: 72ch;
    padding-top: clamp(24px, 3vw, 36px);
    border-top: 1px solid var(--line-soft);
}

@media (max-width: 980px) {
    .proof-tweets-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .proof-tweets-grid { grid-template-columns: 1fr; }
    .proof-video-meta { flex-wrap: wrap; }
}

/* --------------------------------------------------------------------------
 * Profit Math v2 — Çift yön + 18 trade aggregate
 * -------------------------------------------------------------------------- */

/* Zone tag pill in table */
.zone-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    line-height: 1.3;
    border: 1px solid;
}

/* Highlight cards — best DIP / best ATH / single loss */
.profit-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: clamp(28px, 4vw, 40px) 0;
}
.hl-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px 20px;
    transition: transform 0.18s ease, border-color 0.18s ease;
}
.hl-card:hover { transform: translateY(-2px); }
.hl-card.hl-best { border-color: rgba(0, 217, 166, 0.32); }
.hl-card.hl-loss { border-color: rgba(255, 73, 118, 0.32); }
.hl-label {
    color: var(--text-dim);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    margin-bottom: 8px;
}
.hl-headline {
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-mono);
    margin-bottom: 12px;
}
.hl-num {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    font-family: var(--font-body);
    margin-bottom: 6px;
    line-height: 1;
}
.hl-num.pos { color: var(--teal); }
.hl-num.neg { color: var(--warn); }
.hl-sub {
    color: var(--text-muted);
    font-size: 11px;
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
}

/* Comp card loss variant */
.comp-card.comp-loss { border-color: rgba(255, 73, 118, 0.32); }
.comp-value.neg { color: var(--warn); }

/* Asymmetric edge banner */
.profit-edge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(0, 217, 166, 0.08), rgba(212, 165, 75, 0.04));
    border: 1px solid rgba(0, 217, 166, 0.32);
    border-radius: 10px;
    padding: 18px 24px;
    margin: clamp(28px, 4vw, 40px) 0;
    flex-wrap: wrap;
}
.edge-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 11px;
    background: var(--teal);
    color: var(--bg);
    border-radius: 3px;
    font-weight: 800;
}
.edge-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -1px;
    line-height: 1;
}
.edge-desc {
    color: var(--text-dim);
    font-size: 13px;
    font-style: italic;
    flex: 1;
    min-width: 200px;
}

@media (max-width: 980px) {
    .profit-highlights { grid-template-columns: 1fr; }
    .profit-edge { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* --------------------------------------------------------------------------
 * Timeline chart image (replaces SVG dots)
 * -------------------------------------------------------------------------- */
.timeline-chart-wrap {
    margin: 0;
    border: 1px solid rgba(212, 165, 75, 0.22);
    border-radius: 12px;
    overflow: hidden;
    background: #050b0b;
    box-shadow:
        0 24px 48px -16px rgba(0, 0, 0, 0.6),
        0 8px 16px -8px rgba(212, 165, 75, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
}
.timeline-chart-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}
.timeline-chart-wrap:hover .timeline-chart-img {
    transform: scale(1.01);
}
.timeline-chart-caption {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    background: rgba(5, 11, 11, 0.7);
    border-top: 1px solid var(--line-soft);
    color: var(--text-dim);
    font-size: 12px;
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
}
.caption-tag {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 4px 9px;
    background: var(--gold);
    color: var(--bg);
    border-radius: 3px;
    font-weight: 800;
    line-height: 1.3;
}
@media (max-width: 640px) {
    .timeline-chart-caption { flex-wrap: wrap; gap: 8px; font-size: 11px; }
}
