/* ═══════════════════════════════════════════════════════════════
   ULTIMATE 4: CINEMATIC DARK THEME
   Premium landing page for Seguradoz - BDR as a Service
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   DESIGN TOKENS
   ───────────────────────────────────────────────────────────────── */
:root {
    /* Colors */
    --c-bg: #030303;
    --c-bg-elevated: #0a0a0a;
    --c-surface: #111111;
    --c-text: #f0f0f0;
    --c-text-muted: #666666;
    --c-text-dim: #444444;
    --c-accent: #c8ff00;
    /* Neon Lime */
    --c-accent-glow: rgba(200, 255, 0, 0.3);
    --c-white: #ffffff;
    --c-black: #000000;

    /* Typography */
    --f-display: 'Space Grotesk', system-ui, sans-serif;
    --f-body: 'Inter', system-ui, sans-serif;

    /* Sizing */
    --container-max: 1280px;
    --container-narrow: 800px;
    --section-gap: 120px;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --duration-fast: 0.25s;
    --duration-normal: 0.5s;
    --duration-slow: 0.8s;
}

/* ─────────────────────────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: var(--f-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background-color: var(--c-accent);
    color: var(--c-black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) ease;
}

img {
    max-width: 100%;
    display: block;
}

/* ─────────────────────────────────────────────────────────────────
   CINEMATIC LAYERS
   ───────────────────────────────────────────────────────────────── */
.layer-grain,
.layer-vignette,
.layer-scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.layer-grain {
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: grain 0.5s steps(3) infinite;
}

@keyframes grain {

    0%,
    100% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-1%, -1%);
    }

    20% {
        transform: translate(1%, 1%);
    }

    30% {
        transform: translate(-1%, 1%);
    }

    40% {
        transform: translate(1%, -1%);
    }

    50% {
        transform: translate(-1%, 0);
    }
}

.layer-vignette {
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0.8;
}

.layer-scanlines {
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px);
    opacity: 0.5;
}

/* ─────────────────────────────────────────────────────────────────
   SCROLL PROGRESS
   ───────────────────────────────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.05);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--c-accent);
    transition: width 0.1s linear;
}

/* ─────────────────────────────────────────────────────────────────
   UTILITIES
   ───────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.container.narrow {
    max-width: var(--container-narrow);
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--c-accent);
}

.highlight-text {
    color: var(--c-accent);
    display: block;
}

/* ─────────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(3, 3, 3, 0.9), transparent);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-key {
    color: var(--c-accent);
    transition: transform var(--duration-fast) var(--ease-spring);
}

.logo:hover .logo-key {
    transform: rotate(-10deg) scale(1.1);
}

.logo-text {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    transition: color var(--duration-fast) ease;
}

.nav-link:hover {
    color: var(--c-text);
}

.btn-nav {
    font-family: var(--f-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--duration-fast) ease;
}

.btn-nav:hover {
    background: var(--c-white);
    color: var(--c-black);
    border-color: var(--c-white);
}

/* ─────────────────────────────────────────────────────────────────
   SECTION TAG
   ───────────────────────────────────────────────────────────────── */
.section-tag {
    display: inline-block;
    font-family: var(--f-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 16px;
}

.section-tag.invert {
    color: var(--c-black);
    opacity: 0.5;
}

/* ─────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-stars {
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-image:
        radial-gradient(1px 1px at 25px 5px, white, rgba(255, 255, 255, 0)),
        radial-gradient(1px 1px at 50px 25px, white, rgba(255, 255, 255, 0)),
        radial-gradient(1px 1px at 125px 20px, white, rgba(255, 255, 255, 0)),
        radial-gradient(1.5px 1.5px at 250px 80px, white, rgba(255, 255, 255, 0)),
        radial-gradient(2px 2px at 300px 50px, white, rgba(255, 255, 255, 0)),
        radial-gradient(1px 1px at 450px 100px, white, rgba(255, 255, 255, 0));
    background-size: 500px 500px;
    opacity: 0.8;
    /* The mask reveals the stars around the cursor */
    mask-image: radial-gradient(circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%),
            black 0%,
            transparent 100%);
    -webkit-mask-image: radial-gradient(circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%),
            black 0%,
            transparent 100%);
    pointer-events: none;
    animation: twinkle 4s infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
}

