:root {
  --bg-deep: #000000;
  --surface-glass: rgba(14, 14, 22, 0.45);
  --surface-glass-hover: rgba(20, 20, 32, 0.7);
  --border-glass: rgba(255, 255, 255, 0.06);
  --border-glass-hover: rgba(255, 255, 255, 0.12);

  --text-muted: #a1a1aa;
  --text-primary: #ffffff;

  --brand-gold: #d4af37;
  --brand-gradient: linear-gradient(135deg, #d4af37 0%, #0ea5e9 45%, #7dd3fc 100%);

  --ease-fluid: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-fast: 0.28s;
  --t-mid: 0.42s;
  --t-slow: 0.55s;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;

  --shadow-glow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
}

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

html {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { overflow-x: hidden; background-color: var(--bg-deep); line-height: 1.6; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #2a2a38; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a4e; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { position: relative; z-index: 10; }
a { color: inherit; text-decoration: none; }

.cosmic-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.cosmic-container .star-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.cosmic-container .star { position: absolute; border-radius: 50%; background: #ffffff; }

@keyframes twinkle-slow { 0%,100% { opacity:0.3; transform:scale(1); } 50% { opacity:0.9; transform:scale(1.15); } }
@keyframes twinkle-mid { 0%,100% { opacity:0.25; transform:scale(1); } 50% { opacity:1; transform:scale(1.2); } }
@keyframes twinkle-fast { 0%,100% { opacity:0.2; transform:scale(1); } 50% { opacity:0.9; transform:scale(1.3); } }

.cosmic-container .star.white { background:#ffffff; }
.cosmic-container .star.teal { background:#0ea5e9; box-shadow:0 0 5px rgba(14,165,233,0.5),0 0 15px rgba(14,165,233,0.2); }
.cosmic-container .star.gold { background:#d4af37; box-shadow:0 0 5px rgba(212,175,55,0.5),0 0 15px rgba(212,175,55,0.2); }
.cosmic-container .star.white { background:#ffffff; }

.aurora-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.aurora-teal { position: absolute; top: -20%; left: -15%; width: 70vw; height: 70vw; border-radius: 50%; background: radial-gradient(circle, rgba(14,165,233,0.1) 0%, rgba(125,211,252,0.04) 40%, transparent 70%); filter: blur(80px); animation: auroraFloat 18s ease-in-out infinite alternate; will-change: transform, opacity; }
.aurora-gold { position: absolute; bottom: -25%; right: -20%; width: 75vw; height: 75vw; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.03) 40%, transparent 70%); filter: blur(90px); animation: auroraFloat 22s ease-in-out infinite alternate-reverse; animation-delay: -6s; will-change: transform, opacity; }

@keyframes auroraFloat {
  0%   { transform: translate(0,0) scale(1); opacity: 0.6; }
  33%  { transform: translate(60px,40px) scale(1.08); opacity: 1; }
  66%  { transform: translate(-40px,70px) scale(0.95); opacity: 0.7; }
  100% { transform: translate(80px,-30px) scale(1.12); opacity: 0.85; }
}

.cosmic-orb { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; will-change: transform; }
.orb-gold { width: 500px; height: 500px; top: 10%; left: -10%; background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%); filter: blur(60px); animation: orbFloat 40s ease-in-out infinite alternate; }
.orb-teal { width: 600px; height: 600px; bottom: 5%; right: -15%; background: radial-gradient(circle, rgba(14,165,233,0.04) 0%, transparent 70%); filter: blur(70px); animation: orbFloat 35s ease-in-out infinite alternate-reverse; }

@keyframes orbFloat { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(80px,-60px) scale(1.15); } }

.shooting-star { position: fixed; z-index: 1; pointer-events: none; }
.shooting-head { width: 3px; height: 3px; background: #ffffff; border-radius: 50%; box-shadow: 0 0 6px #ffffff, 0 0 12px rgba(212,175,55,0.6), 0 0 20px rgba(14,165,233,0.3); }
.shooting-tail { width: 80px; height: 1px; background: linear-gradient(to left, rgba(255,255,255,0.8), transparent); margin-top: -2px; }
@keyframes shooting-star { 0% { opacity:0; transform:translateX(0) translateY(0); } 5% { opacity:1; } 100% { opacity:0; transform:translateX(-300px) translateY(120px); } }

.logo-frame { position: relative; width: 64px; height: 64px; border-radius: 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-glass); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 3px; flex-shrink: 0; transition: all var(--t-mid) var(--ease-fluid); }
.logo-frame:hover { border-color: rgba(212,175,55,0.2); box-shadow: 0 0 24px rgba(212,175,55,0.08), 0 0 12px rgba(14,165,233,0.06); }

.logo-img { width: 100%; height: 100%; display: block; object-fit: contain; opacity: 0.95; filter: brightness(1.1) contrast(1.05) drop-shadow(0 0 10px rgba(212,175,55,0.1)); }
.logo-img--footer { width: 80px; height: 80px; opacity: 0.9; }

.logo-text { font-weight: 800; font-size: 1rem; letter-spacing: 0.15em; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }

.nav-logo { gap: 14px; }
.nav-logo:hover .logo-frame { border-color: rgba(255,255,255,0.15); }

.nav-container { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 14px 0; opacity: 0; pointer-events: none; transition: background var(--t-mid) var(--ease-fluid), backdrop-filter var(--t-mid) var(--ease-fluid); }
.nav-container.revealed { opacity: 1; pointer-events: auto; }
.nav-container.scrolled { background: rgba(0,0,0,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }

.nav-content { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; color: var(--text-muted); padding: 4px 0; transition: color var(--t-fast) var(--ease-fluid); }
.nav-link:hover { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-link.active { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-weight: 600; cursor: pointer; border: none; outline: none; position: relative; transition: all var(--t-mid) var(--ease-fluid); }

.btn-pill-nav { font-size: 0.78rem; letter-spacing: 0.08em; padding: 8px 20px; border-radius: 100px; background: rgba(255,255,255,0.06); color: var(--text-primary); border: 1px solid var(--border-glass); backdrop-filter: blur(8px); }
.btn-pill-nav:hover { background: rgba(255,255,255,0.12); border-color: var(--border-glass-hover); }

.btn-primary { font-size: 0.85rem; letter-spacing: 0.1em; padding: 14px 32px; border-radius: 12px; background: rgba(255,255,255,0.06); color: var(--text-primary); border: 1px solid var(--border-glass); }
.btn-primary:hover { background: rgba(255,255,255,0.1); border-color: var(--border-glass-hover); transform: translateY(-2px); }
.btn-primary .arrow { display: inline-block; transition: transform var(--t-fast) var(--ease-fluid); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary-link { font-size: 0.82rem; letter-spacing: 0.08em; color: var(--text-muted); background: none; padding: 8px 4px; }
.btn-secondary-link:hover { color: var(--text-primary); }
.btn-secondary-link .arrow { display: inline-block; transition: transform var(--t-fast) var(--ease-fluid); }
.btn-secondary-link:hover .arrow { transform: translateX(6px); }

.btn-outline { font-size: 0.78rem; letter-spacing: 0.08em; padding: 10px 22px; border-radius: 10px; background: rgba(255,255,255,0.04); color: var(--text-primary); border: 1px solid var(--border-glass); backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--border-glass-hover); }
.btn-outline .arrow { display: inline-block; transition: transform var(--t-fast) var(--ease-fluid); }
.btn-outline:hover .arrow { transform: translateX(4px); }

.btn-magnetic { transition: transform 0.15s var(--ease-fluid), opacity var(--t-mid) var(--ease-fluid), background var(--t-mid) var(--ease-fluid), border-color var(--t-mid) var(--ease-fluid); will-change: transform; }

.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-toggle .bar { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--t-mid) var(--ease-fluid); }
.mobile-menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99; background: rgba(0,0,0,0.92); backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: all var(--t-slow) var(--ease-fluid); }
.mobile-nav.active { opacity: 1; pointer-events: auto; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-nav-link { font-size: 1.4rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text-muted); transition: color var(--t-fast); }
.mobile-nav-link:hover { color: var(--text-primary); }
.mobile-btn-cta { margin-top: 12px; }

#hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero-glow-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.04) 0%, rgba(14,165,233,0.03) 30%, transparent 70%); z-index: 2; pointer-events: none; }

.hero-section { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 120px 0 60px; }

.hero-container { position: relative; z-index: 3; max-width: 940px; padding: 0 24px; }
.hero-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.hero-brand-block { position: fixed; top: 0; left: 0; z-index: 101; pointer-events: none; will-change: transform, opacity; transform-origin: left center; }
.hero-brand-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; opacity: 0; animation: heroBrandEntrance 1s var(--ease-fluid) 0.2s forwards; }
@keyframes heroBrandEntrance { to { opacity: 1; } }

#hero-brand-spacer { width: 100%; pointer-events: none; }

.hero-logo-wrapper { position: relative; }
.hero-logo-wrapper::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.08), rgba(14,165,233,0.04), transparent 70%); opacity: 0; animation: heroLogoGlow 4s ease-in-out 1.5s infinite; pointer-events: none; }
.hero-logo-img { width: 280px; height: auto; aspect-ratio: 1; display: block; filter: drop-shadow(0 0 20px rgba(212,175,55,0.05)); animation: heroLogoFloat 5s ease-in-out 1s infinite, heroLogoSaturate 6s ease-in-out 1.5s infinite; will-change: transform, filter; }

