/* ==========================================
   DUMBBELL BEE FITNESS BRANDING CSS
   Theme: Obsidian Charcoal & Neon Bumblebee Yellow
   ========================================== */

/* Design Tokens & Variables */
:root {
    --bg-dark: #0B0B0C;
    --bg-deep: #121214;
    --card-bg: rgba(22, 22, 25, 0.7);
    --card-border: rgba(255, 221, 0, 0.1);
    --card-border-hover: rgba(255, 221, 0, 0.35);
    
    --brand-yellow: #FFDD00;
    --brand-yellow-glow: rgba(255, 221, 0, 0.4);
    --brand-gold: #F5A623;
    --brand-gold-dark: #B27A00;
    
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A5;
    --text-muted: #62626A;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --glow-shadow: 0 0 20px rgba(255, 221, 0, 0.25);
    --glow-shadow-strong: 0 0 30px rgba(255, 221, 0, 0.55);
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Core Body */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    min-height: 100vh;
    position: relative;
}

/* Hide scrollbar for neat layout */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #252528;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-yellow);
}

/* Typography styles */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Interactive Cursor / Particles */
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.particle-bee {
    position: absolute;
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFDD00"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 14h-2v-2h2v2zm0-4h-2V7h2v5z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: flyBuzz 1.2s forwards ease-out;
}

.particle-glow {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--brand-yellow);
    box-shadow: 0 0 10px var(--brand-yellow);
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: fadeGlow 0.8s forwards linear;
}

/* Glassmorphism Classes */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 11, 12, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

/* ==========================================
   COMING SOON BANNER STRIP
   ========================================== */
.coming-soon-banner {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: linear-gradient(90deg, rgba(255, 221, 0, 0.12), rgba(245, 166, 35, 0.08), rgba(255, 221, 0, 0.12));
    border-top: 1px solid rgba(255, 221, 0, 0.2);
    border-bottom: 1px solid rgba(255, 221, 0, 0.2);
    overflow: hidden;
    padding: 10px 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.csb-inner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marqueeScroll 22s linear infinite;
}

.csb-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    color: var(--brand-yellow);
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255, 221, 0, 0.5);
}

.csb-glow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-yellow);
    box-shadow: 0 0 10px var(--brand-yellow), 0 0 20px var(--brand-yellow);
    flex-shrink: 0;
    margin-right: 20px;
    animation: beaconPulse 1.5s infinite ease-out;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.glass-card:hover {
    border-color: var(--card-border-hover);
    box-shadow: 0 15px 40px rgba(255, 221, 0, 0.05), 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Layout Utilities */
.grid-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Header & Logo */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-bee-svg {
    width: 58px;
    height: 58px;
    filter: drop-shadow(0 0 5px var(--brand-yellow-glow));
    transition: var(--transition-smooth);
}

.logo:hover .brand-bee-svg {
    transform: scale(1.08) rotate(-5deg);
    filter: drop-shadow(0 0 15px var(--brand-yellow));
}

.wing-left {
    animation: wingFlapLeft 0.15s infinite alternate ease-in-out;
    transform-origin: 38px 40px;
}

.wing-right {
    animation: wingFlapRight 0.15s infinite alternate ease-in-out;
    transform-origin: 62px 40px;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.85rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #FFFFFF 60%, var(--brand-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-highlight {
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 221, 0, 0.3);
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-yellow);
    box-shadow: 0 0 10px var(--brand-yellow);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: #FFFFFF;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger-menu {
    display: none;
}

.beta-count-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 6px 14px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--brand-yellow);
    box-shadow: 0 0 8px var(--brand-yellow);
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--brand-yellow);
    animation: beaconPulse 1.5s infinite ease-out;
}

/* Button Classes */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-gold));
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #000000;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--glow-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow-strong);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid rgba(255, 221, 0, 0.4);
    border-radius: 30px;
    padding: 8px 22px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brand-yellow);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: var(--brand-yellow);
    background: rgba(255, 221, 0, 0.05);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 36px;
    font-size: 1.05rem;
    border-radius: 35px;
}

