/* ========================================
   AMP'D ENERGY - NEO-CYBERPUNK DESIGN
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Core Colors */
    --black: #050505;
    --black-pure: #000000;
    --charcoal: #0a0a0a;
    --dark: #111111;
    --gray-dark: #1a1a1a;
    --gray: #2a2a2a;
    --gray-mid: #444444;
    --gray-light: #888888;
    --white: #ffffff;
    --white-off: #f0f0f0;

    /* Neon Palette */
    --neon-green: #39FF14;
    --neon-green-dim: #2bcc10;
    --lime: #CCFF00;
    --orange: #FF6B00;
    --orange-dim: #cc5500;
    --purple: #9D00FF;
    --purple-dim: #7a00cc;
    --cyan: #00FFFF;

    /* Glows */
    --glow-green: 0 0 30px rgba(57, 255, 20, 0.5), 0 0 60px rgba(57, 255, 20, 0.3), 0 0 100px rgba(57, 255, 20, 0.15);
    --glow-green-subtle: 0 0 20px rgba(57, 255, 20, 0.3);
    --glow-orange: 0 0 30px rgba(255, 107, 0, 0.5), 0 0 60px rgba(255, 107, 0, 0.3);
    --glow-purple: 0 0 30px rgba(157, 0, 255, 0.5), 0 0 60px rgba(157, 0, 255, 0.3);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;

    /* Timing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--neon-green);
    color: var(--black);
}

/* --- Noise Overlay --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    letter-spacing: 0.15em;
    display: block;
}

.logo-flash {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: logoFlash 3s ease-in-out infinite;
}

@keyframes logoFlash {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.nav {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--gray-light);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    padding: var(--space-xs) 0;
    transition: color 0.3s ease;
}

.nav-link-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    box-shadow: var(--glow-green-subtle);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover .nav-link-line {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: transparent;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: var(--neon-green);
    color: var(--black);
    box-shadow: var(--glow-green);
}

.header-cta-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.header-cta:hover .header-cta-arrow {
    transform: translateX(4px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 50% 120%, rgba(57, 255, 20, 0.08) 0%, transparent 50%),
        var(--black);
}

/* Perspective Grid Floor */
.hero-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    perspective: 500px;
    overflow: hidden;
}

.grid-floor {
    position: absolute;
    bottom: 0;
    left: -50%;
    right: -50%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(57, 255, 20, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(57, 255, 20, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: rotateX(75deg);
    transform-origin: center bottom;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 60px; }
}

/* Energy Orbs */
.energy-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--neon-green);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--purple);
    top: 60%;
    right: 15%;
    animation-delay: -3s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: var(--orange);
    bottom: 30%;
    left: 60%;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-text {
    padding-right: var(--space-xl);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--neon-green);
    box-shadow: var(--glow-green-subtle);
}

.eyebrow-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--neon-green);
}

.hero-title {
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
    position: relative;
}

.title-line.title-accent {
    color: var(--neon-green);
    text-shadow: var(--glow-green);
}

/* Glitch effect on hover */
.title-line[data-text]:hover {
    animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-1px, -1px); }
    80% { transform: translate(1px, 1px); }
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 450px;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    background: var(--neon-green);
    border: none;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.btn-bg {
    position: absolute;
    inset: 0;
    background: var(--neon-green);
    transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary:hover .btn-bg {
    transform: translateY(-100%);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lime);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--black);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnShine 2s ease-in-out infinite;
}

@keyframes btnShine {
    0%, 100% { left: -100%; }
    50%, 60% { left: 100%; }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--gray-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gray), transparent);
}

/* Hero Can */
.hero-can-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.can-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: canGlowPulse 3s ease-in-out infinite;
}

@keyframes canGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.can-3d {
    position: relative;
    transform-style: preserve-3d;
    animation: canFloat 4s ease-in-out infinite;
}

@keyframes canFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.can-body {
    position: relative;
    width: 140px;
    height: 340px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 50%, var(--dark) 100%);
    border-radius: 20px;
    border: 2px solid var(--neon-green);
    box-shadow:
        inset 0 0 60px rgba(57, 255, 20, 0.1),
        0 0 40px rgba(57, 255, 20, 0.3),
        0 50px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.can-top {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 12px;
    background: linear-gradient(to bottom, var(--gray), var(--gray-dark));
    border-radius: 6px;
}

.can-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 var(--space-sm);
}

.can-brand {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    letter-spacing: 0.15em;
    margin-bottom: var(--space-xs);
}

.can-flavor-name {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-light);
    letter-spacing: 0.2em;
}

.can-energy-lines {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: var(--space-md);
}

