/* ============================================================
   FOUNDER WHO — STYLES v4
   Golden header, horizontal hero, COMMUNITY scroll word,
   form with dropdown, word-by-word spectators, 5-event orbit
   on black bg, gold footer with logo
   ============================================================ */

/* ═══ TOKENS ═══ */
:root {
    --white: #F6F4F0;
    --black: #292929;
    --gold: #FFD700;
    --neon: #FF0077;
    --bpink: #DD7DB0;
    --fg: Space Grotesk, sans-serif;
    --fd: Playfair Display, serif;
}

/* ═══ RESET ═══ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--fg);
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: var(--neon);
    color: #fff;
}

/* ═══ CUSTOM CURSOR ═══ */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--neon);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    transition: transform .05s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    pointer-events: none;
    transition: width .3s, height .3s, border-color .3s;
}

@media(max-width:768px) {

    .cursor,
    .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* ═══ LOADER ═══ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity .6s, visibility .6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo-img {
    width: 240px;
    height: 240px;
    border-radius: 16px;
    animation: pulse 1s infinite;
    object-fit: contain;
}

.loader-bar {
    width: 120px;
    height: 3px;
    background: rgba(0, 0, 0, .15);
    border-radius: 3px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0;
    background: var(--neon);
    border-radius: 3px;
    animation: loadfill 2.2s ease forwards;
}

@keyframes loadfill {
    to {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }
}

/* ═══ NAVBAR — GOLDEN ═══ */
.gold-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: #FFD700;
    transition: all .5s ease;
    opacity: 1;
    transform: translateY(0);
}

.gold-nav.scrolled {
    padding: .75rem 3rem;
    background: rgba(255, 215, 0, .97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .15);
    backdrop-filter: blur(12px);
}

.gold-nav.faded {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.nav-logo-img {
    width: 160px;
    height: 80px;
    border-radius: 10px;
    object-fit: contain;
}

.gold-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.gold-nav .nav-links a {
    font-family: var(--fg);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--black);
    transition: color .3s;
}

.gold-nav .nav-links a:hover {
    color: var(--neon);
}

.gold-nav .nav-cta {
    background: var(--neon);
    color: #fff !important;
    padding: .6rem 1.6rem;
    border-radius: 100px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    background-size: 300% 300%;
}

.gold-nav .nav-cta:hover {
    background: linear-gradient(135deg, var(--neon), #FFD700, #a78bfa, #34d399, var(--neon));
    background-size: 400% 400%;
    animation: navCtaColorShift 2s ease infinite;
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(255, 0, 119, .4);
    color: #fff !important;
}

@keyframes navCtaColorShift {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 100%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 0%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ═══ WAVE TEXT HOVER ANIMATION (EXPERIENCES) ═══ */
.nav-wave-link {
    position: relative;
    display: inline-block;
}

.wave-text {
    display: inline-flex;
    position: relative;
}

.wave-char {
    display: inline-block;
    transition: transform .2s ease;
}

.nav-wave-link:hover .wave-char {
    animation: waveCharBounce .6s ease infinite;
}

@keyframes waveCharBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--black);
    transition: all .3s;
}

@media(max-width:768px) {
    .gold-nav .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    z-index: 999;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right .4s;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--black);
}

/* ═══ HERO — ANIMATED DARK BG, 3D TILT, COLORED TEXT ═══ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 3rem;
    background: #050505;
    perspective: 1200px;
}

/* Animated dark gradient background */
.hero::before {
    content: '';
    position: absolute;
    inset: -50%;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, .06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 0, 119, .05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(167, 139, 250, .04) 0%, transparent 50%),
        conic-gradient(from 0deg at 50% 50%, #0a0a0a, #111118, #0d0d14, #0a0a0a);
    animation: heroGradientRotate 20s linear infinite;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 0, 119, .03) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255, 215, 0, .03) 0%, transparent 40%);
    animation: heroPulseGradient 8s ease-in-out infinite alternate;
}

@keyframes heroGradientRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes heroPulseGradient {
    0% {
        opacity: .4;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Cursor-following gradient glow (AR/VR effect) */
.hero-cursor-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 215, 0, .12) 0%,
            rgba(255, 0, 119, .06) 25%,
            rgba(167, 139, 250, .04) 45%,
            transparent 70%);
    z-index: 1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .4s ease;
    mix-blend-mode: screen;
    filter: blur(30px);
    will-change: left, top, opacity;
}

/* Ambient glow orbs */
.hero-bg-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: .30;
    animation: glowDrift 12s ease-in-out infinite;
    mix-blend-mode: screen;
}

.g1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #FFD700 0%, rgba(255, 215, 0, .3) 30%, transparent 70%);
    top: -20%;
    left: -15%;
    animation-delay: 0s;
}