/* Sections Layout */
.hero-section {
    padding: 200px 0 100px 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 70% 30%, rgba(255, 221, 0, 0.04) 0%, transparent 60%);
}

.interactive-section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.gray-bg {
    background-color: var(--bg-deep);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--brand-yellow);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    background: linear-gradient(180deg, #FFFFFF 60%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* Hero Section Elements */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.coming-soon-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 221, 0, 0.07);
    border: 1px solid rgba(255, 221, 0, 0.2);
    border-radius: 20px;
    padding: 6px 16px;
    margin-bottom: 30px;
    position: relative;
}

.pill-glow {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--brand-yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-yellow);
    animation: beaconPulse 1.2s infinite;
}

.pill-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--brand-yellow);
    letter-spacing: 0.1em;
    margin-left: 14px;
}

.hero-title {
    font-size: clamp(2.3rem, 7vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
}

.text-glow {
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 221, 0, 0.2));
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    margin-bottom: 35px;
    max-width: 620px;
}

.preparation-container {
    margin-bottom: 40px;
    max-width: 500px;
}

.prep-header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.prep-percentage {
    color: var(--brand-yellow);
}

.prep-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.prep-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-gold));
    box-shadow: 0 0 10px rgba(255, 221, 0, 0.4);
    border-radius: 3px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Countdown Clock */
.countdown-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    max-width: 500px;
    margin-bottom: 45px;
}

.countdown-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-val {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.countdown-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

.countdown-divider {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.15);
    padding-bottom: 12px;
}

/* Hero Graphic Panel */
.hero-graphic-panel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glowing-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 221, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
    animation: floatAnimation 6s infinite alternate ease-in-out;
}

.brand-image-frame {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 221, 0, 0.25), transparent, rgba(245, 166, 35, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    overflow: visible;
}

.hero-image {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 18px;
    display: block;
    object-fit: cover;
    mix-blend-mode: lighten;
    filter: contrast(1.1) brightness(0.95) drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.floating-badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(18, 18, 20, 0.85);
    border: 1px solid rgba(255, 221, 0, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--glow-shadow);
    border-radius: 16px;
    padding: 12px 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: floatAnimation 4s infinite alternate ease-in-out;
}

.badge-top-right {
    top: 20px;
    right: -25px;
    animation-delay: 0.5s;
}

.badge-bottom-left {
    bottom: 20px;
    left: -25px;
    animation-delay: 1.2s;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-texts {
    display: flex;
    flex-direction: column;
}

.badge-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--brand-yellow);
}

.badge-lbl {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Feature 1: BMI Calculator styling */
.bmi-wrapper {
    max-width: 1050px;
    margin: 0 auto;
}

.bmi-sliders {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 40px;
}

.panel-subtitle {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accent-number {
    color: var(--brand-yellow);
    text-shadow: 0 0 10px var(--brand-yellow-glow);
}

.slider-group {
    margin-bottom: 40px;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.slider-label-row label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.slider-val-display {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--brand-yellow);
}

/* Custom range inputs */
.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    margin: 15px 0;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-gold));
    cursor: pointer;
    box-shadow: 0 0 8px var(--brand-yellow);
    border: 2px solid #000000;
    transition: transform 0.15s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 14px var(--brand-yellow);
}

.custom-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-yellow);
    cursor: pointer;
    border: 2px solid #000000;
    box-shadow: 0 0 8px var(--brand-yellow);
}

.slider-indicators {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* BMI Results Display Gauge */
.bmi-results {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bmi-display-circle {
    position: relative;
    width: 190px;
    height: 190px;
    margin-bottom: 30px;
}

.bmi-number-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.bmi-label-micro {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 700;
}

.bmi-score {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
}

.bmi-category {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--brand-yellow);
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.bmi-gauge-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.gauge-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 12;
}

.gauge-fill {
    fill: none;
    stroke: url(#bmi-grad);
    stroke-width: 12;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease-out;
}

/* recommendation card */
.bmi-recommendation-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    max-width: 440px;
    width: 100%;
}

.rec-icon {
    font-size: 1.8rem;
    background: rgba(255, 221, 0, 0.1);
    border-radius: 12px;
    padding: 8px;
    line-height: 1;
}

.rec-content h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-yellow);
    margin-bottom: 6px;
}

