:root {
    /* Refined ORMA SVG Palette */
    --navy-dark: #120B23;
    /* Deep Purple Black from SVG */
    --navy-darker: #0C051D;
    /* Deepest anchoring color */
    --purple-primary: #8C53FF;
    /* Vibrant primary from SVG */
    --purple-muted: #B78AF3;
    /* Muted hero purple */
    --lilac-bg: #F1EDFA;
    /* Soft background from SVG */
    --lilac-lighter: #FCFAFF;
    /* Very soft section bg */

    --text-dark: #1D1B20;
    --text-light: #FFFFFF;
    --text-muted: #6B6B6B;

    --container-padding: 5rem;
    /* Increased for airy feel */
    --max-width: 1440px;

    --font-main: 'Nunito', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary: #D0BCFF;
        --on-primary: #381E72;
        --primary-container: #4F378B;
        --on-primary-container: #EADDFF;

        --surface: #141218;
        --on-surface: #E6E1E5;
        --surface-variant: #49454F;
        --on-surface-variant: #CAC4D0;

        --background: #0F172A;
        /* App Slate Background */
        --on-background: #E6E1E5;
    }
}

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

body {
    font-family: var(--font-main);
    background-color: var(--lilac-lighter);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

/* Custom Selection Color */
::selection {
    background-color: var(--purple-primary);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--lilac-lighter);
}

::-webkit-scrollbar-thumb {
    background: var(--purple-muted);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--purple-primary);
}

h1,
h2,
h3,
span {
    font-family: var(--font-main);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: 12rem 0;
    /* Significant increase in whitespace */
}

/* Typography */
h1 {
    font-size: 6rem;
    /* Enormous hero text from SVG */
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    font-family: var(--font-serif);
    color: var(--navy-dark);
    letter-spacing: -0.03em;
}

h2 {
    font-family: var(--font-serif);
    font-size: 4rem;
    /* Scaled up */
    line-height: 1.15;
    margin-bottom: 3rem;
    color: var(--navy-dark);
    letter-spacing: -0.02em;
}

h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 2rem;
    color: var(--navy-dark);
}

.highlight {
    background: linear-gradient(120deg, var(--primary), #AF52DE);
    background-clip: text;
    /* Fixed compatibility */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    /* Soft lavender full background with a brighter glowing halo behind the phone */
    background:
        radial-gradient(circle at 75% 50%, #B78AF3 0%, var(--lilac-bg) 50%, var(--lilac-bg) 100%);
    background-color: var(--lilac-bg);
    position: relative;
    overflow: hidden;
}

/* Ambient Dust Particles */
.ambient-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    /* Changed from 1 to keep behind hero relative content */
    background-image:
        radial-gradient(rgba(28, 16, 63, 0.25) 3px, transparent 3px),
        radial-gradient(rgba(28, 16, 63, 0.2) 4px, transparent 4px),
        radial-gradient(rgba(28, 16, 63, 0.15) 5px, transparent 5px);
    background-size: 400px 400px, 600px 600px, 800px 800px;
    /* Increased spread */
    background-position: 0 0, 100px 100px, 250px 250px;
    animation: dustDrift1 50s linear infinite;
    opacity: 0.8;
    will-change: background-position, transform;
    transform: translateZ(0);
}

.ambient-dust.layer-2 {
    background-image:
        radial-gradient(rgba(28, 16, 63, 0.3) 2px, transparent 2px),
        radial-gradient(rgba(28, 16, 63, 0.25) 5px, transparent 5px),
        radial-gradient(rgba(28, 16, 63, 0.15) 6px, transparent 6px);
    background-size: 500px 500px, 700px 700px, 1000px 1000px;
    /* Massively increased spread */
    background-position: 50px 120px, 150px 200px, 300px 400px;
    animation: dustDrift2 75s linear infinite;
    opacity: 0.5;
    pointer-events: none;
    will-change: background-position, transform;
    transform: translateZ(0);
}

@keyframes dustDrift1 {
    0% {
        background-position: 0 0, 100px 100px, 250px 250px;
    }

    100% {
        background-position: -400px -400px, -500px -500px, -550px -550px;
    }
}

@keyframes dustDrift2 {
    0% {
        background-position: 50px 120px, 150px 200px, 300px 400px;
    }

    100% {
        background-position: -450px -380px, -550px -500px, -700px -600px;
    }
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 6rem 0 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
    flex-grow: 1;
}



.hero-content {
    text-align: left;
    max-width: 550px;
    padding-left: 0;
    /* Removing padding to align with logo */
    position: relative;
    z-index: 10;
}

.hero-content p {
    font-size: 1.15rem;
    color: #1D1B20;
    /* High Contrast */
    font-weight: 500;
    /* Increased weight for legibility */
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

/* Hero Visual */
.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    right: -2rem;
}

.hero-hand-image {
    width: 220%;
    max-width: 1200px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) scale(1.3);
    z-index: 2;
    mix-blend-mode: multiply;
    opacity: 0.95;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translate(-50%, -40%) scale(1.3);
    }

    50% {
        transform: translate(-50%, -42%) scale(1.3);
    }

    100% {
        transform: translate(-50%, -40%) scale(1.3);
    }
}

