/* ========================================
   Sacred Secrett — Sacred Frequencies at Sunrise
   ======================================== */

   :root {
    /* Primary Gradient - Sunrise */
    --sunrise-start: #FF6B35;
    --sunrise-mid: #F7931E;
    --sunrise-end: #FDB813;
  
    /* Accent - Spiritual Depth */
    --purple-deep: #663399;
    --purple-glow: #9370DB;
  
    /* Supporting */
    --terracotta: #E07A5F;
    --gold-accent: #D4AF37;
    --warm-brown: #8B4513;
  
    /* Base */
    --bg-dark: #0a0a0a;
    --bg-card: #1a1015;
    --bg-elevated: #120e14;
    --text-light: #F5E6D3;
    --text-muted: #a89585;
    --text-dim: #6B5B4F;
  
    --border: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(212, 175, 55, 0.2);
  }
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    cursor: default;
  }
  
  body.loading {
    overflow: hidden;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* ========== LOADER ========== */
  
  .loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
  }
  
  .loader.hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  .loader__content {
    text-align: center;
  }
  
  .loader__icon {
    font-size: 48px;
    display: block;
    margin-bottom: 24px;
    animation: loader-pulse 1.2s ease-in-out infinite;
  }
  
  @keyframes loader-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
  }
  
  .loader__bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
  }
  
  .loader__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--sunrise-start), var(--sunrise-end));
    border-radius: 2px;
    animation: loader-fill 1.8s ease-out forwards;
  }
  
  @keyframes loader-fill {
    0% { width: 0%; }
    100% { width: 100%; }
  }
  
  /* ========== MUTE BUTTON ========== */
  
  .mute-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-accent);
    background: rgba(26, 16, 21, 0.85);
    backdrop-filter: blur(12px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  
  .mute-btn:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.08);
  }
  
  .mute-btn__icon {
    font-size: 20px;
  }
  
  .mute-btn.playing {
    animation: mute-glow 2s ease-in-out infinite;
  }
  
  @keyframes mute-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(147, 112, 219, 0.2); }
    50% { box-shadow: 0 0 25px rgba(147, 112, 219, 0.5); }
  }
  
  /* ========== MUSIC PROMPT ========== */
  
  .music-prompt {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }
  
  .music-prompt.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .music-prompt__content {
    text-align: center;
  }
  
  .music-prompt__icon {
    font-size: 56px;
    display: block;
    margin-bottom: 16px;
    animation: loader-pulse 1.5s ease-in-out infinite;
  }
  
  .music-prompt__content p {
    font-family: 'Clash Display', sans-serif;
    font-size: 18px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
  }
  
  /* ========== CUSTOM CURSOR ========== */
  
  @media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    a, button { cursor: none; }
  }
  
  .cursor {
    display: none;
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--sunrise-mid);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
  }
  
  .cursor-follower {
    display: none;
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(147, 112, 219, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
  }
  
  @media (hover: hover) and (pointer: fine) {
    .cursor, .cursor-follower { display: block; }
  }
  
  /* ========== NAVIGATION ========== */
  
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 20px 24px;
    transition: all 0.4s;
  }
  
  .nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(16px);
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
  }
  
  .nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  .nav__toggle {
    display: block !important; /* ALWAYS VISIBLE - never hide on any screen size */
    position: relative;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 901;
  }
  
  .nav__toggle span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s;
  }
  
  .nav__toggle span:first-child { top: 4px; }
  .nav__toggle span:last-child { bottom: 4px; }
  
  .nav__toggle.active span:first-child {
    transform: translateY(7px) rotate(45deg);
  }
  
  .nav__toggle.active span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .nav__logo {
    font-family: 'Clash Display', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--sunrise-start), var(--sunrise-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* ========== MOBILE MENU ========== */
  
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 899;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }
  
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-menu__inner {
    text-align: center;
  }
  
  .mobile-menu__link {
    display: block;
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(32px, 8vw, 56px);
    font-weight: 600;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    position: relative;
  }
  
  .mobile-menu__link::before {
    content: attr(data-index);
    font-size: 14px;
    color: var(--purple-glow);
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'DM Sans', sans-serif;
  }
  
  .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.open .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
  
  .mobile-menu__link:hover {
    color: var(--sunrise-mid);
  }
  
  .mobile-menu__socials {
    margin-top: 40px;
    display: flex;
    gap: 24px;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s 0.3s;
  }
  
  .mobile-menu.open .mobile-menu__socials {
    opacity: 1;
  }
  
  .mobile-menu__socials a {
    font-size: 24px;
    color: var(--text-muted);
    transition: color 0.3s;
  }
  
  .mobile-menu__socials a:hover {
    color: var(--purple-glow);
  }
  
  /* ========== HERO ========== */
  
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* background: linear-gradient(135deg,
      var(--sunrise-start) 0%,
      var(--sunrise-mid) 50%,
      var(--sunrise-end) 100%
    ); */
    animation: sunrise-shift 20s ease-in-out infinite alternate;
  }
  
  @keyframes sunrise-shift {
    0% { filter: hue-rotate(0deg) brightness(1); }
    100% { filter: hue-rotate(15deg) brightness(1.1); }
  }
  
  .hero__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  
  .hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
  }
  
  .hero__orb--1 {
    width: 500px;
    height: 500px;
    background: var(--purple-deep);
    top: -15%;
    left: -10%;
    animation: orb-float 12s ease-in-out infinite;
  }
  
  .hero__orb--2 {
    width: 350px;
    height: 350px;
    background: var(--purple-glow);
    bottom: 10%;
    right: 5%;
    animation: orb-float 15s ease-in-out infinite reverse;
  }
  
  .hero__orb--3 {
    width: 250px;
    height: 250px;
    background: var(--gold-accent);
    top: 30%;
    left: 40%;
    animation: orb-float 10s ease-in-out infinite 2s;
  }
  
  @keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
  }
  
  .hero__grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
  }
  
  .hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    /* margin: 0 auto; */
    padding: 120px 24px 80px;
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
  }
  
  /* Desktop: Image on left, text on right */
  @media (min-width: 901px) {
    .hero__content {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }
    
    .hero__text {
      order: 2;
      max-width: 700px;
    }
    
    .hero__actions {
      justify-content: flex-start;
    }
    
    .hero__stats {
      justify-content: flex-start;
    }
    
    .hero__image {
      order: 1;
      margin-left: -48px; /* Flush to edge */
      flex-shrink: 0;
      width: 43%;
    }
  }
  
  .hero__text {
    flex: 1;
  }
  
  .hero__label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
  }
  
  .hero__title {
    font-family: 'Clash Display', sans-serif;
    line-height: 0.95;
    margin-bottom: 24px;
  }
  
  .hero__line {
    display: block;
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 700;
    color: #fff;
  }
  
  .hero__line--accent {
    font-size: clamp(52px, 10vw, 100px);
    background: linear-gradient(135deg, #fff 30%, var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero__tagline {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    letter-spacing: 1px;
  }
  
  .hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }
  
  .hero__image {
    flex: 0 0 auto;
    position: relative;
  }
  
  .hero__portrait {
    width: clamp(280px, 35vw, 480px);
    height: auto;
    filter: drop-shadow(0 0 40px rgba(147, 112, 219, 0.4))
           drop-shadow(0 0 80px rgba(212, 175, 55, 0.2));
  }
  
  .hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .hero__stat {
    text-align: center;
  }
  
  .hero__stat-number {
    display: block;
    font-family: 'Clash Display', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
  }
  
  .hero__stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .hero__stat-icon {
    font-size: 28px;
    display: block;
  }
  
  .hero__stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
  }
  
  .hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  
  .hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
  }
  
  @keyframes scroll-pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
  }
  
  /* ========== BUTTONS ========== */
  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
  }
  
  .btn--primary {
    background: var(--bg-dark);
    color: var(--text-light);
  }
  
  .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 10, 10, 0.5);
  }
  
  .btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  
  .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
  }
  
  /* ========== SECTIONS COMMON ========== */
  
  section {
    padding: 100px 0;
  }
  
  .section__number {
    display: block;
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    color: var(--purple-glow);
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  
  .section__title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-light);
  }
  
  .section__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--sunrise-start), var(--sunrise-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section__subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 48px;
  }
  
  /* ========== ABOUT ========== */
  
  .about {
    background: var(--bg-dark);
  }
  
  .about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
  }
  
  .about__image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-accent);
  }
  
  .about__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.3), transparent 50%);
  }
  
  .about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s;
  }
  
  .about__image-wrap:hover .about__image {
    transform: scale(1.03);
  }
  
  .about__bio p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 20px;
  }
  
  .about__bio em {
    color: var(--gold-accent);
    font-style: normal;
  }
  
  .about__bio p:last-child {
    background: linear-gradient(135deg, var(--sunrise-start), var(--sunrise-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
  }
  
  /* ========== EXPLORE ========== */
  
  .explore {
    background: var(--bg-elevated);
  }
  
  .explore__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .link-card {
    display: block;
    position: relative;
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.35s;
    overflow: hidden;
  }
  
  .link-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(147, 112, 219, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s;
  }
  
  .link-card:hover {
    border-color: var(--purple-glow);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(147, 112, 219, 0.25),
                0 0 60px rgba(147, 112, 219, 0.1);
  }
  
  .link-card:hover::before {
    opacity: 1;
  }
  
  .link-card--featured {
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.15), rgba(26, 16, 21, 0.95));
    border-color: rgba(147, 112, 219, 0.25);
  }
  
  .link-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple-glow);
    background: rgba(147, 112, 219, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
  }
  
  .link-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--gold-accent);
    transition: all 0.3s;
  }
  
  .link-card:hover .link-card__icon {
    background: var(--gold-accent);
    color: var(--bg-dark);
    border-color: var(--gold-accent);
  }
  
  .link-card__title {
    font-family: 'Clash Display', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
  }
  
  .link-card__desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
  }
  
  .link-card__arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-muted);
    transition: all 0.3s;
  }
  
  .link-card:hover .link-card__arrow {
    background: var(--purple-glow);
    border-color: var(--purple-glow);
    color: #fff;
    transform: translateX(4px);
  }
  
  /* ========== QUOTE BREAK ========== */
  
  .quote-break {
    padding: 80px 24px;
    background: linear-gradient(135deg,
      var(--purple-deep) 0%,
      var(--bg-dark) 50%,
      var(--purple-deep) 100%
    );
    text-align: center;
    position: relative;
  }
  
  .quote-break::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(147, 112, 219, 0.2), transparent 70%);
  }
  
  .quote-break__content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .quote-break__content p {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 500;
    line-height: 1.4;
    background: linear-gradient(135deg, var(--text-light), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
  }
  
  .quote-break__author {
    font-size: 14px;
    color: var(--purple-glow);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  /* ========== CONNECT ========== */
  
  .connect {
    background: var(--bg-dark);
  }
  
  .connect__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .connect-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.35s;
  }
  
  .connect-card:hover {
    border-color: var(--purple-glow);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(147, 112, 219, 0.25),
                0 0 60px rgba(147, 112, 219, 0.1);
  }
  
  .connect-card i {
    font-size: 36px;
    color: var(--gold-accent);
    margin-bottom: 16px;
    transition: all 0.3s;
  }
  
  .connect-card:hover i {
    color: var(--purple-glow);
    transform: scale(1.15);
  }
  
  .connect-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .connect-card p {
    font-size: 13px;
    color: var(--text-muted);
  }
  
  /* ========== MARQUEE ========== */
  
  .marquee {
    overflow: hidden;
    padding: 20px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .marquee__track {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
  }
  
  .marquee__track span {
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-dim);
    padding-right: 20px;
  }
  
  @keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* ========== FOOTER ========== */
  
  .footer {
    padding: 48px 24px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
  }
  
  .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .footer__logo {
    font-family: 'Clash Display', sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--sunrise-start), var(--sunrise-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .footer__copy {
    font-size: 13px;
    color: var(--text-muted);
  }
  
  .footer__socials {
    display: flex;
    gap: 20px;
  }
  
  .footer__socials a {
    font-size: 18px;
    color: var(--text-muted);
    transition: all 0.3s;
  }
  
  .footer__socials a:hover {
    color: var(--purple-glow);
    transform: translateY(-2px);
  }
  
  .footer__credit {
    font-size: 12px;
    color: var(--text-dim);
    width: 100%;
    text-align: center;
    margin-top: 16px;
  }
  
  .footer__credit a {
    color: var(--purple-glow);
    transition: color 0.3s;
  }
  
  .footer__credit a:hover {
    color: var(--gold-accent);
  }
  
  /* ========== BACK TO TOP ========== */
  
  .back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    color: var(--gold-accent);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 800;
  }
  
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background: var(--purple-glow);
    border-color: var(--purple-glow);
    color: #fff;
    transform: translateY(-3px);
  }
  
  /* ========== REVEAL ANIMATION ========== */
  
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ========== LARGE DESKTOP — hero prominence ========== */
  
  @media (min-width: 1024px) {
    .hero__portrait {
      width: clamp(520px, 45vw, 750px);
      filter: drop-shadow(0 0 60px rgba(147, 112, 219, 0.5))
             drop-shadow(0 0 120px rgba(212, 175, 55, 0.25));
    }
  
    .hero__content {
      gap: 60px;
      padding: 0px 24px 100px;
    }
  }
  
  @media (min-width: 1440px) {
    .hero__portrait {
      width: clamp(650px, 50vw, 900px);
    }
  
    .hero__content {
      gap: 80px;
      max-width: 1400px;
    }
  }
  
  /* ========== RESPONSIVE ========== */
  
  @media (max-width: 900px) {
    .hero__content {
      flex-direction: column;
      text-align: center;
      padding-top: 60px;
      padding-bottom: 60px;
      gap: 24px;
    }
  
    .hero__text {
      order: 1;
    }
  
    .hero__image {
      order: 2;
      margin-left: 0; /* Reset flush-to-edge on mobile */
      width: 100%;
      min-width: 100vw;
    }
  
    .hero__portrait {
      width: 100%;
      max-width: 98vw;
    }
  
    .hero__actions {
      justify-content: center;
    }
  
    .hero__stats {
      justify-content: center;
    }
  
    .about__grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .explore__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .connect__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .explore__grid {
      grid-template-columns: 1fr;
    }
  
    .connect__grid {
      grid-template-columns: 1fr;
    }
  
    .hero__stats {
      flex-direction: column;
      gap: 16px;
    }
  
    .hero__stat-divider {
      width: 32px;
      height: 1px;
    }
  
    section {
      padding: 72px 0;
    }
  
    .footer__inner {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 400px) {
    .hero__line {
      font-size: 36px;
    }
  
    .hero__line--accent {
      font-size: 44px;
    }
  }
  