.g2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #FF0077 0%, rgba(255, 0, 119, .3) 30%, transparent 70%);
    bottom: -15%;
    right: -12%;
    animation-delay: 4s;
}

.g3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #a78bfa 0%, rgba(167, 139, 250, .25) 30%, transparent 70%);
    top: 45%;
    left: 50%;
    opacity: .18;
    animation-delay: 8s;
}

@keyframes glowDrift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.15);
    }

    66% {
        transform: translate(-20px, 20px) scale(1.05);
    }
}

/* Film grain overlay */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
}

/* 3D scene container — tilt target */
.hero-3d-scene {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
    transition: transform .15s ease-out;
    will-change: transform;
    width: 100%;
    flex: 1;
    justify-content: center;
}

.hero-carousel {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity .6s;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.hero-slide.exit {
    opacity: 0;
}

.hero-headline {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(2.2rem, 5.5vw, 4.4rem);
    line-height: 1.18;
    letter-spacing: -.02em;
    text-align: center;
}

.hw {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordIn .5s ease forwards;
}

.hero-slide.active .hw {
    animation: wordIn .5s ease forwards;
}

/* Word color classes */
.hw-white {
    color: #fff;
}

.hw-gold {
    color: #FFD700;
}

.hw-pink {
    color: #FF69B4;
    font-style: italic;
}

/* Timing delays */
.hw:nth-child(1) {
    animation-delay: .1s;
}

.hw:nth-child(2) {
    animation-delay: .18s;
}

.hw:nth-child(3) {
    animation-delay: .26s;
}

.hw:nth-child(4) {
    animation-delay: .34s;
}

.hw:nth-child(5) {
    animation-delay: .42s;
}

.hw:nth-child(6) {
    animation-delay: .50s;
}

.hw:nth-child(7) {
    animation-delay: .58s;
}

.hw:nth-child(8) {
    animation-delay: .66s;
}

.hw:nth-child(9) {
    animation-delay: .74s;
}

.hw:nth-child(10) {
    animation-delay: .82s;
}

.hw:nth-child(11) {
    animation-delay: .9s;
}

.hw:nth-child(12) {
    animation-delay: .98s;
}

.hw:nth-child(13) {
    animation-delay: 1.06s;
}

.hw:nth-child(14) {
    animation-delay: 1.14s;
}

@keyframes wordIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle line */
.hero-sub-line {
    font-family: var(--fd);
    font-style: italic;
    font-size: clamp(.85rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, .35);
    letter-spacing: .15em;
    margin-top: 1.5rem;
}

.hero-dots {
    display: flex;
    gap: .6rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: all .3s;
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Hero bottom area — CTA + scroll arrow fixed at bottom */
.hero-bottom-area {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.hero-cta {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 1.1rem 2.8rem;
    background: var(--neon);
    color: #fff;
    font-family: var(--fg);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 100px;
    letter-spacing: .05em;
    transition: transform .4s cubic-bezier(.23, 1, .32, 1), box-shadow .4s ease;
    box-shadow: 0 8px 30px rgba(255, 0, 119, .35);
    overflow: hidden;
    white-space: nowrap;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    transform: translateY(-50%) skewX(-20deg);
    transition: left .6s ease;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 16px 50px rgba(255, 0, 119, .5), 0 0 20px rgba(255, 215, 0, .2);
}

.hero-cta:hover::after {
    left: 120%;
}

/* Scroll down arrow */
.hero-scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, .45);
    font-size: .7rem;
    font-family: var(--fg);
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: scrollArrowBounce 2s ease-in-out infinite;
}

.hero-scroll-arrow svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, .45);
    stroke-width: 2;
    fill: none;
}

@keyframes scrollArrowBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: .5;
    }

    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

/* ═══ INFINITE TEXT SCROLL STRIP (Hero → Community) ═══ */
.infinite-scroll-strip {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FFB300 100%);
    overflow: hidden;
    padding: .9rem 0;
    white-space: nowrap;
    position: relative;
}

.infinite-scroll-strip::before,
.infinite-scroll-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.infinite-scroll-strip::before {
    left: 0;
    background: linear-gradient(to right, #FFD700, transparent);
}

.infinite-scroll-strip::after {
    right: 0;
    background: linear-gradient(to left, #FFB300, transparent);
}

.infinite-scroll-track {
    display: inline-block;
    animation: infiniteScroll 18s linear infinite;
    font-family: var(--fg);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--black);
}

@keyframes infiniteScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}

