:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --accent-primary: #000000;
    --accent-hover: #333333;
    --text-primary: #000000;
    --text-secondary: #666666;
    --border-color: #eaeaea;
    --border-light: rgba(0, 0, 0, 0.06);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-serif: 'Playfair Display', serif;

    --easing: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

/* Clean Background without intense noise */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.1;
    z-index: -2;
    pointer-events: none;
}

.hero-bg {
    display: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: var(--text-primary);
}

.text-accent {
    color: var(--text-secondary);
}

.serif-italic {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    color: var(--text-primary);
    padding-left: 0.1em;
}

.eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    letter-spacing: -0.01em;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.bg-secondary {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    margin-bottom: 4rem;
}

.split-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
    margin-bottom: 4rem;
}

.split-header .section-title {
    margin-bottom: 0;
    flex: 1;
}

.split-header .section-desc {
    flex: 1;
    text-align: left;
    margin: 0;
}

.text-yellow {
    color: #F59E0B;
}

/* Feed Container for Mockup */
.feed-container {
    width: 100%;
    height: 200%;
    /* Two videos tall */
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}

.feed-item {
    width: 100%;
    height: 50%;
    /* 100% of the parent screen height */
    position: relative;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--easing);
    border: 1px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #fff;
    border: 1px solid var(--accent-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 199, 107, 0.4);
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.hero .btn-primary {
    /* Keep default btn-primary */
}

.hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 199, 107, 0.4);
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.hero .btn-outline {
    /* Keep default */
}

