/* ============================================================
   ALDRA — DESIGN SYSTEM
   Dark premium theme · Orange glow accents · Professional
   ============================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Orange palette stays the same because it is the primary brand color! */
    --orange: #ff7701;
    --orange-hover: #e06800;
    --orange-dark: #cc5f00;
    --orange-glow: rgba(255, 140, 0, 0.15);
    --orange-glow-strong: rgba(255, 140, 0, 0.25);
    --orange-subtle: rgba(255, 140, 0, 0.06);

    /* Light surfaces */
    --bg: #ffffff;
    --bg-card: #fdfdfd;
    --bg-card-hover: #f1f1f1;
    --bg-elevated: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(255, 140, 0, 0.3);

    /* Text */
    --text-primary: #111111;
    --text-secondary: rgba(0, 0, 0, 0.65);
    --text-tertiary: rgba(0, 0, 0, 0.4);

    /* Font */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Motion */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-primary);
    overflow-x: visible;
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-orange {
    color: var(--orange);
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s var(--ease), visibility 1s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
    width: min(340px, 85vw);
    position: relative;
}

.loader-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-glow-strong) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.loader-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 140, 0, 0.3);
}

.loader-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    position: relative;
}

.loader-tagline {
    font-size: 0.8rem;
    color: var(--orange);
    margin-bottom: 2rem;
    font-weight: 500;
    position: relative;
}

.loader-bar-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), var(--orange-hover));
    border-radius: 4px;
    transition: width 0.08s linear;
    box-shadow: 0 0 12px var(--orange-glow-strong);
}

.loader-text {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

/* Instant loader for pages without frame sequences */
.loader--instant {
    animation: loaderFadeOut 0.6s 0.3s both;
}

@keyframes loaderFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* Legacy class aliases */
.features-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Scroll indicator (used in evolution.html) */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.scroll-indicator-track {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-tertiary);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator-dot {
    width: 4px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    animation: scrollDot 2.2s ease-in-out infinite;
}

@keyframes scrollDot {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0.3;
    }
}

.scroll-indicator-text {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
}

/* Hero subtitle for evolution page */
.hero-title-main {
    display: block;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: var(--orange);
    margin-top: 0.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    background: rgba(8, 8, 8, 0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.45s var(--ease), box-shadow 0.4s;
}

.nav.nav--scrolled {
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.4);
}

