/* ============================
   GrowthBee Media — Landing Soon
   Theme: White, Black, Yellow
   ============================ */

/* --- Design Tokens --- */
:root {
    --yellow-primary: #FFD600;
    --yellow-light: #FFEA00;
    --yellow-dark: #F5C400;
    --yellow-glow: rgba(255, 214, 0, 0.35);
    --yellow-subtle: rgba(255, 214, 0, 0.08);

    --black: #0A0A0A;
    --black-soft: #141414;
    --black-muted: #242424;

    --white: #FFFFFF;
    --white-off: #F8F8F8;
    --grey-light: #E0E0E0;
    --grey: #999999;
    --grey-dark: #555555;

    --font-fancy: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    cursor: default;
}

/* --- Interactive Canvas Background --- */
#honeycomb-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* --- Floating Hexagon Accents --- */
.hex-accents {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hex {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 214, 0, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatHex 20s ease-in-out infinite;
}

.hex-1 {
    top: 12%;
    left: 8%;
    width: 44px;
    height: 44px;
    animation-delay: 0s;
    animation-duration: 18s;
    border-color: rgba(255, 214, 0, 0.07);
}

.hex-2 {
    top: 18%;
    right: 10%;
    width: 72px;
    height: 72px;
    animation-delay: -3s;
    animation-duration: 22s;
    border-color: rgba(255, 214, 0, 0.1);
}

.hex-3 {
    bottom: 25%;
    left: 12%;
    width: 52px;
    height: 52px;
    animation-delay: -7s;
    animation-duration: 25s;
    border-color: rgba(255, 214, 0, 0.08);
}

.hex-4 {
    top: 65%;
    right: 14%;
    width: 38px;
    height: 38px;
    animation-delay: -5s;
    animation-duration: 20s;
    border-color: rgba(255, 214, 0, 0.06);
}

.hex-5 {
    top: 45%;
    left: 5%;
    width: 58px;
    height: 58px;
    animation-delay: -10s;
    animation-duration: 28s;
    border-color: rgba(255, 214, 0, 0.08);
}

.hex-6 {
    bottom: 12%;
    right: 7%;
    width: 48px;
    height: 48px;
    animation-delay: -15s;
    animation-duration: 24s;
    border-color: rgba(255, 214, 0, 0.07);
}

@keyframes floatHex {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.35;
    }
    25% {
        transform: translateY(-28px) rotate(30deg);
        opacity: 0.65;
    }
    50% {
        transform: translateY(-14px) rotate(60deg);
        opacity: 0.45;
    }
    75% {
        transform: translateY(-38px) rotate(90deg);
        opacity: 0.75;
    }
}

/* --- Main Container (Centered in Viewport) --- */
.landing-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    max-width: 840px;
    width: 100%;
    margin: auto 0;
    gap: 40px;
    text-align: center;
}

/* --- Hero Text (Static & Clean) --- */
.hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brand-name {
    font-family: var(--font-fancy);
    font-size: clamp(3rem, 9vw, 6.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
    position: relative;
    display: inline-block;
    user-select: none;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.brand-name .yellow {
    color: var(--yellow-primary);
    text-shadow: 0 0 35px rgba(255, 214, 0, 0.45), 0 0 70px rgba(255, 214, 0, 0.2);
}

.brand-media {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3.2vw, 1.8rem);
    font-weight: 400;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-top: 8px;
    opacity: 0.9;
}

/* --- Tagline --- */
.tagline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
    max-width: 580px;
}

.line-accent {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--yellow-primary), transparent);
    max-width: 100px;
    opacity: 0.7;
}

.tagline {
    font-family: var(--font-fancy);
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);
    font-weight: 400;
    font-style: italic;
    color: var(--grey-light);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* --- Landing Soon Badge --- */
.landing-badge {
    position: relative;
    display: inline-flex;
    margin-top: 8px;
}

.badge-text {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 40px;
    background: var(--black-soft);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--yellow-primary);
    box-shadow: 0 0 35px rgba(255, 214, 0, 0.1), inset 0 0 15px rgba(255, 214, 0, 0.03);
    border: 1px solid rgba(255, 214, 0, 0.35);
    user-select: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.badge-text:hover {
    transform: scale(1.03);
    border-color: rgba(255, 214, 0, 0.7);
    box-shadow: 0 0 45px rgba(255, 214, 0, 0.2);
}

.badge-icon {
    width: 22px;
    height: 22px;
    color: var(--yellow-primary);
    flex-shrink: 0;
}

/* --- Footer (Pinned at Page Bottom) --- */
.footer {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 24px 20px;
    text-align: center;
    margin-top: auto;
}

.footer p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--grey);
    letter-spacing: 0.05em;
}

/* --- Interactive Mouse Glow & Follower --- */
.cursor-glow {
    position: fixed;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.12) 0%, rgba(255, 214, 0, 0.03) 45%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--yellow-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px var(--yellow-primary), 0 0 24px rgba(255, 214, 0, 0.6);
    transition: transform 0.15s ease-out, background-color 0.2s;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 214, 0, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 998;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease-out, height 0.25s ease-out, border-color 0.25s ease-out;
}

/* --- Responsive Adjustments --- */
@media (max-width: 640px) {
    .landing-container {
        padding: 40px 20px;
        gap: 32px;
    }

    .brand-name {
        font-size: 2.8rem;
    }

    .brand-media {
        font-size: 1.1rem;
        letter-spacing: 0.4em;
    }

    .tagline-container {
        margin-top: 18px;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .badge-text {
        padding: 12px 28px;
        font-size: 1.05rem;
    }

    .badge-icon {
        width: 18px;
        height: 18px;
    }

    .hex {
        display: none;
    }

    .cursor-dot,
    .cursor-ring,
    .cursor-glow {
        display: none !important;
    }
}

@media (max-width: 380px) {
    .brand-name {
        font-size: 2.3rem;
    }

    .brand-media {
        font-size: 0.95rem;
        letter-spacing: 0.3em;
    }

    .tagline {
        font-size: 0.85rem;
    }
}