.hero .btn-outline:hover {
    border-color: #00c76b;
    background: #d8f5e5;
    color: #00c76b;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 199, 107, 0.4);
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-outline:hover {
    border-color: #00c76b;
    background: #d8f5e5;
    color: #00c76b;
}

.btn-large {
    font-size: 1rem;
    padding: 1rem 2.5rem;
}

.btn-full {
    width: 100%;
}

/* Top Nav */
.top-nav-wrapper {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 2rem;
}

.glass-nav {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    padding: 0.75rem 1rem;
    border-radius: 12px;
}

.nav-logo:hover {
    color: #00c76b;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    padding-left: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #00c76b;
}

.nav-cta {
    background-color: var(--text-primary);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background-color: var(--accent-primary);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hero Section - Scroll Sequence Layout */
.hero-scroll-sequence {
    height: 400vh;
    /* Massive height for scroll scrubbing */
    position: relative;
    background: linear-gradient(180deg, #d8f5e5 0%, #ffffff 100%);
    padding: 0;
}

.hero-sticky-wrap {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10rem;
    overflow: hidden;
}

.hero-container-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.hero-visual-centered {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    perspective: 1200px;
}

.hero-content {
    flex: 1;
    color: var(--text-primary);
}

.hero-content .hero-subtitle {
    color: var(--text-secondary);
}

.hero-content .metric-label {
    color: var(--text-secondary);
}

.hero-content .metric-value {
    color: var(--text-primary);
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 255, 136, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    line-height: 1;
}

.clip-wrap {
    display: block;
    overflow: hidden;
    line-height: 1.1;
}

.clip-text {
    display: block;
    transform: translateY(100%) rotate(4deg);
    opacity: 0;
    transform-origin: left bottom;
    animation: clipReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.clip-wrap:nth-child(2) .clip-text {
    animation-delay: 0.15s;
}

@keyframes clipReveal {
    100% {
        transform: translateY(0) rotate(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 30px;
    background-color: var(--border-color);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1200px;
}

.phone-glow {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: #ffffff;
    filter: blur(80px);
    opacity: 0.6;
    border-radius: 50px;
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.15;
        transform: scale(0.95);
    }

    100% {
        opacity: 0.25;
        transform: scale(1.05);
    }
}

/* Ultra Realistic Phone Mockup - Titanium Frame */
.phone-mockup.ultra-real {
    width: 320px;
    height: 650px;
    border-radius: 48px;
    background: #000;
    box-shadow:
        inset 0 0 0 2px #444,
        inset 0 0 0 6px #111,
        inset 0 0 0 8px #333,
        inset 0 0 4px 10px #000,
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 40px 100px rgba(0, 0, 0, 0.4);
    border: 4px solid #1c1c1c;
    position: relative;
    padding: 12px;
    transform: none;
    /* remove tilt */
    margin-bottom: -100px;
    /* float over next section slightly */
}

/* Hardware Buttons */
.hw-button {
    position: absolute;
    background: linear-gradient(90deg, #1c1c1c, #333, #1c1c1c);
    width: 4px;
    border-radius: 2px 0 0 2px;
    box-shadow: inset 1px 0 1px rgba(255, 255, 255, 0.2);
}

.action-btn-hw {
    top: 120px;
    left: -8px;
    height: 26px;
}

.vol-up-hw {
    top: 170px;
    left: -8px;
    height: 46px;
}

.vol-down-hw {
    top: 230px;
    left: -8px;
    height: 46px;
}

.power-hw {
    top: 180px;
    right: -8px;
    height: 70px;
    border-radius: 0 2px 2px 0;
    box-shadow: inset -1px 0 1px rgba(255, 255, 255, 0.2);
    left: auto;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 36px;
    position: relative;
    box-shadow: inset 0 0 0 1px #222;
}

.ultra-real-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 100;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.sensor-array {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.ir-sensor {
    width: 8px;
    height: 8px;
    background: #0a0a0a;
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(255, 0, 0, 0.1);
}

.camera-lens {
    width: 12px;
    height: 12px;
    background: #050505;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.1);
}

.lens-reflection {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(1px);
    transform: translate(-1px, -1px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    background: #111;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-ui {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 1.25rem 1.5rem;
    color: white;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
}

.ui-top {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.following-tab {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.following-tab.active {
    opacity: 1;
    font-weight: 600;
}

.ui-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80%;
}

.creator-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.creator-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=100&q=80') center/cover;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.creator-text {
    display: flex;
    flex-direction: column;
}

.creator-name {
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.creator-desc {
    font-size: 0.8rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.side-actions {
    position: absolute;
    right: 1rem;
    bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.action-btn:hover {
    transform: scale(1.1);
}

.action-count {
    font-size: 0.75rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.action-btn svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.action-btn.liked svg {
    fill: #ff2d55;
    stroke: #ff2d55;
}

.action-btn.bookmarked svg {
    fill: var(--accent-primary);
    stroke: var(--accent-primary);
}

.glass-toast {
    position: absolute;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.4s var(--easing);
    pointer-events: none;
    white-space: nowrap;
}

.glass-toast svg {
    color: var(--accent-primary);
}

.glass-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Logo Ticker Section */
.logo-ticker-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    background: #fff;
    overflow: hidden;
}

.ticker-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
    /* Fade edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--border-color);
    margin: 0 3rem;
    transition: color 0.3s ease;
}

.ticker-item:hover {
    color: var(--text-primary);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.col-span-2 {
    grid-column: span 2;
}

.bento-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--easing), border-color 0.4s;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
}

/* Linear Spotlight Effect */
.bento-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0),
            rgba(0, 255, 136, 0.4),
            transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.bento-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0),
            rgba(0, 255, 136, 0.05),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.bento-grid:hover .bento-card::before,
.bento-grid:hover .bento-card::after {
    opacity: 1;
}

.bento-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.col-span-2 .bento-content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.col-span-2 .bento-content.reverse-layout {
    flex-direction: row-reverse;
}

@media (max-width: 1024px) {

    .col-span-2 .bento-content,
    .bento-content.reverse-layout {
        flex-direction: column !important;
    }

    .feature-row {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem !important;
    }
}

.bento-text {
    flex: 1;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    transition: background 0.3s, color 0.3s;
}

.bento-card:hover .bento-icon {
    background: rgba(0, 199, 107, 0.15);
    color: #00c76b;
    border-color: rgba(0, 199, 107, 0.3);
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Graphics */
.bento-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bento-visual-top {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Radar Graphic */
.radar-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    position: relative;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
}

.radar-sweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 70%, rgba(0, 0, 0, 0.4) 100%);
    animation: sweep 4s linear infinite;
}

@keyframes sweep {
    100% {
        transform: rotate(360deg);
    }
}

.radar-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary);
}

.dot-1 {
    top: 30%;
    left: 60%;
    animation: blink 2s infinite;
}

.dot-2 {
    top: 60%;
    left: 30%;
    animation: blink 3s infinite 1s;
}

.dot-3 {
    top: 70%;
    left: 70%;
    animation: blink 2.5s infinite 0.5s;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.bento-card:hover .radar-sweep {
    background: conic-gradient(from 0deg, transparent 70%, rgba(0, 199, 107, 0.4) 100%);
}

.bento-card:hover .radar-dot {
    background: #00c76b;
    box-shadow: 0 0 10px #00c76b;
}

.bento-card:hover .radar-circle {
    border-color: rgba(0, 199, 107, 0.3);
    background: radial-gradient(circle, rgba(0, 199, 107, 0.05) 0%, transparent 70%);
}

/* Coin Stack Graphic */
.coin-stack {
    position: relative;
    width: 60px;
    height: 80px;
}

.coin {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    border: 2px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: grid;
    place-items: center;
    transition: transform 0.4s var(--easing);
}

.coin-symbol {
    font-weight: 800;
    color: #000000;
    font-size: 1.2rem;
}

.coin-3 {
    bottom: 0;
    transform: translateY(0) scale(0.9);
    z-index: 1;
    opacity: 0.5;
}

.coin-2 {
    bottom: 10px;
    transform: translateY(0) scale(0.95);
    z-index: 2;
    opacity: 0.8;
}

.coin-1 {
    bottom: 20px;
    transform: translateY(0) scale(1);
    z-index: 3;
}

.bento-card:hover .coin-1 {
    transform: translateY(-10px) scale(1.05);
}

.bento-card:hover .coin-2 {
    transform: translateY(-5px) scale(1);
}

.bento-card:hover .coin {
    border-color: rgba(0, 199, 107, 0.4);
    background: #f0fdf4;
}

.bento-card:hover .coin-symbol {
    color: #00c76b;
}

/* Security Rings Graphic */
.security-rings {
    position: relative;
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(0, 0, 0, 0.5);
}

.ring-outer {
    width: 100px;
    height: 100px;
    animation: spin 10s linear infinite;
}

.ring-inner {
    width: 70px;
    height: 70px;
    animation: spin-reverse 8s linear infinite;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--accent-primary);
}

.lock-core {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: grid;
    place-items: center;
    color: var(--accent-primary);
    z-index: 2;
}

.bento-card:hover .ring-outer {
    border-color: rgba(0, 199, 107, 0.2);
}

.bento-card:hover .ring-inner {
    border-color: rgba(0, 199, 107, 0.4);
    border-top-color: #00c76b;
}

.bento-card:hover .lock-core {
    color: #00c76b;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    100% {
        transform: rotate(-360deg);
    }
}

/* NFC Abstract Graphic */
.nfc-abstract {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nfc-phone {
    width: 60px;
    height: 120px;
    background: #e2e3e5;
    border-radius: 12px;
    padding: 2px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: rotate(15deg);
    transition: transform 0.4s var(--easing);
}

.nfc-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.nfc-screen::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(10px);
}

.nfc-waves {
    display: flex;
    gap: 4px;
}

.nfc-waves span {
    display: block;
    width: 4px;
    border-radius: 4px;
    background: var(--accent-primary);
    opacity: 0;
}

.nfc-waves span:nth-child(1) {
    height: 16px;
    animation: wave 1.5s infinite;
}

.nfc-waves span:nth-child(2) {
    height: 24px;
    animation: wave 1.5s infinite 0.2s;
}

.nfc-waves span:nth-child(3) {
    height: 32px;
    animation: wave 1.5s infinite 0.4s;
}

@keyframes wave {

    0%,
    100% {
        opacity: 0.2;
        transform: scaleY(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

.bento-card:hover .nfc-phone {
    transform: rotate(5deg) translateY(-10px);
    border-color: rgba(0, 199, 107, 0.5);
    background: #f0fdf4;
}

.bento-card:hover .nfc-waves span {
    background: #00c76b;
}

/* Tech Specs Section */
.feature-row {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.feature-text {
    flex: 1;
}

.tech-specs {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spec-item {
    border-left: 2px solid var(--border-color);
    padding-left: 1.5rem;
    transition: border-color 0.3s;
}

.spec-item.hover-accent:hover {
    border-left-color: var(--accent-primary);
}

.spec-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.spec-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1200px;
    height: 500px;
    align-items: center;
}

/* Realistic Wallet Mockup */
.wallet-mockup {
    position: relative;
    width: 320px;
    height: 400px;
    transform-style: preserve-3d;
    transition: transform 0.8s var(--easing);
}

.wallet-mockup:hover {
    transform: rotateX(5deg) rotateY(-5deg);
}

.premium-pass {
    position: absolute;
    width: 100%;
    height: 400px;
    /* Real wallet cards are tall */
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pass-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

.brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.bg-black {
    background: #000;
}

.bg-orange {
    background: #FF6B00;
}

.bg-green {
    background: #00c76b;
}

.pass-icon {
    color: rgba(255, 255, 255, 0.8);
}

.pass-body {
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
}

.pass-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.right-align {
    text-align: right;
}

.field-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.field-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.pass-barcode {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.barcode-lines {
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(90deg,
            #000,
            #000 2px,
            transparent 2px,
            transparent 4px,
            #000 4px,
            #000 7px,
            transparent 7px,
            transparent 9px);
}

.barcode-number {
    font-size: 0.6rem;
    color: #000;
    letter-spacing: 0.1em;
    font-family: monospace;
}

/* Stacking Base */
.card-1 {
    top: 0;
    background: #1a1a1a;
    z-index: 3;
}

.card-1 .pass-header,
.card-1 .pass-body {
    color: #fff;
}

.card-2 {
    top: 60px;
    background: #2a2a2a;
    z-index: 2;
    transform: scale(0.95);
}

.card-2 .pass-header,
.card-2 .pass-body {
    color: #fff;
}

.card-3 {
    top: 120px;
    background: #3a3a3a;
    z-index: 1;
    transform: scale(0.9);
}

.card-3 .pass-header,
.card-3 .pass-body {
    color: #fff;
}

/* Fan out on mockup hover */
.wallet-mockup:hover .card-1 {
    top: -20px;
}

.wallet-mockup:hover .card-2 {
    top: 80px;
    transform: scale(0.95);
}

.wallet-mockup:hover .card-3 {
    top: 180px;
    transform: scale(0.9);
}

/* Pop out specifically hovered card securely */
.wallet-mockup .premium-pass:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10 !important;
}

/* Testimonial Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.rating {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
}

.faq-accordion {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
}

.faq-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    display: grid;
    place-items: center;
    transition: transform 0.4s var(--easing);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--easing), padding 0.4s var(--easing);
    background: #fff;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-icon-wrap {
    transform: rotate(45deg);
    background: var(--accent-primary);
}

.faq-item.active .faq-icon-wrap svg {
    color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Waitlist Component - Light Mode Update */
.relative-z {
    position: relative;
    z-index: 2;
}

.waitlist-card-large {
    border-radius: 24px;
    padding: 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: #ffffff;
    color: var(--text-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: #d8f5e5;
    filter: blur(100px);
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.border-glow {
    position: relative;
}

.waitlist-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.waitlist-content .section-title {
    color: var(--text-primary);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.waitlist-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-item svg {
    color: #10b981;
    /* Explicit soft green for checkmarks */
}

.waitlist-form {
    flex: 1;
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-disclaimer {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    padding: 8rem 0 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #d8f5e5 100%);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-brand-col {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-mission {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links-grid {
    display: flex;
    gap: 4rem;
}

.link-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.link-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.link-col a:hover {
    color: #00c76b;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s var(--easing) both;
}

.fade-up {
    animation: fadeUp 1s var(--easing) both;
}

.stagger-fade>* {
    animation: fadeUp 1s var(--easing) both;
}

.stagger-fade>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-fade>*:nth-child(2) {
    animation-delay: 0.2s;
}

.reveal-on-scroll .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--easing), transform 1s var(--easing);
}

.reveal-on-scroll.is-visible .reveal-up {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s var(--easing), transform 1s var(--easing);
}

.reveal-on-scroll.is-visible .reveal-left {
    opacity: 1;
    transform: translateX(0);
}

.reveal-on-scroll .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s var(--easing), transform 1s var(--easing);
}

.reveal-on-scroll.is-visible .reveal-right {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 1s var(--easing), transform 1s var(--easing);
}

.reveal-on-scroll.is-visible .scale-up {
    opacity: 1;
    transform: scale(1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive */
@media (max-width: 1024px) {

    .hero .container,
    .feature-row,
    .waitlist-card-large {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .hero-title,
    .huge-text,
    .section-title {
        font-size: 3rem;
    }

    .bento-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .col-span-2 {
        grid-column: span 1;
    }

    .hero-visual,
    .feature-visual {
        align-self: center;
        margin-top: 4rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .waitlist-card-large {
        padding: 3rem;
    }
}

#dashboard {
    transform: perspective(1200px) rotateX(40deg) translateY(100px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: bottom center;
}

#dashboard.is-visible {
    transform: perspective(1200px) rotateX(0deg) translateY(0);
    opacity: 1;
}

/* Full Screen Modal */
#partner-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

#partner-modal.show {
    display: block;
    opacity: 1;
}

.partner-modal-container {
    background: #fff;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.partner-modal-left {
    flex: 1;
    min-width: 0;
    background: #000;
    padding: 0;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.partner-modal-right {
    flex: 1;
    min-width: 0;
    min-height: 0;
    height: 100%;
    background: #fff;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    position: relative;
    color: #333;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.partner-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.partner-close-btn:hover {
    background: #eaeaea;
    transform: scale(1.05);
}

.partner-form {
    max-width: 500px;
}

.partner-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.partner-form input, .partner-form select, .partner-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: #fafafa;
    transition: border-color 0.2s;
    margin-bottom: 1.5rem;
}

.partner-form input:focus, .partner-form select:focus, .partner-form textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 1px #000;
}

@media (max-width: 1024px) {
    .partner-modal-container {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }
    .partner-modal-left, .partner-modal-right {
        width: 100%;
        padding: 4rem 2rem;
    }
    .partner-modal-left {
        position: relative;
        height: auto;
    }
    .partner-modal-right {
        overflow-y: visible;
    }
}

.partner-form .form-row {
    display: flex;
    gap: 1.5rem;
}
.partner-form .form-group {
    flex: 1;
}

.merchant-bento-grid {
    gap: 1.5rem;
    grid-template-rows: auto;
}

.section-desc {
    margin: 1.5rem 0 0;
    max-width: 600px;
    color: var(--text-secondary);
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: left;
}

.ai-sparkle-text {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #00c76b;
    font-weight: 700;
    position: relative;
    background: linear-gradient(90deg, #00c76b, #00ff88, #00c76b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}
.sparkle-icon {
    width: 20px;
    height: 20px;
    stroke: #00c76b;
    animation: pulse-sparkle 2s ease-in-out infinite alternate;
}
@keyframes shine {
    to { background-position: 200% center; }
}
@keyframes pulse-sparkle {
    0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    100% { transform: scale(1.1) rotate(10deg); opacity: 1; filter: drop-shadow(0 0 8px rgba(0,255,136,0.6)); }
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