.nav.nav--hidden {
    transform: translateY(-100%);
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.nav-logo {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-logo-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--orange), #FF6B00) !important;
    color: #FFF !important;
    padding: 0.5rem 1.4rem !important;
    border-radius: 50px;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.nav-cta-btn:hover {
    background: linear-gradient(135deg, #FF9D2E, #FF8C00) !important;
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-2px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    width: 20px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    padding: 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.nav-mobile a:hover {
    color: var(--text-primary);
}

.nav-mobile a:last-child {
    border: none;
    margin-top: 0.75rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #FF6B00);
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF9D2E, #FF8C00);
    box-shadow: 0 12px 32px rgba(255, 140, 0, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: rgba(255, 140, 0, 0.4);
    color: #FFF;
    background: rgba(255, 140, 0, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ============================================
   BASE CLUB NAVBAR
   ============================================ */
.bc-nav {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

/* Split pill logo */
.bc-nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.bc-logo-pill {
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    padding: 0.4rem 0.75rem;
    position: relative;
}

.bc-logo-pill--white {
    background: #fff;
    color: #000;
    border-radius: 1rem 1rem 1rem 0.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bc-logo-tail {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.bc-logo-pill--green {
    background: #CCFF00;
    color: #000;
    border-radius: 2rem;
    border: 1.5px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Desktop nav links */
.bc-nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bc-nav-link {
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bc-nav-link::before {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%) scale(0);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #CCFF00 10%, transparent 70%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

.bc-nav-link:hover::before {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
}

.bc-nav-link:hover {
    color: var(--orange);
    border-color: #CCFF00;
}

/* CTA button */
.bc-nav-cta {
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bc-nav-cta::before {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%) scale(0);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #CCFF00 10%, transparent 70%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

.bc-nav-cta:hover::before {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
}

.bc-nav-cta:hover {
    color: var(--orange);
    border-color: #CCFF00;
}

/* ============================================
   GLASS BORDER TRAVEL (STAR-BUTTON EFFECT)
   ============================================ */
@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes conic-glow {
    to {
        --glow-angle: 360deg;
    }
}

.bc-nav-link::after,
.bc-nav-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Changed from -1px to fit inside overflow:hidden */
    border-radius: inherit;
    padding: 2px;
    /* Set padding to 2px for a slightly thicker glow */
    background: conic-gradient(from var(--glow-angle) at 50% 50%, transparent 40%, #ffffff 90%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: conic-glow 2.5s linear infinite;
    z-index: 2;
}

/* Mobile: hide links, show only logo + CTA */
@media (max-width: 768px) {
    .bc-nav-links {
        display: none;
    }

    .bc-nav {
        padding: 1rem 1.5rem;
    }
}

/* ============================================================
   RESPONSIVE REFACTOR LAYER (MOBILE-FIRST)
   ============================================================ */
:root {
    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --container-max: 1140px;
    --container-pad: clamp(1rem, 4vw, 2rem);
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --text-body: clamp(0.95rem, 2.2vw, 1rem);
    --text-h1: clamp(2rem, 9vw, 4rem);
    --text-h2: clamp(1.5rem, 5vw, 2.75rem);
    --text-h3: clamp(1.15rem, 3.5vw, 1.75rem);
}

html,
body {
    width: 100%;
    max-width: 100%;
}

body {
    overflow-x: visible;
    font-size: var(--text-body);
}

img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
}

main,
section {
    width: 100%;
}

.container {
    width: min(100%, var(--container-max));
    padding-inline: var(--container-pad);
}

.btn {
    min-height: 44px;
}

.btn:focus-visible,
.drawer-link:focus-visible,
.mobile-nav-toggle:focus-visible,
.close-drawer-btn:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.bc-nav {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 100;
    min-height: 76px;
    padding: 1rem var(--container-pad);
}

.mobile-nav-toggle {
    border-radius: 0.5rem;
    min-width: 44px;
    min-height: 44px;
}

.mobile-drawer-content {
    width: min(86vw, 360px);
    padding: 1.5rem;
}

.drawer-link {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    line-height: 1.2;
}

.bc-hero {
    min-height: 90svh;
}

.bc-content-wrap {
    margin-top: -2rem;
    border-radius: 1.5rem 1.5rem 0 0;
}

/* Products page reusable classes */
.products-section {
    padding: clamp(2.5rem, 7vw, 6rem) 0;
    background: #fafafa;
}

.products-shell {
    width: min(100%, 1000px);
    margin: 0 auto;
}

.product-flagship {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 4vw, 4rem);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.product-flagship-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--orange), #ff6a00);
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.product-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.8rem 1.4rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    width: 100%;
}

.product-action-btn--dark {
    background: #111;
    color: #fff;
}

.product-action-btn--ghost {
    background: rgba(0, 0, 0, 0.04);
    color: #111;
}

.product-preview {
    margin-top: clamp(2rem, 5vw, 4rem);
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    background: #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.product-dev-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.product-dev-card {
    background: #fff;
    padding: clamp(1.25rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Contact page reusable classes */
.contact-page-section {
    padding: clamp(2.5rem, 7vw, 6rem) 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 4rem);
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-panel {
    padding: clamp(2rem, 4vw, 3rem);
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-xl);
}

.contact-form-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    color: #111;
}

.linear-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.modern-submit-btn {
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 1rem 1rem 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    gap: 1rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.modern-submit-btn:hover {
    background-color: var(--orange);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-submit-btn:hover .btn-icon {
    background-color: #fff;
    color: var(--orange);
}

.arrow-icon {
    position: absolute;
    transition: all 0.4s ease;
}

.check-icon {
    position: absolute;
    transform: scale(0) rotate(-45deg);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-submit-btn.success {
    background-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    pointer-events: none;
    color: #fff;
}

.modern-submit-btn.success .btn-icon {
    background-color: #fff;
    color: #10b981;
}

.modern-submit-btn.success .arrow-icon {
    transform: translate(20px, -20px);
    opacity: 0;
}

.modern-submit-btn.success .check-icon {
    transform: scale(1) rotate(0);
    opacity: 1;
}

.contact-hub-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    background: transparent;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.contact-hub-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #111;
}

.contact-hub-item:hover .contact-hub-icon-wrap {
    transform: scale(1.08);
    background-color: #111;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-hub-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-hub-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.contact-hub-value {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 600;
    color: #111;
    background-image: linear-gradient(var(--orange), var(--orange));
    background-size: 0 2px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.4s ease;
}

.contact-hub-item:hover .contact-hub-value {
    background-size: 100% 2px;
}

.copy-tooltip {
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(10px);
    background-color: #111;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-hub-item:hover .copy-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.contact-social-row {
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.25rem;
}

.contact-social-list {
    display: flex;
    gap: 1rem;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fff;
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-social-btn:hover {
    background-color: var(--orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
}

.form-group {
    position: relative;
    width: 100%;
}

.linear-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding: 0.9rem 0;
    font-size: 1rem;
    color: #111;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.linear-label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1rem;
    color: #888;
    background: transparent;
    pointer-events: none;
    transform-origin: left top;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.linear-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.linear-input:focus~.linear-border {
    transform: scaleX(1);
}

.linear-input:focus~.linear-label,
.linear-input:not(:placeholder-shown)~.linear-label {
    transform: translateY(-1.75rem) scale(0.75);
    color: #666;
    font-weight: 700;
}
.linear-input:focus~.linear-label {
    color: var(--orange);
}

/* Base footer classes */
.site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: clamp(3rem, 7vw, 5rem) 1rem 2rem;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.site-footer-brand {
    grid-column: 1 / -1;
}

.site-footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.site-footer-link:hover {
    color: var(--orange);
}

.site-footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer-bottom-link {
    color: var(--blue-link);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}
.site-footer-bottom-link:hover {
    text-decoration: underline;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}
.footer-social-btn:hover {
    color: var(--orange);
}

/* Home page CTA strip */
.home-cta {
    position: relative;
    width: 100%;
    min-height: 65vh;
    background-color: var(--bg);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.home-cta-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(100%, 800px);
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(255, 140, 0, 0.04), transparent 50%);
    filter: blur(40px);
    pointer-events: none;
    border-radius: 50%;
}

.home-cta-inner {
    position: relative;
    z-index: 10;
    width: min(92vw, 1100px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.home-cta-wave {
    position: relative;
    width: 100%;
    height: 1px;
    margin-bottom: 2rem;
}

.home-cta-wave-hitbox {
    position: absolute;
    top: -20px;
    z-index: 10;
    height: 40px;
    width: 100%;
    cursor: crosshair;
    transition: all 0.3s ease;
}

.home-cta-wave-hitbox:hover {
    top: -100px;
    height: 200px;
}

.home-cta-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.home-cta-label {
    color: #999;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-cta-copy {
    color: #111;
    font-size: clamp(1.3rem, 4.5vw, 2.3rem);
    line-height: 1.3;
    font-weight: 400;
    margin: 0;
}

.home-cta-arrow-wrap {
    margin-top: 0.75rem;
}

.home-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    background: var(--text-primary);
    color: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-cta-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.1);
}

/* New requested breakpoints */
@media (min-width: 480px) {
    .product-action-btn {
        width: auto;
        padding: 0.9rem 1.6rem;
    }

    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {

    .bc-nav-links,
    .bc-nav-cta {
        display: flex !important;
    }

    .mobile-nav-toggle {
        display: none !important;
    }

    .mobile-drawer {
        display: none;
    }

    .product-dev-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-page-grid {
        grid-template-columns: minmax(260px, 1fr) minmax(0, 1.5fr);
    }

    .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .modern-submit-btn {
        width: max-content;
        min-width: 250px;
    }

    .site-footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2.5rem;
    }

    .home-cta-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }

    .home-cta-copy-wrap {
        max-width: 72%;
    }

    /* About + Projects page responsiveness */
    .about-page-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-page-card {
        padding: 1.25rem !important;
    }

    .about-page-vm-grid {
        grid-template-columns: 1fr !important;
    }

    .about-page-vm-col {
        padding: 1.5rem !important;
    }

    .about-page-vm-col:last-child {
        border-left: none !important;
        border-top: 1px dashed rgba(0, 0, 0, 0.1);
    }

    .about-page-tech-container {
        padding-inline: var(--container-pad) !important;
    }

    .projects-page-section {
        padding: clamp(2.5rem, 7vw, 6rem) 0 !important;
    }

    .projects-page-container {
        width: min(100%, 1000px);
    }

    .projects-page-stack {
        gap: 1.25rem !important;
    }

    .projects-feature-content,
    .projects-concept-card {
        padding: 1.25rem !important;
    }

    .projects-feature-title {
        font-size: clamp(1.6rem, 8vw, 2.5rem) !important;
        line-height: 1.15 !important;
    }

    .projects-feature-text,
    .projects-concept-text {
        font-size: clamp(0.92rem, 2.9vw, 1.05rem) !important;
    }

    .projects-concept-title {
        font-size: clamp(1.25rem, 5.5vw, 1.8rem) !important;
        line-height: 1.2 !important;
    }

    .projects-concept-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    @media (min-width: 480px) {
        .about-page-grid {
            gap: 1.5rem;
        }

        .about-page-card {
            padding: 1.75rem !important;
        }

        .projects-feature-content,
        .projects-concept-card {
            padding: 1.75rem !important;
        }
    }

    @media (min-width: 768px) {
        .about-page-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem;
        }

        .about-page-card {
            padding: 2.5rem !important;
        }

        .about-page-vm-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        }

        .about-page-vm-col {
            padding: 3rem !important;
        }

        .about-page-vm-col:last-child {
            border-top: none;
            border-left: 1px dashed rgba(0, 0, 0, 0.1);
        }

        .projects-feature-content,
        .projects-concept-card {
            padding: 2.5rem !important;
        }

        .projects-concept-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
            gap: 2rem !important;
        }
    }

    .site-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-inline: 2rem;
    }

    .products-shell {
        width: min(100%, 1050px);
    }

    .product-dev-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1280px) {
    .bc-nav {
        max-width: 1440px;
        margin-inline: auto;
    }
}

/* ============================================
   BASE CLUB HERO
   ============================================ */

.bc-hero {
    min-height: 100vh;
    background-color: var(--orange);
    background-image: url('/uploads/Res/gradient.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: soft-light;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    font-family: var(--font);
    color: #ffffff;
}

/* White card for page content (straight, no overlap) */
.bc-content-wrap {
    position: relative;
    background: #fff;
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.05);
    z-index: 10;
    padding-top: 1rem;
}

/* Grid background for heros */
.bc-grid-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 4rem 4rem;
    pointer-events: none;
    z-index: 0;
}

/* Main hero content area */
.bc-hero-main {
    flex: 1;
    position: relative;
    z-index: 10;
    padding: 6rem 0 2rem;
    /* Softened top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Shifted up instead of center */
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

/* Text stack container */
.bc-text-stack {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
    margin-top: 5rem;
    margin-bottom: 4rem;
}

.bc-text-row {
    width: 100%;

}

.bc-text-row--left {
    display: flex;
    justify-content: center;
    padding-right: 20%;
}

.bc-text-row--center {
    display: flex;
    justify-content: center;
}

.bc-text-row--right {
    display: flex;
    justify-content: center;
    padding-left: 20%;
}

/* Massive typography */
.bc-mega {
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    /* Sensible responsive clamp */
    font-size: clamp(2rem, 10vw, 160px);
    text-shadow:
        1px 1px 0 #b35300, 2px 2px 0 #b35300, 3px 3px 0 #b35300,
        4px 4px 0 #b35300, 5px 5px 0 #b35300, 6px 6px 0 #b35300,
        7px 7px 0 #b35300, 8px 8px 0 #b35300, 9px 9px 0 #b35300,
        10px 10px 0 #b35300, 11px 11px 0 #b35300, 12px 12px 0 #b35300,
        13px 13px 0 #b35300, 14px 14px 0 #b35300;
}

.bc-mega--accent {
    color: #CCFF00;
}

.bc-mega--white {
    color: #FFFFFF;
}

.bc-mega--xl {
    font-size: clamp(2.5rem, 12vw, 220px);
}

@media (max-width: 768px) {
    .bc-mega {
        text-shadow:
            1px 1px 0 #b35300, 2px 2px 0 #b35300, 3px 3px 0 #b35300,
            4px 4px 0 #b35300, 5px 5px 0 #b35300, 6px 6px 0 #b35300,
            7px 7px 0 #b35300 !important;
    }

    .bc-text-stack {
        margin-top: 1rem;
    }

    .bc-hero {
        height: auto;
    }

    .bc-flip-link {
        padding-bottom: 8px; /* Fit small mobile text-shadow, prevents text duplication */
    }
}

/* ─── Flip Link Animation ─── */
.bc-flip-link {
    cursor: default;
    position: relative;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 20px;
    padding-bottom: 20px;
    min-width: max-content;
}

.bc-flip-container {
    display: inline-block;
}

.bc-flip-letter {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bc-flip-link:hover .bc-flip-letter--front {
    transform: translateY(-150%);
}

.bc-flip-container--back {
    position: absolute;
    inset: 0;
    display: inline-block;
}

.bc-flip-letter--back {
    transform: translateY(150%);
}

.bc-flip-link:hover .bc-flip-letter--back {
    transform: translateY(0);
}

/* Overlays container (cards, arrows, badge) */
.bc-overlays {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ─── Floating Glass Cards ─── */
.bc-float-card {
    position: absolute;
    z-index: 30;
    pointer-events: auto;
}

.bc-float-card--left {
    bottom: 5%;
    left: 5%;
}

.bc-float-card--right {
    top: 10%;
    right: 5%;
}

.bc-glass-card {
    width: 200px;
    aspect-ratio: 3 / 3.5;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 2rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-glass-card--tilt-left {
    transform: rotate(-12deg);
    animation: bcFloat1 5s ease-in-out infinite;
}

.bc-glass-card--tilt-right {
    transform: rotate(12deg);
    animation: bcFloat2 6s ease-in-out 1s infinite;
}

.bc-glass-card:hover {
    transform: rotate(0deg) scale(1.05) !important;
}

@keyframes bcFloat1 {

    0%,
    100% {
        transform: rotate(-12deg) translateY(0);
    }

    50% {
        transform: rotate(-12deg) translateY(-15px);
    }
}

@keyframes bcFloat2 {

    0%,
    100% {
        transform: rotate(12deg) translateY(0);
    }

    50% {
        transform: rotate(12deg) translateY(-20px);
    }
}

/* Card avatars */
.bc-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bc-avatar--warm {
    background: #D2B48C;
}

.bc-avatar--cool {
    background: #2C3E50;
}

.bc-avatar-icon {
    width: 50px;
    height: 50px;
    color: white;
}

.bc-card-name {
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin: 0;
}

.bc-card-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.25rem 0 0;
}

/* ─── Decorative Arrows ─── */
.bc-arrow {
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 20;
}

.bc-arrow--left {
    bottom: 0;
    left: 0;
}

.bc-arrow--right {
    top: 5%;
    right: 0;
}

/* ─── Spinning Circular Badge ─── */
.bc-badge {
    position: absolute;
    bottom: -10%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: #CCFF00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 40;
    pointer-events: auto;
    cursor: pointer;
    transform: rotate(12deg);
    transition: transform 0.3s;
    border: 3px solid rgba(0, 0, 0, 0.05);
}

.bc-badge:hover {
    transform: rotate(12deg) scale(1.1);
}

.bc-badge-spin {
    position: absolute;
    inset: 4px;
    animation: badgeSpin 10s linear infinite;
}

@keyframes badgeSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bc-badge-text {
    font-size: 10px;
    font-weight: 900;
    fill: black;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.bc-badge-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-badge-center svg {
    width: 36px;
    height: 36px;
}

/* ============================================
   BOTTOM FEATURES (White Section)
   ============================================ */
.bc-features {
    background: #FFFFFF;
    color: #000;
    border-radius: 2.5rem 2.5rem 0 0;
    padding: 3.5rem 2rem 4rem;
    position: relative;
    z-index: 20;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.2);
    margin-top: -2rem;
}

.bc-features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bc-feat-card {
    background: #F8F9FA;
    border-radius: 2rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 260px;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bc-feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.bc-feat-title {
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    color: #000;
}

.bc-feat-desc {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    margin: 0 0 auto;
}

/* Feature pill graphics */
.bc-feat-pill {
    display: flex;
    align-items: center;
    background: var(--orange);
    border-radius: 1rem;
    padding: 0.5rem 3rem 0.5rem 0.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
    margin-top: 1.5rem;
    position: relative;
}

.bc-feat-pill-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.bc-feat-pill-text {
    text-align: left;
}

.bc-feat-pill-name {
    font-size: 0.65rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.bc-feat-pill-stat {
    font-size: 0.55rem;
    opacity: 0.7;
    display: block;
    margin-top: 2px;
}

.bc-feat-pill-tag {
    position: absolute;
    right: -0.5rem;
    bottom: 50%;
    transform: translateY(50%);
    background: #CCFF00;
    color: #000;
    font-weight: 900;
    font-size: 0.6rem;
    padding: 0.4rem 0.7rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bc-feat-pill-inner {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-right: 0.5rem;
}

.bc-feat-pill-label {
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0 0.5rem;
}

.bc-feat-pill-float {
    position: absolute;
    bottom: -0.75rem;
    right: 30%;
    background: #CCFF00;
    border-radius: 50%;
    padding: 0.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: rotate(12deg);
    z-index: 20;
}

/* Stat card in features */
.bc-feat-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #CCFF00;
    border-radius: 2rem;
    padding: 1rem 1.5rem;
    color: #000;
    box-shadow: 0 8px 20px rgba(204, 255, 0, 0.3);
    margin-top: 1.5rem;
    position: relative;
    width: 100%;
    max-width: 200px;
}

.bc-feat-stat-label {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.25rem;
}

.bc-feat-stat-num {
    font-size: 1.2rem;
    font-weight: 900;
    margin: 0;
}

.bc-feat-stat-tail {
    position: absolute;
    bottom: -8px;
    left: 2rem;
    width: 16px;
    height: 16px;
    background: #CCFF00;
    transform: rotate(45deg);
}

/* ─── Responsive for BC Hero ─── */
@media (max-width: 900px) {
    .bc-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .bc-float-card--left {
        left: 2%;
        bottom: -5%;
    }

    .bc-float-card--right {
        right: 2%;
        top: 5%;
    }

    .bc-glass-card {
        width: 140px;
    }

    .bc-avatar {
        width: 56px;
        height: 56px;
    }

    .bc-arrow {
        width: 80px;
        height: 80px;
    }

    .bc-badge {
        width: 90px;
        height: 90px;
        right: 2%;
    }

    .bc-spline-accent {
        display: none;
    }
}

@media (max-width: 640px) {
    .bc-text-row--left {
        padding-left: 5%;
    }

    .bc-text-row--right {
        padding-left: 8%;
    }

    .bc-float-card {
        display: none;
    }

    .bc-arrow {
        display: none;
    }

    .bc-badge {
        bottom: -15%;
        right: 5%;
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   OLD HERO (kept for reference, hidden)
   ============================================ */
.hero {
    display: none;
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 24px;
    margin-bottom: 2rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 8px var(--orange);
    animation: dotBlink 2.5s ease-in-out infinite;
}

@keyframes dotBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #FFF;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-title-accent {
    background: linear-gradient(180deg, #FFFFFF 0%, #A0A0A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollLinePulse 2s ease-in-out infinite;
}

@keyframes scrollLinePulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.hero-scroll-cue span {
    font-size: 0.6rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 4px;
    background: rgba(255, 140, 0, 0.04);
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
    padding: 8rem 0;
    border-top: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.about-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: var(--text-primary);
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* ============================================
   BENTO GRID
   ============================================ */
.bento-section {
    padding: 8rem 0;
    border-top: 1px solid var(--border);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

/* Base definitions for grid areas */
.bento-impl {
    grid-column: span 1;
}

.bento-conv {
    grid-column: span 3;
}

.bento-roi {
    grid-column: span 3;
}

.bento-steps {
    grid-column: span 1;
}

.bento-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, transparent 60%);
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
    transition: opacity 0.5s;
    filter: blur(40px);
    pointer-events: none;
}

.bento-card:hover .bento-glow {
    opacity: 0.8;
}

.bento-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    position: relative;
    z-index: 2;
}

/* Mobile overrides */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-impl,
    .bento-conv,
    .bento-roi,
    .bento-steps {
        grid-column: span 1;
    }
}

.service-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: inset 0 20px 40px -20px rgba(255, 100, 0, 0.3), 0 20px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(20px);
}

.service-card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    opacity: 0;
    transition: opacity 0.5s;
    filter: blur(30px);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 16px;
    color: #FFB347;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
    position: relative;
    z-index: 2;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.service-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    position: relative;
    z-index: 2;
}

/* ============================================
   PROCESS
   ============================================ */
.process-section {
    padding: 8rem 0;
    border-top: 1px solid var(--border);
}

.process-section .section-subtitle {
    margin-bottom: 3.5rem;
}

.process-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
}

.process-step {
    flex: 1;
    max-width: 320px;
    background: linear-gradient(180deg, rgba(20, 10, 5, 0.7) 0%, rgba(5, 2, 0, 0.9) 100%);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-top: 1px solid rgba(255, 120, 0, 0.25);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: transform 0.4s;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.3);
}

.process-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(255, 140, 0, 0.5);
    background: rgba(255, 140, 0, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

.process-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, transparent 80%);
    border: 1px solid rgba(255, 140, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB347;
    position: relative;
}

.process-icon-wrap::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.1);
    box-shadow: inset 0 0 10px rgba(255, 107, 0, 0.3);
}

.process-icon-wrap svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-divider {
    display: flex;
    align-items: center;
    color: rgba(255, 140, 0, 0.3);
    padding-top: 6rem;
}

.process-divider svg {
    width: 30px;
    height: 16px;
}

/* ============================================
   SHOWCASE INTRO
   ============================================ */
.showcase-intro {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.showcase-intro-title {
    font-size: clamp(2rem, 5.5vw, 3.2rem) !important;
    margin-bottom: 0.5rem !important;
}

.showcase-intro-tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.showcase-intro-glow {
    position: absolute;
    width: 500px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(50px);
}

/* ============================================
   SEQUENCE SECTIONS
   ============================================ */
.sequence-section {
    height: 500vh;
    position: relative;
}

.sequence-canvas {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    background: #f5f5f5;
}

/* ============================================
   SEQUENCE OVERLAYS (dark text on white frames)
   ============================================ */
.sequence-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.seq-overlay-left {
    padding: 0 0 0 5%;
    align-items: flex-start;
    transform: translateX(-25px);
}

.seq-overlay-right {
    padding: 0 5% 0 0;
    align-items: flex-end;
    text-align: right;
    transform: translateX(25px);
}

.seq-overlay-center {
    padding: 0 8%;
    align-items: center;
    text-align: center;
    transform: translateY(25px);
}

.sequence-overlay.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.seq-overlay-content {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.seq-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange-dark);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
}

.seq-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #111;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.seq-desc {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

.seq-overlay-center .seq-overlay-content {
    max-width: 500px;
    text-align: center;
    align-items: center;
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
    padding: 8rem 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.features-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3.5rem;
}

.features-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.9rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 140, 0, 0.15);
    background: rgba(255, 140, 0, 0.04);
}

.features-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.features-subtitle {
    font-size: clamp(0.88rem, 1.8vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    opacity: 0;
    transform: translateY(25px);
}

.feature-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-card.revealed:hover {
    transform: translateY(-3px);
}

.feature-card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    top: -60px;
    right: -60px;
    opacity: 0;
    transition: opacity 0.5s;
    filter: blur(25px);
}

.feature-card:hover .feature-card-glow {

    opacity: 1;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 140, 0, 0.06);
    border: 1px solid rgba(255, 140, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--orange);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--orange);
    border-color: var(--orange);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   VISION & MISSION
   ============================================ */
.vm-section {
    padding: 8rem 0;
    border-top: 1px solid var(--border);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.vm-card {
    background: linear-gradient(135deg, rgba(30, 15, 5, 0.4) 0%, rgba(5, 2, 0, 0.8) 100%);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-top: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.vm-card:hover {
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: inset 0 0 40px rgba(255, 107, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.vm-card-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    opacity: 0.5;
    transition: opacity 0.5s;
    filter: blur(40px);
    pointer-events: none;
}

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

.vm-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
    color: var(--orange);
}

.vm-icon svg {
    width: 44px;
    height: 44px;
}

.vm-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(255, 140, 0, 0.8);
    background: rgba(255, 140, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.vm-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.vm-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, #030100 0%, #050200 40%, rgba(200, 50, 0, 0.1) 100%);
}

.cta-glow {
    position: absolute;
    width: 100%;
    height: 80vh;
    border-radius: 50% 50% 0 0;
    background: radial-gradient(ellipse, rgba(255, 107, 0, 0.5) 0%, rgba(255, 40, 0, 0.1) 50%, transparent 80%);
    bottom: -40vh;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 2rem;
    box-shadow: 0 0 40px rgba(255, 140, 0, 0.2);
}

.cta-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.cta-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 4rem 0 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
}

.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: var(--text-tertiary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .process-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-divider {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .footer-links {
        gap: 3rem;
    }

    /* Split hero stacks on mobile */
    .hero--split {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        min-height: auto;
    }

    .hero-split-text {
        padding: 8rem 0 2rem;
        max-width: 100%;
        text-align: center;
    }

    .hero-split-text .hero-title,
    .hero-split-text .hero-desc {
        text-align: center;
    }

    .hero-split-text .hero-cta-group {
        justify-content: center;
    }

    .hero-split-text .hero-trusted {
        text-align: center;
    }

    .hero-split-text .hero-trusted div {
        justify-content: center;
    }

    .hero-split-spline {
        height: 60vw;
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-section {
        padding: 5rem 0;
    }

    .features-grid {
        padding: 0 1.25rem;
    }

    .hero {
        padding: 5rem 1.25rem 3rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 280px;
    }

    .about-section,
    .services-section,
    .process-section,
    .vm-section {
        padding: 5rem 0;
    }

    .service-card {
        padding: 1.75rem 1.5rem;
    }

    .vm-card {
        padding: 2rem 1.5rem;
    }



    .seq-title {
        font-size: clamp(1.35rem, 5vw, 1.8rem);
    }

    .seq-desc {
        font-size: 0.9rem;
    }

    .sequence-section {
        height: 400vh;
        /* extra scroll room since canvas is shorter */
    }

    .cta-section {
        padding: 5rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

/* ============================================
   ORBITAL TIMELINE (NATIVE)
   ============================================ */
.bc-orbital-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    position: relative;
    padding-top: 2rem;
}

.bc-orbital-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-orbital-orbit-box {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Base glowing center pulse */
.bc-orbital-core {
    position: absolute;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--orange), #ff4500, #ff004c);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.bc-orbital-core::before {
    content: '';
    position: absolute;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.7;
}

.bc-orbital-core::after {
    content: '';
    position: absolute;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.5;
    animation-delay: 0.5s;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.bc-orbital-core-inner {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.bc-orbital-ring {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bc-orbital-node {
    position: absolute;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-orbital-node-energy {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.bc-orbital-node-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
    transition: all 0.3s;
}

.bc-orbital-node-icon.expanded {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.5);
}

.bc-orbital-node-icon.related {
    background: rgba(255, 255, 255, 0.5);
    color: #000;
    border-color: #fff;
}

.bc-orbital-node-icon.normal {
    background: #000;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.bc-orbital-node-label {
    position: absolute;
    top: 3.5rem;
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.bc-orbital-node-label.expanded {
    color: #fff;
    transform: scale(1.25);
}

.bc-orbital-node-label.normal {
    color: rgba(255, 255, 255, 0.7);
}

.bc-orbital-card {
    position: absolute;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 16rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 100;
    overflow: visible;
}

.bc-orbital-card.show {
    display: block;
    animation: fadeCardsIn 0.3s ease forwards;
}

@keyframes fadeCardsIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.bc-orbital-card-line {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
}

.bc-orbital-card-header {
    padding: 1rem 1rem 0.5rem;
}

.bc-orbital-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bc-orbital-badge {
    padding: 0.1rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 1rem;
    border: 1px solid;
}

.bc-orbital-badge.completed {
    color: #fff;
    background: #111;
    border-color: #111;
}

.bc-orbital-badge.in-progress {
    color: #fff;
    background: var(--orange);
    border-color: var(--orange);
}

.bc-orbital-badge.pending {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.bc-orbital-card-date {
    font-size: 0.65rem;
    font-family: monospace;
    color: rgba(0, 0, 0, 0.5);
}

.bc-orbital-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: #111;
}

.bc-orbital-card-content {
    padding: 0 1rem 1rem;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}

.bc-orbital-card-energy {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bc-orbital-card-energy-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    margin-bottom: 0.25rem;
}

.bc-orbital-card-energy-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.bc-orbital-card-energy-fill {
    height: 100%;
    background: linear-gradient(to right, var(--orange), #ff004c);
}

/* ============================================
   BOUNCY CARDS (PROJECTS)
   ============================================ */
.bc-bouncy-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.bc-bouncy-card {
    position: relative;
    min-height: 400px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 1.5rem;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.bc-bouncy-card:hover {
    transform: scale(0.97) rotate(-1deg);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.bc-bouncy-col-4 {
    grid-column: span 12;
}

.bc-bouncy-col-8 {
    grid-column: span 12;
}

.bc-bouncy-col-12 {
    grid-column: span 12;
}

@media (min-width: 768px) {
    .bc-bouncy-col-4 {
        grid-column: span 4;
    }

    .bc-bouncy-col-8 {
        grid-column: span 8;
    }
}

.bc-bouncy-demo {
    position: absolute;
    bottom: -1rem;
    left: 1.5rem;
    right: 1.5rem;
    top: 200px;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    background: linear-gradient(to bottom right, var(--orange), #ff004c);
    padding: 2rem;
    transform: translateY(2rem);
    /* Peeking */
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
}

.bc-bouncy-demo.demo-green {
    background: linear-gradient(to bottom right, #CCFF00, #22c55e);
    border-top-color: rgba(255, 255, 255, 0.6);
}

.bc-bouncy-demo.demo-dark {
    background: linear-gradient(to bottom right, #1a1a1a, #000);
    border-top-color: rgba(255, 255, 255, 0.1);
}

.bc-bouncy-card:hover .bc-bouncy-demo {
    transform: translateY(0.5rem) rotate(1.5deg);
}

.bc-bouncy-demo-text {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    opacity: 0.9;
    text-align: center;
    display: block;
}

.demo-green .bc-bouncy-demo-text {
    color: #111;
}

/* ============================================
   BASE CLUB HIGH-DETAIL CARDS
   ============================================ */
.bc-detail-wrapper {
    background-color: var(--bg);
    color: var(--text-primary);
    border-top-left-radius: 2.5rem;
    border-top-right-radius: 2.5rem;
    padding: 4rem 1.5rem;
    position: relative;
    z-index: 20;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.08);
    width: 100%;
}

@media (min-width: 768px) {
    .bc-detail-wrapper {
        border-top-left-radius: 3.5rem;
        border-top-right-radius: 3.5rem;
        padding: 6rem 2.5rem;
    }
}

.bc-detail-grid {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .bc-detail-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.bc-detail-card {
    background-color: #F8F9FA;
    border-radius: 2rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border: 1px solid #EFEFEF;
    min-height: 18rem;
}

.bc-detail-card h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 900;
    color: #111;
}

@media (min-width: 768px) {
    .bc-detail-card h3 {
        font-size: 1.6rem;
    }
}

.bc-detail-card-sub {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: auto;
}

/* Micro Elements */
.bc-pill-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Pill 1 style */
.bc-detail-pill {
    display: flex;
    align-items: center;
    background-color: var(--text-primary);
    border-radius: 2rem;
    padding: 0.5rem 3.5rem 0.5rem 0.5rem;
    color: var(--bg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.bc-detail-pill-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg);
}

.bc-detail-badge {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--orange);
    color: #fff;
    font-weight: 900;
    font-size: 0.65rem;
    padding: 0.35rem 0.6rem;
    border-radius: 0.75rem;
    z-index: 20;
}

/* Pill 2 style (simple outline text with absolute floating element) */
.bc-detail-float-badge {
    position: absolute;
    bottom: -1rem;
    right: 30%;
    background-color: #CCFF00;
    padding: 0.5rem;
    border-radius: 50%;
    transform: rotate(12deg);
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Arrow SVGs */
.bc-detail-arrow {
    display: none;
    position: absolute;
    width: 4rem;
    height: 4rem;
    z-index: 30;
}

@media (min-width: 768px) {
    .bc-detail-arrow {
        display: block;
    }
}

/* <-- THIS WAS MISSING! */

/* ============================================
   MASONRY GRID (SHADCN TESTIMONIALS STYLE)
   ============================================ */
.bc-masonry-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .bc-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bc-masonry-card--large {
        grid-column: span 2;
    }
}

@media (min-width: 768px) {
    .bc-masonry-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bc-masonry-card--wide {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .bc-masonry-grid {
        grid-template-rows: repeat(2, auto);
    }

    .bc-masonry-card--large {
        grid-row: span 2;
        grid-column: span 2;
    }
}

.bc-masonry-card {
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-align: left;
    height: 100%;
    position: relative;
}

.bc-masonry-card:hover {
    border-color: transparent;
}

/* SPOTLIGHT EDGE HOVER EFFECT */
.bc-masonry-card::before,
.bc-detail-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 2px;
    background: radial-gradient(350px 350px at calc(var(--x, 0) * 1px) calc(var(--y, 0) * 1px),
            rgba(255, 140, 0, 1),
            rgba(204, 255, 0, 0.4) 60%,
            transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 10;
}

.bc-masonry-card:hover::before,
.bc-detail-card:hover::before {
    opacity: 1;
}

/* 3D Mobile Swipe Animation for Evolution Cards */
@media (max-width: 639px) {
    .evo-swipe-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding-bottom: 2rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        perspective: 1000px;
        -webkit-overflow-scrolling: touch;
    }
    
    .evo-swipe-wrapper > .bc-masonry-grid {
        display: flex;
        gap: 1rem;
        width: max-content;
    }
    
    .evo-swipe-wrapper > .bc-masonry-grid > .bc-masonry-card {
        width: 85vw;
        max-width: 320px;
        scroll-snap-align: center;
        flex-shrink: 0;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Directional Tile Swipe Logic via JS */
    .evo-swipe-wrapper.is-scrolling-left .bc-masonry-card {
        transform: rotateY(8deg) scale(0.98);
    }
    .evo-swipe-wrapper.is-scrolling-right .bc-masonry-card {
        transform: rotateY(-8deg) scale(0.98);
    }
}

.bc-masonry-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.bc-masonry-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bc-masonry-icon {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ============================================
   SHADCN FOOTER REPLICA (NATIVE)
   ============================================ */
.bc-shad-footer {
    position: relative;
    width: 100%;
    max-width: 72rem;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
    border-top: 1px solid var(--border);
    background: radial-gradient(35% 128px at 50% 0%, var(--orange-glow), transparent);
    padding: 3rem 2rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .bc-shad-footer {
        padding: 4rem 2rem;
    }
}

.bc-shad-footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: 1px;
    width: 33%;
    background: var(--orange);
    border-radius: 9999px;
    filter: blur(4px);
    opacity: 0.6;
}

.bc-shad-footer-inner {
    display: grid;
    width: 100%;
    gap: 2rem;
}

@media (min-width: 1280px) {
    .bc-shad-footer-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.bc-shad-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bc-shad-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .bc-shad-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .bc-shad-links-grid {
        grid-column: span 2;
        margin-top: 0;
    }
}

.bc-shad-col h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.bc-shad-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bc-shad-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bc-shad-link:hover {
    color: var(--orange);
}

.bc-shad-link svg {
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.bc-shad-anim {
    filter: blur(4px);
    transform: translateY(-8px);
    opacity: 0;
    transition: filter 0.8s ease, transform 0.8s ease, opacity 0.8s ease;
}

.bc-shad-anim.in-view {
    filter: blur(0px);
    transform: translateY(0);
    opacity: 1;
}

/* ==================== CPU ARCHITECTURE ANIMATIONS ==================== */
.cpu-architecture {
    offset-anchor: 10px 0px;
    animation: cpu-path-anim;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.75, -0.01, 0, 0.99);
}

.cpu-line-1 {
    offset-path: path("M 35 15 h 32 q 5 0 5 5 v 24 q 0 5 5 5 h 10");
    animation-duration: 4s;
    animation-delay: 0.5s;
}

.cpu-line-2 {
    offset-path: path("M 35 35 h 32 q 5 0 5 5 v 8 q 0 5 5 5 h 10");
    animation-delay: 2s;
    animation-duration: 3s;
}

.cpu-line-3 {
    offset-path: path("M 35 75 h 32 q 5 0 5 -5 v -7 q 0 -5 5 -5 h 10");
    animation-delay: 4s;
    animation-duration: 3.5s;
}

.cpu-line-4 {
    offset-path: path("M 35 95 h 32 q 5 0 5 -5 v -23 q 0 -5 5 -5 h 10");
    animation-delay: 1s;
    animation-duration: 4.5s;
}

.cpu-line-5 {
    offset-path: path("M 185 15 h -32 q -5 0 -5 5 v 24 q 0 5 -5 5 h -10");
    animation-delay: 3s;
    animation-duration: 4s;
}

.cpu-line-6 {
    offset-path: path("M 185 35 h -32 q -5 0 -5 5 v 8 q 0 5 -5 5 h -10");
    animation-delay: 5s;
    animation-duration: 3s;
}

.cpu-line-7 {
    offset-path: path("M 185 75 h -32 q -5 0 -5 -5 v -7 q 0 -5 -5 -5 h -10");
    animation-delay: 1.5s;
    animation-duration: 3.5s;
}

.cpu-line-8 {
    offset-path: path("M 185 95 h -32 q -5 0 -5 -5 v -23 q 0 -5 -5 -5 h -10");
    animation-delay: 6s;
    animation-duration: 4.5s;
}

@keyframes cpu-path-anim {
    0% {
        offset-distance: 0%;
    }

    100% {
        offset-distance: 100%;
    }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
    padding: 4rem 1.5rem 6rem;
    background: var(--bg);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 1rem;
    letter-spacing: -0.03em;
}

.contact-subtitle {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 1rem auto 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-grid {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 3rem;
    align-items: flex-start;
}

/* ---- Left: Info cards ---- */

.contact-info {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.contact-info-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 4px 20px var(--orange-glow);
    transform: translateY(-2px);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-subtle);
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.12);
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
    margin-bottom: 0.15rem;
}

.contact-info-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-link {
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--orange);
}

/* ---- Right: Form ---- */

.contact-form-wrapper {
    flex: 1;
    min-width: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-row {
    display: flex;
    gap: 1rem;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.contact-input {
    height: 44px;
    width: 100%;
    padding: 0 0.9rem;
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-input::placeholder {
    color: var(--text-tertiary);
}

.contact-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-glow);
}

.contact-textarea {
    width: 100%;
    min-height: 120px;
    padding: 0.75rem 0.9rem;
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    resize: vertical;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-textarea::placeholder {
    color: var(--text-tertiary);
}

.contact-textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-glow);
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    height: 48px;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    color: #fff;
    background: var(--orange);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-submit:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--orange-glow-strong);
}

.contact-submit:active {
    transform: translateY(0);
}

/* ---- Mobile responsive ---- */

@media (max-width: 768px) {
    .contact-section {
        padding: 6rem 1rem 4rem;
    }

    .contact-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info {
        flex: unset;
        width: 100%;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .bc-hero {
        padding-top: 6rem !important;
        padding-bottom: 2rem !important;
        min-height: 40vh !important;
    }

    .bc-hero-sub {
        font-size: 1rem !important;
        padding: 0 1rem;
    }
}

/* ==================== MOBILE NAVIGATION ==================== */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    z-index: 101;
    padding: 0.5rem;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
}

.mobile-drawer.open {
    pointer-events: auto;
}

.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-drawer.open .mobile-drawer-backdrop {
    opacity: 1;
}

.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.mobile-drawer.open .mobile-drawer-content {
    transform: translateX(0);
}

.close-drawer-btn {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: #111;
    cursor: pointer;
    padding: 0.5rem;
    margin-bottom: 2rem;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.2s;
}

.drawer-link:active {
    color: var(--orange);
}

.drawer-cta {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 140, 0, 0.1);
    color: var(--orange-dark);
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .bc-nav-links,
    .bc-nav-cta {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .bc-grid-compact-mobile {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .bc-grid-compact-mobile .bento-card {
        padding: 1.25rem !important;
    }

    .bc-grid-compact-mobile h2,
    .bc-grid-compact-mobile h3 {
        font-size: 1.25rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.75rem !important;
    }

    .bc-grid-compact-mobile p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.5rem !important;
    }

    .bc-grid-compact-mobile .section-badge {
        font-size: 0.6rem !important;
        padding: 0.25rem 0.5rem !important;
        margin-bottom: 1rem !important;
    }

    .bc-grid-compact-mobile ul li {
        font-size: 0.85rem !important;
        padding: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        display: flex;
        align-items: center;
        gap: 0.5rem !important;
    }
}


/* =========================================================
   GLOBAL MOBILE OVERRIDE 
   (Uncompromising mobile-first reset below 768px for inline styles)
   ========================================================= */
@media (max-width: 768px) {

    /* Base scaling */
    html {
        font-size: 14px !important;
    }

    /* Container fluid padding */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Suppress massive arbitrary section paddings */
    .bc-content-wrap section,
    section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* Standardize Bento & Masonry card spacing */
    .bento-card,
    .bc-masonry-card {
        padding: 1.5rem !important;
        border-radius: 1.5rem !important;
    }

    /* Suppress arbitrary inline grids on mobile to single column */
    .container>div[style*="display:grid"],
    .container>div[style*="display: grid"],
    section>div>div[style*="display:grid"],
    section>div>div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* EXCEPTION: About page custom 2x2 grids */
    .bc-grid-compact-mobile {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    /* Typography Overrides */
    h1,
    h2,
    h3 {
        line-height: 1.1 !important;
        letter-spacing: -0.02em !important;
        word-break: break-word !important;
    }

    h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }

    p {
        font-size: 1rem !important;
    }

    .bc-hero-sub,
    .bc-detail-card-sub {
        font-size: 1rem !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    /* Form scale */
    input,
    textarea {
        font-size: 1rem !important;
        padding: 0.75rem 0 !important;
    }

    /* Bouncy Demo Card fixes (Home Page) */
    .bc-bouncy-card {
        min-height: 380px !important;
        padding-bottom: 2rem !important;
    }

    .bc-bouncy-demo {
        top: 15rem !important;
        padding: 1.5rem !important;
    }

    /* Custom Ultra-Compact Mobile Footer Setup */
    footer {
        padding: 2rem 1rem 1rem !important;
    }

    footer .container>div:first-child {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 1.5rem !important;
        justify-content: space-between !important;
        margin-bottom: 2rem !important;
    }

    footer .container>div:first-child>div:first-child {
        width: 100% !important;
        margin-bottom: 0rem !important;
    }

    footer .container>div:first-child>div:first-child p {
        display: none !important;
        /* Hide long mission text on mobile footer */
    }

    footer h4 {
        margin-bottom: 0.5rem !important;
    }

    footer ul {
        gap: 0.25rem !important;
    }

    /* Global scroll overflow safety bounds */
    body {
        overflow-x: hidden;
        width: 100vw;
    }

    /* =========================================
       Aldra Standard: Horizontal Swipe Re-design 
       ========================================= */
    .process-wrapper {
        width: 100vw;
        margin-left: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 1.5rem;
        /* Room for scrollbar/shadow */
    }

    /* Override the previous grid template from earlier global block */
    .process-wrapper .bc-masonry-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 1rem !important;
        width: max-content !important;
    }

    .bc-masonry-card {
        width: 85vw !important;
        /* Take up most of screen but show next card */
        max-width: 320px !important;
        scroll-snap-align: center;
        flex-shrink: 0;
        min-height: 280px;
    }

    /* Clean up the icon stack so it's tidier */
    .bc-masonry-icon {
        margin-top: 1.5rem !important;
    }
}

/* Update for bc-nav sticky behavior */
.bc-nav {
    position: fixed;
    transition: transform 0.45s var(--ease), padding 0.3s var(--ease);
}

.bc-nav.nav--scrolled {
    padding: 1rem 2.5rem;
}

.bc-nav.nav--hidden {
    transform: translateY(-100%);
}

@media (max-width: 768px) {
    .bc-nav.nav--scrolled {
        padding: 0.75rem 1.5rem;
    }
}
/* ============================================================
   LEGAL PAGES (Privacy, Terms, Cookie Policy)
   ============================================================ */

.legal-doc {
    color: #333;
    line-height: 1.75;
}

.legal-intro {
    font-size: 1.1rem;
    color: #444;
    padding: 1.5rem 2rem;
    background: #f7f7f7;
    border-left: 3px solid var(--orange);
    border-radius: 0 0.5rem 0.5rem 0;
    margin-bottom: 2.5rem;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 1.25rem 0 0.5rem;
}

.legal-section p {
    margin-bottom: 0.9rem;
    color: #444;
    font-size: 0.975rem;
}

.legal-section ul {
    padding-left: 1.5rem;
    margin-bottom: 0.9rem;
}

.legal-section ul li {
    color: #444;
    font-size: 0.975rem;
    margin-bottom: 0.35rem;
}

.legal-section a {
    color: var(--orange-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-section code {
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: 0.875rem;
    background: #f0f0f0;
    padding: 0.15em 0.45em;
    border-radius: 4px;
    color: #111;
}

.legal-contact-box {
    background: #f7f7f7;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-top: 0.75rem;
}

.legal-contact-box p {
    margin: 0.2rem 0;
    font-size: 0.9rem;
}

.legal-table-wrap {
    overflow-x: auto;
    margin: 1rem 0;
    border-radius: 0.5rem;
    border: 1px solid rgba(0,0,0,0.08);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.legal-table th {
    background: #111;
    color: #fff;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: #444;
    vertical-align: top;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-callout {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(204, 255, 0, 0.1);
    border: 1px solid rgba(204, 255, 0, 0.4);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
    color: #333;
    font-size: 0.9rem;
}

.legal-callout svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #5a7a00;
}

.legal-callout p {
    margin: 0;
    color: #333;
}

/* ── Evolution Mobile UI Sequence Split Layout ── */
@media (max-width: 768px) {
    .sequence-canvas {
        height: 100vh !important;
    }
    
    .sequence-overlay {
        top: 0 !important;
        height: 100vh !important;
        height: 100dvh !important;
        width: 100vw !important;
        padding: 0 !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: center !important;
        transform: translateY(16px) !important;
    }

    .seq-overlay-left,
    .seq-overlay-right,
    .seq-overlay-center {
        align-items: center !important;
        text-align: center !important;
        transform: translateY(16px) !important;
    }

    .seq-overlay-content {
        background: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0 !important;
        padding: 5vh 5% !important;
        box-shadow: none !important;
        max-width: 100% !important;
        width: 100% !important;
        height: 100vh !important;
        justify-content: space-between !important;
        gap: 0 !important;
    }

    .seq-overlay-center .seq-overlay-content {
        max-width: 100% !important;
        text-align: center !important;
        align-items: center !important;
    }

    .seq-title {
        margin-bottom: auto !important;
        text-shadow: 0 2px 30px rgba(255,255,255,0.9), 0 1px 5px rgba(255,255,255,1), 0 0 10px rgba(255,255,255,0.8) !important;
    }
    
    .seq-label {
        text-shadow: 0 2px 20px rgba(255,255,255,0.9), 0 1px 3px rgba(255,255,255,1) !important;
    }

    .seq-desc {
        background: rgba(255,255,255,0.7) !important;
        padding: 1.25rem 1.5rem !important;
        border-radius: 12px !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        box-shadow: 0 8px 30px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(255,255,255,0.6) !important;
    }
}