/* ═══ BIG WORD — COMMUNITY ═══ */
.bigword-section {
    height: 200vh;
    position: relative;
    background: linear-gradient(135deg, #F6F4F0 0%, #FFF3C4 25%, #FFD6E8 55%, #FBB5D0 75%, #D4E4FF 100%);
}

.bigword-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bigword {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(80px, 15vw, 200px);
    color: #FF69B4;
    letter-spacing: -.03em;
    white-space: nowrap;
    line-height: 1;
    transition: transform .05s linear, opacity .05s linear, filter .05s linear;
    will-change: transform, opacity, filter;
}

.bigword-sub {
    font-family: var(--fd);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: var(--black);
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
    font-style: italic;
    margin-top: 1rem;
}

.bigword-sub.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ INFINITY SCROLL ANIMATION (Whole Website) ═══ */
.infinity-scroll-section {
    opacity: 0;
    transform: translateY(80px) scale(0.97);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.infinity-scroll-section.infinity-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered children animation within each section */
.infinity-scroll-section.infinity-visible .section-container>*,
.infinity-scroll-section.infinity-visible .sr>*,
.infinity-scroll-section.infinity-visible .footer-inner>*,
.infinity-scroll-section.infinity-visible .bigword-sticky>* {
    animation: infinityChildIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.infinity-scroll-section.infinity-visible .section-container>*:nth-child(1),
.infinity-scroll-section.infinity-visible .sr>*:nth-child(1),
.infinity-scroll-section.infinity-visible .footer-inner>*:nth-child(1),
.infinity-scroll-section.infinity-visible .bigword-sticky>*:nth-child(1) {
    animation-delay: 0.1s;
}

.infinity-scroll-section.infinity-visible .section-container>*:nth-child(2),
.infinity-scroll-section.infinity-visible .sr>*:nth-child(2),
.infinity-scroll-section.infinity-visible .footer-inner>*:nth-child(2),
.infinity-scroll-section.infinity-visible .bigword-sticky>*:nth-child(2) {
    animation-delay: 0.2s;
}

.infinity-scroll-section.infinity-visible .section-container>*:nth-child(3),
.infinity-scroll-section.infinity-visible .sr>*:nth-child(3),
.infinity-scroll-section.infinity-visible .footer-inner>*:nth-child(3),
.infinity-scroll-section.infinity-visible .bigword-sticky>*:nth-child(3) {
    animation-delay: 0.3s;
}

.infinity-scroll-section.infinity-visible .section-container>*:nth-child(4),
.infinity-scroll-section.infinity-visible .sr>*:nth-child(4) {
    animation-delay: 0.4s;
}

.infinity-scroll-section.infinity-visible .section-container>*:nth-child(5),
.infinity-scroll-section.infinity-visible .sr>*:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes infinityChildIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll behavior for the entire page */
html {
    scroll-behavior: smooth;
}

/* Section transitions for seamless flow */
.infinity-scroll-section+.infinity-scroll-section {
    margin-top: 0;
}

/* Parallax-like depth effect on scroll */
.infinity-parallax-bg {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* ═══ FORM SECTION (directly after marquee) ═══ */
.form-section {
    background: linear-gradient(180deg, var(--white) 0%, #eae7e1 100%);
    position: relative;
    padding: 5rem 2rem;
}

.form-headline {
    font-family: var(--fd);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: .6rem;
    letter-spacing: -.04em;
}

.form-sub {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-family: var(--fd);
    font-style: italic;
}

.hl-pink {
    color: var(--neon);
    font-style: italic;
}

/* ═══ FORM CARD ═══ */
.fwrap {
    width: 100%;
    max-width: 640px;
    perspective: 900px;
}

.fc {
    background: #fff;
    border-radius: 22px;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 8px 60px rgba(255, 0, 119, .08), 0 1px 3px rgba(0, 0, 0, .06);
    position: relative;
    overflow: hidden;
}

.fc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--neon), var(--gold), var(--bpink));
}

.fc-wm {
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-family: var(--fd);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 0, 119, .04);
    pointer-events: none;
    line-height: 1;
}

.flock {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--neon);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.fh {
    font-family: var(--fd);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .3rem;
}

.fsb {
    font-size: .9rem;
    color: #888;
    font-style: italic;
    font-family: var(--fd);
    margin-bottom: 1.5rem;
}

/* Form divider */
.fdiv {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.2rem;
}

.fdiv span {
    flex: 1;
    height: 1px;
    background: #eee;
}

/* Form rows */
.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media(max-width:600px) {
    .frow {
        grid-template-columns: 1fr;
    }
}

.fg {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.fg-full {
    grid-column: 1 / -1;
}

.fg label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #666;
}

.rs {
    color: var(--neon);
}

.fg input,
.fg select {
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    padding: .85rem 1rem;
    font-size: .95rem;
    font-family: var(--fg);
    background: #fafafa;
    transition: border .3s, box-shadow .3s;
    outline: none;
    width: 100%;
}

.fg input:focus,
.fg select:focus {
    border-color: var(--neon);
    box-shadow: 0 0 0 3px rgba(255, 0, 119, .08);
}

.fg input.err,
.fg select.err {
    border-color: red;
}

/* Select/dropdown wrapper */
.select-wrap {
    position: relative;
}

.select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
}

