/* ============================================================
   LUCAS BATT — DESIGN SYSTEM PREMIUM 2026
   Stack: Vanilla CSS · Mobile-First · Glassmorphism
   Referências: Apple · Linear · Stripe · Vercel · Nothing
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Cores base */
  --bg:             #000000;
  --bg-2:           #080808;
  --bg-3:           #0f0f0f;
  --text:           #ffffff;
  --text-muted:     rgba(255,255,255,0.55);
  --text-dim:       rgba(255,255,255,0.3);

  /* Acentos */
  --blue:           #2563eb;
  --blue-light:     #3b82f6;
  --blue-glow:      rgba(37,99,235,0.25);
  --green:          #10b981;
  --green-glow:     rgba(16,185,129,0.22);
  --gold:           #ffd43b;
  --gold-glow:      rgba(255,212,59,0.22);

  /* Glass */
  --glass-bg:       rgba(255,255,255,0.04);
  --glass-hover:    rgba(255,255,255,0.07);
  --glass-border:   rgba(255,255,255,0.08);
  --glass-border-h: rgba(255,255,255,0.16);

  /* Fontes */
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-script:  'Satisfy', cursive;

  /* Nav */
  --nav-h: 72px;

  /* Raios */
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  26px;
  --r-xl:  40px;

  /* Motion */
  --spring:   cubic-bezier(0.2, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

::selection { background: var(--gold); color: #000; }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track  { background: #050505; }
::-webkit-scrollbar-thumb  {
  background: linear-gradient(180deg, rgba(255,212,59,.5), rgba(37,99,235,.4));
  border-radius: 999px;
}
* { scrollbar-width: thin; scrollbar-color: rgba(255,212,59,.5) #050505; }

/* ── UTILITY ─────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3.5rem); }
.script-font { font-family: var(--font-script); }

/* ── NOISE OVERLAY ───────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: color-burn;
}

.noise-overlay {
  position: fixed; inset: 0; z-index: 2;
  pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  animation: noiseShift 1.4s steps(4) infinite;
}
@keyframes noiseShift {
  0%   { transform: translate(0,0); }  25% { transform: translate(-2%,1%); }
  50%  { transform: translate(1%,-2%); } 75% { transform: translate(-1%,2%); }
  100% { transform: translate(2%,-1%); }
}

/* ── AURORA ORBS ─────────────────────────────────────────── */
.aurora-orbs {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.aurora-orbs .orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.3;
  mix-blend-mode: screen; will-change: transform;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  top: -150px; left: -150px;
  animation: orbDrift1 24s ease-in-out infinite;
}
.orb-2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--blue-light), transparent 70%);
  bottom: -180px; right: -160px;
  animation: orbDrift2 30s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--green), transparent 70%);
  top: 42%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orbDrift3 36s ease-in-out infinite;
  opacity: 0.18;
}
@keyframes orbDrift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(110px,80px) scale(1.15)} }
@keyframes orbDrift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-90px,-60px) scale(0.88)} }
@keyframes orbDrift3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-30%,-70%) scale(1.2)} }

/* ── MOUSE GLOW ──────────────────────────────────────────── */
.mouse-glow {
  display: none;
  position: fixed; top: 0; left: 0; z-index: 1;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,.028) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .08s linear;
}
@media (min-width: 900px) { .mouse-glow { display: block; } }

/* ── FLOATING PARTICLES ──────────────────────────────────── */
.floating-particles {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden;
}
.floating-particles .particle {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,212,59,.85), transparent);
  opacity: 0;
  animation: floatUp 15s linear infinite;
}
.particle:nth-child(1) { left: 8%;  width:4px; animation-delay:0s;   animation-duration:17s; }
.particle:nth-child(2) { left:20%;  width:7px; animation-delay:2.5s; animation-duration:13s; }
.particle:nth-child(3) { left:33%;  background:radial-gradient(circle,rgba(16,185,129,.8),transparent); animation-delay:4s; animation-duration:19s; }
.particle:nth-child(4) { left:45%;  width:3px; animation-delay:1s;   animation-duration:16s; }
.particle:nth-child(5) { left:57%;  width:6px; background:radial-gradient(circle,rgba(255,255,255,.55),transparent); animation-delay:5.5s; animation-duration:14s; }
.particle:nth-child(6) { left:68%;  width:4px; animation-delay:3s;   animation-duration:18s; }
.particle:nth-child(7) { left:78%;  background:radial-gradient(circle,rgba(37,99,235,.7),transparent); animation-delay:6.5s; animation-duration:15s; }
.particle:nth-child(8) { left:90%;  width:5px; animation-delay:2s;   animation-duration:20s; }
@keyframes floatUp {
  0%   { transform: translateY(110vh) translateX(0)    scale(.6); opacity: 0; }
  10%  { opacity: .8; }
  50%  { transform: translateY(50vh)  translateX(28px)  scale(1); }
  90%  { opacity: .5; }
  100% { transform: translateY(-10vh) translateX(-18px) scale(.4); opacity: 0; }
}