@media (min-width: 992px) {
    .hero-content {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 40px;
        align-items: center;
        text-align: left;
    }

    .hero-eyebrow {
        justify-content: flex-start;
    }
}

.hero-text-side {
    position: relative;
    z-index: 2;
}

/* ─────────────────────────────────────────────────────────────────
   HERO VISUAL: CONNECTION ORBIT
   ───────────────────────────────────────────────────────────────── */
.hero-visual {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero-visual {
        height: 600px;
    }
}

.orbit-system {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(-20deg);
}

/* Central Core */
.system-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateZ(20deg) rotateX(-60deg);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.core-icon {
    color: var(--c-accent);
    filter: drop-shadow(0 0 15px var(--c-accent));
}

@keyframes iconPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.9);
    }
}

/*.core-pulse removed by user request*/

/* Orbits */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transform-style: preserve-3d;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.02);
}

.ring-1 {
    width: 160px;
    height: 160px;
    animation: orbitRotate 15s linear infinite;
    border-color: rgba(255, 255, 255, 0.15);
}

.ring-2 {
    width: 240px;
    height: 240px;
    animation: orbitRotate 25s linear infinite reverse;
}

.ring-3 {
    width: 320px;
    height: 320px;
    animation: orbitRotate 40s linear infinite;
    border-style: dashed;
}

@keyframes orbitRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Satellites */
.satellite {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
    transform-style: preserve-3d;
}

.sat-icon {
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--c-white);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.ring-1 .sat-icon {
    color: var(--c-accent);
    border-color: var(--c-accent);
    animation: counterRotate1 15s linear infinite;
}

.ring-2 .sat-icon {
    animation: counterRotate2 25s linear infinite;
}

.ring-3 .sat-icon {
    animation: counterRotate3 40s linear infinite;
}

/* Counter Rotation to keep icons facing forward */
/* System tilt: X(60) Z(-20) */
/* To face camera: Z(20) X(-60) */
/* Formula: Rotate(-OrbitAngle) -> RotateZ(20) -> RotateX(-60) */

@keyframes counterRotate1 {
    0% {
        transform: rotate(0deg) rotateZ(20deg) rotateX(-60deg);
    }

    100% {
        transform: rotate(-360deg) rotateZ(20deg) rotateX(-60deg);
    }
}

@keyframes counterRotate2 {
    0% {
        transform: rotate(0deg) rotateZ(20deg) rotateX(-60deg);
    }

    100% {
        transform: rotate(360deg) rotateZ(20deg) rotateX(-60deg);
        /* Positive because ring is reverse */
    }
}

@keyframes counterRotate3 {
    0% {
        transform: rotate(0deg) rotateZ(20deg) rotateX(-60deg);
    }

    100% {
        transform: rotate(-360deg) rotateZ(20deg) rotateX(-60deg);
    }
}

/* Hover Effect */
.orbit-system:hover .sat-icon {
    border-color: var(--c-white);
    background: rgba(30, 30, 30, 0.9);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--c-accent);
    border-radius: 50%;
}

.dot.pulse {
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 var(--c-accent-glow);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 8px transparent;
    }
}

.eyebrow-text {
    font-family: var(--f-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--c-text-muted);
}

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: titleReveal 1s var(--ease-out) forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.15s;
}

.title-line:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-line.outline {
    -webkit-text-stroke: 1.5px var(--c-text);
    color: transparent;
}

.hero-hidden-content {
    margin-bottom: 48px;
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--c-text-muted);
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}



/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--f-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 20px 32px;
    background: var(--c-white);
    color: var(--c-black);
    position: relative;
    overflow: hidden;
    transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast) ease;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 0.7s forwards;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
    z-index: 0;
}

.btn-primary:hover::before {
    transform: scaleX(1);
}

.btn-label,
.btn-arrow {
    position: relative;
    z-index: 1;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hint-text {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--c-text-muted);
}