.specular-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--purple-primary) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.specular-overlay {
    position: absolute;
    width: 150%;
    height: 150px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25) 50%, transparent);
    transform: rotate(-35deg);
    top: 20%;
    left: 10%;
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: overlay;
    filter: blur(4px);
}


/* Buttons */


/* Anchoring Bar */
.anchoring-bar {
    background-color: #0C051D;
    padding: 6rem var(--container-padding);
    text-align: center;
}

.anchoring-main {
    color: var(--purple-muted);
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.anchoring-bar span {
    color: var(--purple-primary);
    margin: 0 1.2rem;
}

.anchoring-sub {
    color: white;
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 1.15rem;
    opacity: 0.9;
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--lilac-bg);
    padding: 8rem 0;
    text-align: center;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-item {
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 2.5rem;
    border-radius: 32px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.philosophy-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.philosophy-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 2rem;
    color: var(--navy-dark);
    transition: transform 0.3s ease, color 0.3s ease;
}

.philosophy-item:hover .philosophy-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--purple-primary);
}

/* Process Section Icons */
.step-icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--lilac-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--purple-primary);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.process-step:hover:not(.inactive) .step-icon-container {
    transform: scale(1.1) rotate(-8deg);
    background-color: var(--lilac-lighter);
}

.step-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.process-step:hover:not(.inactive) .step-icon {
    transform: scale(1.1);
}

.process-step.inactive .step-icon-container {
    opacity: 0.5;
    background-color: transparent;
    border: 1px solid var(--lilac-bg);
}

.process-step h4 {
    font-size: 1.35rem;
    font-family: 'Playfair Display', serif;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.philosophy-item h3 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.philosophy-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}



/* Contrast Section: Your Memory vs. Their Memory (Split Block) */
.contrast-split-section {
    display: flex;
    min-height: 100vh;
    /* Taller section for vertical breathing room */
    overflow: hidden;
}

.contrast-split-section .split-block {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem;
    position: relative;
    transition: flex 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Dynamics */
.contrast-split-section:hover .split-block {
    flex: 0.8;
    /* Base size when section is hovered but card is not */
}

.contrast-split-section .split-block:hover {
    flex: 1.2;
    /* Expand the hovered card */
}

.contrast-split-section .your-memory {
    background-color: #0C051D;
    color: white;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    /* Visual anchor line */
}

.contrast-split-section .their-memory {
    background-color: #8C53FF;
    color: white;
}

.contrast-split-section .split-content {
    max-width: 500px;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contrast-split-section .split-icon-box {
    margin-bottom: 2rem;
}

.contrast-split-section .split-icon {
    width: 32px;
    height: 32px;
    color: white;
    opacity: 0.8;
}

.contrast-split-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: 0.02em;
}

.contrast-split-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    font-family: var(--font-main);
}

/* Quote Strip */
.quote-strip {
    background-color: #F1EDFA;
    padding: 6rem 0;
    text-align: center;
    color: var(--navy-dark);
}