/* ── SCROLL PROGRESS ─────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%; z-index: 2001;
  background: linear-gradient(90deg, var(--gold), var(--blue-light));
  transition: width .08s linear;
}

/* ── PRELOADER ───────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; pointer-events: none;
}
.preloader-panel {
  position: absolute; top: 0; bottom: 0; width: 50%;
  background: var(--bg);
  transition: transform 1.1s var(--spring);
}
.preloader-left  { left:  0; transform: translateX(0); }
.preloader-right { right: 0; transform: translateX(0); }
.preloader-logo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 10000;
  width: min(180px, 38vw);
  transition: opacity .7s ease, transform .7s var(--spring);
}
.preloader-logo img { width: 100%; filter: drop-shadow(0 0 28px rgba(255,255,255,.18)); }
.preloader.opening .preloader-left  { transform: translateX(-100%); }
.preloader.opening .preloader-right { transform: translateX(100%); }
.preloader.opening .preloader-logo  { opacity: 0; transform: translate(-50%,-50%) scale(1.08); }
.preloader:not(.opening)            { pointer-events: all; }

/* ── AUDIO PLAYER ────────────────────────────────────────── */
.audio-player {
  position: fixed; right: 16px; bottom: 16px; z-index: 1200;
}
.audio-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .48rem .78rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(16px);
  color: rgba(255,255,255,.78);
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .08em;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.audio-toggle:hover { background: rgba(20,20,20,.92); border-color: var(--glass-border-h); transform: translateY(-1px); }
.audio-label { font-size: .72rem; letter-spacing: .18em; color: rgba(255,255,255,.45); }
.icon-pause { display: none; }
.audio-toggle.is-playing .icon-play  { display: none; }
.audio-toggle.is-playing .icon-pause { display: block; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  height: var(--nav-h);
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.navbar.navbar-scrolled {
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
}
.navbar-inner {
  max-width: 1400px; margin: 0 auto;
  height: 100%; padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 72px; width: auto;
  transform: scale(2.6) translateX(-10%);
  transform-origin: left center;
  transition: opacity .25s ease;
}
.logo-link:hover .logo-img { opacity: .8; }

.nav-links {
  display: none;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
.nav-a {
  font-size: .88rem; font-weight: 500; letter-spacing: .04em;
  color: var(--text-muted);
  position: relative;
  transition: color .25s ease;
  padding-bottom: 2px;
}
.nav-a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width .3s var(--spring);
}
.nav-a:hover, .nav-a.active { color: var(--text); }
.nav-a:hover::after, .nav-a.active::after { width: 100%; }

.navbar-actions { display: flex; align-items: center; gap: .85rem; }
.nav-cta {
  display: none;
  padding: .52rem 1.1rem;
  border: 1px solid var(--glass-border-h);
  border-radius: 999px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  background: var(--glass-bg);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.nav-cta:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: 6px; z-index: 1001;
}
.bar {
  width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .4s var(--spring), opacity .3s ease;
  display: block;
}
.menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop nav reveal */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta   { display: flex; }
  .menu-toggle { display: none; }
  .logo-img { height: 80px; }
}

/* Mobile nav panel */
@media (max-width: 899px) {
  .nav-links {
    display: flex;
    position: fixed; inset: 0;
    flex-direction: column; align-items: flex-start;
    justify-content: flex-start;
    gap: 1.4rem;
    padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2rem;
    background: rgba(0,0,0,.97);
    backdrop-filter: blur(24px);
    transform: translateY(-100%);
    transition: transform .55s var(--spring);
    z-index: 999;
  }
  .nav-links.active { transform: translateY(0); }
  .nav-a { font-size: 1.6rem; font-family: var(--font-display); letter-spacing: .06em; color: rgba(255,255,255,.9); }
  .nav-a::after { height: 2px; }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.5rem;
  background: #fff; color: #000;
  font-family: var(--font-display); font-size: 1rem; letter-spacing: .06em;
  border-radius: var(--r-sm);
  transition: transform .3s var(--spring), box-shadow .3s ease, background .25s ease;
  box-shadow: 0 0 0 rgba(255,255,255,0);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255,255,255,.18);
}
.btn-primary:active { transform: scale(.97); }
.btn-primary.btn-large { padding: .95rem 2rem; font-size: 1.05rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.5rem;
  border: 1px solid var(--glass-border-h);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.82);
  font-family: var(--font-display); font-size: 1rem; letter-spacing: .06em;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}
.btn-ghost.btn-sm { padding: .58rem 1.1rem; font-size: .88rem; }

/* ── SCROLL INDICATOR ────────────────────────────────────── */
.scroll-indicator {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  pointer-events: none; opacity: 0;
  animation: fadeInUp 1s ease 1.8s forwards;
  z-index: 10;
  transition: opacity .4s ease;
}
.scroll-indicator.hidden { opacity: 0 !important; }
.scroll-label {
  font-family: var(--font-display); font-size: .65rem;
  letter-spacing: .42em; color: rgba(255,255,255,.45);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.5), transparent);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -40px; left: 0;
  width: 100%; height: 40px;
  background: linear-gradient(180deg, transparent, #fff);
  animation: scrollSlide 2s ease-in-out infinite;
}
@keyframes scrollSlide { 0%{transform:translateY(0)} 100%{transform:translateY(80px)} }

/* ── SECTION COMMON ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-kicker {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .36em;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: .9; letter-spacing: .04em;
  color: #fff;
}
.section-title em { font-style: normal; color: rgba(255,255,255,.55); }
.section-sub {
  margin-top: .9rem;
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
}

/* ── REVEAL SYSTEM ───────────────────────────────────────── */
.reveal-hidden { opacity: 0; }
.reveal-hidden.revealed { opacity: 1; }

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity .8s var(--spring),
    transform .8s var(--spring),
    filter .8s var(--spring);
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee {
  position: relative; overflow: hidden;
  padding: clamp(18px, 3vw, 28px) 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: linear-gradient(90deg, rgba(0,0,0,.5), rgba(12,12,12,.7), rgba(0,0,0,.5));
  margin: clamp(2.5rem, 6vw, 5rem) 0;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; height: 100%;
  width: clamp(60px, 12vw, 130px); z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, #000, transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, #000, transparent); }
.marquee-track {
  display: flex; align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 34s;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.m-item {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  letter-spacing: .06em; color: #fff; white-space: nowrap;
}
.m-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.5);
}
.m-dot { color: var(--gold); font-size: clamp(.9rem, 1.8vw, 1.2rem); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   01 · HERO
   ════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 2rem) clamp(1.25rem,5vw,3.5rem) 5rem;
  overflow: hidden;
  text-align: center;
}

/* Gradient mesh background */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255,212,59,.07), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(37,99,235,.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 55% 20%, rgba(16,185,129,.05), transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
  max-width: 900px; width: 100%;
}

/* Kicker */
.hero-kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .38rem .9rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  font-size: .72rem; font-weight: 600; letter-spacing: .28em;
  color: var(--text-muted); text-transform: uppercase;
}
.kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(1.25)} }

