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

html {
    scroll-behavior: smooth;
}

body {
    /* FONT OPTIONS — uncomment one:
       'Space Grotesk' — geometric, technical
       'Outfit' — geometric, friendly-bold
       'Syne' — architectural, distinctive
       'Archivo' — sharp grotesque, industrial
       'Inter' — clean neutral (original)
    */
    font-family: 'Outfit', sans-serif;
    background: #000;
    color: #f0f0f0;
    line-height: 1.3;
    overflow-x: hidden;
}



.container { max-width: 1800px; margin: 0 auto; padding: 20px 40px; }

section {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px 40px;
    overflow: hidden;
    position: relative;
}

.own-snap {
    position: relative;
}

/* grunge removed */

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(44px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 22px);
    color: #666;
    letter-spacing: 0.3px;
    line-height: 1.6;
    margin-bottom: clamp(28px, 4vh, 48px);
}

/* PAIN AGITATION */
.pain {
    align-items: center;
    padding: 80px 20px 40px;
    overflow: hidden;
}

.pain-content {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.pain-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(22px, 3.5vw, 40px);
    font-weight: 700;
    color: #f0f0f0;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pain.active .pain-title {
    opacity: 1;
    transform: translateY(0);
}

.pain-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: #222;
    margin-bottom: 16px;
}

.pain-logo {
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
    transition-delay: calc(0.3s + var(--i) * 0.12s);
}

.pain.active .pain-logo {
    opacity: 1;
    transform: translateY(0);
}

.pain-logo:hover {
    background: #0a0a0a;
}

.pain-logo img {
    width: 36px;
    height: 36px;
}

