/* ============================================
   FIRE BEAST — Premium Design System v3
   Normal scroll + fixed-position can
   ============================================ */

:root {
    --fire-red: #e31c24;
    --fire-orange: #ef5323;
    --fire-gradient: linear-gradient(236.9deg, #e31c24 30.1%, #010101 92.4%);
    --fire-glow: 0 0 40px rgba(227, 28, 36, 0.3);
    --bg-primary: #070302;
    --bg-card: #000000;
    --bg-section-alt: #0d0d0d;
    --bg-dark-alt: #151515;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-subtle: rgba(255, 255, 255, 0.4);
    --border-subtle: rgba(255, 255, 255, 0.1);
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Syne', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --container-max: 1200px;
    --section-padding: clamp(60px, 10vw, 120px);
    --side-padding: clamp(16px, 4vw, 40px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

input,
textarea {
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

body::-webkit-scrollbar-thumb {
    background: var(--fire-red);
    border-radius: 3px;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.heading-xl {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 120px);
    text-transform: uppercase;
    line-height: 0.95;
}

.heading-lg {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 72px);
    text-transform: uppercase;
    line-height: 1;
}

.heading-md {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 56px);
    text-transform: uppercase;
    line-height: 1;
}

.body-lg {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1px;
}

.body-md {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.3;
}

.text-red {
    color: var(--fire-red);
}

.text-muted {
    color: var(--text-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    font-family: var(--font-heading);
    font-size: 20px;
    text-transform: uppercase;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-primary {
    background: var(--fire-red);
    border-color: var(--fire-red);
    color: var(--text-white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--fire-glow);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(7, 3, 2, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo svg {
    height: 50px;
    width: auto;
}

.navbar.scrolled .navbar-logo svg {
    height: 36px;
}

.navbar-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.navbar-links a {
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fire-red);
    transition: width 0.3s;
}

.navbar-links a:hover {
    color: var(--text-white);
}

.navbar-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO — Normal section (100vh)
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(180px);
    pointer-events: none;
    z-index: 0;
}

.hero-glow--left {
    bottom: 0;
    left: -5%;
    background: var(--fire-red);
    opacity: 0.5;
}

.hero-glow--right {
    top: 0;
    right: -5%;
    background: var(--fire-orange);
    opacity: 0.25;
}

/* Mobile can — shown only on mobile as a static image */
.hero-can-mobile {
    display: none;
}

/* Full-width two-row hero text */
.hero-text {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    padding: 0 var(--side-padding);
    pointer-events: none;
}

.hero-text-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.hero-word-l,
.hero-word-r {
    font-family: var(--font-heading);
    font-size: clamp(60px, 10vw, 160px);
    text-transform: uppercase;
    line-height: 0.9;
    color: var(--fire-red);
}

.hero-word-r {
    background: var(--fire-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-badge-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

.hero-badge {
    font-family: var(--font-accent);
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-white);
}

/* Subtitle — flows inline, right-aligned below hero text */
.hero-subtitle {
    margin-top: 40px;
    max-width: 420px;
    margin-left: auto;
    text-align: right;
}

.subtitle-line1,
.subtitle-line2 {
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.3px;
}

.subtitle-line1 {
    margin-bottom: 20px;
}

.white-text {
    color: var(--text-white);
}

.muted-text {
    color: var(--text-muted);
}

/* ============================================
   THE CAN — position:fixed, no transition
   ============================================ */
.hero-can {
    position: fixed;
    z-index: 100;
    pointer-events: none;
    will-change: transform, left, top;
}

.hero-can img {
    width: 280px;
    height: auto;
    filter: drop-shadow(20px 30px 50px rgba(0, 0, 0, 0.7));
}

/* ============================================
   FEATURES — reduced top gap
   ============================================ */
.features {
    padding: 30px 0 var(--section-padding);
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 48px;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.features-can-slot {
    width: 280px;
    min-height: 460px;
}

.feature-card {
    border: 1px solid var(--border-subtle);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    background: rgba(0, 0, 0, 0.4);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--fire-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: rgba(227, 28, 36, 0.3);
    background: rgba(227, 28, 36, 0.04);
    transform: translateY(-4px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    color: var(--fire-orange);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.2;
}

/* ============================================
   INGREDIENTS
   ============================================ */
.ingredients {
    padding: var(--section-padding) 0;
}

.ingredients .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.ingredients-image {
    overflow: hidden;
    aspect-ratio: 0.9;
}

.ingredients-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredients-title {
    margin-bottom: 32px;
}

.ingredient-item {
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.ingredient-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
}

.ingredient-header:hover {
    color: var(--fire-orange);
}

.ingredient-name {
    font-family: var(--font-accent);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    text-transform: uppercase;
}

.ingredient-toggle {
    font-size: 28px;
    font-weight: 700;
    transition: transform 0.3s var(--ease-out-expo);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredient-item.active .ingredient-toggle {
    transform: rotate(45deg);
    color: var(--fire-red);
}

.ingredient-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo), padding 0.5s;
}

.ingredient-item.active .ingredient-body {
    max-height: 300px;
    padding-bottom: 20px;
}

.ingredient-body p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.4;
    max-width: 480px;
}

.ingredients-note {
    margin-top: 24px;
    color: var(--fire-orange);
    font-size: 15px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: var(--section-padding) 0;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 48px;
}

.steps-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.step-icon {
    width: 64px;
    height: 64px;
    border: 2px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--fire-orange);
}

.step-item:hover .step-icon {
    border-color: var(--fire-red);
    box-shadow: var(--fire-glow);
    transform: scale(1.1);
}

.step-label {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.usecase-heading {
    margin-bottom: 48px;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.usecase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 300px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.usecase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 28, 36, 0.3);
}

.usecase-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    margin-bottom: auto;
}

.usecase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.usecase-card:hover .usecase-image img {
    transform: scale(1.05);
}

.usecase-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.usecase-title {
    font-family: var(--font-accent);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.1;
}

.usecase-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.3;
}

/* ============================================
   PRODUCT
   ============================================ */
.product {
    padding: var(--section-padding) 0;
}

.product .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-image {
    overflow: hidden;
}

.product-image img {
    width: 100%;
    object-fit: cover;
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-badge-name {
    font-family: var(--font-accent);
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge-size {
    font-size: 18px;
    color: var(--text-muted);
}

.product-badge-size strong {
    color: var(--text-white);
    font-size: 24px;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-detail-label {
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--fire-orange);
}

.product-detail-value {
    color: var(--text-muted);
    font-size: 15px;
}

/* ============================================
   BLOG
   ============================================ */
.blog {
    padding: var(--section-padding) 0;
    background: var(--bg-section-alt);
}

.blog-header {
    text-align: center;
    margin-bottom: 48px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227, 28, 36, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-image .blog-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--fire-red);
    color: #fff;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
}

.blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-card-date {
    font-size: 12px;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-title {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.4;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--fire-orange);
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 6px;
    transition: gap 0.3s;
}

.blog-card:hover .blog-card-link {
    gap: 12px;
}

/* ============================================
   NETWORK CTA
   ============================================ */
.network {
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.network-inner {
    background: var(--bg-dark-alt);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.network-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--fire-red);
    filter: blur(200px);
    opacity: 0.15;
    pointer-events: none;
}

.network-title {
    max-width: 400px;
}

.network-can {
    width: 140px;
    filter: drop-shadow(20px 20px 40px rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.network-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
}

.contact-header {
    margin-bottom: 32px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-company {
    font-family: var(--font-heading);
    font-size: 22px;
    text-transform: uppercase;
}

.contact-address {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.contact-map {
    overflow: hidden;
    height: 320px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field {
    border: 1px solid #2e2e2e;
    height: 56px;
    transition: border-color 0.3s;
}

.form-field:focus-within {
    border-color: var(--fire-red);
}

.form-field input,
.form-field textarea {
    width: 100%;
    height: 100%;
    padding: 0 18px;
    font-size: 17px;
    color: #fff;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-field textarea {
    padding: 14px 18px;
    resize: none;
}

.form-field.message-field {
    height: 76px;
}

.form-submit {
    background: var(--fire-red);
    border: 1px solid #2e2e2e;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    transform: scale(1.02);
    box-shadow: var(--fire-glow);
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--fire-red);
    color: #fff;
    padding: 14px 28px;
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 600;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 36px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo svg {
    height: 36px;
    width: auto;
}

.footer-copy {
    color: var(--text-subtle);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--fire-red);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(7, 3, 2, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-nav.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--fire-red);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---- Tablet (max 1024px) ---- */
@media (max-width: 1024px) {
    .features-layout {
        grid-template-columns: 1fr;
    }

    .features-can-slot {
        display: none;
    }

    .hero-can {
        display: none;
    }

    .usecase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ingredients .container {
        grid-template-columns: 1fr;
    }

    .network-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .network-can {
        margin: 0 auto;
    }

    .network-cta {
        align-items: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- Mobile (max 768px) ---- */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --side-padding: 20px;
    }

    .navbar-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* ======== HERO MOBILE ======== */
    /* Tone down glow dramatically on mobile */
    .hero-glow--left {
        width: 220px;
        height: 220px;
        opacity: 0.22;
        filter: blur(90px);
        bottom: 10%;
        left: -10%;
    }

    .hero-glow--right {
        width: 200px;
        height: 200px;
        opacity: 0.12;
        filter: blur(80px);
        top: 5%;
        right: -10%;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 50px;
        align-items: center;
        justify-content: center;
    }

    .hero-text {
        width: 100%;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Stack rows into a two-column layout on mobile:
       Left: ELEVATES / ENERGY  |  Right: AND / FOCUS */
    .hero-text-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        width: 100%;
        gap: 8px;
    }

    .hero-word-l,
    .hero-word-r {
        font-size: clamp(36px, 11vw, 72px);
        line-height: 0.95;
    }

    /* Mobile can — show as a centered static image between text and subtitle */
    .hero-can-mobile {
        display: block;
        width: 115px;
        margin: 6px auto 6px;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
        transform: rotate(10deg);
        animation: canFloat 4s ease-in-out infinite;
    }

    @keyframes canFloat {

        0%,
        100% {
            transform: rotate(10deg) translateY(0);
        }

        50% {
            transform: rotate(10deg) translateY(-8px);
        }
    }

    .hero-badge-row {
        margin-top: 10px;
        justify-content: center;
    }

    .hero-badge {
        font-size: 13px;
    }

    .hero-subtitle {
        margin-top: 20px;
        max-width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .subtitle-line1,
    .subtitle-line2 {
        font-size: 15px;
    }

    .subtitle-line1 {
        margin-bottom: 12px;
    }

    /* Features mobile */
    .features {
        padding: 40px 0 60px;
    }

    .features-header h2 {
        font-size: clamp(24px, 6vw, 36px);
    }

    .feature-card {
        padding: 24px;
    }

    /* Ingredients mobile */
    .ingredients .container {
        gap: 30px;
    }

    .ingredients-image img {
        max-height: 300px;
    }

    /* Product mobile */
    .product .container {
        grid-template-columns: 1fr;
    }

    .product-image img {
        max-height: 350px;
    }

    /* Blog mobile */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Network CTA mobile */
    .network-inner {
        padding: 36px 20px;
    }

    /* Steps mobile */
    .steps-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    /* Footer mobile */
    .footer .container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ---- Small Mobile (max 480px) ---- */
@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .hero-glow--left {
        width: 160px;
        height: 160px;
        opacity: 0.18;
        filter: blur(70px);
    }

    .hero-glow--right {
        width: 150px;
        height: 150px;
        opacity: 0.1;
        filter: blur(70px);
    }

    .hero-word-l,
    .hero-word-r {
        font-size: clamp(30px, 12vw, 52px);
    }

    .hero-can-mobile {
        width: 100px;
        margin-top: 12px;
    }

    .hero-subtitle {
        margin-top: 16px;
    }

    .subtitle-line1,
    .subtitle-line2 {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .usecase-grid {
        grid-template-columns: 1fr;
    }

    .usecase-card {
        height: auto;
        min-height: 250px;
    }

    .heading-lg {
        font-size: clamp(28px, 8vw, 48px);
    }

    .heading-md {
        font-size: clamp(22px, 6vw, 36px);
    }

    .body-lg {
        font-size: 16px;
    }

    .btn {
        padding: 12px 32px;
        font-size: 16px;
    }

    .product-badge {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}