/* Headline */
.hero-headline {
  display: flex; flex-direction: column; align-items: center;
  gap: .1rem; line-height: .88;
}
.hero-name-script {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  color: rgba(255,255,255,.65);
  display: block;
}
.hero-name-display {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 18vw, 14rem);
  letter-spacing: .02em; color: #fff; display: block;
  background: linear-gradient(180deg, #fff 40%, rgba(255,255,255,.4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 60px rgba(255,255,255,.08));
}

/* Roles */
.hero-roles {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: .5rem .75rem;
}
.role-tag {
  font-size: clamp(.8rem, 1.5vw, .95rem);
  font-weight: 500; letter-spacing: .04em;
  color: var(--text-muted);
}
.role-sep { color: rgba(255,255,255,.22); font-size: .9rem; }

/* Sub */
.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: var(--text-muted); line-height: 1.7;
  max-width: 560px;
}

/* CTAs */
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* Stats */
.hero-stats {
  display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.5rem);
  flex-wrap: wrap; justify-content: center;
  padding: clamp(.9rem, 2vw, 1.2rem) clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
}
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff; letter-spacing: .04em;
}
.stat-label { font-size: .7rem; font-weight: 600; letter-spacing: .2em; color: var(--text-dim); text-transform: uppercase; }
.stat-div { width: 1px; height: 32px; background: var(--glass-border); }

/* ════════════════════════════════════════════════════════════
   02 · SOBRE / BIO
   ════════════════════════════════════════════════════════════ */
.about-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background:
    radial-gradient(ellipse 60% 40% at 12% 20%, rgba(255,212,59,.07), transparent 50%),
    radial-gradient(ellipse 60% 40% at 88% 80%, rgba(37,99,235,.09), transparent 50%),
    var(--bg-2);
}

/* Bento grid */
.about-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}

.bento-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color .35s ease, background .35s ease, transform .35s var(--spring);
}
.bento-card:hover {
  border-color: var(--glass-border-h);
  background: var(--glass-hover);
  transform: translateY(-3px);
}

/* Photo main */
.bento-photo-main { aspect-ratio: 4/3; }
.bento-photo-main .bio-fig { height: 100%; }
.bio-fig { position: relative; overflow: hidden; height: 100%; margin: 0; }
.bio-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; transition: transform 1s var(--spring); }
.bento-card:hover .bio-photo { transform: scale(1.04); }
.photo-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light; opacity: .3;
}
.photo-status-badge {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .32rem .75rem;
  border-radius: 999px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

/* Quote */
.bento-quote { padding: clamp(1.5rem, 4vw, 2.5rem); display: flex; flex-direction: column; gap: 1.2rem; justify-content: space-between; }
.quote-mark { font-family: Georgia, serif; font-size: 5rem; line-height: .6; color: rgba(255,255,255,.08); }
.quote-text { font-size: clamp(.95rem, 1.5vw, 1.1rem); color: rgba(255,255,255,.78); line-height: 1.75; }
.quote-sig { display: flex; flex-direction: column; gap: .25rem; }
.sig-name { font-size: clamp(1.2rem, 2.5vw, 1.6rem); color: rgba(255,255,255,.7); }
.sig-role { font-size: .7rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--text-dim); }

/* Location */
.bento-location {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  display: flex; align-items: center; gap: 1rem;
}
.location-icon { color: var(--gold); flex-shrink: 0; }
.location-city { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.8rem); color: #fff; letter-spacing: .04em; }
.location-country { font-size: .72rem; font-weight: 600; letter-spacing: .22em; color: var(--text-dim); text-transform: uppercase; }

/* Values */
.bento-values { padding: clamp(1.2rem, 3vw, 1.8rem); }
.bento-card-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .34em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 1rem;
}
.values-list { display: flex; flex-direction: column; gap: .6rem; }
.value-item { display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: rgba(255,255,255,.7); }
.value-dot { color: var(--gold); font-size: .55rem; flex-shrink: 0; }

/* Photo sec */
.bento-photo-sec { aspect-ratio: 3/4; }
.bento-photo-sec .bio-photo { object-position: center 15%; }

/* Mission */
.bento-mission { padding: clamp(1.2rem, 3vw, 2rem); display: flex; flex-direction: column; gap: .8rem; justify-content: center; }
.mission-text { font-size: clamp(1rem, 1.8vw, 1.2rem); color: rgba(255,255,255,.72); line-height: 1.65; }

/* Desktop bento layout */
@media (min-width: 600px) {
  .about-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-photo-main { grid-column: span 1; aspect-ratio: 3/4; }
  .bento-quote      { grid-column: span 1; }
}
@media (min-width: 1000px) {
  .about-bento {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
  }
  .bento-photo-main  { grid-column: 1 / 5;   grid-row: 1 / 3; aspect-ratio: auto; min-height: 420px; }
  .bento-quote       { grid-column: 5 / 10;  grid-row: 1 / 2; }
  .bento-location    { grid-column: 10 / 13; grid-row: 1 / 2; }
  .bento-values      { grid-column: 5 / 8;   grid-row: 2 / 3; }
  .bento-photo-sec   { grid-column: 8 / 10;  grid-row: 2 / 3; aspect-ratio: 3/4; min-height: 0; }
  .bento-mission     { grid-column: 10 / 13; grid-row: 2 / 3; }
}

/* ════════════════════════════════════════════════════════════
   03 · SHOWS / AGENDA
   ════════════════════════════════════════════════════════════ */
.shows-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 10%, rgba(255,212,59,.06), transparent 50%),
    var(--bg);
}
.shows-section:first-child {
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + clamp(2.4rem, 8vw, 5rem));
}
.shows-layout { display: flex; flex-direction: column; gap: 1rem; }

/* Featured show card */
.show-card-featured {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: border-color .35s ease;
}
.show-card-featured:hover { border-color: var(--glass-border-h); }

