:root {
    /* Base Colors */
    --bg-color: #fafafa;
    --text-main: #0a0a0a;
    --text-muted: #525252;
    --border-light: rgba(0, 0, 0, 0.06);
    --border-dark: rgba(255, 255, 255, 0.1);

    /* Accents */
    --brand-accent: #2563eb;
    --creator-accent: #d97706;
    --white: #ffffff;
    --dark: #0a0a0a;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --gradient-creator: linear-gradient(135deg, #f59e0b, #ec4899);

    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* UI Constants */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 9999px;

    /* Premium Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
    --shadow-glow-brand: 0 8px 32px rgba(59, 130, 246, 0.3);
    --shadow-glow-creator: 0 8px 32px rgba(245, 158, 11, 0.3);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

a,
button,
input {
    cursor: none;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--dark);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: rgba(0, 0, 0, 0.05);
    background-color: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(2px);
}

/* Ambient Background Glows */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

body::before {
    top: -20vw;
    left: -10vw;
    background: var(--gradient-brand);
}

body::after {
    bottom: -20vw;
    right: -10vw;
    background: var(--gradient-creator);
}

/* Typography */
.italic-highlight {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.italic-highlight.blue {
    color: var(--brand-accent);
}

.italic-highlight.gold {
    color: #8b5cf6;
}

.italic-highlight.dark {
    color: var(--text-main);
}

h1,
h2,
h3 {
    letter-spacing: -0.03em;
    font-weight: 600;
}

/* Navbar - Floating Glass Pill */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    width: calc(100% - 48px);
    max-width: 900px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-hidden {
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 150px;
    width: auto;
    margin: -50px 0 -50px -12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.toggle-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-pill);
    padding: 4px;
    border: 1px solid var(--border-light);
}

.nav-cta-btn {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.toggle-btn {
    background: transparent;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-btn.active {
    background: var(--white);
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

/* Page Containers */
.pages-wrapper {
    display: grid;
    align-items: start;
    position: relative;
}

.page-container {
    grid-area: 1 / 1;
    transition: opacity 0.5s ease, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.page-container.active-page {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
}


/* Hero Section */
.hero {
    position: relative;
    padding: 180px 24px 100px;
    text-align: center;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    border-radius: 0 0 64px 64px;
    overflow: hidden;
    background-color: var(--white);
}

#hero-brands {
    background-image: url('dwdwa.png');
    background-size: 85%;
}

#hero-creators {
    background-image: url('Untitled%20design%20(11).png');
    background-size: 85%;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 0) 60%, var(--bg-color) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero .subheading {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Primary Button */
.primary-btn {
    background: var(--dark);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.primary-btn:hover::before {
    opacity: 1;
}

#brands-page .primary-btn:hover {
    box-shadow: var(--shadow-glow-brand);
}

#creators-page .primary-btn:hover {
    box-shadow: var(--shadow-glow-creator);
}

/* Features Showcase Section */
.features-showcase {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.features-showcase-header {
    text-align: center;
    margin-bottom: 48px;
}

.features-showcase-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.15;
    margin-bottom: 20px;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Feature Card V2 */
.feature-card-v2 {
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px) saturate(150%);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.feature-card-v2:hover {
    transform: none;
    /* Let JS handle transform */
}

#brands-page .feature-card-v2:hover {
    box-shadow: var(--shadow-glow-brand);
}

#creators-page .feature-card-v2:hover {
    box-shadow: var(--shadow-glow-creator);
}

.feature-card-v2-inner {
    display: contents;
}

.feature-number {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    opacity: 0.4;
    margin-bottom: 20px;
}

.feature-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.feature-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card-v2 h3 {
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.feature-card-v2 p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.55;
    flex-grow: 1;
}

.feature-tag {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    background: var(--bg-color);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    align-self: flex-start;
}

@keyframes cardStagger {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* Bento Grid Section */
.feature-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
    max-width: 700px;
    margin-inline: auto;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    grid-template-areas:
        "A A B C"
        "D D E F";
}

.grid-card {
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.grid-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.grid-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.4;
}

.white-card {
    background: var(--white);
}

.dark-card {
    background: var(--dark);
    color: var(--white);
    border-color: var(--border-dark);
}

.light-blue-card {
    background: #f0f6ff;
    border-color: #dbeafe;
}

.large-accent-card {
    justify-content: center;
    color: var(--white);
    border: none;
}

.brand-accent {
    background: var(--gradient-brand);
}

.creator-accent {
    background: var(--gradient-creator);
}

.large-accent-card h3 {
    font-size: 24px;
}

.large-accent-card p {
    font-size: 15px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.secondary-btn {
    background: var(--white);
    color: var(--text-main);
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    align-self: flex-start;
    transition: transform 0.2s;
}

.secondary-btn:hover {
    transform: scale(1.05);
}

.pink-card {
    background: #fdf2f8;
    border-color: #fce7f3;
}

.chart-mockup {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    margin-top: 24px;
}

.bar {
    flex: 1;
    background: currentColor;
    border-radius: 6px 6px 0 0;
    opacity: 0.2;
    transition: opacity 0.3s;
}

.bar:hover {
    opacity: 1;
}

.image-card {
    padding: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    min-height: 200px;
    border: none;
}

.image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    border-radius: inherit;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.image-overlay h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.image-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

.stat-overlay {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Globe Section */
.globe-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.globe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 64px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.globe-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.globe-text h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.15;
    margin-bottom: 20px;
}

.globe-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.globe-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.globe-stat {
    display: flex;
    flex-direction: column;
}

.globe-stat-number {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.globe-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    margin-top: 2px;
}

.globe-canvas-wrap {
    aspect-ratio: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    /* This allows the canvas to act as an anchor container */
    anchor-name: --globe-container;
}

.globe-canvas-wrap canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.polaroid-marker {
    position: absolute;
    bottom: anchor(top);
    left: anchor(center);
    translate: -50% 0;
    margin-bottom: 8px;
    background: #fff;
    padding: 6px 6px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    transition: opacity 0.3s, filter 0.3s;
    z-index: 20;
}

.polaroid-marker img {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.polaroid-marker span {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: system-ui, sans-serif;
    font-size: 0.5rem;
    color: #333;
    letter-spacing: 0.02em;
}

#polaroid-sf {
    position-anchor: --cobe-polaroid-sf;
    opacity: var(--cobe-visible-polaroid-sf, 0);
    filter: blur(calc((1 - var(--cobe-visible-polaroid-sf, 0)) * 8px));
}

#polaroid-nyc {
    position-anchor: --cobe-polaroid-nyc;
    opacity: var(--cobe-visible-polaroid-nyc, 0);
    filter: blur(calc((1 - var(--cobe-visible-polaroid-nyc, 0)) * 8px));
}

#polaroid-tokyo {
    position-anchor: --cobe-polaroid-tokyo;
    opacity: var(--cobe-visible-polaroid-tokyo, 0);
    filter: blur(calc((1 - var(--cobe-visible-polaroid-tokyo, 0)) * 8px));
}

#polaroid-sydney {
    position-anchor: --cobe-polaroid-sydney;
    opacity: var(--cobe-visible-polaroid-sydney, 0);
    filter: blur(calc((1 - var(--cobe-visible-polaroid-sydney, 0)) * 8px));
}