.select-wrap::after {
    content: '▾';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #999;
    pointer-events: none;
}

/* Submit */
.isub {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--neon), #e0006a);
    color: #fff;
    font-family: var(--fg);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    margin-top: .5rem;
    transition: transform .3s, box-shadow .3s;
    letter-spacing: .03em;
}

.isub:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 119, .35);
}

.iarr {
    font-size: 1.3rem;
    transition: transform .3s;
}

.isub:hover .iarr {
    transform: translate(3px, -3px);
}

.fnote {
    text-align: center;
    font-size: .78rem;
    color: #bbb;
    margin-top: 1rem;
    font-family: var(--fd);
    font-style: italic;
}

/* Success */
.succ {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.succ.on {
    display: block;
    animation: popUp .5s ease;
}

.succ-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--neon);
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.succ h3 {
    font-family: var(--fd);
    font-size: 1.5rem;
    margin-bottom: .4rem;
}

.succ p {
    color: #888;
}

/* ═══ SCROLL ANIMATIONS ═══ */
.anim-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease;
}

.anim-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-pop {
    opacity: 0;
    transform: scale(.92);
    transition: all .7s ease;
}

.anim-pop.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes popUp {
    from {
        opacity: 0;
        transform: scale(.85)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

/* ═══ SECTION UTILITIES ═══ */
.section {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.sec-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 1.2rem;
    text-align: center;
}

.dark-section {
    background: var(--black);
    color: #fff;
}

.dark-section .sec-label {
    color: var(--gold);
}

/* ═══ FOUNDER REDEFINED — OWNERSHIP PLACARDS (unchanged) ═══ */
.founder-section {
    padding: 6rem 2rem 4rem;
}

.redef-line {
    font-family: var(--fd);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    text-align: center;
    line-height: 1.3;
    margin-bottom: .5rem;
}

.redef-accent {
    color: var(--gold);
}

.redef-accent em {
    color: var(--neon);
    font-style: italic;
}

.ownership-scroll {
    position: relative;
    margin-top: 3rem;
    min-height: 260px;
    perspective: 800px;
}

.own-card {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 2.5rem;
    opacity: 0;
    transform: rotateY(90deg);
    transition: all .5s ease;
    pointer-events: none;
}

.own-card-active {
    opacity: 1;
    transform: rotateY(0deg);
    pointer-events: auto;
}

.own-card.exit-left {
    transform: rotateY(-90deg);
    opacity: 0;
}

.own-num {
    font-family: var(--fd);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 215, 0, .15);
    position: absolute;
    right: 2rem;
    top: 1rem;
    line-height: 1;
}

.own-title {
    font-family: var(--fd);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: .8rem;
}

.own-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    max-width: 500px;
}

.own-dots {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.own-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: all .3s;
}

.own-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ═══ SPECTATORS — WORD-BY-WORD ═══ */
.spec-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.spec-center {
    text-align: center;
}

.spec-line {
    font-family: var(--fd);
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: .5rem;
}

/* Word-by-word animation for spectators */
.spec-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .5s ease, transform .5s ease;
}

.spec-word.word-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animated strikethrough on "spectators" */
.spec-strike-word {
    position: relative;
    color: var(--black);
}

.spec-strike-word::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 3px;
    background: var(--neon);
    transition: width .8s ease .3s;
}

.spec-strike-word.struck::after {
    width: 100%;
}

/* "builders" highlight */
.hl-pink-word {
    color: var(--neon);
    font-style: italic;
}

/* ═══ EXPERIENCES — USER'S EXACT ORBIT ═══ */
.exp-sec {
    padding: 100px 48px;
    background: var(--black);
    color: #fff;
}

@media(max-width:640px) {
    .exp-sec {
        padding: 76px 16px;
    }
}

.sr {
    max-width: 1100px;
    margin: 0 auto;
}

.eye {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.exp-hl {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(22px, 3.6vw, 44px);
    letter-spacing: -.04em;
    line-height: .92;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 8px;
}

.exp-sub {
    font-family: var(--fd);
    font-size: clamp(14px, 1.8vw, 18px);
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 56px;
}

.orbit-wrap {
    display: flex;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
}

@media(max-width:860px) {
    .orbit-wrap {
        flex-direction: column;
        gap: 40px;
    }
}

.orbit-ring {
    position: relative;
    width: 480px;
    height: 480px;
    flex-shrink: 0;
    margin: 0 auto;
}

@media(max-width:540px) {
    .orbit-ring {
        width: 320px;
        height: 320px;
    }
}

/* Outer orbit ring — dashed with warm glow */
.orbit-ring::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 2px dashed rgba(240, 194, 127, .4);
    animation: orbitSpin 36s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, .12));
}