.show-banner-link {
  display: block; position: relative; overflow: hidden;
  cursor: pointer;
  max-width: 360px; margin: 0 auto;
}
.show-banner-img {
  width: 100%; display: block;
  transition: transform .8s var(--spring);
}
.show-banner-link:hover .show-banner-img { transform: scale(1.03); }
.show-banner-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.4));
}
.show-live-badge {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .32rem .75rem;
  border-radius: 999px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: #fff;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}

.show-info {
  padding: clamp(1.2rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.show-date-area { display: flex; gap: 1.2rem; align-items: flex-start; }
.show-date-box {
  display: flex; flex-direction: column; align-items: center;
  border-right: 1px solid var(--glass-border); padding-right: 1.2rem;
  flex-shrink: 0;
}
.show-day { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: #fff; }
.show-month { font-size: .8rem; font-weight: 700; letter-spacing: .3em; color: var(--text-muted); text-transform: uppercase; }
.show-name { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: #fff; margin-bottom: .3rem; }
.show-artists { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.65); margin-bottom: .25rem; }
.show-venue { font-size: .78rem; color: var(--text-dim); letter-spacing: .06em; text-transform: uppercase; line-height: 1.45; }

/* Countdown */
.show-countdown {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .5rem;
  padding: 1rem clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid var(--glass-border);
}
.cd-prefix {
  font-size: .7rem; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--text-dim); margin-right: .25rem;
}
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 48px; }
.cd-num {
  font-family: var(--font-display); font-size: 1.9rem; line-height: 1;
  color: #fff; letter-spacing: .04em;
}
.cd-lbl { font-size: .56rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--text-dim); margin-top: 2px; }
.cd-sep { font-family: var(--font-display); font-size: 1.5rem; color: rgba(255,255,255,.18); padding-bottom: 10px; }
.cd-ended { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); letter-spacing: .06em; }

/* Coming card */
.show-coming-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; text-align: center;
}
.coming-script { font-size: clamp(1.4rem, 4vw, 2rem); color: rgba(255,255,255,.4); }

@media (min-width: 900px) {
  .shows-layout { flex-direction: row; align-items: stretch; }
  .show-card-featured { flex: 1 1 65%; }
  .show-coming-card { flex: 1 1 30%; justify-content: center; }
  .show-banner-link { max-width: 100%; }
}

/* ════════════════════════════════════════════════════════════
   04 · PRODUTOS
   ════════════════════════════════════════════════════════════ */
.products-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(37,99,235,.07), transparent 50%),
    var(--bg-2);
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: border-color .35s ease, background .35s ease, transform .35s var(--spring), box-shadow .35s ease;
  position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 1.5rem; right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(255,255,255,.06), transparent);
  pointer-events: none; opacity: .7;
}
.product-card-highlight::before { background: linear-gradient(90deg, var(--green), rgba(255,255,255,.06), transparent); }
.product-card-soon::before      { background: linear-gradient(90deg, rgba(255,255,255,.18), transparent); }
.product-card:hover {
  border-color: var(--glass-border-h);
  background: var(--glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0,0,0,.22);
}

.product-top { display: flex; align-items: center; justify-content: space-between; }
.product-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.7);
}
.product-tag {
  font-size: .6rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  padding: .28rem .7rem; border-radius: 999px;
}
.tag-blue   { background: rgba(37,99,235,.18); color: var(--blue-light); border: 1px solid rgba(37,99,235,.3); }
.tag-green  { background: rgba(16,185,129,.18); color: var(--green);      border: 1px solid rgba(16,185,129,.3); }
.tag-muted  { background: rgba(255,255,255,.06); color: var(--text-muted); border: 1px solid var(--glass-border); }

.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: .9; color: #fff;
}
.product-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }
.product-features {
  display: flex; flex-direction: column; gap: .45rem;
  margin-top: .2rem;
}
.product-features li {
  font-size: .82rem; color: rgba(255,255,255,.55);
  padding-left: .9rem; position: relative;
}
.product-features li::before {
  content: '—'; position: absolute; left: 0;
  color: rgba(255,255,255,.22);
}

.product-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.65);
  transition: color .25s ease, gap .25s ease;
  padding-top: .5rem;
  border-top: 1px solid var(--glass-border);
}
.product-cta:hover { color: #fff; gap: .7rem; }
.product-cta-green { color: var(--green); }
.product-cta-green:hover { color: #34d399; }
.product-cta-disabled {
  opacity: .35; cursor: not-allowed; pointer-events: none;
  color: var(--text-dim);
}

/* ════════════════════════════════════════════════════════════
   05 · PROJETOS / AÇÕES
   ════════════════════════════════════════════════════════════ */
.projects-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(ellipse 50% 40% at 70% 20%, rgba(255,212,59,.06), transparent 50%),
    var(--bg);
}
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 700px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }

.project-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: border-color .35s ease, transform .35s var(--spring), box-shadow .35s ease;
}
.project-featured { display: block; }
.project-featured:hover { border-color: var(--glass-border-h); transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,.22); }

.project-media { position: relative; aspect-ratio: 16/7; overflow: hidden; }
.project-img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) brightness(.8); transition: filter .4s ease, transform .6s var(--spring); }
.project-featured:hover .project-img { filter: saturate(.88) brightness(.88); transform: scale(1.04); }
.project-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7));
}
.project-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: .6rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  padding: .28rem .75rem; border-radius: 999px;
  background: rgba(16,185,129,.2); color: var(--green);
  border: 1px solid rgba(16,185,129,.35);
  backdrop-filter: blur(8px);
}

.project-info { padding: clamp(1.2rem, 3vw, 1.8rem); display: flex; flex-direction: column; gap: .65rem; }
.project-cat { font-size: .68rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--text-dim); }
.project-name { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff; }
.project-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.project-link-text {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.55);
  transition: color .25s ease, gap .25s ease;
}
.project-featured:hover .project-link-text { color: #fff; gap: .6rem; }

/* Upcoming */
.project-upcoming {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.2rem; padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center; min-height: 220px;
}
.upcoming-icon {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px dashed var(--glass-border-h);
  display: grid; place-items: center;
  font-size: 1.8rem; color: var(--text-dim);
}
.upcoming-text { font-size: .92rem; color: var(--text-muted); line-height: 1.6; max-width: 280px; }

/* ════════════════════════════════════════════════════════════
   06 · ECOSSISTEMA DIGITAL
   ════════════════════════════════════════════════════════════ */
.ecosystem-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(37,99,235,.07), transparent 60%),
    var(--bg-2);
}
.eco-grid {
  display: grid; grid-template-columns: 1fr; gap: .75rem;
}
@media (min-width: 600px)  { .eco-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .eco-grid { grid-template-columns: repeat(3, 1fr); } }