.can-energy-lines span {
    width: 3px;
    height: 20px;
    background: var(--neon-green);
    opacity: 0.6;
    animation: energyPulse 1s ease-in-out infinite;
}

.can-energy-lines span:nth-child(1) { animation-delay: 0s; height: 15px; }
.can-energy-lines span:nth-child(2) { animation-delay: 0.2s; height: 25px; }
.can-energy-lines span:nth-child(3) { animation-delay: 0.4s; height: 18px; }

@keyframes energyPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

.can-bottom {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 8px;
    background: linear-gradient(to bottom, var(--gray-dark), var(--gray));
    border-radius: 4px;
}

.can-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    border-radius: 20px 0 0 20px;
    pointer-events: none;
}

/* Orbit Ring */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
    animation: orbitSpin 8s linear infinite;
}

.orbit-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-green), 0 0 30px var(--neon-green);
}

.orbit-particle:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-particle:nth-child(2) { bottom: 20%; right: 0; }
.orbit-particle:nth-child(3) { bottom: 20%; left: 0; }

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.can-shadow {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: rgba(57, 255, 20, 0.2);
    border-radius: 50%;
    filter: blur(20px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.scroll-text {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gray-light);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gray), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { top: 0; opacity: 1; }
    80% { top: 100%; opacity: 0; }
    81% { top: 0; opacity: 0; }
}

/* --- Section Divider --- */
.section-divider {
    position: relative;
    height: 120px;
    margin-top: -120px;
    color: var(--charcoal);
    z-index: 20;
}

.section-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* --- Section Header --- */
.section-header {
    margin-bottom: var(--space-2xl);
    padding: 0 var(--space-lg);
}

.section-header--center {
    text-align: center;
}

.section-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-green);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.title-word {
    display: inline-block;
    margin-right: 0.3em;
    transition: transform 0.3s ease;
}

.title-word:hover {
    transform: translateY(-5px);
}

.title-highlight {
    color: var(--neon-green);
    text-shadow: var(--glow-green-subtle);
}

/* --- Flavors Section --- */
.flavors {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--charcoal);
}

.flavor-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Flavor Card */
.flavor-card {
    position: relative;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out-expo);
}

.flavor-card:hover {
    transform: translateY(-10px);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--neon-green) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.flavor-card:hover .card-glow {
    opacity: 0.05;
}

.flavor-card[data-flavor="tropical"] .card-glow { background: radial-gradient(circle, var(--orange) 0%, transparent 70%); }
.flavor-card[data-flavor="berry"] .card-glow { background: radial-gradient(circle, var(--purple) 0%, transparent 70%); }

.card-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    transition: border-color 0.3s ease;
}

.flavor-card:hover .card-border {
    border-color: var(--neon-green);
    box-shadow: inset 0 0 30px rgba(57, 255, 20, 0.1);
}

.flavor-card[data-flavor="tropical"]:hover .card-border {
    border-color: var(--orange);
    box-shadow: inset 0 0 30px rgba(255, 107, 0, 0.1);
}

.flavor-card[data-flavor="berry"]:hover .card-border {
    border-color: var(--purple);
    box-shadow: inset 0 0 30px rgba(157, 0, 255, 0.1);
}

/* Card Corners */
.card-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-green);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flavor-card:hover .card-corner { opacity: 1; }
.flavor-card[data-flavor="tropical"] .card-corner { border-color: var(--orange); }
.flavor-card[data-flavor="berry"] .card-corner { border-color: var(--purple); }

.card-corner-tl {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.card-corner-br {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

/* Mini Can */
.flavor-can {
    position: relative;
    flex-shrink: 0;
}

.can-mini {
    width: 80px;
    height: 180px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 50%, var(--dark) 100%);
    border-radius: 12px;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease-out-back), box-shadow 0.4s ease;
}

.flavor-card:hover .can-mini {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(57, 255, 20, 0.3);
}

.can-mini--orange {
    border-color: var(--orange);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
}

.flavor-card:hover .can-mini--orange {
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.3);
}

.can-mini--purple {
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
}

.flavor-card:hover .can-mini--purple {
    box-shadow: 0 20px 40px rgba(157, 0, 255, 0.3);
}

.can-mini-body {
    text-align: center;
}

.mini-brand {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    letter-spacing: 0.1em;
}

.can-mini--orange .mini-brand {
    color: var(--orange);
    text-shadow: 0 0 10px var(--orange);
}

.can-mini--purple .mini-brand {
    color: var(--purple);
    text-shadow: 0 0 10px var(--purple);
}

.mini-name {
    display: block;
    font-family: var(--font-display);
    font-size: 0.55rem;
    color: var(--gray-light);
    letter-spacing: 0.15em;
    margin-top: 4px;
}