/* Second decorative ring — warm gold accent */
.orbit-ring::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, .12);
    animation: orbitSpin 50s linear infinite;
    pointer-events: none;
}

.orbit-ring-inner {
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    border: 1px solid rgba(240, 194, 127, .22);
    pointer-events: none;
    animation: orbitSpin 60s linear infinite reverse;
    box-shadow: 0 0 24px rgba(255, 215, 0, .08), inset 0 0 24px rgba(240, 194, 127, .06);
}

/* Third decorative ring */
.orbit-ring-inner::before {
    content: "";
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    border: 1px dotted rgba(255, 107, 157, .1);
    animation: orbitSpin 80s linear infinite;
}

@keyframes orbitSpin {
    100% {
        transform: rotate(360deg);
    }
}

/* Ambient glow behind the whole orbit */
.orbit-wrap::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 194, 127, .08) 0%, rgba(196, 68, 122, .04) 40%, transparent 70%);
    pointer-events: none;
    animation: orbitAmbientPulse 5s ease-in-out infinite alternate;
    z-index: 0;
}

.orbit-wrap {
    position: relative;
}

@keyframes orbitAmbientPulse {
    0% {
        opacity: .4;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.orbit-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #333 0%, var(--black) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 12px 44px rgba(0, 0, 0, .42),
        0 0 0 4px rgba(255, 215, 0, .15),
        0 0 0 12px rgba(255, 215, 0, .06),
        0 0 0 24px rgba(255, 215, 0, .03),
        0 0 30px rgba(255, 215, 0, .08);
    animation: hubPulse 3s ease-in-out infinite alternate;
}

@keyframes hubPulse {
    0% {
        box-shadow: 0 12px 44px rgba(0, 0, 0, .42), 0 0 0 4px rgba(255, 215, 0, .15), 0 0 0 12px rgba(255, 215, 0, .06), 0 0 0 24px rgba(255, 215, 0, .03), 0 0 30px rgba(255, 215, 0, .08);
    }

    100% {
        box-shadow: 0 12px 44px rgba(0, 0, 0, .42), 0 0 0 5px rgba(255, 215, 0, .22), 0 0 0 14px rgba(255, 215, 0, .1), 0 0 0 28px rgba(255, 215, 0, .05), 0 0 40px rgba(255, 215, 0, .12);
    }
}

.orbit-hub-logo {
    font-family: var(--fd);
    font-weight: 900;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: -.03em;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 215, 0, .3);
}

.onode {
    position: absolute;
    width: 106px;
    height: 106px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow .4s, transform .3s, border-color .3s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .25), 0 0 12px rgba(255, 255, 255, .04);
    z-index: 5;
    border: 3px solid rgba(255, 255, 255, .95);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(2px);
}

@media(max-width:540px) {
    .onode {
        width: 66px;
        height: 66px;
    }
}

.onode:hover {
    box-shadow: 0 18px 52px rgba(0, 0, 0, .38), 0 0 20px rgba(255, 255, 255, .08) !important;
    transform: translate(-50%, -50%) scale(1.08);
    border-color: #fff;
}

.onode.active-node {
    box-shadow: 0 18px 52px rgba(0, 0, 0, .32), 0 0 0 4px rgba(255, 255, 255, .5), 0 0 25px rgba(255, 215, 0, .15);
    z-index: 18;
    animation: activeNodePulse 2s ease-in-out infinite alternate;
}

@keyframes activeNodePulse {
    0% {
        box-shadow: 0 18px 52px rgba(0, 0, 0, .32), 0 0 0 4px rgba(255, 255, 255, .5), 0 0 25px rgba(255, 215, 0, .15);
    }

    100% {
        box-shadow: 0 18px 52px rgba(0, 0, 0, .32), 0 0 0 5px rgba(255, 255, 255, .6), 0 0 35px rgba(255, 215, 0, .25);
    }
}

.onode-ico {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
}

@media(max-width:540px) {
    .onode-ico {
        font-size: 18px;
        margin-bottom: 2px;
    }
}

.onode-label {
    font-family: var(--fg);
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .95);
    text-align: center;
    line-height: 1.25;
    max-width: 72px;
    padding: 0 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}

@media(max-width:540px) {
    .onode-label {
        display: none;
    }
}

