/* ============================================
   PLATFORM SECTION - Grid & Typography Driven
============================================ */
.platform {
    background: white;
}

/* Header Bar */
.platform-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0a0a;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    color: white;
}

.section-divider {
    color: rgba(255, 255, 255, 0.4);
}

.section-name {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
}

.header-progress {
    font-family: monospace;
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: -0.02em;
}

/* Platform Hero */
.platform-hero {
    padding: 5rem;
    border-bottom: 1px solid #e0e0e0;
}

.platform-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
}

.hero-col-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.overline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
}

.platform-mega-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    text-align: right;
}

/* Introduction Block */
.platform-intro-block {
    padding: 4rem 5rem;
    border-bottom: 1px solid #e0e0e0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
}

.intro-label {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.label-text {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
}

.label-line {
    width: 40px;
    height: 1px;
    background: #ccc;
}

.intro-content {
    max-width: 700px;
}

.intro-large {
    font-family: var(--font-body);
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.intro-emphasis {
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Statement Block */
.platform-statement-block {
    padding: 5rem;
    background: #fafafa;
}

.statement-grid {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 4rem;
    align-items: start;
}

.statement-number {
    font-family: monospace;
    font-size: 4rem;
    line-height: 1;
    color: #e0e0e0;
}

.statement-text h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.statement-text .text-muted {
    color: #999;
}

/* Logic Section */
.logic-section {
    padding: 5rem;
    border-bottom: 1px solid #e0e0e0;
}

.logic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 1rem;
}

.logic-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.logic-body {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.logic-diagram {
    aspect-ratio: 16/10;
    max-width: 450px;
}

.diagram-placeholder,
.visual-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.diagram-placeholder span,
.visual-placeholder span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
}

.placeholder-size {
    font-family: monospace;
    color: #ccc;
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 5rem 2rem;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

/* Timeline Ambient Orbs */
.timeline-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
    animation: timeline-orb-drift 12s ease-in-out infinite;
}

.timeline-orb-blue {
    width: 400px;
    height: 400px;
    background: var(--gradient-diagonal);
    top: 5%;
    right: 10%;
    animation-delay: 0s;
}

.timeline-orb-purple {
    width: 350px;
    height: 350px;
    background: var(--gradient-main-reverse);
    top: 40%;
    left: 5%;
    animation-delay: -4s;
}

.timeline-orb-coral {
    width: 300px;
    height: 300px;
    background: var(--gradient-main);
    bottom: 10%;
    right: 15%;
    animation-delay: -8s;
}

@keyframes timeline-orb-drift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.12;
    }
    33% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.15;
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.1;
    }
}

.timeline-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
    color: white;
}

.timeline-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 1.5rem;
}

.timeline-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25em;
}

.title-word {
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.title-word:hover {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(159, 71, 219, 0.5));
}

.timeline-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* S-Path Animation */
.s-path-container {
    position: relative;
    height: 1400px;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 5;
}

.s-path-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.s-path-line {
    stroke-dasharray: 2800;
    stroke-dashoffset: 2800;
    transition: stroke-dashoffset 0.05s linear;
}

#pathDot {
    filter: drop-shadow(0 0 5px rgba(255, 0, 153, 0.5));
    opacity: 0;
}

#pathDotPulse {
    animation: pulse-ring 2s ease-out infinite;
    opacity: 0;
}

@keyframes pulse-ring {
    0% {
        r: 6;
        opacity: 0.5;
    }
    100% {
        r: 18;
        opacity: 0;
    }
}

/* S-Path Steps */
.s-step {
    position: absolute;
    width: 380px;
    z-index: 2;
    transition: transform 0.4s ease;
}

.s-step:hover {
    transform: translateY(-4px);
}

/* Color-coded step accents - using pseudo-elements for gradient bars */
.s-step .s-step-content {
    position: relative;
    transition: box-shadow 0.4s ease;
}

.s-step[data-color="blue"] .s-step-content,
.s-step[data-color="coral"] .s-step-content {
    padding-left: 1.5rem;
}

.s-step[data-color="purple"] .s-step-content {
    padding-right: 1.5rem;
}

.s-step .s-step-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-vertical);
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.s-step[data-color="blue"] .s-step-content::before,
.s-step[data-color="coral"] .s-step-content::before {
    left: 0;
}

.s-step[data-color="purple"] .s-step-content::before {
    right: 0;
    left: auto;
    background: var(--gradient-vertical);
}

/* Active state triggered by scroll */
.s-step[data-color="blue"].active .s-step-content::before,
.s-step[data-color="blue"]:hover .s-step-content::before,
.s-step[data-color="coral"].active .s-step-content::before,
.s-step[data-color="coral"]:hover .s-step-content::before,
.s-step[data-color="purple"].active .s-step-content::before,
.s-step[data-color="purple"]:hover .s-step-content::before {
    opacity: 1;
}