.hint-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--c-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

/* ─────────────────────────────────────────────────────────────────
   JOURNEY SECTION (Animated Process Flow)
   ───────────────────────────────────────────────────────────────── */
.journey {
    padding: var(--section-gap) 0;
    background: var(--c-bg-elevated);
    overflow: hidden;
}

.journey-header {
    text-align: center;
    margin-bottom: 80px;
}

.journey-headline {
    font-family: var(--f-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--c-text-muted);
    margin-bottom: 32px;
}

.headline-accent {
    display: block;
    color: var(--c-accent);
    margin-top: 8px;
}

.journey-subtext {
    font-size: 1.15rem;
    color: var(--c-text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.journey-subtext strong {
    color: var(--c-text);
    display: block;
    margin-top: 8px;
}

/* Journey Flow Container */
.journey-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    padding: 60px 0;
}

/* Connecting Line */
.journey-line {
    position: absolute;
    top: 100px;
    left: 10%;
    right: 10%;
    height: 4px;
    z-index: 0;
    color: var(--c-accent);
}

.line-svg {
    width: 100%;
    height: 100%;
}

.line-path {
    stroke: var(--c-accent);
    stroke-width: 2;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.5s ease-out;
}

.journey-flow.animate .line-path {
    stroke-dashoffset: 0;
}

/* Journey Step */
.journey-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.journey-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.journey-step[data-step="1"] {
    transition-delay: 0.1s;
}

.journey-step[data-step="2"] {
    transition-delay: 0.3s;
}

.journey-step[data-step="3"] {
    transition-delay: 0.5s;
}

.journey-step[data-step="4"] {
    transition-delay: 0.7s;
}

/* Step Node (Icon container) */
.step-node {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.node-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.journey-step:hover .node-ring {
    border-color: var(--c-accent);
    box-shadow: 0 0 30px var(--c-accent-glow);
    transform: scale(1.1);
}

.node-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: var(--c-bg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: all 0.4s ease;
}

.journey-step:hover .node-icon {
    color: var(--c-accent);
    border-color: var(--c-accent);
    background: rgba(200, 255, 0, 0.05);
}

/* Trophy Step Special Styling */
.journey-step.trophy .node-ring {
    border-color: var(--c-accent);
}

.journey-step.trophy .node-icon {
    color: var(--c-accent);
    border-color: var(--c-accent);
    background: rgba(200, 255, 0, 0.1);
}

.journey-step.trophy.visible .node-ring {
    animation: trophyPulse 2s ease-in-out infinite;
}

@keyframes trophyPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--c-accent-glow);
    }

    50% {
        box-shadow: 0 0 30px 10px var(--c-accent-glow);
    }
}

/* Step Content */
.step-content {
    max-width: 200px;
}

.step-number {
    display: block;
    font-family: var(--f-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--c-accent);
    margin-bottom: 8px;
}

.step-title {
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    color: var(--c-text);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .journey-flow {
        flex-direction: column;
        gap: 48px;
        padding: 40px 0;
    }

    .journey-line {
        display: none;
    }

    .journey-step {
        flex-direction: row;
        text-align: left;
        gap: 24px;
    }

    .step-node {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }

    .node-icon {
        width: 44px;
        height: 44px;
    }

    .step-content {
        max-width: none;
    }
}

/* ─────────────────────────────────────────────────────────────────
   METHOD
   ───────────────────────────────────────────────────────────────── */
.method {
    padding: var(--section-gap) 0;
    position: relative;
    overflow: hidden;
}

.method-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--f-display);
    font-size: 20vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.method-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.method-title {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 2;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--duration-fast) ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.step.accent {
    background: rgba(200, 255, 0, 0.05);
    border-color: var(--c-accent);
}

.step-num {
    font-family: var(--f-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    transition: color var(--duration-fast) ease;
}

.step:hover .step-num {
    color: var(--c-accent);
}

.step-title {
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color var(--duration-fast) ease;
}

.step:hover .step-title {
    color: var(--c-accent);
}

.step-desc {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    line-height: 1.7;
}

.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    color: var(--c-text-dim);
}