/* Node gradient colors — luxury aesthetic palette */
.on1 {
    background: linear-gradient(145deg, #ff6b9d, #c4447a);
    box-shadow: 0 8px 28px rgba(196, 68, 122, .35), inset 0 1px 1px rgba(255, 255, 255, .2), inset 0 -3px 6px rgba(0, 0, 0, .15);
}

.on2 {
    background: linear-gradient(145deg, #3d3d3d, #1a1a1a);
    border-color: rgba(255, 215, 0, .5) !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .45), 0 0 12px rgba(255, 215, 0, .1), inset 0 1px 1px rgba(255, 255, 255, .08), inset 0 -3px 6px rgba(0, 0, 0, .15);
}

.on3 {
    background: linear-gradient(145deg, #f0c27f, #d4a347);
    box-shadow: 0 8px 28px rgba(212, 163, 71, .35), inset 0 1px 1px rgba(255, 255, 255, .25), inset 0 -3px 6px rgba(0, 0, 0, .1);
}

.on4 {
    background: linear-gradient(145deg, #b794f4, #805ad5);
    box-shadow: 0 8px 28px rgba(128, 90, 213, .35), inset 0 1px 1px rgba(255, 255, 255, .15), inset 0 -3px 6px rgba(0, 0, 0, .15);
}

.on5 {
    background: linear-gradient(145deg, #56d4b0, #2d9e7c);
    box-shadow: 0 8px 28px rgba(45, 158, 124, .3), inset 0 1px 1px rgba(255, 255, 255, .15), inset 0 -3px 6px rgba(0, 0, 0, .12);
}

/* Info card */
.orbit-info {
    flex: 1;
    min-width: 260px;
}

.oinfo-card {
    display: none;
    animation: wpin .35s ease;
}

.oinfo-card.vis {
    display: block;
}

@keyframes wpin {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.oinfo-num {
    font-family: var(--fg);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .28em;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 10px;
}

.oinfo-title {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(20px, 2.8vw, 30px);
    color: #fff;
    letter-spacing: -.04em;
    line-height: .95;
    margin-bottom: 12px;
}

.oinfo-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.82;
    margin-bottom: 18px;
}

.oinfo-chip {
    display: inline-block;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
}

.oinfo-dots {
    display: flex;
    gap: 8px;
    margin-top: 28px;
}

.odot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: 1.5px solid rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: all .22s;
}

.odot.act {
    background: #fff;
    border-color: #fff;
    transform: scale(1.3);
}

/* Chip colors */
.cp {
    background: rgba(255, 0, 119, .12);
    border: 1px solid rgba(255, 0, 119, .25);
    color: var(--neon);
}

.cg {
    background: rgba(52, 211, 153, .12);
    border: 1px solid rgba(52, 211, 153, .25);
    color: #34d399;
}

/* ═══ CONTACT FORM SECTION ═══ */
.contact-section {
    background: var(--black);
    padding: 6rem 2rem;
    position: relative;
}

.contact-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-headline {
    font-family: var(--fd);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin: 0.8rem 0 0.6rem;
}

.contact-sub {
    font-family: var(--fs);
    font-size: 1rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-form {
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--fs);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
    font-family: var(--fs);
    font-size: 0.95rem;
    color: #fff;
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color .25s, background .25s, box-shadow .25s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, .25);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 215, 0, .04);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, .08);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 2rem auto 0;
    padding: 1rem 2rem;
    font-family: var(--fs);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, #FFD700, #f0c030);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform .22s, box-shadow .22s, background .22s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, .35);
    background: linear-gradient(135deg, #ffe44d, #FFD700);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    text-align: center;
    margin-top: 1.2rem;
    font-family: var(--fs);
    font-size: 0.9rem;
    min-height: 1.4em;
}

.form-message.success {
    color: #34d399;
}

.form-message.error {
    color: #ff6b6b;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 4rem 1.2rem;
    }
}

/* ═══ FOOTER — COMPACT SINGLE ROW ═══ */
.footer-compact {
    background: #FFD700;
    color: var(--black);
    padding: 0.6rem 1.5rem;
}

.footer-compact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo-sm {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: contain;
}

.footer-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
}

.footer-brand {
    font-family: var(--fd);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.footer-ea-btn {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--black);
    color: #FFD700;
    font-family: var(--fg);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    text-decoration: none;
    transition: transform .25s ease, background .25s ease;
    white-space: nowrap;
}

.footer-ea-btn:hover {
    transform: scale(1.06);
    background: #1a1a1a;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-ig {
    display: flex;
    align-items: center;
    color: var(--black);
    transition: color .3s, transform .3s;
}

.footer-ig:hover {
    color: var(--neon);
    transform: translateY(-2px);
}

.footer-ig svg {
    width: 20px;
    height: 20px;
}