.eco-card {
  display: flex; align-items: center; gap: 1rem;
  padding: clamp(1rem, 3vw, 1.4rem) clamp(1.1rem, 3vw, 1.5rem);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  transition: border-color .3s ease, background .3s ease, transform .3s var(--spring);
  min-height: 80px;
}
.eco-card:hover { border-color: var(--glass-border-h); background: var(--glass-hover); transform: translateY(-2px); }

/* Platform accent borders */
.eco-instagram:hover { border-color: rgba(193,53,132,.5); }
.eco-whatsapp:hover  { border-color: rgba(37,211,102,.5); }
.eco-sympla:hover    { border-color: rgba(37,99,235,.5); }
.eco-sorte:hover     { border-color: rgba(255,212,59,.5); }
.eco-email:hover     { border-color: rgba(255,255,255,.3); }
.eco-phone:hover     { border-color: rgba(255,255,255,.3); }

.eco-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--glass-border);
}
.eco-instagram .eco-icon { color: #e1306c; }
.eco-whatsapp  .eco-icon { color: #25d366; }
.eco-sympla    .eco-icon { color: var(--blue-light); }
.eco-sorte     .eco-icon { color: var(--gold); }
.eco-email     .eco-icon, .eco-phone .eco-icon { color: rgba(255,255,255,.65); }

.eco-text { flex: 1; display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.eco-platform { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .05em; color: #fff; }
.eco-handle { font-size: .8rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.eco-desc { font-size: .72rem; color: var(--text-dim); line-height: 1.4; }
.eco-arrow { font-size: 1.1rem; color: var(--text-dim); flex-shrink: 0; transition: color .25s ease, transform .25s ease; }
.eco-card:hover .eco-arrow { color: var(--text-muted); transform: translate(2px,-2px); }

/* ════════════════════════════════════════════════════════════
   07 · CTA FINAL / CONTATO
   ════════════════════════════════════════════════════════════ */
.cta-section {
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(5rem, 8vw, 7rem);
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37,99,235,.06), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.cta-inner {
  position: relative;
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: clamp(1.2rem, 2.5vw, 1.8rem);
  padding: clamp(2.5rem, 6vw, 4rem);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
}
.cta-glow {
  position: absolute; inset: -40%; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(37,99,235,.12), transparent 70%);
  z-index: -1;
}
.cta-kicker {
  font-size: .66rem; font-weight: 700; letter-spacing: .38em;
  text-transform: uppercase; color: var(--text-dim);
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: .88; color: #fff;
}
.cta-headline em { font-style: normal; font-family: var(--font-script); font-size: clamp(1.5rem, 4.5vw, 3.5rem); color: rgba(255,255,255,.55); }
.cta-sub { font-size: clamp(.92rem, 1.5vw, 1.05rem); color: var(--text-muted); line-height: 1.7; max-width: 520px; }
.cta-sub strong { color: rgba(255,255,255,.88); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

.cta-footer {
  display: flex; flex-direction: column; align-items: center; gap: .65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
  width: 100%;
}
.cta-logo { width: min(180px, 40vw); height: auto; opacity: .8; filter: drop-shadow(0 0 16px rgba(255,255,255,.08)); }
.cta-copyright { font-size: .72rem; color: var(--text-dim); letter-spacing: .06em; }
.dev-credit { font-size: .66rem; color: rgba(255,255,255,.2); letter-spacing: .06em; }
.dev-link { color: rgba(255,255,255,.35); text-decoration: underline; text-underline-offset: 3px; transition: color .25s ease; }
.dev-link:hover { color: rgba(255,255,255,.65); }

/* ════════════════════════════════════════════════════════════
   ANIMATIONS — KEYFRAMES
   ════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-animate] { opacity: 1; transform: none; filter: none; }
  .reveal-hidden { opacity: 1; }
  .marquee-track { animation: none; }
}

/* ════════════════════════════════════════════════════════════
   FINE-TUNING MOBILE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 899px) {
  /* Touch targets (Apple HIG min 44px) */
  .nav-a, .btn-primary, .btn-ghost, .nav-cta,
  .eco-card, .product-cta { min-height: 44px; }

  /* iOS safe area */
  .cta-section { padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0)); }

  /* Simplify orbs for perf */
  .aurora-orbs .orb { filter: blur(60px); opacity: .2; }
  .orb-1 { width: 280px; height: 280px; }
  .orb-2 { width: 300px; height: 300px; }
  .orb-3 { width: 220px; height: 220px; }

  .show-date-area { flex-direction: column; gap: .8rem; }
  .show-date-box { flex-direction: row; align-items: baseline; gap: .6rem; border-right: none; border-bottom: 1px solid var(--glass-border); padding-right: 0; padding-bottom: .75rem; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1rem; padding: .85rem 1rem; }
  .stat-div   { height: 24px; }
  .hero-ctas  { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .cd-num  { font-size: 1.5rem; }
  .cd-unit { min-width: 38px; }

  .cta-inner { padding: 1.8rem 1.2rem; border-radius: var(--r-lg); }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost { width: 100%; justify-content: center; }

  .about-bento { gap: .65rem; }
}

/* ============================================================
   PREMIUM EXPERIENCE PASS
   Mobile-first refinements without changing the site structure.
   ============================================================ */

:root {
  --bg: #030303;
  --bg-2: #060606;
  --bg-3: #0c0d0d;
  --text: rgba(255, 255, 255, 0.96);
  --text-muted: rgba(255, 255, 255, 0.66);
  --text-dim: rgba(255, 255, 255, 0.38);
  --champagne: #f4d77a;
  --champagne-soft: rgba(244, 215, 122, 0.22);
  --blue: #6bb7ff;
  --blue-light: #9fd0ff;
  --blue-glow: rgba(105, 183, 255, 0.18);
  --green: #63e6a3;
  --green-glow: rgba(99, 230, 163, 0.18);
  --gold: var(--champagne);
  --gold-glow: var(--champagne-soft);
  --glass-bg: rgba(255, 255, 255, 0.055);
  --glass-hover: rgba(255, 255, 255, 0.088);
  --glass-border: rgba(255, 255, 255, 0.105);
  --glass-border-h: rgba(255, 255, 255, 0.24);
  --surface: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028));
  --surface-strong: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.42);
  --shadow-card: 0 18px 54px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,0.08);
  --font-sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 78px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 34px;
}