.rec-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* SVG linear gradients for the body of the gauge added inside JS as script tag, or styled below: */
svg.bmi-gauge-svg {
    background-image: radial-gradient(circle, transparent 75%, rgba(255, 221, 0, 0.01) 100%);
    border-radius: 50%;
}

/* Feature 2: Workout Generator */
.workout-dashboard {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.workout-selectors {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.select-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.select-field label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.custom-options {
    display: flex;
    gap: 12px;
}

.option-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.option-card .opt-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 221, 0, 0.2);
}

.option-card.active {
    background: rgba(255, 221, 0, 0.08);
    border-color: var(--brand-yellow);
    box-shadow: 0 0 12px rgba(255, 221, 0, 0.1);
}

.option-card.active .opt-text {
    color: var(--brand-yellow);
}

.dashboard-split {
    gap: 30px;
}

/* Generated plan panel */
.plan-panel {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
}

.panel-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.panel-title-inline {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
}

.btn-refresh {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border-radius: 20px;
    padding: 6px 14px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-refresh:hover {
    color: var(--brand-yellow);
    border-color: var(--brand-yellow);
    background: rgba(255,221,0,0.05);
}

.refresh-svg {
    width: 14px;
    height: 14px;
    transition: transform 0.5s ease;
}

.btn-refresh:hover .refresh-svg {
    transform: rotate(180deg);
}

.exercises-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ex-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 15px 20px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.ex-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.ex-card.completed {
    border-color: rgba(255, 221, 0, 0.3);
    background: rgba(255, 221, 0, 0.02);
}

.ex-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ex-check-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: transparent;
    transition: var(--transition-smooth);
}

.ex-card:hover .ex-check-circle {
    border-color: var(--brand-yellow);
}

.ex-card.completed .ex-check-circle {
    background-color: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: #000000;
}

.ex-details {
    display: flex;
    flex-direction: column;
}

.ex-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #FFFFFF;
}

.ex-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.ex-rep-box {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--brand-yellow);
    background: rgba(255, 221, 0, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
}

/* Timer Panel */
.timer-panel {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-display-box {
    margin: 25px 0;
}

.timer-progress-ring {
    position: relative;
    width: 160px;
    height: 160px;
}

.timer-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 8;
}

.ring-fill {
    fill: none;
    stroke: var(--brand-yellow);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

.timer-clock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timer-time {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.timer-lbl-micro {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    font-weight: 700;
    margin-top: 4px;
}

.timer-control-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-control {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-control:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.btn-play {
    width: 100px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-gold));
    border: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: #000000;
    box-shadow: 0 0 10px var(--brand-yellow-glow);
}

.btn-play:hover {
    color: #000000;
    background: #FFFFFF;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.timer-active-exercise {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.active-exercise-prefix {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.active-exercise-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--brand-yellow);
    text-align: center;
}

/* Feature 3: Honeycomb CSS Grid */
.honeycomb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.honeycomb-cell-wrapper {
    perspective: 1000px;
}

.honeycomb-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.honeycomb-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-border-hover);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 221, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.honeycomb-card:hover .card-glow {
    opacity: 1;
}

.hc-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: rgba(255, 221, 0, 0.05);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 221, 0, 0.1);
}

.honeycomb-card:hover .hc-icon {
    border-color: var(--brand-yellow);
    background: rgba(255, 221, 0, 0.1);
    transform: scale(1.05);
}

.hc-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.hc-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.hc-status-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 12px;
}

.honeycomb-card:hover .hc-status-pill {
    background: rgba(255, 221, 0, 0.15);
    border-color: var(--brand-yellow);
    color: var(--brand-yellow);
}