.visual-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.3;
}

.visual-dots span:nth-child(3) {
    opacity: 1;
    background: var(--c-accent);
}

.visual-wave svg {
    width: 100px;
    color: var(--c-accent);
}

.visual-pulse {
    width: 40px;
    height: 40px;
    border: 2px solid var(--c-accent);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.visual-target {
    font-size: 2rem;
    color: var(--c-accent);
}

/* ─────────────────────────────────────────────────────────────────
   DIFF SECTION
   ───────────────────────────────────────────────────────────────── */
.diff {
    padding: var(--section-gap) 0;
    background: var(--c-white);
    color: var(--c-black);
}

.diff-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.diff-title {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.outline-dark {
    -webkit-text-stroke: 1.5px var(--c-black);
    color: transparent;
}

.diff-body {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
}

.diff-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.point {
    display: flex;
    gap: 20px;
}

.point-marker {
    width: 12px;
    height: 12px;
    background: var(--c-accent);
    flex-shrink: 0;
    margin-top: 6px;
}

.point-text h4 {
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.point-text p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────
   QUOTE SECTION
   ───────────────────────────────────────────────────────────────── */
.quote-section {
    padding: var(--section-gap) 0;
    background: var(--c-bg-elevated);
}

.big-quote {
    position: relative;
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--c-accent);
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 24px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.big-quote p {
    font-size: 1.5rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────────────────────────
   ASSET SECTION
   ───────────────────────────────────────────────────────────────── */
.asset {
    padding: var(--section-gap) 0;
}

.asset-title {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 32px;
}

.asset-body {
    font-size: 1.25rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 48px;
}

.equity-badge {
    display: inline-block;
    padding: 16px 48px;
    border: 2px solid var(--c-accent);
    border-radius: 100px;
    animation: badgePulse 3s ease-in-out infinite;
}

.equity-badge span {
    font-family: var(--f-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--c-accent);
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--c-accent-glow);
    }

    50% {
        box-shadow: 0 0 0 12px transparent;
    }
}

/* ─────────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────────── */
.faq {
    padding: var(--section-gap) 0;
    background: var(--c-bg-elevated);
}

.faq-list {
    margin-top: 48px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: var(--f-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--c-text);
    cursor: pointer;
    text-align: left;
    transition: color var(--duration-fast) ease;
}

.faq-question:hover {
    color: var(--c-accent);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform var(--duration-fast) ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--c-text-muted);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────
   CTA
   ───────────────────────────────────────────────────────────────── */
.cta {
    position: relative;
    padding: var(--section-gap) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-glow {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: var(--c-accent);
    filter: blur(180px);
    opacity: 0.1;
}

.cta-title {
    font-family: var(--f-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.outline-light {
    -webkit-text-stroke: 1.5px var(--c-text);
    color: transparent;
}

.cta-body {
    font-size: 1.3rem;
    color: var(--c-text-muted);
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 24px 48px;
    background: var(--c-accent);
    color: var(--c-black);
    position: relative;
    z-index: 2;
    transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast) ease;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px var(--c-accent-glow);
}

.btn-key {
    color: var(--c-black);
}

/* ─────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────── */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
}

.footer-tagline {
    font-size: 0.7rem;
    color: var(--c-text-muted);
    letter-spacing: 0.1em;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--c-text-dim);
}

/* ─────────────────────────────────────────────────────────────────
   ANIMATIONS (SCROLL TRIGGERED)
   ───────────────────────────────────────────────────────────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .method-steps .step {
        grid-template-columns: 60px 1fr;
    }

    .step-visual {
        display: none;
    }

    .diff-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 80px;
    }

    .nav-link {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .manifesto-grid {
        grid-template-columns: 1fr;
    }

    .method-steps .step {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-num {
        font-size: 1.5rem;
    }

    .scroll-hint {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ─────────────────────────────────────────────────────────────────
   MAGNETIC BUTTON EFFECT (JS enhanced)
   ───────────────────────────────────────────────────────────────── */
.magnetic {
    transition: transform 0.2s ease;
}