html {
  scroll-padding-top: calc(var(--nav-h) + 28px);
}

body {
  color-scheme: dark;
  background:
    linear-gradient(180deg, #030303 0%, #050505 42%, #080806 100%);
  letter-spacing: 0;
}

body::before {
  opacity: 0.18;
  mix-blend-mode: screen;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(255,255,255,0.05), transparent 46%),
    radial-gradient(ellipse 120% 90% at 50% 110%, rgba(244,215,122,0.045), transparent 55%),
    linear-gradient(90deg, rgba(0,0,0,0.42), transparent 24%, transparent 76%, rgba(0,0,0,0.48));
}

main {
  position: relative;
  z-index: 3;
}

.noise-overlay {
  opacity: 0.022;
  mix-blend-mode: soft-light;
}

.aurora-orbs .orb {
  border-radius: 42%;
  filter: blur(90px);
  opacity: 0.16;
}

.orb-1 {
  width: 68vw;
  height: 46vh;
  top: -22vh;
  left: -24vw;
  background: radial-gradient(ellipse at center, rgba(244,215,122,0.42), transparent 70%);
}

.orb-2 {
  width: 70vw;
  height: 58vh;
  right: -34vw;
  bottom: 8vh;
  background: radial-gradient(ellipse at center, rgba(107,183,255,0.34), transparent 72%);
}

.orb-3 {
  width: 54vw;
  height: 42vh;
  left: 48%;
  top: 36%;
  background: radial-gradient(ellipse at center, rgba(99,230,163,0.22), transparent 72%);
}

.floating-particles .particle {
  width: 3px;
  height: 3px;
  background: rgba(244, 215, 122, 0.7);
  box-shadow: 0 0 12px rgba(244, 215, 122, 0.35);
}

.container {
  max-width: 1180px;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* Navigation */
.navbar {
  position: fixed;
  top: max(10px, env(safe-area-inset-top, 0px));
  height: var(--nav-h);
  pointer-events: none;
  background: transparent;
}

.navbar.navbar-scrolled {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.navbar-inner {
  width: min(1180px, calc(100% - 24px));
  height: 62px;
  padding: 0 10px 0 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(8, 8, 8, 0.64);
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 18px 60px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.08);
  pointer-events: auto;
}

.navbar.navbar-scrolled .navbar-inner {
  background: rgba(8, 8, 8, 0.78);
  border-color: rgba(255,255,255,0.15);
}

.logo-img {
  width: 154px;
  height: 52px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: none;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.12));
}

.logo-link:hover .logo-img {
  opacity: 1;
  filter: drop-shadow(0 0 24px rgba(244,215,122,0.18));
}

.nav-links {
  align-items: center;
}

.nav-a {
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.58);
}

.nav-a::after {
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--champagne), rgba(255,255,255,0.9));
}

.nav-a:hover,
.nav-a.active {
  color: rgba(255,255,255,0.95);
}

.nav-cta {
  min-height: 42px;
  padding: 0 1rem;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.nav-cta:hover {
  background: rgba(255,255,255,0.13);
  box-shadow: 0 12px 32px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.12);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.bar {
  width: 18px;
  height: 2px;
}

/* Buttons */
.btn-primary,
.btn-ghost {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
}

.btn-primary {
  border: 1px solid rgba(255,255,255,0.72);
  background: linear-gradient(180deg, #fff 0%, #e7e7e1 100%);
  box-shadow: 0 14px 34px rgba(255,255,255,0.12), inset 0 1px 0 rgba(255,255,255,0.85);
}

.btn-primary::before,
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.42) 45%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--spring);
}

.btn-primary:hover::before,
.btn-ghost:hover::before {
  transform: translateX(130%);
}

.btn-primary:hover {
  box-shadow: 0 18px 48px rgba(255,255,255,0.18), 0 0 0 5px rgba(255,255,255,0.045);
}

.btn-ghost {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.052);
  color: rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 16px 40px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.12);
}

.audio-player {
  position: fixed;
  right: max(14px, env(safe-area-inset-right, 0px));
  bottom: max(14px, env(safe-area-inset-bottom, 0px));
}

#scroll-progress,
.preloader {
  position: fixed;
}

.audio-toggle {
  min-height: 44px;
  border-radius: 16px;
  background: rgba(8,8,8,0.72);
  backdrop-filter: blur(20px) saturate(150%);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.audio-label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

/* Hero */
.hero-section {
  min-height: 100svh;
  padding: calc(var(--nav-h) + 1.5rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 8vw, 5rem);
  isolation: isolate;
}

.hero-section::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 46%;
  left: 50%;
  width: min(54vw, 540px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.74)),
    url('Logos/fotolucas1.jpg') center 18% / cover no-repeat;
  border-radius: 50%;
  opacity: 0.16;
  filter: saturate(0.96) contrast(1.08);
  mask-image: radial-gradient(circle at center, black 38%, rgba(0,0,0,0.72) 58%, transparent 76%);
}

.hero-bg {
  opacity: 0.98;
}