.flavor-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Flavor Info */
.flavor-info {
    flex: 1;
}

.flavor-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

.flavor-name span {
    display: block;
}

.flavor-card[data-flavor="citric"] .flavor-name { color: var(--neon-green); }
.flavor-card[data-flavor="tropical"] .flavor-name { color: var(--orange); }
.flavor-card[data-flavor="berry"] .flavor-name { color: var(--purple); }

.flavor-desc {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.flavor-tags {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.tag {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gray-light);
}

/* --- Power Section (Nutrition) --- */
.power-section {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--black);
    overflow: hidden;
}

.power-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.power-grid {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.power-grid-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.power-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--neon-green);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: powerReveal 0.6s var(--ease-out-expo) forwards;
    animation-delay: calc(var(--delay, 0) * 0.1s);
}

.power-item[data-delay="0"] { --delay: 0; }
.power-item[data-delay="1"] { --delay: 1; }
.power-item[data-delay="2"] { --delay: 2; }
.power-item[data-delay="3"] { --delay: 3; }
.power-item[data-delay="4"] { --delay: 4; }
.power-item[data-delay="5"] { --delay: 5; }

@keyframes powerReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.power-item:hover {
    background: rgba(57, 255, 20, 0.05);
    transform: translateX(10px);
}

.power-item--highlight {
    border-left-color: var(--lime);
}

.power-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.power-icon svg {
    width: 28px;
    height: 28px;
    color: var(--neon-green);
}

.power-item--highlight .power-icon svg {
    color: var(--lime);
}

.power-info {
    flex: 1;
}

.power-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.power-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gray-light);
}

.power-bar {
    width: 80px;
    height: 4px;
    background: var(--gray-dark);
    border-radius: 2px;
    overflow: hidden;
}

.power-bar-fill {
    height: 100%;
    width: var(--fill, 0%);
    background: linear-gradient(90deg, var(--neon-green-dim), var(--neon-green));
    border-radius: 2px;
    animation: barFill 1s var(--ease-out-expo) forwards;
    animation-delay: 0.5s;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes barFill {
    to { transform: scaleX(1); }
}

.power-bar--full .power-bar-fill {
    background: linear-gradient(90deg, var(--lime), var(--neon-green));
}

/* --- Connect Section (Social) --- */
.connect-section {
    position: relative;
    padding: var(--space-3xl) 0;
    background: linear-gradient(to bottom, var(--black), var(--charcoal));
    overflow: hidden;
}

.connect-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(57, 255, 20, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(157, 0, 255, 0.05) 0%, transparent 50%);
}

.connect-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.social-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xl) var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--neon-green);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-expo);
}

.social-card:hover::before {
    transform: scaleX(1);
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(57, 255, 20, 0.3);
}

.social-icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon-wrap {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
}

.social-icon {
    width: 24px;
    height: 24px;
    color: var(--gray-light);
    transition: color 0.3s ease;
}

.social-card:hover .social-icon {
    color: var(--neon-green);
}

.social-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--white);
}

.social-handle {
    font-size: 0.75rem;
    color: var(--gray-light);
}

.connect-cta {
    text-align: center;
}

.cta-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    letter-spacing: 0.1em;
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* --- Footer --- */
.footer {
    padding: var(--space-xl) 0;
    background: var(--black-pure);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.footer-brand {
    margin-bottom: var(--space-md);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: var(--glow-green-subtle);
    letter-spacing: 0.15em;
}

.footer-tagline {
    display: block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gray-light);
    margin-top: var(--space-xs);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-green);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: var(--space-xs);
}

.footer-domain {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--gray-mid);
    letter-spacing: 0.1em;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero-text {
        padding-right: 0;
        order: 2;
    }

    .hero-can-wrapper {
        order: 1;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: var(--space-md);
        padding-top: var(--space-sm);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 150px;
    }

    .hero-content {
        padding: var(--space-xl) var(--space-md);
    }

    .title-line {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .can-body {
        width: 100px;
        height: 240px;
    }

    .can-brand {
        font-size: 1.4rem;
    }

    .orbit-ring {
        width: 160px;
        height: 160px;
    }

    .flavor-showcase {
        grid-template-columns: 1fr;
    }

    .card-content {
        flex-direction: column;
        text-align: center;
    }

    .flavor-tags {
        justify-content: center;
    }

    .hero-stats {
        margin-top: var(--space-md);
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-actions {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero-stats {
        width: 100%;
        justify-content: center;
    }

    .power-grid-content {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .cta-tag {
        font-size: 1.5rem;
    }
}

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