/* ========================================
   RESET & VARIABLES
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #F5F2EE;
    --text: #1A1A1A;
    --text-dim: #71706E;
    --accent: #FF4D00;
    --border: #D4D0CC;
    --surface: #FFFFFF;
    --dark: #0F0F0F;
    --dark-text: #E8E5E1;
    --mono: 'JetBrains Mono', monospace;
    --sans: 'Instrument Sans', -apple-system, sans-serif;
    --display: 'Space Grotesk', sans-serif;
    --radius: 16px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.loading {
    overflow: hidden;
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

::selection {
    background: var(--accent);
    color: white;
}

/* ========================================
   GRAIN TEXTURE
   ======================================== */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--text);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transition: width 0.4s var(--ease), height 0.4s var(--ease), 
                border-color 0.3s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
    mix-blend-mode: exclusion;
}

.cursor-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: var(--text);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.cursor.hovering {
    width: 64px;
    height: 64px;
    border-color: var(--accent);
}

.cursor.hovering .cursor-inner {
    transform: translate(-50%, -50%) scale(0);
}

body:hover .cursor {
    opacity: 1;
}

@media (pointer: coarse) {
    .cursor, .cursor-trail { display: none; }
}

/* ========================================
   PAGE LOADER
   ======================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: clip-path 1s var(--ease);
    clip-path: inset(0 0 0 0);
}

.loader.done {
    clip-path: inset(0 0 100% 0);
}

.loader-counter {
    font-family: var(--display);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: -0.04em;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.1s linear;
}

.loader-word {
    font-family: var(--display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ========================================
   SCROLL PROGRESS
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 160px 0;
    position: relative;
}

@media (max-width: 768px) {
    section { padding: 100px 0; }
    .container { padding: 0 20px; }
}

/* ========================================
   SHARED ELEMENTS
   ======================================== */
.tag {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    display: inline-block;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.accent-text {
    color: var(--accent);
}

[id] {
    scroll-margin-top: 100px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(245, 242, 238, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: var(--border);
    padding: 14px 0;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-logo-text {
    font-family: var(--display);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.nav-logo-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--accent);
    transition: top 0.3s var(--ease);
}

.nav-links a:hover {
    color: transparent;
}

.nav-links a:hover::after {
    top: 0;
}

.nav-cta {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 10px 20px;
    border: 1.5px solid var(--text);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--text);
    color: var(--bg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.4s var(--ease), opacity 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 999;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 32px 40px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-links a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.5s ease, color 0.2s ease;
}

.mobile-menu.active .mobile-menu-links a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-links a:nth-child(5) { transition-delay: 0.3s; }

.mm-num {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
}

.mm-text {
    font-family: var(--display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 600;
}

.mobile-cta-link .mm-text {
    color: var(--accent);
}

.mobile-menu-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

/* Hero dot grid background */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 32px 80px;
    position: relative;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(2); }
}

.hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero rotating badge */
.hero-rotate-badge {
    position: relative;
    width: 80px;
    height: 80px;
    color: var(--text);
}

.hero-rotate-badge svg {
    animation: rotateBadge 12s linear infinite;
}

.rotate-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 700;
}

@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-headline {
    margin-bottom: 60px;
}

.hero-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    overflow: hidden;
}

.hero-word {
    font-family: var(--display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    display: inline-block;
    transform: translateY(120%);
    transition: transform 1s var(--ease);
}

.hero.animated .hero-word {
    transform: translateY(0);
}

.hero-line:nth-child(1) .hero-word:nth-child(1) { transition-delay: 0.1s; }
.hero-line:nth-child(1) .hero-word:nth-child(2) { transition-delay: 0.15s; }
.hero-line:nth-child(1) .hero-word:nth-child(3) { transition-delay: 0.2s; }
.hero-line:nth-child(2) .hero-word:nth-child(1) { transition-delay: 0.25s; }
.hero-line:nth-child(2) .hero-word:nth-child(2) { transition-delay: 0.3s; }
.hero-line:nth-child(2) .hero-word:nth-child(3) { transition-delay: 0.35s; }

.accent-word {
    color: var(--accent);
    font-style: italic;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-sub {
    font-size: 1.0625rem;
    color: var(--text-dim);
    max-width: 420px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s var(--ease) 0.6s;
}

.hero.animated .hero-sub {
    opacity: 1;
    transform: translateY(0);
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.8s, transform 0.8s var(--ease) 0.8s;
}

.hero.animated .hero-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Abstract Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape-float {
    position: absolute;
    color: var(--text);
    opacity: 0.08;
    animation: shapeFloat 25s ease-in-out infinite;
    animation-delay: calc(var(--i) * -3s);
}

.shape-float:nth-child(1) { top: 8%; left: 5%; animation-duration: 22s; }
.shape-float:nth-child(2) { top: 15%; right: 10%; animation-duration: 28s; }
.shape-float:nth-child(3) { top: 55%; left: 8%; animation-duration: 20s; }
.shape-float:nth-child(4) { top: 70%; right: 5%; animation-duration: 26s; }
.shape-float:nth-child(5) { top: 30%; right: 20%; animation-duration: 24s; }
.shape-float:nth-child(6) { bottom: 15%; left: 15%; animation-duration: 30s; }
.shape-float:nth-child(7) { top: 45%; right: 12%; animation-duration: 19s; }
.shape-float:nth-child(8) { bottom: 25%; right: 25%; animation-duration: 23s; }

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -20px) rotate(45deg); }
    50% { transform: translate(-10px, 15px) rotate(90deg); }
    75% { transform: translate(20px, 10px) rotate(135deg); }
}