/* Feature 4: Registration & Ticket */
.registration-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.signup-panel {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 45px;
}

.signup-badge {
    display: inline-block;
    background: rgba(255, 221, 0, 0.1);
    border: 1px solid rgba(255, 221, 0, 0.2);
    color: var(--brand-yellow);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.signup-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.signup-desc {
    font-size: 0.95rem;
    margin-bottom: 35px;
}

.beta-form-container {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 20px auto;
}

.form-input-wrapper {
    flex: 1;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: var(--text-muted);
}

.form-input-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 14px 20px 14px 45px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #FFFFFF;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input-wrapper input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--brand-yellow);
    box-shadow: 0 0 10px rgba(255, 221, 0, 0.15);
}

.btn-submit {
    border-radius: 30px;
    padding: 14px 28px;
}

.arrow-svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.btn-submit:hover .arrow-svg {
    transform: translateX(4px);
}

.guarantee-row {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Beautiful Physical Ticket Style */
.ticket-card {
    background: var(--bg-deep);
    border: 1px solid rgba(255, 221, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(255, 221, 0, 0.1);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.ticket-top-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-gold));
}

.ticket-main-layout {
    display: flex;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.ticket-details {
    flex: 1;
    padding: 35px;
    border-right: 1.5px dashed rgba(255, 255, 255, 0.15);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.ticket-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.ticket-logo-db {
    background: var(--brand-yellow);
    color: #000000;
    border-radius: 4px;
    padding: 2px 6px;
    font-weight: 900;
}

.ticket-class {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--brand-yellow);
    background: rgba(255, 221, 0, 0.08);
    border: 1px solid rgba(255, 221, 0, 0.2);
    padding: 3px 10px;
    border-radius: 12px;
}

.ticket-row-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #FFFFFF, var(--brand-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ticket-email-box {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.ticket-grid-col {
    display: flex;
    flex-direction: column;
}

.col-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.col-val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #FFFFFF;
}

.col-val.active-status {
    color: var(--brand-yellow);
    text-shadow: 0 0 8px rgba(255, 221, 0, 0.2);
}

/* Tear off panel code */
.ticket-bar-code-panel {
    width: 140px;
    position: relative;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ticket-notch {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    left: -8px;
    z-index: 10;
}

.notch-top {
    top: -8px;
    box-shadow: inset 0 -4px 4px rgba(0, 0, 0, 0.2);
}

.notch-bottom {
    bottom: -8px;
    box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.2);
}

.barcode-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transform: rotate(90deg);
}

.barcode-lines {
    display: flex;
    align-items: flex-end;
    height: 45px;
    gap: 2.5px;
}

.barcode-lines span {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 1px;
}

.bar-s { width: 1.5px; height: 100%; }
.bar-m { width: 3.5px; height: 100%; }
.bar-l { width: 6px; height: 100%; }

.barcode-text {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-family: monospace;
    letter-spacing: 0.1em;
}

/* Success Footer */
.ticket-success-footer {
    padding: 25px 35px;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.congrats-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.buzz-control-card {
    display: flex;
    align-items: center;
}

.buzz-toggle-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.buzz-text-row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.3;
}

.buzz-text-row strong {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--brand-yellow);
}