.hero-badge { font-size: 0.72rem; letter-spacing: 0.22em; font-weight: 600; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; padding: 6px 18px; border-radius: 100px; border: 1px solid rgba(212,175,55,0.15); background-color: rgba(255,255,255,0.03); backdrop-filter: blur(8px); }

@supports (animation-timeline: scroll(root)) {
  .hero-brand-block {
    animation: brandFly linear;
    animation-timeline: scroll(root);
    animation-range: var(--brand-range, 0px 600px);
  }
  .hero-brand-inner {
    animation: heroBrandEntrance 1s var(--ease-fluid) 0.2s forwards;
  }
}
@keyframes brandFly {
  from { transform: translate3d(var(--brand-sx,0px), var(--brand-sy,0px), 0) scale(1); }
  to   { transform: translate3d(var(--brand-ex,0px), var(--brand-ey,0px), 0) scale(var(--brand-es,0.35)); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title { display: flex; flex-wrap: wrap; justify-content: center; }
.hero-line { font-size: clamp(2.6rem, 7vw, 4.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; display: block; background: linear-gradient(135deg, #ffffff 0%, #e4e4e7 30%, #a1a1aa 60%, #71717a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-line--brand { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.02em; }

.hero-subtitle { font-size: clamp(0.95rem, 1.4vw, 1.1rem); color: var(--text-muted); max-width: 680px; line-height: 1.7; font-weight: 400; letter-spacing: 0.01em; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes heroLogoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes heroLogoSaturate { 0%,100% { filter: drop-shadow(0 0 20px rgba(212,175,55,0.05)) brightness(1) saturate(1); } 50% { filter: drop-shadow(0 0 40px rgba(212,175,55,0.15)) brightness(1.08) saturate(1.15); } }
@keyframes heroLogoGlow { 0%,100% { opacity: 0; } 50% { opacity: 1; } }

.hero-static-content { display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; will-change: opacity, transform; opacity: 0; transform: translateY(24px); }
.hero-scroll-room { height: 40vh; width: 100%; flex-shrink: 0; pointer-events: none; }
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; pointer-events: none; }
.scroll-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: translateX(-50%) translateY(0); } 50% { opacity: 0.7; transform: translateX(-50%) translateY(6px); } }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { font-size: 0.7rem; letter-spacing: 0.25em; font-weight: 600; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; margin-bottom: 16px; text-transform: uppercase; }
.section-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: var(--text-primary); }
.section-title--gradient { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { font-size: clamp(0.9rem, 1.3vw, 1.05rem); color: var(--text-muted); max-width: 640px; margin: 16px auto 0; line-height: 1.7; }

.scroll-reveal { opacity: 0; transform: translateY(36px) scale(0.97); filter: blur(6px); transition: opacity 0.9s var(--ease-snap), transform 0.9s var(--ease-snap), filter 0.9s var(--ease-snap); }
.scroll-reveal.active { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

.services-section .section-header.scroll-reveal {
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services-section { padding: 100px 0; position: relative; }
.bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; perspective: 1200px; }
.bento-card { position: relative; padding: 28px 32px; border-radius: 20px; background: linear-gradient(135deg, rgba(18,18,26,0.6), rgba(14,14,22,0.3)); border: 1px solid rgba(255,255,255,0.06); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); overflow: hidden; transition: all var(--t-mid) var(--ease-fluid); will-change: transform; transform-style: preserve-3d; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.bento-card:hover { background: linear-gradient(135deg, rgba(24,24,36,0.7), rgba(18,18,28,0.4)); border-color: rgba(255,255,255,0.12); transform: translateY(-6px) rotateX(2deg); box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 40px rgba(212,175,55,0.03); }
.bento-card--wide { grid-column: span 2; }
.card-spotlight { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212,175,55,0.06), rgba(14,165,233,0.02) 40%, transparent 60%); opacity: 0; transition: opacity 0.5s; mix-blend-mode: overlay; }
.bento-card:hover .card-spotlight { opacity: 1; }
.bento-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.bento-icon { width: 32px; height: 32px; color: #ffffff; opacity: 0.9; transition: color var(--t-mid) var(--ease-fluid); }
.bento-icon svg { width: 100%; height: 100%; }
.bento-card:nth-child(1):hover .bento-icon { color: #d4af37; } /* Formación → dorado */
.bento-card:nth-child(2):hover .bento-icon { color: #a855f7; } /* Creación → púrpura */
.bento-card:nth-child(3):hover .bento-icon { color: #ec4899; } /* Audiovisuales → rosa */
.bento-card:nth-child(4):hover .bento-icon { color: #0ea5e9; } /* Lanzamiento → cian */
.bento-card:nth-child(5):hover .bento-icon { color: #f97316; } /* Amplificación → coral */
.bento-card:nth-child(6):hover .bento-icon { color: #22c55e; } /* Transparencia → verde */
.bento-tag { font-size: 0.68rem; letter-spacing: 0.15em; font-weight: 600; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; padding: 3px 12px; border-radius: 100px; background-color: rgba(255,255,255,0.04); border: 1px solid var(--border-glass); }
.bento-title { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bento-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; max-width: 600px; }

.streaming-platforms { display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.platform-logo { width: 32px; height: 32px; color: rgba(255,255,255,0.5); transition: all var(--t-mid) var(--ease-fluid); cursor: default; }
.platform-logo:hover { transform: scale(1.2); filter: drop-shadow(0 0 12px currentColor); }
.platform-logo[title="Spotify"]:hover { color: #1DB954; }
.platform-logo[title="Apple Music"]:hover { color: #ffffff; }
.platform-logo[title="YouTube Music"]:hover { color: #FF0000; }
.platform-logo[title="Tidal"]:hover { color: #00FFFF; }
.platform-logo[title="Amazon Music"]:hover { color: #00A8E1; }
.platform-logo svg { width: 100%; height: 100%; }

.bento-card::before { content: ''; position: absolute; inset: -1px; border-radius: 20px; padding: 1px; background: conic-gradient(from var(--angle,0deg), rgba(212,175,55,0) 0%, rgba(212,175,55,0.12) 20%, rgba(14,165,233,0.1) 40%, rgba(125,211,252,0) 60%, rgba(212,175,55,0.08) 80%, rgba(212,175,55,0) 100%); -webkit-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.6s var(--ease-fluid); pointer-events: none; }
.bento-card:hover::before { opacity: 1; animation: borderRotate 3s linear infinite; }
@keyframes borderRotate { to { --angle: 360deg; } }
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

.bento-card { animation: cardFloatInit 0.8s var(--ease-fluid) forwards; }
.bento-card.scroll-reveal.active { animation: cardFloat 6s ease-in-out infinite; }
@keyframes cardFloatInit { from { opacity:0; transform:translateY(30px) scale(0.97); } to { opacity:1; transform:translateY(0) scale(1); } }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

@keyframes logoFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-8px) scale(1.04); }
}

.section-title--gradient { background-size: 100% 100%; }

.btn-primary { border-color: rgba(212,175,55,0.2); }
.btn-primary:hover { border-color: rgba(212,175,55,0.5); box-shadow: 0 0 30px rgba(212,175,55,0.08), var(--shadow-glow-gold); }

.choose-section { padding: 100px 0; position: relative; }
.choose-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.choose-tab { position: relative; padding: 28px 24px; border-radius: 16px; background: rgba(14,14,22,0.3); border: 1px solid rgba(255,255,255,0.04); backdrop-filter: blur(16px); cursor: pointer; transition: all var(--t-mid) var(--ease-fluid); display: flex; flex-direction: column; gap: 8px; overflow: hidden; will-change: transform; transform-style: preserve-3d; }
.choose-tab:hover { background: rgba(212,175,55,0.06); border-color: rgba(212,175,55,0.12); box-shadow: 0 0 30px rgba(212,175,55,0.04); transform: translateY(-6px) rotateX(2deg); }
.choose-tab:hover .card-spotlight { opacity: 1; }
.choose-tab.active { border-color: rgba(255,255,255,0.04); box-shadow: none; }
.choose-tab-icon { width: 28px; height: 28px; color: var(--text-muted); transition: color var(--t-fast); margin-bottom: 4px; }
.choose-tab:hover .choose-tab-icon { color: var(--brand-gold); }
.choose-tab-icon svg { width: 100%; height: 100%; }
.choose-tab-label { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.03em; color: var(--text-primary); line-height: 1.3; }
.choose-tab-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; opacity: 0.7; }

.choose-panels { position: relative; min-height: 280px; }
.choose-panel { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; pointer-events: none; transform: translateY(12px); transition: all 0.6s var(--ease-fluid); }
.choose-panel.active { position: relative; opacity: 1; pointer-events: auto; transform: translateY(0); }
.choose-panel-content { max-width: 700px; margin: 0 auto; text-align: center; }
.choose-panel-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 14px; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.choose-panel-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.choose-panel-features { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.choose-feature { font-size: 0.78rem; font-weight: 500; color: var(--text-muted); padding: 6px 16px; border-radius: 100px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-glass); letter-spacing: 0.04em; transition: all var(--t-fast); }
.choose-feature:hover { background: rgba(212,175,55,0.06); border-color: rgba(212,175,55,0.12); color: var(--brand-gold); }


.contact-section { padding: 120px 0; position: relative; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: start; }
.about-us-container { display: flex; flex-direction: column; justify-content: center; }
.about-text { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 32px; }

.info-card { position: relative; padding: 24px; border-radius: 16px; background: var(--surface-glass); border: 1px solid var(--border-glass); backdrop-filter: blur(20px); display: flex; align-items: center; gap: 16px; transition: all var(--t-mid) var(--ease-fluid); }
.email-card { cursor: pointer; }
.email-card:hover { background: var(--surface-glass-hover); border-color: var(--border-glass-hover); }


.email-icon-box, .info-icon-box { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-glass); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-svg { width: 18px; height: 18px; color: var(--text-muted); }
.email-card:hover .info-svg--email path { stroke: url(#email-card-grad); }
.location-card:hover .info-svg--ig path { fill: url(#ig-card-grad); }

.email-details, .info-details { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.info-label { font-size: 0.65rem; letter-spacing: 0.12em; font-weight: 600; color: var(--text-muted); }
.info-value { font-size: 0.85rem; color: var(--text-primary); font-weight: 500; }

.copy-action-indicator { display: flex; align-items: center; gap: 6px; color: var(--text-muted); opacity: 0.6; transition: opacity var(--t-fast); flex-shrink: 0; }
.email-card:hover .copy-action-indicator { opacity: 1; }
.copy-text { font-size: 0.7rem; letter-spacing: 0.06em; }
.copy-svg { width: 14px; height: 14px; }
.toast-feedback { position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%); font-size: 0.72rem; font-weight: 600; color: var(--brand-gold); background: rgba(0,0,0,0.8); padding: 4px 14px; border-radius: 8px; border: 1px solid rgba(212,175,55,0.2); opacity: 0; pointer-events: none; transition: all var(--t-mid) var(--ease-fluid); white-space: nowrap; }
.toast-feedback.show { opacity: 1; transform: translateX(-50%) translateY(-4px); }

.premium-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { position: relative; }
.form-group input, .form-group textarea { width: 100%; padding: 16px 18px; background: rgba(14,14,22,0.4); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; color: var(--text-primary); font-family: var(--font-sans); font-size: 0.9rem; outline: none; transition: all 0.3s var(--ease-fluid); resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: rgba(212,175,55,0.3); background: rgba(20,20,32,0.5); box-shadow: 0 0 24px rgba(212,175,55,0.04); }
.form-group input:focus + label, .form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label, .form-group textarea:not(:placeholder-shown) + label { transform: translateY(-28px) scale(0.85); color: rgba(113,113,122,0.5); }
.form-group label { position: absolute; left: 18px; top: 16px; font-size: 0.9rem; color: var(--text-muted); pointer-events: none; transition: all 0.3s var(--ease-fluid); }

.btn-submit { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; border-radius: 12px; background: rgba(255,255,255,0.06); color: var(--text-primary); font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em; border: 1px solid var(--border-glass); cursor: pointer; transition: all var(--t-mid) var(--ease-fluid); }
.btn-submit:hover { background: rgba(255,255,255,0.1); border-color: var(--border-glass-hover); transform: translateY(-2px); }
.btn-submit.submitting { pointer-events: none; opacity: 0.5; }
.btn-submit.success { border-color: rgba(34,197,94,0.3); color: #22c55e; }
.btn-submit .arrow { display: inline-block; font-size: 1.1rem; transition: transform var(--t-fast) var(--ease-fluid); }
.btn-submit:hover .arrow { transform: translateX(4px); }

.form-exclusivity { font-size: 0.78rem; color: var(--text-muted); text-align: center; opacity: 0.6; line-height: 1.5; }
.form-status { font-size: 0.85rem; font-weight: 600; text-align: center; min-height: 24px; opacity: 0; transition: all var(--t-mid) var(--ease-fluid); }
.form-status.show { opacity: 1; }
.form-status.success { color: #22c55e; }

.footer { padding: 60px 0 32px; border-top: 1px solid rgba(212,175,55,0.06); position: relative; z-index: 10; }
.footer::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent); }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.footer-brand { text-align: center; }
.footer-logo { font-weight: 800; font-size: 1.1rem; letter-spacing: 0.25em; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; margin-bottom: 8px; }
.footer-tagline { font-size: 0.9rem; color: var(--text-secondary, var(--text-muted)); }
.footer-subtagline { font-size: 0.8rem; color: var(--text-muted); opacity: 0.6; margin-top: 4px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom { text-align: center; }
.copyright { font-size: 0.78rem; color: var(--text-muted); opacity: 0.5; }

/* ── CURSOR GLOW ── */
#cursor-glow { position: fixed; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; z-index: 9999; background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.07) 0%, rgba(14,165,233,0.04) 35%, transparent 65%); transform: translate(-50%,-50%); will-change: transform, opacity; opacity: 0; transition: opacity 0.8s var(--ease-fluid); }
body:hover #cursor-glow { opacity: 1; }

/* ── TYPEWRITER SECTION ── */
.typewriter-section { padding: 80px 0; position: relative; z-index: 10; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); overflow: hidden; }
.typewriter-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.03) 0%, transparent 70%); pointer-events: none; }
.typewriter-wrapper { text-align: center; }
.typewriter-label { font-size: clamp(0.85rem, 1.2vw, 1rem); color: var(--text-muted); letter-spacing: 0.04em; margin-bottom: 20px; opacity: 0.7; }
.typewriter-display { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.typewriter-prefix { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text-primary); }
.typewriter-word { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.03em; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; min-width: 2ch; transition: opacity 0.2s; }
.typewriter-cursor { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 300; color: var(--brand-gold); animation: blinkCursor 1.1s step-end infinite; line-height: 1; }
@keyframes blinkCursor { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ── STATS SECTION ── */
.stats-section { padding: 80px 0; position: relative; z-index: 10; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { position: relative; padding: 32px 24px; border-radius: 20px; background: linear-gradient(135deg, rgba(18,18,26,0.5), rgba(14,14,22,0.2)); border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(24px); text-align: center; overflow: hidden; transition: all var(--t-mid) var(--ease-fluid); }
.stat-card:hover { border-color: rgba(212,175,55,0.12); transform: translateY(-4px); background: linear-gradient(135deg, rgba(24,24,36,0.6), rgba(18,18,28,0.3)); }
.stat-card:hover .card-spotlight { opacity: 1; }
.stat-number { display: block; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; letter-spacing: -0.04em; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.stat-label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; letter-spacing: 0.02em; }
.stat-sub { display: block; font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; opacity: 0.7; }

/* ── ABOUT US TEXT ── */
.about-us-text { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; max-width: 520px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }

@keyframes float-particle {
  0%   { transform: translate(0,0) scale(1); opacity: 0; }
  10%  { opacity: var(--p-opacity,0.12); }
  25%  { transform: translate(var(--p-drift-x,20px), calc(var(--p-rise,-80px) * 0.3)) scale(1.1); opacity: calc(var(--p-opacity,0.12) * 1.4); }
  50%  { transform: translate(calc(var(--p-drift-x,20px) * -0.5), calc(var(--p-rise,-80px) * 0.6)) scale(0.95); opacity: var(--p-opacity,0.12); }
  75%  { transform: translate(var(--p-drift-x,20px), calc(var(--p-rise,-80px) * 0.85)) scale(1.05); opacity: calc(var(--p-opacity,0.12) * 1.2); }
  100% { transform: translate(0, var(--p-rise,-80px)) scale(0.9); opacity: 0; }
}
.floating-particle { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; will-change: transform, opacity; }

.cosmic-container::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(212,175,55,0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(14,165,233,0.01) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; z-index: 0; }

@keyframes rippleAnim { from { transform: scale(0); opacity: 1; } to { transform: scale(8); opacity: 0; } }

#cursor-glow-blue { position: fixed; border-radius: 50%; pointer-events: none; z-index: 9998; will-change: transform, opacity; }


.footer { border-top-color: rgba(212,175,55,0.08); }

@media (max-width: 992px) {
  .nav-links { display: none; }
  .btn-pill-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-brand-inner { flex-direction: column; gap: 16px; }
  .hero-logo-img { width: 180px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }
  .choose-tabs { grid-template-columns: 1fr; }
  .choose-panels { min-height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 600px) {
  .hero-line { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero-brand-inner { gap: 16px; }
  .hero-logo-img { width: 140px; }
  .hero-section { padding: 80px 0 40px; }
  .hero-subtitle { font-size: clamp(0.85rem, 3.5vw, 0.95rem); }
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .section-subtitle { font-size: clamp(0.85rem, 3vw, 0.95rem); }
  .section-header { margin-bottom: 36px; }
  .bento-card { padding: 24px; }
  .bento-title { font-size: 1.05rem; }
  .bento-desc { font-size: 0.84rem; }
  .choose-panels { min-height: 280px; }
  .choose-panel-title { font-size: 1.3rem; }
  .choose-panel-text { font-size: 0.88rem; }
  .choose-tabs { margin-bottom: 28px; }
  .footer { padding: 40px 0 24px; }
  .footer-tagline { font-size: 0.85rem; }
  .footer-links { gap: 16px; }
  .footer-links a { font-size: 0.8rem; }
  .logo-img--footer { width: 60px; height: 60px; }
}

@media (max-width: 480px) {
  .hero-brand-inner { gap: 12px; }
  .hero-logo-img { width: 110px; }
  .hero-line { font-size: clamp(1.6rem, 8vw, 2rem); }
  .hero-section { padding: 60px 0 30px; }
  .hero-container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .btn-primary { font-size: 0.8rem; padding: 12px 24px; }
  .section-title { font-size: clamp(1.3rem, 6vw, 1.5rem); }
  .section-subtitle { font-size: clamp(0.8rem, 3vw, 0.85rem); }
  .section-header { margin-bottom: 28px; }
  .bento-card { padding: 20px; border-radius: 16px; }
  .bento-card-header { gap: 10px; margin-bottom: 12px; }
  .bento-icon { width: 28px; height: 28px; }
  .bento-title { font-size: 1rem; margin-bottom: 6px; }
  .bento-desc { font-size: 0.8rem; }
  .bento-tag { font-size: 0.62rem; padding: 2px 10px; }
  .streaming-platforms { gap: 10px; margin-top: 10px; }
  .platform-logo { width: 28px; height: 28px; }
  .choose-tab-label { font-size: 0.82rem; }
  .choose-tab-desc { font-size: 0.74rem; }
  .choose-panel-title { font-size: 1.1rem; }
  .choose-panel-text { font-size: 0.82rem; }
  .choose-panels { min-height: 240px; padding: 24px; }
  .contact-grid { gap: 24px; }
  .info-value { font-size: 0.8rem; }
  .form-group input, .form-group textarea { font-size: 0.85rem; padding: 10px 14px; }
  .btn-submit { font-size: 0.85rem; padding: 14px 28px; }
  .footer { padding: 32px 0 20px; }
  .footer-logo { font-size: 1rem; }
  .footer-tagline { font-size: 0.8rem; }
  .footer-links a { font-size: 0.75rem; }
  .footer-links { gap: 12px; }
  .footer-bottom { gap: 8px; }
  .logo-img--footer { width: 50px; height: 50px; }
  .nav-content { padding: 10px 16px; }
  .logo-frame { width: 48px; height: 48px; }
  .logo-text { font-size: 1rem; }
}