@media (max-width: 768px) {
    .hero-inner {
        padding: 70px 20px 60px;
    }
    .hero-top {
        margin-bottom: 24px;
    }
    .hero-headline {
        margin-bottom: 36px;
    }
    .hero-line {
        gap: 0 12px;
    }
    .hero-word {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .hero-scroll-hint {
        display: none;
    }
    .hero-rotate-badge {
        display: none;
    }
    .hero-grid {
        background-size: 32px 32px;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-pill {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--text);
    color: var(--bg);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    transition: transform 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-pill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
    border-radius: inherit;
}

.btn-pill span {
    position: relative;
    z-index: 1;
}

.btn-pill:hover::after {
    transform: translateY(0);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    transition: transform 0.3s var(--ease);
}

.btn-text::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.btn-text:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-text svg {
    transition: transform 0.3s var(--ease);
}

.btn-text:hover svg {
    transform: translate(3px, -3px);
}

/* ========================================
   TICKER
   ======================================== */
.ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    gap: 32px;
    padding-right: 32px;
    animation: ticker 25s linear infinite;
    flex-shrink: 0;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-items: center;
}

.ticker-dot {
    color: var(--accent);
    font-size: 0.5rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.problem-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.big-text {
    font-family: var(--display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.bt-line {
    display: block;
}

.strike {
    text-decoration: line-through;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 3px;
    color: var(--text-dim);
}

.problem-card {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.problem-fix {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.problem-card p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.problem-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .problem-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   WHAT IS SECTION
   ======================================== */
.what-is-header {
    margin-bottom: 60px;
}

.what-is-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.wis-card {
    background: var(--surface);
    padding: 40px 32px;
    position: relative;
    transition: background 0.3s ease;
}

.wis-card:hover {
    background: var(--bg);
}

.wis-num {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--accent);
    display: block;
    margin-bottom: 16px;
}

.wis-card p {
    font-size: 1.0625rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.wis-card em {
    color: var(--text);
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 768px) {
    .what-is-cards {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    background: var(--dark);
    color: var(--dark-text);
}

.how-it-works .tag {
    color: rgba(255,255,255,0.4);
}

.how-it-works .section-title {
    color: var(--dark-text);
}

.hiw-header {
    margin-bottom: 80px;
}

.steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.step:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.step-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.step-number {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.step-line {
    width: 1px;
    flex: 1;
    min-height: 40px;
    background: rgba(255,255,255,0.08);
}

.step-title {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.step-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.7;
}

.step-moods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.step-mood {
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.step-mood:hover {
    border-color: var(--accent);
    color: var(--accent);
}

@media (max-width: 600px) {
    .step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
}

/* ========================================
   FEATURES - BENTO GRID
   ======================================== */
.features-header {
    margin-bottom: 60px;
}

.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.bento-item {
    background: var(--surface);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.bento-item:hover::before {
    transform: scaleX(1);
}

.bento-item:hover {
    background: #FAFAF8;
}

.bento-large { grid-column: span 4; grid-row: span 2; }
.bento-medium { grid-column: span 2; }
.bento-small { grid-column: span 2; }
.bento-wide { grid-column: span 6; display: flex; align-items: center; justify-content: space-between; }

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 16px;
}

.bento-item h3 {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.bento-item p {
    color: var(--text-dim);
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 320px;
}

/* Radius visual */
.radius-visual {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.radius-circle {
    position: absolute;
    border: 1px solid var(--border);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: radiusExpand 3s ease-in-out infinite;
}

.r1 { width: 40px; height: 40px; animation-delay: 0s; }
.r2 { width: 80px; height: 80px; animation-delay: 0.5s; }
.r3 { width: 120px; height: 120px; animation-delay: 1s; }

.radius-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes radiusExpand {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
}

@media (max-width: 900px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-large { grid-column: span 2; grid-row: span 1; }
    .bento-medium { grid-column: span 1; }
    .bento-small { grid-column: span 1; }
    .bento-wide { grid-column: span 2; flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 480px) {
    .bento {
        grid-template-columns: 1fr;
    }
    .bento-large, .bento-medium, .bento-small, .bento-wide {
        grid-column: span 1;
    }
}

/* ========================================
   NOT SECTION
   ======================================== */
.not-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.not-header {
    margin-bottom: 48px;
}

.not-list {
    display: flex;
    flex-direction: column;
}

.not-row {
    display: grid;
    grid-template-columns: 40px 1fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.3s var(--ease);
}

.not-row:last-child {
    border-bottom: none;
}

.not-row:hover {
    padding-left: 12px;
}

.not-x {
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 700;
}

.not-title {
    font-family: var(--display);
    font-size: 1.375rem;
    font-weight: 600;
}

.not-desc {
    color: var(--text-dim);
    font-size: 0.9375rem;
}

@media (max-width: 600px) {
    .not-row {
        grid-template-columns: 30px 1fr;
        gap: 12px;
    }
    .not-desc {
        grid-column: 2;
    }
}

/* ========================================
   WHO FOR - MARQUEE
   ======================================== */
.who-for {
    padding-bottom: 100px;
    overflow: hidden;
}

.who-for .container {
    margin-bottom: 48px;
}

.who-marquee {
    overflow: hidden;
    padding: 16px 0;
}

.who-marquee .marquee-track {
    display: flex;
    gap: 16px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.who-marquee.reverse .marquee-track {
    animation-direction: reverse;
}

.marquee-item {
    font-family: var(--display);
    font-size: clamp(1.125rem, 2.5vw, 1.75rem);
    font-weight: 600;
    white-space: nowrap;
    padding: 10px 28px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.marquee-item:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.marquee-sep {
    font-size: 1.5rem;
    color: var(--border);
    display: flex;
    align-items: center;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   PRIVACY
   ======================================== */
.privacy {
    background: var(--dark);
    color: var(--dark-text);
}

.privacy .tag {
    color: rgba(255,255,255,0.4);
}

.privacy .section-title {
    color: white;
}

.privacy-header {
    margin-bottom: 64px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
}

.privacy-item {
    padding: 32px;
    background: var(--dark);
    transition: background 0.3s ease;
}

.privacy-item:hover {
    background: #181818;
}

.pi-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pi-num {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--accent);
}

.privacy-item h4 {
    font-family: var(--display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: white;
}

.privacy-item p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .privacy-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FAQ
   ======================================== */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.faq-left .section-title {
    position: sticky;
    top: 120px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-q {
    font-size: 1.0625rem;
    font-weight: 500;
}

.faq-trigger:hover .faq-q {
    color: var(--accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon span {
    position: absolute;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.4s var(--ease);
}

.faq-icon span:first-child {
    width: 14px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon span:last-child {
    width: 1.5px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-dim);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 500px;
}

@media (max-width: 768px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-left .section-title {
        position: static;
    }
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    border-top: 1px solid var(--border);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-quote {
    font-family: var(--display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-top: 24px;
}

.about-arrow {
    color: var(--accent);
    font-size: 2rem;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-meta {
    margin-top: 40px;
    display: flex;
    gap: 40px;
}

.about-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ami-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.ami-value {
    font-weight: 600;
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 200px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* CTA Animated Orb */
.cta-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
}

.orb-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.orb-ring-1 {
    animation: orbSpin 20s linear infinite;
    border-style: dashed;
    border-color: var(--accent);
    opacity: 0.2;
}

.orb-ring-2 {
    inset: 60px;
    animation: orbSpin 15s linear infinite reverse;
    opacity: 0.15;
}

.orb-ring-3 {
    inset: 120px;
    animation: orbSpin 25s linear infinite;
    border-style: dotted;
    opacity: 0.12;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    transform: translate(-50%, -50%);
    background: var(--accent);
    border-radius: 50%;
    animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.8); opacity: 0.2; }
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-big-text {
    margin-bottom: 48px;
}

.cta-line {
    overflow: hidden;
}

.cta-line span {
    display: inline-block;
    font-family: var(--display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.cta-sub {
    font-size: 1.0625rem;
    color: var(--text-dim);
    max-width: 440px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border: 1.5px solid var(--text);
    border-radius: var(--radius);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}

.store-btn:hover {
    background: var(--text);
    color: var(--bg);
}

.store-btn div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-label {
    font-size: 0.6875rem;
    opacity: 0.7;
}

.store-name {
    font-size: 0.9375rem;
    font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--text-dim);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-seo {
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.footer-seo p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--text-dim);
    opacity: 0.7;
    max-width: 720px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--text-dim);
}

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }

/* ========================================
   MAGNETIC ELEMENTS
   ======================================== */
.magnetic {
    transition: transform 0.3s var(--ease);
}

/* ========================================
   SCREEN READER ONLY
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   LIVE MAP MOCKUP
   ======================================== */
.live-map {
    position: absolute;
    top: 36px;
    right: 36px;
    bottom: 36px;
    width: 55%;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #FAFAF8;
}

.map-streets {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--text);
}

/* User pins */
.map-user {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.map-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--text);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    font-family: var(--mono);
    position: relative;
    z-index: 2;
    animation: userBounce 3s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.3s);
}

.map-user.me .map-user-avatar {
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: white;
    font-size: 0.55rem;
}

.map-user-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--text);
    transform: translate(-50%, -50%);
    animation: userPulse 2.5s ease-out infinite;
    opacity: 0;
}

.me-pulse {
    border-color: var(--accent);
}

.map-user-radius {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    border: 1px dashed var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: radiusPulse 4s ease-in-out infinite;
}

@keyframes userBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes userPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

@keyframes radiusPulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.95); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.05); }
}

/* Event cards */
.map-event {
    position: absolute;
    transform: translate(-50%, -100%);
    z-index: 4;
    animation: eventFloat 4s ease-in-out infinite;
}

.map-event:nth-child(odd) { animation-delay: 0.5s; }

.map-event-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    white-space: nowrap;
    transition: transform 0.3s var(--ease);
}

.map-event-card:hover {
    transform: scale(1.05);
}

.map-event-emoji {
    font-size: 1rem;
}

.map-event-info {
    display: flex;
    flex-direction: column;
}

.map-event-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
}

.map-event-meta {
    font-size: 0.6rem;
    font-family: var(--mono);
    color: var(--text-dim);
}

.map-event-pin {
    width: 2px;
    height: 12px;
    background: var(--border);
    margin: 0 auto;
}

@keyframes eventFloat {
    0%, 100% { transform: translate(-50%, -100%) translateY(0); }
    50% { transform: translate(-50%, -100%) translateY(-4px); }
}

/* Map filter bar */
.map-filter-bar {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 4px;
    z-index: 5;
}

.map-filter {
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 500;
    background: var(--surface);
    color: var(--text-dim);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.map-filter.active {
    border-color: var(--accent);
    color: var(--accent);
}

@media (max-width: 900px) {
    .live-map {
        position: relative;
        width: 100%;
        height: 280px;
        top: auto;
        right: auto;
        bottom: auto;
        margin-top: 24px;
    }
}

/* ========================================
   LIVE ACTIVITY FEED
   ======================================== */
.live-feed {
    margin-bottom: 60px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
}

.live-feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-family: var(--mono);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-feed-scroll {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.live-feed-scroll::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--dark));
    pointer-events: none;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    animation: feedSlideIn 0.5s var(--ease) both;
    opacity: 0;
}

.feed-item:nth-child(1) { animation-delay: 0.1s; }
.feed-item:nth-child(2) { animation-delay: 0.2s; }
.feed-item:nth-child(3) { animation-delay: 0.3s; }
.feed-item:nth-child(4) { animation-delay: 0.4s; }
.feed-item:nth-child(5) { animation-delay: 0.5s; }

.live-feed.visible .feed-item {
    opacity: 1;
}

@keyframes feedSlideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.feed-emoji {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feed-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    flex: 1;
}

.feed-text strong {
    color: white;
    font-weight: 600;
}

.feed-time {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat-item {
    background: var(--surface);
    padding: 48px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
}

.stat-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