.hero-mesh {
  background:
    radial-gradient(ellipse 80% 54% at 50% 18%, rgba(255,255,255,0.075), transparent 58%),
    radial-gradient(ellipse 70% 52% at 18% 34%, rgba(244,215,122,0.11), transparent 58%),
    radial-gradient(ellipse 60% 46% at 84% 72%, rgba(107,183,255,0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 44%);
}

.hero-grid {
  background-size: 72px 72px;
  background-image:
    linear-gradient(rgba(255,255,255,0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.034) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 72% 64% at 50% 46%, black 20%, transparent 82%);
}

.hero-content {
  z-index: 2;
  max-width: 820px;
  gap: clamp(1rem, 2.2vw, 1.6rem);
}

.hero-kicker {
  max-width: 100%;
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 14px 34px rgba(0,0,0,0.24);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2em;
}

.kicker-dot {
  background: var(--green);
  box-shadow: 0 0 12px var(--green-glow), 0 0 22px rgba(99,230,163,0.2);
}

.hero-headline {
  gap: 0;
  text-wrap: balance;
}

.hero-name-script {
  color: rgba(255,255,255,0.66);
  filter: drop-shadow(0 0 22px rgba(255,255,255,0.08));
}

.hero-name-display {
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #fff 8%, #f6f4ea 46%, rgba(255,255,255,0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  filter: drop-shadow(0 18px 54px rgba(255,255,255,0.08));
}

.hero-roles {
  padding: 0.25rem 0.35rem;
}

.role-tag {
  color: rgba(255,255,255,0.62);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.role-sep {
  color: rgba(244,215,122,0.5);
}

.hero-sub {
  max-width: 620px;
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
}

.hero-stats {
  position: relative;
  overflow: hidden;
  border-color: rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.072), rgba(255,255,255,0.028));
  box-shadow: var(--shadow-card);
}

.hero-stats::before {
  content: '';
  position: absolute;
  inset: 0 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
}

.stat-num {
  background: linear-gradient(180deg, #fff, rgba(255,255,255,0.62));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label,
.bento-card-label,
.project-cat,
.cd-prefix,
.cd-lbl {
  letter-spacing: 0.18em;
}

/* Section rhythm */
.section-header {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-kicker {
  color: rgba(244,215,122,0.74);
  letter-spacing: 0.24em;
}

.section-title {
  letter-spacing: 0.018em;
  text-wrap: balance;
}

.section-title em,
.cta-headline em {
  color: rgba(255,255,255,0.62);
}

.about-section,
.products-section,
.ecosystem-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent 18%, rgba(255,255,255,0.012) 100%),
    radial-gradient(ellipse 72% 42% at 50% 0%, rgba(244,215,122,0.065), transparent 64%),
    var(--bg-2);
}

.shows-section,
.projects-section,
.cta-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.012), transparent 28%),
    radial-gradient(ellipse 78% 42% at 50% 100%, rgba(107,183,255,0.055), transparent 66%),
    var(--bg);
}

.about-section,
.shows-section,
.products-section,
.projects-section,
.ecosystem-section,
.cta-section {
  position: relative;
  isolation: isolate;
}

.about-section::before,
.shows-section::before,
.products-section::before,
.projects-section::before,
.ecosystem-section::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1080px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

/* Premium surfaces */
.bento-card,
.product-card,
.project-card,
.eco-card,
.show-card-featured,
.show-coming-card,
.cta-inner {
  position: relative;
  border-color: rgba(255,255,255,0.11);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transform: translateZ(0);
}

.bento-card > *,
.product-card > *,
.project-card > *,
.eco-card > *,
.show-card-featured > *,
.show-coming-card > *,
.cta-inner > * {
  position: relative;
  z-index: 2;
}

.bento-card::after,
.product-card::after,
.project-card::after,
.eco-card::after,
.show-card-featured::after,
.show-coming-card::after,
.cta-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,0.12), transparent 42%);
  transition: opacity 0.35s ease;
}

.bento-card:hover::after,
.product-card:hover::after,
.project-card:hover::after,
.eco-card:hover::after,
.show-card-featured:hover::after,
.show-coming-card:hover::after,
.cta-inner:hover::after {
  opacity: 1;
}

.bento-card:hover,
.product-card:hover,
.project-card:hover,
.eco-card:hover,
.show-card-featured:hover,
.show-coming-card:hover {
  border-color: rgba(255,255,255,0.2);
  background: var(--surface-strong);
  box-shadow: 0 26px 74px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.12);
}

.bio-fig::after,
.project-media::after,
.show-banner-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 34%),
    linear-gradient(0deg, rgba(0,0,0,0.28), transparent 42%);
}

.bio-photo,
.project-img,
.show-banner-img {
  filter: saturate(0.92) contrast(1.05);
}

.bento-card:hover .bio-photo,
.project-featured:hover .project-img,
.show-banner-link:hover .show-banner-img {
  transform: scale(1.035);
}