.quote-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    line-height: 1.3;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.quote-nav {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(28, 16, 63, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
    flex-shrink: 0;
}

.quote-nav:hover {
    background-color: rgba(28, 16, 63, 0.05);
}

/* Interactive Process Section (Accordion) */
.process-section {
    background-color: #fcfaff;
    padding: 10rem 0;
    overflow-anchor: none;
    /* Prevents the browser from jumping the scroll position during content expansion */
}

.process-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 8rem;
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Graphic Hub */
.process-graphic {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-hint {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(140, 83, 255, 0.1);
    color: var(--purple-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    animation: hintPulse 2s ease-in-out infinite;
    z-index: 5;
    white-space: nowrap;
}

.process-section.is-open .hub-hint {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
}

@keyframes hintPulse {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.8;
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
        opacity: 1;
    }
}

.graphic-hub {
    position: relative;
    width: 120px;
    height: 120px;
    background-color: var(--purple-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
    box-shadow:
        0 0 30px rgba(140, 83, 255, 0.5),
        0 0 60px rgba(140, 83, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: hubGlow 3s ease-in-out infinite;
}

.hub-plus {
    font-size: 3rem;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.graphic-hub:hover {
    transform: scale(1.05);
}

.process-section.is-open .hub-plus {
    transform: rotate(45deg);
}

@keyframes hubGlow {

    0%,
    100% {
        box-shadow:
            0 0 30px rgba(140, 83, 255, 0.5),
            0 0 60px rgba(140, 83, 255, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow:
            0 0 50px rgba(140, 83, 255, 0.7),
            0 0 90px rgba(140, 83, 255, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
        transform: scale(1.02);
    }
}



.radiating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.radiating-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--purple-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(140, 83, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0) translate(0, 0);
    cursor: pointer;
    z-index: 15;
}

/* Position 3 icons in a tighter arc above the hub */
.radiating-circle:nth-child(1) {
    top: 25%;
    left: 20%;
    transition-delay: 0.1s;
}

.radiating-circle:nth-child(2) {
    top: 15%;
    left: 50%;
    transform: translate(-50%, 0) scale(0);
    /* Center one */
    transition-delay: 0.2s;
}

.radiating-circle:nth-child(3) {
    top: 25%;
    right: 20%;
    transition-delay: 0.3s;
}

/* Adjust active scale for the centered nth-child(2) */
.process-section.is-open .radiating-circle:nth-child(2) {
    transform: translate(-50%, 0) scale(1);
}

.process-section.is-open .radiating-circle {
    opacity: 1;
    transform: scale(1);
}

/* Accordion */
.process-accordion {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-height: 480px;
    position: relative;
    overflow: visible;
}

.accordion-item {
    border-bottom: 1px solid rgba(28, 16, 63, 0.1);
    padding-bottom: 2rem;
    cursor: pointer;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgba(28, 16, 63, 0.2);
    transition: color 0.3s ease;
}

.accordion-item.active .step-num {
    color: var(--purple-primary);
}

.accordion-header h3 {
    font-size: 1.8rem;
    color: var(--navy-dark);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    padding-left: 4rem;
    will-change: max-height, opacity;
    /* Hints the browser to prepare for smooth animation */
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    opacity: 1;
    padding-top: 1.5rem;
    /* Smoother than margin-top as it animates with max-height */
}

.accordion-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}



/* Tutorial Section */
.orma-phonetic {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.tutorial-image {
    width: 100%;
    max-width: 600px;
}

.tutorial-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tutorial-step {
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
}

.step-num {
    background: var(--primary);
    color: var(--on-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
}

/* Sections */
section {
    padding: 12rem 0;
    /* Significant increase in whitespace */
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #1D1B20;
}

.section-subtitle {
    text-align: center;
    color: #8C53FF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 4rem;
    font-size: 0.85rem;
}

/* Story Section */
.section-story {
    background-color: #F8F4FF;
    /* Very soft lavender */
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.35rem;
    line-height: 1.8;
    color: #211F24;
    /* Extremely dark grey for maximum contrast */
    text-align: center;
}

.story-content p {
    margin-bottom: 2rem;
}

.tutorial {
    background-color: #FFFFFF;
}

.tutorial-step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: #1D1B20;
}

.tutorial-step p {
    color: #4A4A4A;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Technical Features Grid */
.technical-section {
    background-color: var(--purple-primary);
    padding: 8rem 0;
    color: var(--text-light);
    text-align: center;
}

.technical-section .section-title {
    color: var(--text-light);
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    text-align: left;
}

.technical-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease, border-color 0.3s ease;
}

.technical-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.technical-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.technical-card:hover .technical-icon {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

.technical-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.technical-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Mega CTA / Footer */


/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 3rem;
    }

    .hero-content {
        margin: 0 auto;
        padding-left: 0;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
        margin-bottom: 2rem;
    }

    /* Hide hand graphic on mobile — cleaner, text-focused hero */
    .hero-visual {
        display: none;
    }

    section {
        padding: 5rem 0;
    }

    .hero {
        padding-bottom: 0;
        overflow: visible;
        /* Prevent clipping of hand overlap */
    }

    .hero-layout {
        position: static;
        /* Allow hand to anchor to .hero bottom */
    }

    .anchoring-bar {
        padding: 4rem 1rem;
        position: relative;
        z-index: 10;
        /* Layer over the hero hand */
        margin-top: -1px;
        /* Avoid hairline gaps */
    }

    .anchoring-main {
        font-size: 1rem;
        line-height: 1.8;
        display: block;
    }

    .anchoring-bar span {
        display: inline-block;
        /* Restore dots */
        opacity: 0.5;
        vertical-align: middle;
    }

    .anchoring-main br {
        display: block;
    }

    :root {
        --container-padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .tutorial-image {
        flex-direction: column;
        align-items: center !important;
        gap: 2rem !important;
    }

    .tutorial-image>div {
        transform: none !important;
        width: 80%;
    }

    /* New Layout Overrides */
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .contrast-split-section {
        flex-direction: column;
        min-height: auto;
    }

    .split-block {
        padding: 6rem 2rem;
        min-height: auto;
        flex: none;
        width: 100%;
    }

    .process-layout {
        display: block;
        /* Normal flow for linear storytelling */
        padding-top: 2rem;
    }

    .process-graphic {
        display: none;
        /* Hide interactive hub on mobile */
    }

    .process-accordion {
        width: 100%;
        padding: 0;
    }

    .accordion-item {
        margin-bottom: 3rem;
        opacity: 1 !important;
        transform: none !important;
        border: none;
        background: transparent;
    }

    .accordion-header {
        pointer-events: none;
        /* Disable clicking */
        margin-bottom: 1rem;
        justify-content: flex-start;
        text-align: left;
    }

    .accordion-content {
        display: block !important;
        /* Show all content */
        max-height: none !important;
        opacity: 1 !important;
        padding: 0;
        text-align: left;
    }

    .accordion-header h3 {
        font-size: 1.8rem;
    }

    .technical-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mega-cta {
        padding: 5rem 1.5rem 2rem;
    }

    .mega-title {
        font-size: 3rem;
    }
}