.pain-logo span {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #333;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Pain top half — shrinks when phase 2 hits */
.pain-top {
    transform-origin: top left;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

.pain.phase-2 .pain-top {
    transform: scale(0.88);
    opacity: 0.35;
}

.pain-closer {
    font-family: 'Syne', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 500;
    color: #555;
    letter-spacing: -0.3px;
    opacity: 0;
    transition: opacity 0.5s ease 1.2s;
}

.pain.active .pain-closer {
    opacity: 1;
}

.pain-closer em {
    color: #e0e0e0;
    font-style: normal;
}

.pain-bridge {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #141414;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pain.phase-2 .pain-bridge {
    opacity: 1;
    transform: translateY(0);
}

.pain-bottom-close {
    text-align: right;
    margin-top: 24px;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

.pain.phase-2 .pain-bottom-close {
    opacity: 1;
}

.pain-bottom-white {
    font-family: 'Syne', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 500;
    color: #f0f0f0;
    letter-spacing: -0.3px;
    margin-bottom: 2px;
}

.pain-bottom-gold {
    font-family: 'Syne', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 500;
    color: #AC7A2A;
    letter-spacing: -0.3px;
}

.pain-bridge-text {
    font-family: 'Syne', sans-serif;
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 700;
    color: #f0f0f0;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: right;
}

.pain-bridge-name {
    text-align: right;
    font-size: 12px;
    color: #444;
    letter-spacing: 1px;
    margin-top: -28px;
    margin-bottom: 40px;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

.pain.phase-2 .pain-bridge-name {
    opacity: 1;
}

.pain-bridge-text em {
    color: #AC7A2A;
    font-style: normal;
}

.pain-modules {
    display: flex;
    align-items: center;
}

.pain-module {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: calc(0.15s + var(--i) * 0.08s);
}

.pain-plus {
    font-size: 16px;
    font-weight: 300;
    color: #333;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.4s ease 0.6s;
}

.pain.phase-2 .pain-plus {
    opacity: 1;
}

.pain.phase-2 .pain-module {
    opacity: 1;
    transform: translateY(0);
}


.pain-module-icon {
    width: 24px;
    height: 24px;
    opacity: 0.85;
}

.pain-module span:last-child {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #555;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
}

.pain-cta-wrap {
    text-align: center;
    margin-top: 48px;
    opacity: 0;
    transition: opacity 0.5s ease 0.5s;
}

.pain.phase-2 .pain-cta-wrap {
    opacity: 1;
}

.marquee-section {
    height: 100vh;
    min-height: unset;
    justify-content: center;
    padding: 90px 0 30px;
    border-bottom: 1px solid #222;
    overflow: hidden;
}

.marquee-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: scale(0.85);
    opacity: 0.6;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    transform-origin: center center;
}

.marquee-section.in-view .marquee-inner {
    transform: scale(1);
    opacity: 1;
}

/* SOCIAL PROOF */
.social-proof {
    margin-top: 16px;
    padding: 0 40px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, opacity 0.6s ease 0.3s;
}

.marquee-section.in-view .social-proof {
    transform: translateY(0);
    opacity: 1;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    border-top: 1px solid #222;
    padding-top: 32px;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 28px;
    font-weight: 600;
    color: #f0f0f0;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    overflow: hidden;
    height: 1.2em;
}

.proof-number .flip-digit {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-section.in-view .proof-number .flip-digit {
    transform: translateY(0);
}

.proof-label {
    font-size: 9px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.integrations {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #222;
    text-align: center;
}

.integrations-label {
    font-size: 9px;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.integrations-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.integration-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.integration-logo img {
    width: 20px;
    height: 20px;
    opacity: 0.4;
}

.integration-logo span {
    font-size: 8px;
    color: #333;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.marquee-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 12px;
}

.marquee-label {
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 9px;
    color: #555;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
}

.features-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    margin-bottom: 8px;
}

.features-track {
    display: flex;
    gap: 16px;
    animation: scrollCards 80s linear infinite;
    width: max-content;
}

.features-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCards {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.features-grid {
    display: flex;
    gap: 16px;
    background: transparent;
}

.feature-card {
    background: #000;
    border: 1px solid #222;
    padding: 0;
    transition: all 0.3s ease;
    width: clamp(260px, 25vw, 400px);
    flex-shrink: 0;
}

.feature-card:hover {
    background: #0a0a0a;
    border-color: #2a2a2a;
}

.feature-label {
    font-size: 9px;
    color: #AC7A2A;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.feature-card h3 {
    font-size: 13px;
    padding: 16px 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 400;
}

.feature-image {
    position: relative;
    overflow: hidden;
}

.feature-desc {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    font-size: 12px;
    color: #e0e0e0;
    line-height: 1.6;
    letter-spacing: 0.2px;
    background: rgba(0,0,0,0.85);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-desc {
    opacity: 1;
}

.feature-image {
    width: 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #0a0a0a;
    border: 1px solid #222;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image span {
    font-size: 9px;
    color: #333;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes spin-border {
    to { --border-angle: 360deg; }
}

.hero-cta {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    padding: 18px 40px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: inline-block;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: conic-gradient(
        from var(--border-angle),
        #AC7A2A,
        #f0f0f0,
        #c792ea,
        #61c2d9,
        #AC7A2A
    );
    z-index: -2;
    opacity: 0.15;
    filter: blur(6px);
    transition: opacity 0.4s ease, filter 0.4s ease, inset 0.4s ease;
    animation: spin-border 3s linear infinite;
}

.hero-cta::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: #000;
    z-index: -1;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.hero-cta:hover {
    background: transparent;
    border-color: transparent;
    color: #f0f0f0;
    box-shadow: 0 0 24px rgba(172, 122, 42, 0.3), 0 0 48px rgba(172, 122, 42, 0.1);
}

.hero-cta:hover::before {
    opacity: 1;
    filter: blur(1px);
    inset: -2px;
}

.hero-cta:hover::after {
    opacity: 1;
}

/* STORY */
.story {
    max-width: 650px;
}

.story p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: #999;
    letter-spacing: 0.2px;
}

.story p.emphasis {
    color: #e0e0e0;
    font-size: 15px;
    margin-top: 32px;
}

/* WHAT YOU'LL OWN */
.own-snap {
    min-height: unset;
    border-bottom: none;
    padding: 0;
}

.own-snap:last-of-type {
    height: 50vh;
    min-height: unset;
}

.device-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    z-index: 10;
    pointer-events: none;
    padding: 24vh 20px 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    background: #000;
}


.device-overlay.active {
    opacity: 1;
}

.scene-step {
    position: fixed;
    top: 140px;
    left: 48px;
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 10px;
    font-weight: 400;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1001;
    border: 1px solid #222;
    padding: 6px 12px;
    border-radius: 3px;
    background: rgba(255,255,255,0.03);
    transition: opacity 0.25s ease;
}

.scene-step-subtitle {
    color: #666;
    margin-left: 4px;
    letter-spacing: 1.5px;
}

.scene-step.hidden {
    opacity: 0;
}

.scene-step.exit {
    opacity: 0;
    transform: translateY(-6px);
}

.scene-step.enter {
    animation: fadeUp 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.device-overlay.exiting {
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* CODE IN SCREEN */
.code-in-screen {
    position: absolute;
    inset: 0;
    padding: 28px 10px 10px;
    overflow: hidden;
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 8px;
    line-height: 1.6;
    z-index: 5;
    transition: opacity 0.8s ease;
    background: #0c0c0c;
}

.code-in-screen .code-ln {
    display: block;
    white-space: nowrap;
    opacity: 0;
}

.code-in-screen .code-ln.typed {
    opacity: 1;
}

.code-in-screen .cursor {
    display: inline-block;
    width: 5px;
    height: 9px;
    background: #AC7A2A;
    margin-left: 1px;
    animation: blink 0.8s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {
    50% { opacity: 0; }
}

.code-in-screen .kw { color: #d4699e; }
.code-in-screen .fn { color: #61c2d9; }
.code-in-screen .str { color: #98c379; }
.code-in-screen .num { color: #d19a66; }
.code-in-screen .cm { color: #444; }
.code-in-screen .ty { color: #c792ea; }
.code-in-screen .pr { color: #999; }

.code-in-screen.fade-out {
    opacity: 0;
}

/* WIREFRAME MODE */
.macbook.wireframe .macbook-screen {
    background: transparent;
    border-color: #333;
    box-shadow: none;
}

.macbook.wireframe .screen-content {
    opacity: 0;
}

.macbook.wireframe .macbook-base {
    background: transparent;
    border: 1px solid #333;
}

.macbook.wireframe .macbook-notch {
    background: #333;
}

/* SOLID TRANSITION */
.macbook .macbook-screen,
.macbook .macbook-base {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.macbook .screen-content {
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.macbook.solid .screen-content {
    opacity: 1;
}

.own-scene {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.device-stage {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    position: relative;
}

.device-stage.hidden {
    display: none;
}

/* MACBOOK */
.macbook {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
    transform: translateY(30px);
    opacity: 0;
}

.macbook.visible {
    transform: translateY(0);
    opacity: 1;
}

.macbook.exit-up {
    transform: translateY(-30px);
    opacity: 0;
}

.macbook-screen {
    width: 480px;
    height: 300px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 2px 2px 0 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 40px rgba(0,0,0,0.5), inset 0 0 30px rgba(255,255,255,0.02);
}

.macbook-base {
    width: 540px;
    height: 12px;
    background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
    border-radius: 0 0 2px 2px;
    margin-left: -30px;
    position: relative;
}

.macbook-notch {
    width: 80px;
    height: 4px;
    background: #333;
    border-radius: 0 0 4px 4px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.screen-content {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: 24px 1fr;
}

.mock-titlebar {
    grid-column: 1 / -1;
    background: #111;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    padding-left: 10px;
    gap: 5px;
}

.mock-titlebar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333;
}

.mock-titlebar span:first-child { background: #ff5f57; }
.mock-titlebar span:nth-child(2) { background: #febc2e; }
.mock-titlebar span:nth-child(3) { background: #28c840; }

.mock-sidebar {
    background: #0d0d0d;
    border-right: 1px solid #222;
}

.mock-sidebar-inner {
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-sidebar-item {
    height: 3px;
    background: #222;
    border-radius: 1px;
}

.mock-sidebar-item.active {
    background: #AC7A2A44;
}

.mock-main {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
}

.mock-greeting {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #e0e0e0;
    text-transform: lowercase;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.mock-dashboard {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-dashboard {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Dashboard stats row */
.dash-stats {
    display: flex;
    gap: 6px;
}

.dash-stat {
    flex: 1;
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 1px;
    padding: 8px 10px;
}

.dash-stat-label {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 5px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.dash-stat-value {
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #e0e0e0;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 6px;
}

.dash-stat-unit {
    font-size: 9px;
    color: #555;
    margin-left: 1px;
}

.dash-stat-bar {
    height: 2px;
    background: #222;
    border-radius: 1px;
    overflow: hidden;
}

.dash-stat-fill {
    height: 100%;
    background: #e0e0e0;
    border-radius: 1px;
    transition: width 0.6s ease;
}

.dash-stat-fill.gold {
    background: #AC7A2A;
}

/* Chart */
.dash-chart {
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 1px;
    padding: 8px 10px;
}

.dash-chart-label {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 5px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.dash-svg {
    width: 100%;
    display: block;
}

/* Bottom row */
.dash-bottom {
    display: flex;
    gap: 6px;
}

.dash-streak, .dash-mood {
    flex: 1;
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 1px;
    padding: 8px 10px;
}

.dash-streak-days {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.streak-day {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background: #222;
    font-size: 4px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'SF Mono', Monaco, monospace;
}

.streak-day.on {
    background: #AC7A2A33;
    color: #AC7A2A;
}

.dash-mood-dots {
    display: flex;
    gap: 4px;
    margin-top: 6px;
    align-items: center;
}

.mood-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.7;
}

/* Phone native layout */
.phone-stat-row {
    display: flex;
    gap: 4px;
}

.phone-stat {
    flex: 1;
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 1px;
    padding: 6px 7px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-stat-val {
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #e0e0e0;
    line-height: 1;
}

.phone-stat-lbl {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 4px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-chart-card {
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 1px;
    padding: 5px 6px 3px;
}

.phone-streak {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 6px 0 2px;
}

.phone-streak-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #222;
}

.phone-streak-dot.on {
    background: #AC7A2A;
    opacity: 0.6;
}

.mock-cards {
    display: flex;
    gap: 6px;
}

.mock-card {
    flex: 1;
    height: 40px;
    background: #111;
    border: 1px solid #222;
    border-radius: 1px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mock-card-label {
    height: 2px;
    width: 60%;
    background: #333;
    border-radius: 1px;
}

.mock-card-value {
    height: 3px;
    width: 40%;
    background: #AC7A2A66;
    border-radius: 1px;
}

.mock-chart {
    width: 100%;
    height: 50px;
    background: #111;
    border: 1px solid #222;
    border-radius: 1px;
    margin-top: 4px;
    position: relative;
    overflow: hidden;
}

.mock-chart::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    height: 25px;
    background: linear-gradient(90deg,
        transparent 0%, #AC7A2A22 15%, #AC7A2A33 30%,
        #AC7A2A22 45%, #AC7A2A44 60%, #AC7A2A33 75%,
        #AC7A2A55 90%, #AC7A2A44 100%);
    clip-path: polygon(0% 100%, 5% 80%, 15% 85%, 25% 40%, 35% 50%, 45% 20%, 55% 35%, 65% 10%, 75% 25%, 85% 5%, 95% 15%, 100% 8%, 100% 100%);
}

.mock-line {
    height: 3px;
    background: #222;
    border-radius: 1px;
}

.mock-line.w80 { width: 80%; }
.mock-line.w60 { width: 60%; }
.mock-line.w90 { width: 90%; }
.mock-line.w40 { width: 40%; }

/* IPHONE */
.iphone {
    width: 120px;
    height: 250px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 12px 8px;
    position: relative;
    box-shadow: 0 0 30px rgba(0,0,0,0.4), inset 0 0 20px rgba(255,255,255,0.02);
    opacity: 0;
    transform: translateX(20px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.iphone.visible {
    opacity: 1;
    transform: translateX(0);
}

.iphone-notch {
    width: 40px;
    height: 12px;
    background: #000;
    border-radius: 0 0 2px 2px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.iphone-screen {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 16px;
}

.phone-greeting-section {
    text-align: center;
    padding: 8px 0 10px;
}

.phone-greeting {
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #e0e0e0;
    text-transform: lowercase;
}


.mock-card-small {
    width: 100%;
    height: 28px;
    background: #111;
    border: 1px solid #222;
    border-radius: 1px;
}

/* FEATURE SELECTOR */
/* FEATURE WALL */
.feature-wall {
    display: flex;
    gap: 12px;
    height: 40vh;
    max-width: 700px;
    width: 100%;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.feature-wall.active {
    opacity: 1;
}

.feature-wall.exit-up {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.device-overlay.wall-mode {
    margin-top: -30vh;
}

.wall-col {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.wall-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: wallScroll var(--speed) linear infinite;
}

@keyframes wallScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.wall-item {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #333;
    padding: 8px 8px;
    border: 1px solid #141414;
    background: transparent;
    text-align: center;
    letter-spacing: 0.3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.wall-item:hover {
    color: #AC7A2A;
    border-color: #AC7A2A44;
}

.wall-fade-top,
.wall-fade-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
    z-index: 2;
}

.wall-fade-top {
    top: 0;
    background: linear-gradient(to bottom, #000 0%, transparent 100%);
}

.wall-fade-bottom {
    bottom: 0;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

/* DASHBOARD WIDGET SLOTS */
.mock-widget {
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 1px;
    padding: 6px;
    min-height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.mock-widget.filled {
    border-color: #AC7A2A33;
    background: #0a0a0a;
}

.widget-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.widget-empty-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #222;
}

.widget-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    animation: widgetIn 0.35s ease forwards;
}

@keyframes widgetIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.widget-content .wt {
    font-size: 4px;
    color: #555;
    font-family: 'SF Mono', Monaco, monospace;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Mini timer ring */
.mini-ring {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #AC7A2A;
    margin: 0 auto;
}

/* Mini journal lines */
.mini-lines { display: flex; flex-direction: column; gap: 2px; flex: 1; justify-content: center; }
.mini-line { height: 1.5px; background: #222; border-radius: 1px; }

/* Mini habit dots */
.mini-dots { display: flex; gap: 2px; align-items: center; }
.mini-d { width: 4px; height: 4px; border-radius: 50%; background: #222; }
.mini-d.on { background: #AC7A2A; }

/* Mini bars */
.mini-bars { display: flex; gap: 2px; align-items: flex-end; flex: 1; }
.mini-bar { flex: 1; background: #AC7A2A44; border-radius: 1px; }

/* Grid span for wide widgets when few are selected */
.mock-dashboard[style*="1fr 1fr 1fr"] .mock-widget:only-child {
    grid-column: 1 / -1;
}

/* TEXT */
.own-text {
    text-align: center;
    position: absolute;
    bottom: 20vh;
    left: 0;
    right: 0;
}

.own-label {
    font-size: 9px;
    color: #AC7A2A;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

.own-headline {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.own-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.own-text {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.own-text.enter {
    animation: fadeUp 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.own-text.exit {
    opacity: 0;
    transform: translateY(-8px);
}

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

/* MODULE BUILDER */
.builder-header {
    margin-bottom: 60px;
}

.builder-header h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.builder-header p {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.3px;
}

.modules-grid {
    display: grid;
    gap: 1px;
    background: #222;
    margin-bottom: 40px;
}

.module-card {
    background: #000;
    border: 1px solid #222;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 20px;
}

.module-card:has(.module-visual) {
    grid-template-columns: 32px 1fr 180px;
}
    align-items: start;
    position: relative;
}

.module-card:hover {
    background: #0a0a0a;
    border-color: #2a2a2a;
}

.module-card.selected {
    background: #0a1a0a;
    border-color: #AC7A2A;
    box-shadow: 0 0 20px rgba(172, 122, 42, 0.2);
}

.module-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid #333;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.module-card.selected .module-checkbox {
    background: #AC7A2A;
    border-color: #AC7A2A;
    box-shadow: 0 0 8px rgba(172, 122, 42, 0.4);
}

.checkmark {
    display: none;
    color: #000;
    font-size: 9px;
    font-weight: bold;
}

.module-card.selected .checkmark {
    display: block;
}

.module-content h3 {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-content p {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.module-content .module-detail {
    font-size: 10px;
    color: #555;
    font-style: italic;
    line-height: 1.5;
}

.module-visual {
    width: 100%;
    height: 100%;
    min-height: 80px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-visual span {
    font-size: 9px;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.selected-summary {
    background: #000;
    border: 1px solid #222;
    padding: 24px 28px;
    margin-bottom: 40px;
}

.summary-label {
    font-size: 9px;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.summary-content {
    font-size: 12px;
    color: #AC7A2A;
    letter-spacing: 0.3px;
}

.summary-content.empty {
    color: #555;
}

.builder-cta {
    background: #fff;
    color: #000;
    border: none;
    padding: 18px 40px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    cursor: pointer;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.builder-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.builder-cta:hover::before { left: 100%; }
.builder-cta:hover {
    background: #e0e0e0;
}

/* NOT FOR EVERYONE */
.exclusive .container {
    max-width: 650px;
}

.exclusive h2 {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.exclusive.in-view h2 {
    opacity: 1;
    transform: translateY(0);
}

.exclusive p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: #999;
    letter-spacing: 0.2px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.exclusive.in-view p {
    opacity: 1;
    transform: translateY(0);
}

.exclusive .container > p:nth-of-type(1) { transition-delay: 0.15s; }
.exclusive .container > p.emphasis { transition-delay: 0.7s; }

.exclusive-subhead {
    font-size: 10px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 32px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.exclusive.in-view .exclusive-subhead {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.exclusive-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.exclusive-checklist li {
    font-size: 13px;
    color: #e0e0e0;
    letter-spacing: 0.2px;
    padding-left: 28px;
    position: relative;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: calc(0.3s + var(--i) * 0.1s);
}

.exclusive.in-view .exclusive-checklist li {
    opacity: 1;
    transform: translateY(0);
}

.exclusive-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: calc(0.6s + var(--i) * 0.1s);
}

.exclusive.in-view .exclusive-checklist li::before {
    opacity: 1;
}

.capacity {
    margin: 36px 0;
    padding-top: 24px;
    border-top: 1px solid #222;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease 0.8s, transform 0.5s ease 0.8s;
}

.exclusive.in-view .capacity {
    opacity: 1;
    transform: translateY(0);
}

.capacity-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.capacity-label {
    font-size: 9px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.capacity-divider {
    width: 1px;
    height: 12px;
    background: #333;
    flex-shrink: 0;
}

.capacity-slot {
    font-size: 11px;
    color: #e0e0e0;
    letter-spacing: 0.5px;
}

.capacity-slot.full {
    color: #444;
    text-decoration: line-through;
    text-decoration-color: #333;
}

.capacity-slot.open {
    color: #AC7A2A;
}

.exclusive p.emphasis {
    color: #e0e0e0;
    font-size: 14px;
    margin-top: 24px;
}

/* HOW IT WORKS */
.process h2 {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process.in-view h2 {
    opacity: 1;
    transform: translateY(0);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 700px;
}

.process-step {
    background: #000;
    border: 1px solid #222;
    padding: 20px 28px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, background 0.3s ease;
    transition-delay: calc(0.2s + var(--i) * 0.15s);
}

.process.in-view .process-step {
    opacity: 1;
    transform: translateY(0);
}

.process-step:hover {
    border-color: #2a2a2a;
    background: #0a0a0a;
}

.process-arrow {
    display: flex;
    justify-content: center;
    padding: 4px 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    transition-delay: calc(0.4s + var(--i) * 0.15s);
}

.process.in-view .process-arrow {
    opacity: 1;
}

.process-arrow svg {
    width: 14px;
    height: 20px;
    opacity: 0.3;
}

.step-number {
    font-size: 36px;
    color: #181818;
    font-weight: 800;
    line-height: 1;
    transition: color 0.3s ease;
}

.process.in-view .process-step:hover .step-number {
    color: #AC7A2A22;
}

.step-content h3 {
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.step-content p {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* VISUAL DISCOVERY */
.visual h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.visual p {
    font-size: 12px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    letter-spacing: 0.2px;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #222;
}

.visual-item {
    background: #0a0a0a;
    border: 1px solid #222;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-item span {
    font-size: 10px;
    color: #333;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* FAQ */
.faq {
    justify-content: center;
    padding-top: 120px;
}

.faq h2 {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq.in-view h2 {
    opacity: 1;
    transform: translateY(0);
}

.faq-list {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #222;
}

.faq-item {
    background: #000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: calc(0.15s + var(--i) * 0.08s);
}

.faq.in-view .faq-item {
    opacity: 1;
    transform: translateY(0);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.faq-trigger:hover {
    background: #0a0a0a;
}

.faq-trigger h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin: 0;
}

.faq-icon {
    font-size: 16px;
    color: #444;
    font-weight: 300;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: #AC7A2A;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0 28px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* APPLICATION FORM */
.application-form {
    width: 100%;
    max-width: 420px;
    text-align: left;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 9px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-optional {
    color: #333;
    font-style: normal;
    letter-spacing: 1px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 1px;
    color: #f0f0f0;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    padding: 9px 12px;
    transition: border-color 0.3s ease;
    outline: none;
    -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: #AC7A2A;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-select option {
    background: #0a0a0a;
    color: #f0f0f0;
}

.application-form .hero-cta {
    padding: 14px 32px;
    font-size: 10px;
}

/* FINAL CTA */
.final-cta {
    text-align: center;
    padding: 100px 20px 0;
    align-items: center;
    justify-content: center;
    position: relative;
}

.final-cta > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.final-cta h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.final-cta.in-view h2 {
    opacity: 1;
    transform: translateY(0);
}

.final-cta .hero-cta {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s, background 0.3s ease, color 0.3s ease;
}

.final-cta.in-view .hero-cta {
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER */
footer {
    width: 100%;
    padding: 20px 20px 32px;
    text-align: left;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand {
    font-size: 13px;
    font-weight: 500;
    color: #e0e0e0;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 10px;
    color: #444;
    letter-spacing: 0.5px;
}

.footer-heading {
    font-size: 9px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 10px;
    color: #333;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.footer-col a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #e0e0e0;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #222;
    border-radius: 1px;
    transition: border-color 0.3s, background 0.3s;
}

.footer-socials a:hover {
    border-color: #333;
    background: #0a0a0a;
}

.footer-socials img {
    width: 14px;
    height: 14px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.footer-socials a:hover img {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 9px;
    color: #282828;
    letter-spacing: 1px;
}

/* LEGAL PAGES */
.legal-page {
    padding: 140px 20px 80px;
    border-bottom: none;
}

.legal-container {
    max-width: 700px;
}

.legal-page h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.legal-updated {
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 9px;
    color: #444;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.legal-page h2 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #f0f0f0;
    margin-top: 40px;
    margin-bottom: 12px;
}

.legal-page h3 {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-page p {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.legal-page ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
    margin-bottom: 4px;
}

.legal-page li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #444;
}

.legal-page a {
    color: #AC7A2A;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-page a:hover {
    color: #f0f0f0;
}

.legal-page strong {
    color: #ccc;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 { font-size: 28px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .module-card, .module-card:has(.module-visual) { grid-template-columns: 24px 1fr; gap: 16px; }
    .module-visual { margin-top: 12px; }
    .process-step { grid-template-columns: 40px 1fr; }
    .step-number { font-size: 32px; }
    .visual-grid { grid-template-columns: 1fr; }
}
/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid #222;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    height: 44px;
    width: auto;
    filter: invert(1);
}

.nav-logo span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #e0e0e0;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 11px;
    color: #666;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e0e0e0;
}

.nav-links a.nav-cta {
    color: #000;
    background: #fff;
    padding: 10px 24px;
    transition: background 0.3s, transform 0.3s;
}

.nav-links a.nav-cta:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
}