.s-step[data-color="blue"].active .s-step-content,
.s-step[data-color="blue"]:hover .s-step-content,
.s-step[data-color="coral"].active .s-step-content,
.s-step[data-color="coral"]:hover .s-step-content {
    box-shadow: -8px 0 30px -10px rgba(159, 71, 219, 0.3);
}

.s-step[data-color="purple"].active .s-step-content,
.s-step[data-color="purple"]:hover .s-step-content {
    box-shadow: 8px 0 30px -10px rgba(159, 71, 219, 0.3);
}

/* Step numbers - always gradient */
.s-step .step-number {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    transition: all 0.4s ease;
}

/* Step numbers - active state (full opacity) */
.s-step.active .step-number {
    opacity: 1;
}

/* Plus signs - always gradient */
.s-step .step-plus {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    transition: all 0.4s ease;
}

/* Plus signs - active state (full opacity) */
.s-step.active .step-plus {
    opacity: 1;
}

/* Step title glow - active and hover (unified gradient glow) */
.s-step.active .step-title,
.s-step:hover .step-title {
    text-shadow: 0 0 30px rgba(159, 71, 219, 0.4);
}

/* Position each step along the path - spread out more */
.s-step[data-step="1"] {
    top: 120px;
    right: 60px;
}

.s-step[data-step="2"] {
    top: 560px;
    left: 60px;
}

.s-step[data-step="3"] {
    top: 1000px;
    right: 60px;
}

.s-step-content {
    padding: 2rem 0;
}

.s-step .step-number {
    font-family: monospace;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 0.75rem;
}

.s-step .step-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
    color: white;
    transition: text-shadow 0.4s ease;
}

.s-step .step-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.s-step .step-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Step Plus Signs */
.step-plus {
    position: absolute;
    top: 1.5rem;
    left: -40px;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    color: #db474b;
    line-height: 1;
}

.step-plus.plus-right {
    left: auto;
    right: -40px;
}


/* Outcome Block */
.outcome-block {
    padding: 4rem 0;
    border-top: 1px solid #e0e0e0;
}

.outcome-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.outcome-state {
    font-family: monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #666;
}

.outcome-arrow {
    font-size: 1.5rem;
    color: #ccc;
}

.outcome-result {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.02em;
}

.outcome-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

/* Statement Section */
.statement-section {
    padding: 5rem;
    background: #0a0a0a;
    text-align: center;
}

.statement-headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

/* Giant Callout Section */
.callout-section {
    padding: 6rem 5rem;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

/* Ambient Color Orbs */
.callout-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    animation: orb-float 8s ease-in-out infinite;
}

.orb-blue {
    width: 300px;
    height: 300px;
    background: var(--gradient-diagonal);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-purple {
    width: 250px;
    height: 250px;
    background: var(--gradient-main-reverse);
    bottom: 20%;
    right: 15%;
    animation-delay: -3s;
}

.orb-coral {
    width: 200px;
    height: 200px;
    background: var(--gradient-main);
    top: 60%;
    left: 5%;
    animation-delay: -5s;
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -15px) scale(1.05);
    }
    50% {
        transform: translate(-10px, 10px) scale(0.95);
    }
    75% {
        transform: translate(15px, 20px) scale(1.02);
    }
}

/* Horizontal Reveal Animation */
.callout-reveal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}

.callout-decoration {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 1;
    position: relative;
    z-index: 3;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

/* Initial state - decorations in center */
.callout-decoration-left {
    text-align: right;
    transform: translateX(calc(50vw - 100%));
}

.callout-decoration-right {
    text-align: left;
    transform: translateX(calc(-50vw + 100%));
}

/* Revealed state - decorations spread apart */
.callout-reveal.visible .callout-decoration-left {
    transform: translateX(0);
}

.callout-reveal.visible .callout-decoration-right {
    transform: translateX(0);
}

.deco-slash {
    font-family: monospace;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    transition: text-shadow 0.3s ease;
}

.deco-slash {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(159, 71, 219, 0.3));
}

.callout-section:hover .deco-slash {
    filter: drop-shadow(0 0 25px rgba(159, 71, 219, 0.6));
}

.deco-plus {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.5em;
    transition: all 0.3s ease;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.callout-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 3rem;
    clip-path: inset(0 100% 0 100%);
    transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.callout-reveal.visible .callout-content {
    clip-path: inset(0 0% 0 0%);
}

.callout-number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: white;
    display: block;
    line-height: 1;
    position: relative;
    white-space: nowrap;
}

.callout-context {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.callout-label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}