.photo-status-badge,
.show-live-badge,
.project-badge,
.product-tag {
  backdrop-filter: blur(16px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 10px 24px rgba(0,0,0,0.22);
}

.bento-quote,
.bento-location,
.bento-values,
.bento-mission,
.product-card,
.project-info,
.show-info,
.show-coming-card {
  padding: clamp(1.35rem, 4vw, 2.25rem);
}

.quote-mark {
  color: rgba(244,215,122,0.16);
}

.quote-text,
.mission-text,
.product-desc,
.project-desc,
.upcoming-text,
.cta-sub {
  color: rgba(255,255,255,0.68);
}

.value-item,
.product-features li {
  color: rgba(255,255,255,0.58);
}

/* Agenda */
.show-banner-link {
  width: 100%;
  max-width: none;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.show-banner-link picture {
  display: block;
  height: 100%;
}

.show-banner-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.photo-status-badge,
.show-banner-overlay,
.project-badge {
  z-index: 3;
}

.show-date-box {
  border-color: rgba(255,255,255,0.12);
}

.show-venue {
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
}

.show-countdown {
  background: rgba(0,0,0,0.18);
  border-color: rgba(255,255,255,0.09);
}

.cd-num {
  background: linear-gradient(180deg, #fff, rgba(244,215,122,0.72));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Products and ecosystem */
.product-card::before {
  left: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(90deg, rgba(107,183,255,0.78), rgba(255,255,255,0.12), transparent);
}

.product-card-highlight::before {
  background: linear-gradient(90deg, rgba(99,230,163,0.82), rgba(255,255,255,0.12), transparent);
}

.product-icon,
.eco-icon {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.product-cta {
  min-height: 44px;
  align-items: center;
  border-color: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.68);
}

.eco-card {
  min-height: 92px;
}

.eco-platform {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.eco-handle,
.eco-desc {
  overflow-wrap: anywhere;
}

.eco-arrow {
  font-family: var(--font-sans);
}

/* Marquee */
.marquee {
  border-color: rgba(255,255,255,0.08);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.4), rgba(255,255,255,0.035), rgba(0,0,0,0.4));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}

.m-item {
  letter-spacing: 0.04em;
}

.m-dot {
  color: rgba(244,215,122,0.9);
}

/* Final CTA */
.cta-inner {
  max-width: 860px;
  background:
    radial-gradient(ellipse 70% 70% at 50% 0%, rgba(244,215,122,0.08), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
}

.cta-headline {
  letter-spacing: 0.018em;
}

.cta-logo {
  opacity: 0.9;
}

/* Mobile app polish */
@media (max-width: 899px) {
  :root {
    --nav-h: 76px;
  }

  .navbar {
    top: max(8px, env(safe-area-inset-top, 0px));
  }

  .navbar-inner {
    width: calc(100% - 24px);
    height: 62px;
  }

  .logo-img {
    width: 150px;
    height: 50px;
    max-width: none;
  }

  .nav-links {
    position: fixed;
    top: max(8px, env(safe-area-inset-top, 0px));
    left: 12px;
    right: 12px;
    bottom: auto;
    height: auto;
    max-height: calc(100dvh - 16px);
    overflow: auto;
    overscroll-behavior: contain;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 82px 12px 14px;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 26px;
    background: rgba(8,8,8,0.94);
    backdrop-filter: blur(28px) saturate(170%);
    box-shadow: 0 28px 90px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.09);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px) scale(0.985);
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease,
      transform 0.42s var(--spring);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-a {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    background: rgba(255,255,255,0.045);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 760;
    letter-spacing: 0;
    color: rgba(255,255,255,0.84);
  }

  .nav-a::after {
    display: none;
  }

  .nav-a.active {
    color: #fff;
    border-color: rgba(244,215,122,0.26);
    background: rgba(244,215,122,0.09);
  }

  .hero-section {
    padding: calc(var(--nav-h) + 0.8rem) 20px 2.5rem;
  }

  .scroll-indicator {
    display: none;
  }

  .audio-toggle {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .audio-label {
    display: none;
  }

  .hero-section::after {
    width: 330px;
    top: 36%;
    opacity: 0.13;
  }

  .hero-kicker {
    padding: 0.36rem 0.72rem;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .hero-name-script {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-name-display {
    font-size: clamp(4.8rem, 24vw, 6.5rem);
  }

  .hero-roles {
    max-width: 300px;
    gap: 0.25rem 0.58rem;
  }

  .role-tag {
    font-size: 0.86rem;
  }

  .hero-sub {
    max-width: 34ch;
    font-size: 0.98rem;
  }

  .hero-ctas {
    width: 100%;
    gap: 0.75rem;
  }

  .hero-stats {
    width: 100%;
    max-width: 360px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 1rem;
    border-radius: 24px;
  }

  .hero-stat {
    min-height: 68px;
    justify-content: center;
  }

  .hero-stat:last-child {
    grid-column: 1 / -1;
    min-height: 62px;
    margin-top: 0.35rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .stat-div {
    display: none;
  }

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

  .section-title {
    font-size: clamp(2.45rem, 13vw, 4.1rem);
  }

  .section-sub {
    max-width: 28ch;
  }

  .about-section,
  .shows-section,
  .products-section,
  .projects-section,
  .ecosystem-section {
    padding-block: clamp(4.5rem, 16vw, 6.5rem);
  }

  .bento-card,
  .product-card,
  .project-card,
  .eco-card,
  .show-card-featured,
  .show-coming-card,
  .cta-inner {
    border-radius: 22px;
  }

  .bento-photo-main {
    aspect-ratio: 1 / 1;
  }

  .show-info {
    gap: 1rem;
  }

  .show-date-area {
    gap: 0.9rem;
  }

  .show-countdown {
    justify-content: space-between;
    gap: 0.32rem;
  }

  .cd-prefix {
    width: 100%;
    margin: 0 0 0.2rem;
    text-align: center;
  }

  .cd-sep {
    display: none;
  }

  .products-grid,
  .projects-grid,
  .eco-grid,
  .about-bento,
  .shows-layout {
    gap: 0.8rem;
  }

  .product-card,
  .project-info,
  .show-info,
  .show-coming-card {
    padding: 1.25rem;
  }

  .eco-card {
    min-height: 88px;
    padding: 1rem;
    gap: 0.85rem;
  }

  .eco-handle {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .cta-section {
    padding-top: 4.5rem;
  }

  .cta-inner {
    padding: 1.55rem;
  }
}

@media (min-width: 900px) {
  .navbar-inner {
    padding-inline: 18px 12px;
  }

  .logo-img {
    width: 168px;
    height: 54px;
    max-width: none;
  }

  .hero-content {
    transform: translateY(1vh);
    gap: 1.05rem;
  }

  .hero-name-script {
    font-size: clamp(3.2rem, 6vw, 5.4rem);
  }

  .hero-name-display {
    font-size: clamp(6.4rem, 13vw, 10.8rem);
  }

  .show-card-featured {
    display: grid;
    grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
    align-items: stretch;
  }

  .show-banner-link {
    height: 100%;
    border-right: 1px solid rgba(255,255,255,0.09);
    border-bottom: 0;
  }

  .show-banner-img {
    height: 100%;
  }

  .show-info {
    justify-content: center;
  }

  .show-countdown {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .container {
    padding-inline: 20px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .marquee {
    margin-block: 2.2rem;
  }

  .m-item {
    font-size: 1.55rem;
  }

  .stat-label,
  .bento-card-label,
  .project-cat,
  .cd-lbl {
    letter-spacing: 0.14em;
  }

  .product-name,
  .project-name,
  .show-name {
    line-height: 0.96;
  }

  .cta-headline {
    font-size: clamp(2.7rem, 15vw, 4.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section::after,
  .aurora-orbs .orb,
  .floating-particles .particle,
  .btn-primary::before,
  .btn-ghost::before {
    animation: none !important;
    transition: none !important;
  }
}