#polaroid-paris {
    position-anchor: --cobe-polaroid-paris;
    opacity: var(--cobe-visible-polaroid-paris, 0);
    filter: blur(calc((1 - var(--cobe-visible-polaroid-paris, 0)) * 8px));
}

#polaroid-london {
    position-anchor: --cobe-polaroid-london;
    opacity: var(--cobe-visible-polaroid-london, 0);
    filter: blur(calc((1 - var(--cobe-visible-polaroid-london, 0)) * 8px));
}


/* Waitlist Section */
.waitlist-section {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #e0e7ff 0%, #fae8ff 100%);
    margin: 0 24px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

html.dark .waitlist-section {
    background: linear-gradient(135deg, #171717 0%, #0a0a0a 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-color);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.waitlist-box h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.waitlist-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 16px;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 8px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

html.dark .waitlist-form {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.waitlist-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    font-family: var(--font-sans);
}

.waitlist-form button {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 0 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s;
}

.waitlist-form button:hover {
    transform: scale(1.02);
}

/* Extended Waitlist Forms */
.extended-form {
    max-width: 480px;
    margin: 24px auto 0;
    text-align: left;
    padding: 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.5s ease forwards;
}

.extended-form h3 {
    margin-bottom: 8px;
    font-size: 24px;
    color: var(--text-main);
    text-align: center;
}

.extended-form p {
    margin-bottom: 24px;
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
}

.extended-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.extended-form input,
.extended-form select {
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--text-main);
    outline: none;
    transition: all 0.2s;
    width: 100%;
}

.extended-form input:focus,
.extended-form select:focus {
    border-color: var(--brand-blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.extended-form input[readonly] {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-muted);
    cursor: not-allowed;
}

.input-with-prefix {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-prefix .prefix {
    position: absolute;
    left: 20px;
    color: var(--text-muted);
    font-weight: 500;
}

.input-with-prefix input {
    padding-left: 44px;
}

.extended-form button {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
}

html.dark .extended-form {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

html.dark .extended-form input,
html.dark .extended-form select {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

html.dark .extended-form input:focus,
html.dark .extended-form select:focus {
    border-color: var(--brand-purple);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

html.dark .extended-form input[readonly] {
    background: rgba(255, 255, 255, 0.05);
}

.countdown {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: inline-block;
    margin-top: 12px;
}

/* Site Footer (Footer 7) */
.site-footer.new-footer {
    padding: 16px 0 0 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

@media (min-width: 1024px) {
    .footer-top {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
}

.footer-brand {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

@media (min-width: 1024px) {
    .footer-brand {
        align-items: flex-start;
    }
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-img {
    height: auto;
    max-height: 80px;
    width: 100%;
    max-width: 320px;
    object-fit: contain;
}



.footer-desc {
    max-width: 70%;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-socials a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: var(--text-main);
}

.footer-links-grid {
    display: grid;
    width: 100%;
    gap: 24px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-links-grid {
        gap: 80px;
    }
}

.footer-col h3 {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-main);
}

.footer-bottom {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
}

.footer-bottom p {
    order: 2;
}

@media (min-width: 1024px) {
    .footer-bottom p {
        order: 1;
    }
}

.footer-legal {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
    .footer-legal {
        order: 2;
        flex-direction: row;
        gap: 16px;
    }
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--text-main);
}

/* Reveal & Hero Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .subheading {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-content .primary-btn {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

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

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

/* Badge Shimmer */
.badge {
    position: relative;
    overflow: hidden;
}

.badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        left: 200%;
    }
}

/* Tilt Card Effects */
.feature-card-v2,
.grid-card {
    will-change: transform;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out, box-shadow 0.3s;
}

.feature-card-v2:hover,
.grid-card:hover {
    box-shadow: var(--shadow-lg);
}

.spotlight {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.spotlight-inner {
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 40%);
}

.dark-card .spotlight-inner,
.large-accent-card .spotlight-inner {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

/* Responsive */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "A A" "B C" "D D" "E F";
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 12px;
        width: calc(100% - 24px);
        padding: 12px 16px;
    }

    .hero {
        padding: 160px 24px 100px;
        border-radius: 0 0 40px 40px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .features-grid-3 {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "A" "B" "C" "D" "E" "F";
    }

    .globe-content {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }

    .globe-canvas-wrap {
        max-width: 320px;
    }

    .waitlist-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .waitlist-form input {
        background: var(--white);
        border: 1px solid var(--border-light);
        margin-bottom: 12px;
    }

    .waitlist-form button {
        padding: 16px;
    }

}

/* Text Highlight Utilities */
.italic-highlight {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
}

.italic-highlight.blue {
    color: var(--brand-accent);
}

.italic-highlight.purple {
    color: #8b5cf6;
}

.italic-highlight.gold {
    color: var(--creator-accent);
}

.italic-highlight.dark {
    color: var(--dark);
}

/* Feature Split Section */
.feature-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 24px;
}

.split-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.split-content p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

.split-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glass Wallet Card */
.glass-wallet-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 220px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

html.dark .glass-wallet-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(15, 15, 15, 0.4));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.glass-wallet-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.wallet-glow-1,
.wallet-glow-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    transition: all 0.5s ease;
}

.wallet-glow-1 {
    top: -60px;
    right: -60px;
    background: rgba(139, 92, 246, 0.15);
}

.wallet-glow-2 {
    bottom: -60px;
    left: -60px;
    background: rgba(59, 130, 246, 0.15);
}

.glass-wallet-card:hover .wallet-glow-1 {
    background: rgba(139, 92, 246, 0.25);
}

.glass-wallet-card:hover .wallet-glow-2 {
    background: rgba(59, 130, 246, 0.25);
}

.wallet-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 24px;
}

.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.wallet-title-row {
    display: flex;
    gap: 12px;
}

.wallet-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.wallet-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin: 0 0 4px 0;
}

.wallet-balance-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.wallet-balance-row h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.wallet-balance-row span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.wallet-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.05);
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.wallet-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wallet-card-number {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

.card-num-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.expiry {
    font-family: monospace;
    font-size: 12px;
}

.wallet-owner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.owner-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

.wallet-address {
    padding: 4px 12px;
    border-radius: 12px;
    background: var(--bg-color);
    font-family: monospace;
    font-size: 12px;
    color: var(--text-muted);
}

.wallet-hover-actions {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    border-radius: 24px;
}

html.dark .wallet-hover-actions {
    background: rgba(0, 0, 0, 0.6);
}

.glass-wallet-card:hover .wallet-hover-actions {
    opacity: 1;
}

.wallet-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.wallet-action-btn svg {
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: 50%;
    color: var(--white);
    transition: transform 0.2s;
}

.wallet-action-btn.primary svg {
    background: #8b5cf6;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.wallet-action-btn.secondary svg {
    background: var(--dark);
}

.wallet-action-btn span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

.wallet-action-btn:hover svg {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .feature-split-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .extended-form {
        padding: 24px 20px;
        margin: 16px auto 0;
        width: 100%;
        box-sizing: border-box;
    }

    .extended-form h3 {
        font-size: 20px;
    }

    .extended-form p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .glass-wallet-card {
        height: auto;
        min-height: 220px;
    }

    /* ===== MOBILE NAVBAR FIX ===== */
    .navbar {
        top: 12px;
        width: calc(100% - 24px);
        padding: 8px 12px;
        gap: 8px;
    }

    .logo-img {
        height: 36px;
        width: auto;
        margin: 0;
    }

    .toggle-container {
        position: static;
        transform: none;
        flex-shrink: 0;
    }

    .toggle-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .nav-cta-btn {
        padding: 8px 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    .nav-right {
        flex-shrink: 0;
    }
}