/* ============================================
   WALTER WEEKES — "Secret Order Life"
   Dark luxury + Miami energy aesthetic
   ============================================ */

   :root {
    --bg:            #08080A;
    --bg-elevated:   #111114;
    --bg-card:       #16161A;
    --bg-card-hover: #1C1C22;
  
    --red:           #DC143C;
    --gold:          #FFD700;
    --gold-light:    #FFE44D;
    --pink:          #FF69B4;
    --red-glow:      rgba(220, 20, 60, 0.25);
    --gold-glow:     rgba(255, 215, 0, 0.25);
    --pink-glow:     rgba(255, 105, 180, 0.2);
  
    --white:         #FFFFFF;
    --text:          #E8E8EC;
    --text-muted:    #8A8A94;
    --text-dim:      #6B6B78;
  
    --border:        rgba(255, 255, 255, 0.06);
    --border-accent: rgba(220, 20, 60, 0.2);
  
    --font-heading:  'Clash Display', 'Inter', sans-serif;
    --font-body:     'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
    --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
  
    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --radius-full:   9999px;
  }
  
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  
  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
  }
  
  body.loading { overflow: hidden; }
  
  ::selection { background: var(--red); color: var(--white); }
  
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  
  :focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 2px;
  }
  a:focus-visible, button:focus-visible { outline-offset: 4px; }
  .btn:focus-visible { outline-offset: 2px; border-radius: var(--radius-full); }
  
  /* ---------- Loader ---------- */
  .loader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--bg);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
  }
  .loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
  .loader__icon { font-size: clamp(32px, 6vw, 56px); animation: loaderPulse 1.5s ease-in-out infinite; }
  .loader__text { font-family: var(--font-heading); font-size: clamp(14px, 3vw, 20px); font-weight: 600; letter-spacing: 0.3em; color: var(--white); }
  .loader__bar { width: 120px; height: 2px; background: var(--border); border-radius: var(--radius-full); overflow: hidden; }
  .loader__fill { width: 0; height: 100%; background: linear-gradient(90deg, var(--red), var(--gold)); border-radius: var(--radius-full); animation: loaderFill 1.8s var(--ease-out) forwards; }
  
  @keyframes loaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
  }
  @keyframes loaderFill { to { width: 100%; } }
  
  /* ---------- Mute Button ---------- */
  .mute-btn {
    position: fixed; top: 20px; right: 20px; z-index: 9998;
    background: linear-gradient(135deg, var(--red), var(--gold));
    border: none; border-radius: 50%;
    width: 52px; height: 52px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--white);
    transition: transform 0.3s var(--ease-out), background 0.3s, opacity 0.4s;
    box-shadow: 0 4px 24px var(--red-glow);
    animation: mutePulse 2.5s ease-in-out infinite;
    opacity: 0; visibility: hidden;
  }
  .mute-btn.active { opacity: 1; visibility: visible; }
  .mute-btn:hover {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, var(--gold), var(--red));
    animation: none;
  }
  .mute-btn.muted {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-dim);
    box-shadow: none;
    animation: none;
  }
  @keyframes mutePulse {
    0%, 100% { box-shadow: 0 4px 24px var(--red-glow); }
    50% { box-shadow: 0 4px 40px rgba(220, 20, 60, 0.45); }
  }
  
  /* ---------- Music Prompt ---------- */
  .music-prompt {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(8, 8, 10, 0.96);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  }
  .music-prompt.hidden { display: none; }
  .music-prompt-content {
    text-align: center; padding: 48px;
    animation: musicPromptIn 0.6s var(--ease-out);
  }
  .music-prompt-icon {
    font-size: 56px; margin-bottom: 24px;
    animation: loaderPulse 1.5s ease-in-out infinite;
  }
  .music-prompt p {
    font-family: var(--font-heading); font-size: clamp(16px, 3vw, 22px);
    font-weight: 400; letter-spacing: 0.15em; text-transform: lowercase;
    color: var(--text-muted); margin-bottom: 32px;
  }
  .enable-music-btn {
    background: linear-gradient(135deg, var(--red), var(--gold));
    color: var(--white); border: none;
    padding: 16px 48px; font-family: var(--font-heading);
    font-size: 15px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-full); cursor: pointer;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 12px 40px var(--red-glow);
  }
  .enable-music-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 60px var(--gold-glow);
  }
  .enable-music-btn:active {
    transform: translateY(0) scale(0.98);
  }
  @keyframes musicPromptIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
  }
  
  @media (max-width: 767px) {
    .mute-btn { width: 44px; height: 44px; font-size: 18px; top: 16px; right: 16px; }
  }
  
  /* ---------- Custom Cursor ---------- */
  .cursor, .cursor-follower { display: none; }
  @media (hover: hover) and (pointer: fine) {
    .cursor {
      display: block; position: fixed; top: 0; left: 0;
      width: 8px; height: 8px;
      background: linear-gradient(135deg, var(--red), var(--gold));
      border-radius: 50%;
      pointer-events: none; z-index: 9999; mix-blend-mode: difference;
      transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s;
    }
    .cursor-follower {
      display: block; position: fixed; top: 0; left: 0;
      width: 36px; height: 36px;
      border: 1px solid var(--red);
      border-radius: 50%;
      pointer-events: none; z-index: 9998; opacity: 0.5;
      transform: translate(-50%, -50%);
      transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.4s;
    }
    body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 14px; height: 14px; }
    body:has(a:hover) .cursor-follower, body:has(button:hover) .cursor-follower { width: 56px; height: 56px; opacity: 0.3; }
  }
  
  /* ---------- Navigation ---------- */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 24px 48px;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
  }
  .nav.scrolled {
    background: rgba(8, 8, 10, 0.85);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 16px 48px;
    border-bottom: 1px solid var(--border);
  }
  .nav__inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .nav__logo {
    display: flex; align-items: center; gap: 12px; justify-content: center;
    font-family: var(--font-heading); font-weight: 700; font-size: 22px;
    letter-spacing: 0.05em; color: var(--white); transition: all 0.3s;
    grid-column: 2;
  }
  .nav__logo:hover { color: var(--red); }
  .nav__icon { font-size: 28px; }
  
  .nav__toggle {
    width: 32px; height: 24px; position: relative;
    display: flex; flex-direction: column; justify-content: center; gap: 8px;
    z-index: 1001;
  }
  .nav__toggle span {
    display: block; width: 100%; height: 1.5px; background: var(--white);
    transition: transform 0.4s var(--ease-out), opacity 0.3s; transform-origin: center;
  }
  .nav__toggle.active span:first-child { transform: translateY(4.75px) rotate(45deg); }
  .nav__toggle.active span:last-child { transform: translateY(-4.75px) rotate(-45deg); }
  
  @media (max-width: 767px) {
    .nav { padding: 16px 20px; }
    .nav.scrolled { padding: 12px 20px; }
  }
  
  /* ---------- Mobile Menu ---------- */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; }
  .mobile-menu__inner { text-align: center; display: flex; flex-direction: column; gap: 40px; }
  .mobile-menu__link {
    display: block; font-family: var(--font-heading);
    font-size: clamp(36px, 10vw, 64px); font-weight: 600;
    color: var(--white); transition: color 0.3s, transform 0.4s var(--ease-out);
    opacity: 0; transform: translateY(30px);
  }
  .mobile-menu.open .mobile-menu__link { opacity: 1; transform: translateY(0); }
  .mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
  .mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
  .mobile-menu__link::before {
    content: attr(data-index); font-size: 12px; color: var(--red);
    letter-spacing: 0.1em; display: block; margin-bottom: 4px;
  }
  .mobile-menu__link:hover { color: var(--red); }
  .mobile-menu__socials {
    display: flex; justify-content: center; gap: 24px; margin-top: 16px;
    opacity: 0; transition: opacity 0.5s 0.25s;
  }
  .mobile-menu.open .mobile-menu__socials { opacity: 1; }
  .mobile-menu__socials a {
    font-size: 20px; color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
  }
  .mobile-menu__socials a:hover { color: var(--red); transform: translateY(-2px); }
  
  /* ---------- Hero Section ---------- */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 120px 48px 80px;
    overflow: hidden;
  }
  .hero__bg {
    position: absolute; inset: 0; z-index: 0;
  }
  .hero__orb {
    position: absolute; border-radius: 50%;
    filter: blur(120px); opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite alternate;
  }
  .hero__orb--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.3), transparent 70%);
    top: -200px; left: -200px; animation-duration: 25s;
  }
  .hero__orb--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent 70%);
    bottom: -150px; right: -150px; animation-duration: 30s; animation-delay: -5s;
  }
  .hero__orb--3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.15), transparent 70%);
    top: 50%; left: 50%; animation-duration: 22s; animation-delay: -10s;
  }
  @keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
    100% { transform: translate(10px, -20px) scale(1.02); }
  }
  .hero__grain {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px; pointer-events: none;
  }
  .hero__content { position: relative; z-index: 1; max-width: 1400px; width: 100%; }
  .hero__split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .hero__label {
    font-family: var(--font-heading); font-size: 14px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 24px;
  }
  .hero__title {
    font-family: var(--font-heading);
    font-size: clamp(52px, 12vw, 120px);
    font-weight: 700; line-height: 0.95; letter-spacing: -0.03em;
    margin-bottom: 20px;
  }
  .hero__line { display: block; }
  .hero__line--accent {
    background: linear-gradient(135deg, var(--red), var(--gold), var(--pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero__tagline {
    font-family: var(--font-heading);
    font-size: clamp(14px, 2.5vw, 20px); font-weight: 400;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--text-muted); margin-top: 40px; margin-bottom: 32px;
  }
  .hero__desc {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 48px;
    /* max-width: 540px; */
  }
  .hero__image {
    position: relative;
  }
  .hero__image-glow {
    position: absolute; inset: -20%; border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.25) 0%, transparent 60%);
    filter: blur(60px); z-index: 0;
    animation: glowPulse 4s ease-in-out infinite alternate;
  }
  @keyframes glowPulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.08); }
  }
  .hero__portrait {
    position: relative; z-index: 1;
    border-radius: var(--radius-lg); width: 100%; height: auto;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    filter: contrast(1.05) brightness(1.02);
    animation: heroFloat 6s ease-in-out infinite alternate;
  }
  @keyframes heroFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
  }
  .hero__stats {
    display: flex; gap: 48px; align-items: center; margin-top: 80px;
  }
  .hero__stat { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
  .hero__stat-number {
    font-family: var(--font-heading); font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--text-muted));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
  }
  .hero__stat-suffix {
    font-family: var(--font-heading); font-size: clamp(20px, 3vw, 32px);
    font-weight: 400; color: var(--red);
  }
  .hero__stat-label {
    display: block; font-size: 13px; font-weight: 500; color: var(--text-dim);
    margin-top: 4px; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .hero__stat-icon { font-size: clamp(28px, 5vw, 40px); display: block; }
  .hero__stat-divider { width: 1px; height: 40px; background: var(--border); }
  .hero__scroll {
    position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 1;
  }
  .hero__scroll span {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim);
  }
  .hero__scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
  }
  
  @media (max-width: 1024px) {
    .hero__split { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .hero__image { order: -1; max-width: 500px; margin: 0 auto; }
    .hero__stats { justify-content: center; gap: 32px; }
    .hero__stat { align-items: center; text-align: center; }
  }
  
  @media (max-width: 767px) {
    .hero { padding: 120px 20px 80px; }
    .hero__title { font-size: clamp(40px, 12vw, 56px); }
    .hero__scroll { display: none; }
    .hero__stats {
      gap: 20px 32px; flex-wrap: wrap; justify-content: center;
    }
    .hero__stat-divider { display: none; }
    .hero__stat {
      flex: 1 0 calc(50% - 32px); min-width: 120px;
      padding: 16px 12px; background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--radius-sm); align-items: center; text-align: center;
    }
  }
  
  @media (max-width: 380px) {
    .hero__title { font-size: 46px; letter-spacing: -0.02em; }
    .hero__tagline { font-size: 12px; letter-spacing: 0.15em; }
  }
  
  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 40px; font-family: var(--font-heading); font-size: 15px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out); position: relative; overflow: hidden;
  }
  .btn--primary {
    background: linear-gradient(135deg, var(--red), var(--gold));
    color: var(--white); box-shadow: 0 12px 40px var(--red-glow);
  }
  .btn--primary:hover {
    transform: translateY(-2px); box-shadow: 0 20px 60px var(--red-glow);
  }
  .btn--primary:active {
    transform: translateY(0) scale(0.98);
  }
  .btn--ghost {
    background: transparent; color: var(--text); border: 1px solid var(--border);
  }
  .btn--ghost:hover {
    border-color: var(--red); color: var(--red); transform: translateY(-2px);
  }
  .btn--ghost:active {
    transform: translateY(0) scale(0.98);
  }
  .btn i { transition: transform 0.4s var(--ease-out); }
  .btn:hover i { transform: translateX(4px); }
  
  .magnetic {
    transition: transform 0.3s var(--ease-out);
  }
  
  /* ---------- Section Common ---------- */
  .section__container {
    max-width: 1200px; margin: 0 auto;
    padding: clamp(64px, 12vh, 160px) clamp(20px, 5vw, 80px);
  }
  .section__header { margin-bottom: 80px; }
  .section__header--center { text-align: center; }
  .section__number {
    font-family: var(--font-heading); font-size: 14px; font-weight: 500;
    letter-spacing: 0.2em; color: var(--red); display: block; margin-bottom: 16px;
  }
  .section__title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; color: var(--white);
  }
  .section__subtitle {
    font-size: clamp(16px, 2vw, 20px); color: var(--text-muted); margin-top: 16px;
    max-width: 500px;
  }
  .section__header--center .section__subtitle { margin-left: auto; margin-right: auto; }
  
  /* ---------- About Section ---------- */
  .about {
    position: relative; overflow: hidden;
    background: var(--bg-elevated);
  }
  .about::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 120px; background: linear-gradient(to bottom, transparent, var(--border));
  }
  .about__layout {
    display: grid; grid-template-columns: 1fr; gap: 80px; align-items: center;
  }
  @media (min-width: 900px) {
    .about__layout { grid-template-columns: 1fr 1.2fr; gap: 120px; }
  }
  .about__visual { display: flex; justify-content: center; }
  .about__image-frame {
    position: relative; width: clamp(280px, 50vw, 420px); aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg); overflow: hidden;
  }
  .about__photo {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    transition: transform 0.6s var(--ease-out);
  }
  .about__image-frame:hover .about__photo { transform: scale(1.04); }
  .about__image-border {
    position: absolute; inset: -1px; border-radius: var(--radius-lg);
    border: 1px solid var(--border-accent); pointer-events: none;
  }
  .about__text { max-width: 560px; }
  .about__headline {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 32px); font-weight: 600;
    margin-bottom: 32px; color: var(--white);
  }
  .about__bio { margin-top: 32px; }
  .about__bio p {
    font-size: clamp(16px, 1.8vw, 19px); line-height: 1.8;
    color: var(--text); margin-bottom: 24px;
  }
  .about__bio em {
    color: var(--gold-light); font-style: italic;
  }
  .about__stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px;
  }
  .about__stat-card {
    background: var(--bg-card); padding: 24px; border-radius: var(--radius-md);
    border: 1px solid var(--border); display: flex; align-items: center; gap: 16px;
    transition: all 0.4s var(--ease-out);
  }
  .about__stat-card:hover {
    border-color: var(--border-accent); transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.1);
  }
  .about__stat-icon { font-size: 28px; }
  .about__stat-text { font-family: var(--font-heading); font-size: 15px; font-weight: 600; }
  
  @media (max-width: 899px) {
    .about__layout { grid-template-columns: 1fr; gap: 60px; }
    .about__stats { grid-template-columns: 1fr; }
  }
  
  /* ---------- Links Section ---------- */
  .links {
    position: relative;
  }
  .links::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 120px; background: linear-gradient(to bottom, transparent, var(--border));
  }
  .links__grid {
    display: flex; flex-direction: column; gap: 16px;
  }
  .link-card {
    display: flex; align-items: center; gap: 24px;
    padding: 24px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-md); position: relative;
    transition: all 0.4s var(--ease-out); overflow: hidden;
  }
  .link-card__glow {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08), transparent 50%);
    opacity: 0; transition: opacity 0.4s;
  }
  .link-card:hover .link-card__glow { opacity: 1; }
  .link-card:hover {
    background: var(--bg-card-hover); border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-accent);
  }
  .link-card > * { position: relative; z-index: 1; }
  .link-card__icon {
    flex-shrink: 0; width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(220, 20, 60, 0.1); border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm); font-size: 20px; color: var(--red);
    transition: all 0.4s var(--ease-out);
  }
  .link-card:hover .link-card__icon {
    background: var(--red); color: var(--white); border-color: var(--red);
  }
  .link-card__content { flex: 1; min-width: 0; }
  .link-card__title {
    font-family: var(--font-heading); font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 600; margin-bottom: 4px; color: var(--white); line-height: 1.3;
  }
  .link-card__desc {
    font-size: 14px; color: var(--text-muted); line-height: 1.5;
  }
  .link-card__arrow {
    flex-shrink: 0; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim); transition: all 0.4s var(--ease-out);
  }
  .link-card:hover .link-card__arrow {
    color: var(--red); transform: translateX(4px);
  }
  .link-card--featured {
    background: linear-gradient(135deg, var(--bg-card), rgba(220, 20, 60, 0.06));
    border-color: var(--border-accent); padding: 24px;
  }
  .link-card--featured::before {
    content: 'FEATURED'; position: absolute; top: 16px; right: 16px;
    font-family: var(--font-heading); font-size: 10px; font-weight: 600;
    letter-spacing: 0.15em; color: var(--red);
    background: rgba(220, 20, 60, 0.1); padding: 4px 12px;
    border-radius: var(--radius-full); border: 1px solid var(--border-accent);
    z-index: 2;
  }
  .link-card--social {
    background: linear-gradient(135deg, var(--bg-card), rgba(255, 215, 0, 0.04));
  }
  .link-card--social .link-card__icon {
    width: 64px; height: 64px; font-size: 32px;
    background: rgba(255, 215, 0, 0.08);
  }
  .link-card--social:hover .link-card__icon {
    background: linear-gradient(135deg, var(--red), var(--gold));
    border-color: var(--gold);
  }
  .link-card__icon--large {
    font-size: 32px !important;
  }
  
  /* ---------- Social Section ---------- */
  .social {
    background: var(--bg-elevated); position: relative;
  }
  .social::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 120px; background: linear-gradient(to bottom, transparent, var(--border));
  }
  
  @media (max-width: 767px) {
    .links__grid { gap: 12px; }
    .link-card { padding: 16px; gap: 16px; }
    .link-card--featured { padding: 16px; padding-top: 40px; }
    .link-card--featured::before { top: 10px; right: 10px; font-size: 9px; padding: 3px 8px; }
    .link-card__icon { width: 44px; height: 44px; font-size: 18px; }
    .link-card__title { font-size: 15px; }
    .link-card__desc { font-size: 13px; }
    .link-card__arrow { width: 32px; height: 32px; }
  }
  
  /* ---------- Anthem Section ---------- */
  .anthem {
    background: var(--bg);
    position: relative;
  }
  .anthem::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 120px; background: linear-gradient(to bottom, transparent, var(--border));
  }
  .anthem__card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 64px; max-width: 800px; margin: 0 auto;
    position: relative; overflow: hidden; text-align: center;
  }
  .anthem__glow {
    position: absolute; inset: -100px; border-radius: 50%;
    background: radial-gradient(circle, var(--red-glow), transparent 60%);
    filter: blur(80px); opacity: 0.4; pointer-events: none;
  }
  .anthem__badge {
    display: inline-block; background: linear-gradient(135deg, var(--red), var(--gold));
    color: var(--white); padding: 8px 20px; border-radius: var(--radius-full);
    font-family: var(--font-heading); font-size: 12px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 32px;
  }
  .anthem__icon {
    font-size: 56px; margin-bottom: 24px;
    animation: musicPulse 3s ease-in-out infinite;
  }
  @keyframes musicPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
  }
  .anthem__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 36px); font-weight: 700;
    margin-bottom: 16px; color: var(--white);
  }
  .anthem__desc {
    font-size: clamp(15px, 1.8vw, 16px); color: var(--text-muted); line-height: 1.8; margin-bottom: 32px;
  }
  .anthem__meta {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px;
  }
  .anthem__tag {
    background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border);
    padding: 8px 16px; border-radius: var(--radius-full);
    font-size: 13px; font-weight: 600; color: var(--text-muted);
    transition: all 0.3s var(--ease-out);
  }
  .anthem__tag:hover {
    border-color: var(--border-accent); color: var(--text);
  }
  
  .anthem__waveform {
    display: flex; gap: 4px; justify-content: center; align-items: flex-end;
    height: 60px; margin-bottom: 24px; opacity: 0.4;
  }
  .anthem__bar {
    width: 4px; background: linear-gradient(to top, var(--red), var(--gold));
    border-radius: 2px; animation: waveBar 1.5s ease-in-out infinite;
  }
  .anthem__bar:nth-child(even) { animation-delay: 0.1s; }
  .anthem__bar:nth-child(3n) { animation-delay: 0.2s; }
  @keyframes waveBar {
    0%, 100% { height: 20%; }
    50% { height: 100%; }
  }
  .anthem__status {
    font-family: var(--font-heading); font-size: 14px; font-weight: 600;
    color: var(--text-dim); letter-spacing: 0.1em;
  }
  
  @media (max-width: 767px) {
    .anthem__card { padding: 40px 24px; }
    .anthem__title { font-size: 24px; }
  }
  
  /* ---------- Marquee ---------- */
  .marquee {
    padding: 80px 0; overflow: hidden;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
  }
  .marquee__track {
    display: flex; gap: 48px; white-space: nowrap;
    animation: marquee 30s linear infinite; will-change: transform;
  }
  .marquee__track span {
    font-family: var(--font-heading);
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 600; color: var(--white); opacity: 0.12; flex-shrink: 0;
  }
  .marquee__track span:nth-child(even) {
    background: linear-gradient(135deg, var(--red), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; opacity: 0.3;
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* ---------- Footer ---------- */
  .footer {
    position: relative; background: var(--bg);
    padding: 80px clamp(20px, 5vw, 80px) 48px;
  }
  .footer__inner { max-width: 1200px; margin: 0 auto; }
  .footer__top {
    display: flex; flex-direction: column; align-items: center; gap: 24px;
    padding-bottom: 48px; border-bottom: 1px solid var(--border);
  }
  @media (min-width: 600px) {
    .footer__top { flex-direction: row; justify-content: space-between; }
  }
  .footer__brand {
    display: flex; align-items: center; gap: 16px;
    font-family: var(--font-heading); font-size: 18px; font-weight: 600;
    letter-spacing: 0.15em; color: var(--white);
  }
  .footer__icon { font-size: 24px; }
  .footer__name { letter-spacing: 0.1em; }
  .footer__handle {
    font-family: var(--font-heading); font-size: 14px; font-weight: 500;
    letter-spacing: 0.08em; color: var(--text-dim);
  }
  .footer__tagline {
    font-size: 14px; color: var(--text-dim); text-align: center;
    padding: 32px 0;
  }
  .footer__highlights {
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
    font-size: 13px; color: var(--text-dim); padding-bottom: 32px;
  }
  .footer__highlights span::before { content: '✅ '; margin-right: 4px; }
  .footer__links {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px; max-width: 900px; margin: 0 auto; padding-bottom: 48px;
  }
  .footer__link {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 16px 12px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-md); color: var(--text-muted);
    transition: all 0.3s var(--ease-out); text-align: center;
  }
  .footer__link i { font-size: 24px; }
  .footer__link span { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; }
  .footer__link:hover {
    border-color: var(--red); background: var(--bg-card-hover);
    color: var(--white); transform: translateY(-2px);
  }
  .footer__bottom {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding-top: 32px; border-top: 1px solid var(--border); text-align: center;
  }
  @media (min-width: 600px) {
    .footer__bottom { flex-direction: row; justify-content: space-between; }
  }
  .footer__copy, .footer__credit { font-size: 13px; color: var(--text-dim); }
  .footer__credit a { color: var(--red); transition: opacity 0.3s; }
  .footer__credit a:hover { opacity: 0.7; }
  
  .back-to-top {
    position: fixed; bottom: 24px; right: 24px; z-index: 500;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 50%; color: var(--text-muted); font-size: 16px;
    opacity: 0; visibility: hidden;
    transform: translateY(12px); transition: all 0.4s var(--ease-out);
  }
  .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
  .back-to-top:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
  
  @media (max-width: 767px) {
    .footer { padding: 60px 20px 32px; }
    .footer__highlights { flex-direction: column; gap: 12px; }
  }
  
  /* ---------- Reveal Animations ---------- */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }
  .reveal.visible {
    opacity: 1; transform: translateY(0);
  }
  
  /* ---------- 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-width: 0;
  }
  