.buzz-text-row small {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.buzz-checkbox {
    display: none;
}

/* Custom interactive toggle button styling */
.custom-toggle {
    position: relative;
    width: 48px;
    height: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.custom-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.buzz-checkbox:checked + .custom-toggle {
    background: rgba(255, 221, 0, 0.15);
    border-color: var(--brand-yellow);
}

.buzz-checkbox:checked + .custom-toggle::after {
    left: 26px;
    background-color: var(--brand-yellow);
    box-shadow: 0 0 8px var(--brand-yellow);
}

.hidden {
    display: none !important;
}

/* Footer Section */
footer {
    background-color: #060607;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px 0 35px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 400px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 15px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: var(--brand-yellow);
    border-color: var(--brand-yellow);
    background: rgba(255, 221, 0, 0.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 25px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-meta-links {
    display: flex;
    gap: 20px;
}

.footer-meta-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-meta-links a:hover {
    color: var(--text-secondary);
}

/* Animations Definitions */
@keyframes flyBuzz {
    0% {
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
        opacity: 1;
    }
    10% {
        transform: translate(calc(-50% + 20px), calc(-50% - 30px)) scale(1.1) rotate(15deg);
    }
    30% {
        transform: translate(calc(-50% - 40px), calc(-50% - 70px)) scale(1.2) rotate(-20deg);
    }
    60% {
        transform: translate(calc(-50% + 30px), calc(-50% - 130px)) scale(1.0) rotate(10deg);
    }
    90% {
        transform: translate(calc(-50% - 10px), calc(-50% - 180px)) scale(0.6) rotate(-5deg);
        opacity: 0.7;
    }
    100% {
        transform: translate(calc(-50% - 20px), calc(-50% - 220px)) scale(0.2) rotate(0deg);
        opacity: 0;
    }
}

@keyframes fadeGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

@keyframes beaconPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 221, 0, 0.4);
        opacity: 1;
    }
    70% {
        transform: scale(1.6);
        box-shadow: 0 0 0 10px rgba(255, 221, 0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 221, 0, 0);
        opacity: 0;
    }
}

@keyframes wingFlapLeft {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(35deg);
    }
}

@keyframes wingFlapRight {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-35deg);
    }
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-12px);
    }
}

/* ==========================================
   RESPONSIVE LAYOUT STYLES
   ========================================== */
@media (max-width: 1024px) {
    .two-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
    .honeycomb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Coming Soon Banner on mobile */
    .coming-soon-banner {
        top: 75px;
        padding: 8px 0;
    }
    .csb-text {
        font-size: 0.78rem;
        letter-spacing: 0.1em;
    }

    /* Sleek Mobile Hamburger Button */
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
        padding: 0;
    }
    
    .hamburger-menu .bar {
        height: 2.5px;
        width: 100%;
        background-color: var(--brand-yellow);
        border-radius: 4px;
        transition: var(--transition-smooth);
        box-shadow: 0 0 5px var(--brand-yellow-glow);
    }
    
    /* Hamburger morph into close 'X' when active */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Overlay Navigation - Obsidian Glassmorphism */
    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(11, 11, 12, 0.97);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        z-index: 1050;
        gap: 35px;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.85, 0, 0.15, 1);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links a {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: 0.05em;
        padding: 10px 0;
    }
    
    .nav-links a::after {
        display: none; /* remove underline indicator for mobile, keep text glow on hover instead */
    }
    
    .nav-links a:hover {
        color: var(--brand-yellow);
        text-shadow: 0 0 15px var(--brand-yellow);
    }

    /* Mobile layout scaling updates */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .countdown-container {
        margin: 0 auto 35px auto;
        width: 100%;
    }
    .hero-graphic-panel {
        order: -1;
        margin-bottom: 30px;
    }
    .brand-image-frame {
        max-width: 300px;
    }
    
    /* Responsive logo modifications on mobile screen sizes */
    .brand-bee-svg {
        width: 48px;
        height: 48px;
    }
    .brand-name {
        font-size: 1.5rem;
    }
    
    /* BMI responsive scaling */
    .bmi-sliders {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-right: 0;
        padding-bottom: 40px;
    }
    .bmi-results {
        padding-left: 0;
        padding-top: 20px;
    }
    
    /* Workout selectors layout split */
    .workout-selectors {
        flex-direction: column;
        gap: 20px;
    }
    .option-card {
        padding: 12px;
    }
    .dashboard-split {
        grid-template-columns: 1fr;
    }
    
    /* Ticket Roster details wrap */
    .ticket-main-layout {
        flex-direction: column;
    }
    .ticket-details {
        border-right: none;
        border-bottom: 1.5px dashed rgba(255, 255, 255, 0.15);
        padding: 25px;
    }
    .ticket-bar-code-panel {
        width: 100%;
        height: 90px;
        padding: 15px;
    }
    .barcode-wrapper {
        transform: rotate(0deg);
    }
    .ticket-notch {
        display: none;
    }
    .ticket-success-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .buzz-text-row {
        align-items: center;
    }
}