.callout-source {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.callout-section:hover .callout-source {
    color: rgba(255, 255, 255, 0.6);
}

/* Stats Section */
.stats-section {
    padding: 2rem 5rem 3rem;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stats-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 0.75rem;
}

.stats-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: -0.02em;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card:hover .stat-number {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-top {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.stat-card:hover .stat-top {
    border-color: rgba(255, 255, 255, 0.5);
}

.stat-prefix {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: -0.25rem;
}

.stat-number {
    font-family: monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    color: white;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.stat-card:hover .stat-number {
    filter: drop-shadow(0 0 20px rgba(159, 71, 219, 0.4));
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.stat-source {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
    font-style: italic;
}

/* CTA Block */
.platform-cta {
    padding: 4rem 5rem;
    background: #0a0a0a;
    /* Always show black background, override fade-up opacity */
    opacity: 1 !important;
}

/* Animate the content inside instead */
.platform-cta .cta-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.platform-cta.visible .cta-grid {
    opacity: 1;
    transform: translateY(0);
}

.cta-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 0.5rem;
}

.cta-text h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: white;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    color: #0a0a0a;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #e0e0e0;
}

.cta-arrow {
    font-size: 1.25rem;
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 1024px) {
    .platform-header-bar {
        padding: 1rem 3rem;
    }

    .header-progress {
        display: none;
    }

    .platform-hero {
        padding: 3rem;
        text-align: center;
    }

    .platform-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }

    .platform-mega-title {
        text-align: center;
    }

    .platform-intro-block {
        padding: 3rem;
        text-align: center;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }

    .intro-label {
        align-items: center;
    }

    .intro-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .platform-statement-block {
        padding: 3rem;
        text-align: center;
    }

    .statement-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }

    .statement-text {
        text-align: center;
    }

    .statement-number {
        font-size: 2.5rem;
    }

    .logic-section {
        padding: 3rem;
        text-align: center;
    }

    .logic-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        justify-items: center;
    }

    .logic-content {
        text-align: center;
    }

    .logic-diagram {
        margin: 0 auto;
    }

    .timeline-section {
        padding: 3rem 3rem 2rem;
    }

    .s-path-container {
        height: auto;
        min-height: auto;
    }

    .s-path-svg {
        display: none;
    }

    .s-step {
        position: relative;
        width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        margin-bottom: 3rem;
    }

    .s-step:last-child {
        margin-bottom: 0;
    }

    .s-step .s-step-content {
        padding-left: 1.5rem !important;
        padding-right: 0 !important;
    }

    .s-step .s-step-content::before {
        left: 0 !important;
        right: auto !important;
        background: var(--gradient-vertical) !important;
    }

    .step-plus {
        display: none;
    }

    .stats-section {
        padding: 2rem 3rem;
    }

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

    .callout-section {
        padding: 4rem 3rem;
    }

    .callout-decoration {
        display: none;
    }

    .callout-content {
        clip-path: none;
    }

    .platform-cta {
        padding: 3rem;
    }

    .cta-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    .platform-header-bar {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .header-left {
        gap: 0.5rem;
    }

    .section-tag {
        font-size: 0.55rem;
        padding: 0.25rem 0.5rem;
    }

    .section-name {
        font-size: 0.55rem;
    }

    .platform-hero {
        padding: 2rem 1.5rem;
    }

    .platform-mega-title {
        font-size: clamp(3rem, 15vw, 6rem);
        text-align: center;
    }

    .platform-intro-block {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .intro-label {
        align-items: center;
    }

    .intro-content {
        margin: 0 auto;
    }

    .intro-large {
        font-size: 1.25rem;
    }

    .intro-emphasis {
        font-size: 1.35rem;
    }

    .platform-statement-block {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .statement-grid {
        align-items: center;
    }

    .statement-number {
        font-size: 2rem;
    }

    .logic-section {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .logic-content {
        margin: 0 auto;
    }

    .logic-title {
        font-size: 1.75rem;
    }

    .eyebrow {
        text-align: center;
    }

    .timeline-section {
        padding: 2rem 1.5rem;
    }

    .timeline-title {
        flex-direction: column;
        gap: 0;
    }

    .s-step .step-title {
        font-size: 1.5rem;
    }

    .s-step .step-body {
        font-size: 0.95rem;
    }

    .stats-section {
        padding: 2rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .callout-section {
        padding: 3rem 1.5rem;
    }

    .callout-number {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .callout-label {
        font-size: 1rem;
    }

    .statement-section {
        padding: 3rem 1.5rem;
    }

    .statement-headline {
        font-size: 1.25rem;
    }

    .platform-cta {
        padding: 2rem 1.5rem;
    }

    .cta-text {
        text-align: center;
    }

    .cta-text h4 {
        font-size: 1.25rem;
    }

    .cta-eyebrow {
        text-align: center;
    }

    .cta-button {
        width: auto;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
============================================ */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .timeline-orb {
        display: none;
    }
}