/* ═══ RESPONSIVE — iPad (≤1024px) ═══ */
@media (max-width: 1024px) {
    .gold-nav {
        padding: 0.8rem 2rem;
    }

    .nav-logo-img {
        width: 130px;
        height: 65px;
    }

    .hero-headline {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
    }

    .hero {
        padding: 5rem 1.5rem 2.5rem;
    }

    .bigword {
        font-size: clamp(60px, 12vw, 150px);
    }

    .orbit-ring {
        width: 400px;
        height: 400px;
    }

    .onode {
        width: 90px;
        height: 90px;
    }

    .orbit-hub {
        width: 95px;
        height: 95px;
    }

    .orbit-hub-logo {
        font-size: 10px;
    }

    .onode-ico {
        font-size: 22px;
    }

    .onode-label {
        font-size: 6.5px;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .founder-section {
        padding: 4rem 1.5rem 3rem;
    }

    .exp-sec {
        padding: 70px 32px;
    }

    .orbit-wrap {
        gap: 36px;
    }

    .redef-line {
        font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    }

    .own-card {
        padding: 2rem;
    }

    .spec-line {
        font-size: clamp(1.5rem, 4vw, 3rem);
    }
}

/* ═══ RESPONSIVE — Tablet (≤768px) ═══ */
@media (max-width: 768px) {
    .gold-nav {
        padding: 0.6rem 1.2rem;
    }

    .gold-nav .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo-img {
        width: 110px;
        height: 55px;
    }

    .hero {
        padding: 5rem 1.2rem 2rem;
        min-height: 90vh;
    }

    .hero-headline {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }

    .hero-cta {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .hero-bottom-area {
        bottom: 2rem;
    }

    .bigword-section {
        height: 150vh;
    }

    .bigword {
        font-size: clamp(50px, 14vw, 100px);
    }

    .bigword-sub {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        padding: 0 1rem;
    }

    .infinite-scroll-track {
        font-size: 0.75rem;
    }

    .section {
        padding: 3.5rem 1.2rem;
    }

    .founder-section {
        padding: 3.5rem 1.2rem 2.5rem;
    }

    .redef-line {
        font-size: clamp(1.2rem, 3.5vw, 2rem);
    }

    .ownership-scroll {
        min-height: 220px;
        margin-top: 2rem;
    }

    .own-card {
        padding: 1.8rem;
        border-radius: 16px;
    }

    .own-num {
        font-size: 3.5rem;
    }

    .own-title {
        font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    }

    .own-desc {
        font-size: 0.9rem;
    }

    .spec-line {
        font-size: clamp(1.4rem, 4.5vw, 2.5rem);
    }

    .spec-section {
        padding: 4rem 1.2rem;
    }

    .exp-sec {
        padding: 60px 20px;
    }

    .orbit-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .orbit-ring {
        width: 340px;
        height: 340px;
    }

    .onode {
        width: 78px;
        height: 78px;
    }

    .orbit-hub {
        width: 85px;
        height: 85px;
    }

    .orbit-hub-logo {
        font-size: 9px;
    }

    .onode-ico {
        font-size: 20px;
    }

    .onode-label {
        font-size: 6px;
        max-width: 60px;
    }

    .orbit-info {
        min-width: auto;
        text-align: center;
    }

    .oinfo-title {
        font-size: clamp(18px, 3vw, 26px);
    }

    .oinfo-desc {
        font-size: 13px;
    }

    .oinfo-dots {
        justify-content: center;
    }

    .exp-hl {
        font-size: clamp(20px, 3.5vw, 36px);
    }

    .exp-sub {
        font-size: clamp(13px, 2vw, 16px);
        margin-bottom: 40px;
    }

    .form-section {
        padding: 3.5rem 1.2rem;
    }

    .fwrap {
        max-width: 100%;
    }

    .fc {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 18px;
    }

    .fh {
        font-size: 1.3rem;
    }

    .footer-compact {
        padding: 0.5rem 1rem;
    }

    .footer-brand {
        font-size: 0.75rem;
    }

    .footer-ea-btn {
        font-size: 0.55rem;
        padding: 0.25rem 0.8rem;
    }

    .footer-logo-sm {
        width: 30px;
        height: 30px;
    }
}

/* ═══ RESPONSIVE — Mobile (≤480px) ═══ */
@media (max-width: 480px) {
    .gold-nav {
        padding: 0.5rem 0.8rem;
    }

    .nav-logo-img {
        width: 90px;
        height: 45px;
    }

    .hero {
        padding: 4.5rem 1rem 2rem;
        min-height: 85vh;
    }

    .hero-headline {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .hero-cta {
        padding: 0.8rem 1.6rem;
        font-size: 0.8rem;
    }

    .hero-bottom-area {
        bottom: 1.5rem;
    }

    .hero-scroll-arrow svg {
        width: 16px;
        height: 16px;
    }

    .bigword-section {
        height: 130vh;
    }

    .bigword {
        font-size: clamp(40px, 16vw, 80px);
    }

    .bigword-sub {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        padding: 0 0.8rem;
    }

    .infinite-scroll-strip {
        padding: 0.6rem 0;
    }

    .infinite-scroll-track {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
    }

    .section {
        padding: 3rem 1rem;
    }

    .founder-section {
        padding: 3rem 1rem 2rem;
    }

    .sec-label {
        font-size: 0.65rem;
    }

    .redef-line {
        font-size: clamp(1.1rem, 4vw, 1.6rem);
    }

    .ownership-scroll {
        min-height: 200px;
        margin-top: 1.5rem;
    }

    .own-card {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .own-num {
        font-size: 3rem;
        right: 1rem;
    }

    .own-title {
        font-size: clamp(1.1rem, 3vw, 1.4rem);
    }

    .own-desc {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .spec-section {
        padding: 3rem 1rem;
    }

    .spec-line {
        font-size: clamp(1.2rem, 5.5vw, 2rem);
    }

    .exp-sec {
        padding: 50px 12px;
    }

    .exp-hl {
        font-size: clamp(18px, 5vw, 28px);
    }

    .exp-sub {
        font-size: clamp(12px, 2.5vw, 14px);
        margin-bottom: 30px;
    }

    .orbit-ring {
        width: 280px;
        height: 280px;
    }

    .orbit-ring-inner {
        inset: 55px;
    }

    .onode {
        width: 60px;
        height: 60px;
    }

    .orbit-hub {
        width: 75px;
        height: 75px;
    }

    .orbit-hub-logo {
        font-size: 8px;
    }

    .onode-ico {
        font-size: 16px;
        margin-bottom: 1px;
    }

    .onode-label {
        display: none;
    }

    .orbit-info {
        min-width: auto;
        text-align: center;
        padding: 0 0.5rem;
    }

    .oinfo-title {
        font-size: clamp(16px, 4vw, 22px);
    }

    .oinfo-desc {
        font-size: 12px;
        line-height: 1.7;
    }

    .oinfo-chip {
        font-size: 7px;
    }

    .form-section {
        padding: 3rem 1rem;
    }

    .fc {
        padding: 1.5rem 1rem 1rem;
        border-radius: 14px;
    }

    .fc-wm {
        font-size: 6rem;
    }

    .fh {
        font-size: 1.2rem;
    }

    .fsb {
        font-size: 0.8rem;
    }

    .frow {
        grid-template-columns: 1fr;
    }

    .form-headline {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .footer-compact {
        padding: 0.4rem 0.6rem;
    }

    .footer-center {
        gap: 0.35rem;
    }

    .footer-brand {
        font-size: 0.6rem;
    }

    .footer-ea-btn {
        font-size: 0.45rem;
        padding: 0.2rem 0.5rem;
    }

    .footer-logo-sm {
        width: 24px;
        height: 24px;
        border-radius: 4px;
    }

    .footer-ig svg {
        width: 16px;
        height: 16px;
    }

    .loader-logo-img {
        width: 160px;
        height: 160px;
    }

    .mobile-menu {
        width: 85%;
    }

    .mobile-menu a {
        font-size: 1rem;
    }
}

/* ═══ RESPONSIVE — Small Mobile (≤360px) ═══ */
@media (max-width: 360px) {
    .hero-headline {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }

    .hero-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.75rem;
    }

    .bigword {
        font-size: clamp(34px, 18vw, 60px);
    }

    .orbit-ring {
        width: 240px;
        height: 240px;
    }

    .orbit-ring-inner {
        inset: 45px;
    }

    .onode {
        width: 50px;
        height: 50px;
    }

    .orbit-hub {
        width: 60px;
        height: 60px;
    }

    .orbit-hub-logo {
        font-size: 7px;
    }

    .onode-ico {
        font-size: 14px;
    }

    .footer-brand {
        font-size: 0.5rem;
    }

    .footer-ea-btn {
        font-size: 0.4rem;
        padding: 0.18rem 0.4rem;
    }

    .footer-logo-sm {
        width: 20px;
        height: 20px;
    }

    .footer-ig svg {
        width: 14px;
        height: 14px;
    }

    .spec-line {
        font-size: clamp(1rem, 6vw, 1.6rem);
    }

    .redef-line {
        font-size: clamp(1rem, 4.5vw, 1.4rem);
    }
}

/* ═══ FLOATING SHAPES (parallax bg) ═══ */
.floating-shape {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    opacity: .08;
    border-radius: 50%;
}