@media (max-width: 480px) {
    /* Hide beta count badge on header to save space on micro-devices */
    .beta-count-badge {
        display: none;
    }
    .header-container {
        width: 92%;
    }
    
    /* Micro logo scaling */
    .brand-bee-svg {
        width: 42px;
        height: 42px;
    }
    .brand-name {
        font-size: 1.3rem;
    }
    
    /* Compact countdown elements */
    .countdown-container {
        padding: 12px 10px;
        gap: 10px;
    }
    .countdown-val {
        font-size: 1.6rem;
    }
    .countdown-label {
        font-size: 0.65rem;
    }
    
    /* Responsive buttons stack */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .btn-large {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    .btn-primary {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    /* Grid stack items */
    .honeycomb-grid {
        grid-template-columns: 1fr;
    }
    .custom-options {
        flex-direction: column;
    }
    .beta-form-container {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .signup-panel {
        padding: 30px 20px;
    }
    .ticket-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .footer-top {
        flex-direction: column;
        gap: 25px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================
   ADVANCED & ACCESSIBILITY MEDIA QUERIES
   ========================================== */

/* 1. Touch pointer media queries for coarse (finger) screens */
@media (pointer: coarse) {
    .custom-slider::-webkit-slider-thumb {
        width: 26px;
        height: 26px;
    }
    .nav-links a {
        padding: 14px 0;
    }
    .btn-primary, .btn-secondary, .btn-control {
        min-height: 44px;
    }
    .option-card {
        padding: 14px;
    }
}

/* 2. Reduced motion styles for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
    .pulse-dot::after,
    .wing-left,
    .wing-right,
    .glowing-orb,
    .floating-badge {
        animation: none !important;
    }
}

/* 3. Landscape orientations with short heights (e.g. phones on side) */
@media (orientation: landscape) and (max-height: 520px) {
    .hero-section {
        padding: 100px 0 50px 0;
    }
    .countdown-container {
        margin-bottom: 20px;
    }
}

/* ==========================================
   TEASER MAIN & CARD STYLING (OPTION A)
   ========================================== */
.teaser-main {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(255, 221, 0, 0.04) 0%, transparent 60%);
    overflow: hidden;
}

.teaser-container {
    width: 90%;
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.teaser-card {
    text-align: center;
    position: relative;
    overflow: visible;
    padding: 50px 40px;
    border: 1px solid rgba(255, 221, 0, 0.25);
    background: rgba(22, 22, 25, 0.85);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), var(--glow-shadow);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.teaser-card-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 221, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(35px);
    pointer-events: none;
    z-index: -1;
    animation: floatAnimation 6s infinite alternate ease-in-out;
}

.brand-symbol {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px var(--brand-yellow));
    animation: floatAnimation 4s infinite alternate ease-in-out;
}

.card-header {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-title {
    font-size: clamp(2rem, 6vw, 2.6rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 10px 0 18px 0;
    color: #FFFFFF;
}

.card-subtitle {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 460px;
    margin: 0 auto;
}

.teaser-card .preparation-container {
    margin: 0 auto 35px auto;
    max-width: 100%;
    text-align: left;
}

.teaser-interactive-footer {
    display: flex;
    justify-content: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

/* Teaser footer at the bottom of the viewport */
.teaser-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-top: none;
    padding: 20px 0;
    z-index: 10;
}

.teaser-footer-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.teaser-socials {
    display: flex;
    gap: 20px;
}

.teaser-socials a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.teaser-socials a:hover {
    color: var(--brand-yellow);
}

@media (max-width: 768px) {
    .teaser-footer-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

