:root{
  --bg:#00002A;
  --fg:#f9f3ff;
  --muted:#d9c9ff;
  --line:rgba(255,230,255,.85);
  --pill:#121129;
  --pill2:#17143a;
  --glowA:rgba(201,145,255,.36);
  --glowB:rgba(255,116,208,.36);
  --blockW:560px;
  --pillAlpha:0.62;
  --accent:#ffd6ff;
  --accent-strong:#ffbdf2;
}

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

html{
  scroll-behavior:smooth;
  scroll-padding-top:140px;
}

#starfield{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:-1;
  background:var(--bg);
  pointer-events:none;
}

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

body{
  margin:0;
  font:14px/1.7 "Press Start 2P",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--fg);
  background:var(--bg);
  display:flex;
  justify-content:center;
  align-items:flex-start;
  padding:32px 16px 80px;
  min-height:100vh;
}

a{
  color:inherit;
}

.page{
  width:min(680px,100%);
  display:flex;
  flex-direction:column;
  gap:20px;
  animation:pageSlideIn 0.6s ease-out;
  overflow:visible;
}

main{
  display:flex;
  flex-direction:column;
  gap:32px;
  margin-top:0;
}

.site-header{
  position:sticky;
  top:20px;
  z-index:110;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:12px;
  padding:12px 16px;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(18,17,41,var(--pillAlpha)),rgba(23,20,58,var(--pillAlpha)));
  backdrop-filter:saturate(120%) blur(8px);
  -webkit-backdrop-filter:saturate(120%) blur(8px);
  border:1.5px solid rgba(255,230,255,.4);
  box-shadow:0 18px 54px rgba(0,0,0,.48),0 0 90px rgba(201,145,255,.22);
}

/* ===================================================================
   MOON ICON - DEPRECATED (Removed for cleaner brand identity)
   Keeping for reference. Remove this block after verification.
   =================================================================== */

/* 
.brandmark-moon{
  position:relative;
  width:100%;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.moon-icon{
  width:36px;
  height:36px;
  background:radial-gradient(circle at 35% 35%,rgba(255,255,255,0.95) 0%,rgba(255,214,255,0.85) 15%,rgba(201,145,255,0.7) 40%,rgba(138,100,200,0.5) 70%,rgba(18,10,37,0.3) 100%);
  border-radius:50%;
  box-shadow:0 0 16px rgba(201,145,255,0.6),0 0 32px rgba(255,116,208,0.3),inset -3px -3px 6px rgba(0,0,0,0.2),inset 2px 2px 4px rgba(255,255,255,0.3);
  animation:galacticBreath 4s ease-in-out infinite;
  position:relative;
  z-index:2;
}

.moon-icon::after{
  content:'';
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%,rgba(255,255,255,0.4) 0%,transparent 60%);
  animation:shimmerRotate 8s linear infinite;
  pointer-events:none;
}

.moon-sparkle{
  position:absolute;
  left:50%;
  top:50%;
  font-family:'Press Start 2P',system-ui,monospace;
  font-size:8px;
  font-weight:700;
  color:#ffd6ff;
  text-shadow:0 0 3px rgba(255,214,255,1),0 0 6px rgba(201,145,255,0.8),0 0 9px rgba(255,116,208,0.5);
  pointer-events:none;
  opacity:0.95;
  z-index:3;
}

.moon-word{
  position:absolute;
  left:50%;
  top:50%;
  font-family:'Press Start 2P',system-ui,monospace;
  font-size:7px;
  font-weight:700;
  color:#ffd6ff;
  text-shadow:0 0 3px rgba(255,214,255,1),0 0 6px rgba(201,145,255,0.8),0 0 9px rgba(255,116,208,0.5);
  pointer-events:none;
  opacity:0.95;
  z-index:3;
  white-space:nowrap;
}

.orbit-word-1{
  animation:orbitText 15s linear infinite;
  animation-delay:0s;
}

.orbit-word-2{
  animation:orbitText 15s linear infinite;
  animation-delay:-5s;
}

.orbit-word-3{
  animation:orbitText 15s linear infinite;
  animation-delay:-10s;
}

.brandmark-moon:hover .moon-word{
  animation:orbitTextFast 10s linear infinite;
}

.brandmark-moon:hover .orbit-word-1{
  animation-delay:0s;
}

.brandmark-moon:hover .orbit-word-2{
  animation-delay:-3.33s;
}

.brandmark-moon:hover .orbit-word-3{
  animation-delay:-6.66s;
}

.orbit-char{
  animation:orbitText 15s linear infinite;
  animation-delay:calc(var(--char-index) * -0.789s);
}

.brandmark-moon:hover .orbit-char{
  animation:orbitTextFast 10s linear infinite;
  animation-delay:calc(var(--char-index) * -0.526s);
}

.brandmark-moon:hover .moon-icon{
  animation:galacticBreathHover 2s ease-in-out infinite;
}
*/

/* ===================================================================
   BRANDMARK - Primary Logo with Moon Symbol
   =================================================================== */

.brandmark{
  font-weight:700;
  font-size:1.15em;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(18,17,41,0.5);
  border:1.5px solid rgba(255,214,255,0.25);
  text-decoration:none;
  box-shadow:0 0 20px rgba(201,145,255,0.15),0 2px 8px rgba(0,0,0,0.3);
  position:relative;
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  display:inline-flex;
  align-items:center;
  gap:6px;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

/* Collector - Lavender */
.brandmark-collector{
  font-size:0.95em;
  color:#ffd6ff;
  font-weight:700;
  letter-spacing:0.10em;
  transition:all 0.3s ease;
}

.brandmark-separator{
  color:#d9c9ff;
  opacity:0.6;
  font-weight:400;
  font-size:0.9em;
}

/* Greg - Off-white */
.brandmark-greg{
  font-size:0.95em;
  color:#f9f3ff;
  font-weight:700;
  letter-spacing:0.10em;
  transition:all 0.3s ease;
}

.brandmark:hover{
  transform:translateY(-1px);
  box-shadow:0 0 30px rgba(201,145,255,0.3),0 4px 12px rgba(0,0,0,0.4);
  border-color:rgba(255,214,255,0.4);
  background:rgba(18,17,41,0.7);
}

.brandmark:hover .brandmark-collector{
  letter-spacing:0.12em;
  color:#ffbdf2;
}

.brandmark:hover .brandmark-greg{
  letter-spacing:0.12em;
  color:#ffffff;
}

/* Legacy moon class (deprecated - moon now in header-left) */
.brandmark-moon{
  flex-shrink:0;
  width:24px;
  height:24px;
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  filter:drop-shadow(0 0 4px rgba(201,145,255,0.4));
}

.brandmark:hover .brandmark-moon{
  filter:drop-shadow(0 0 8px rgba(201,145,255,0.8)) drop-shadow(0 0 12px rgba(255,116,208,0.4));
  transform:scale(1.05);
}

/* Legacy prefix class (keep for backwards compatibility, remove later) */
.brandmark-prefix{
  font-size:0.85em;
  color:#ffd6ff;
  font-weight:700;
  letter-spacing:0.12em;
}

/* Legacy core class (keep for backwards compatibility, remove later) */
.brandmark-core{
  font-size:1em;
  color:#f9f3ff;
  font-weight:700;
  letter-spacing:0.08em;
}

.brandmark:hover .brandmark-prefix{
  letter-spacing:0.14em;
  color:#ffbdf2;
}

.brandmark:hover .brandmark-core{
  letter-spacing:0.10em;
}

/* Nostalgic Moon Breathing Animation */
@keyframes nostalgiaLoop{
  0%,100%{
    box-shadow:0 0 16px rgba(201,145,255,0.5),0 0 32px rgba(255,116,208,0.2),inset -3px -3px 6px rgba(0,0,0,0.2),inset 2px 2px 4px rgba(255,255,255,0.3);
    filter:brightness(1);
  }
  50%{
    box-shadow:0 0 24px rgba(201,145,255,0.8),0 0 48px rgba(255,116,208,0.4),0 0 64px rgba(138,100,200,0.2),inset -3px -3px 6px rgba(0,0,0,0.15),inset 2px 2px 4px rgba(255,255,255,0.4);
    filter:brightness(1.1);
  }
}

/* Keep legacy galacticBreath for backwards compatibility */
@keyframes galacticBreath{
  0%,100%{
    box-shadow:0 0 16px rgba(201,145,255,0.5),0 0 32px rgba(255,116,208,0.2),inset -3px -3px 6px rgba(0,0,0,0.2),inset 2px 2px 4px rgba(255,255,255,0.3);
    filter:brightness(1);
  }
  50%{
    box-shadow:0 0 24px rgba(201,145,255,0.8),0 0 48px rgba(255,116,208,0.4),0 0 64px rgba(138,100,200,0.2),inset -3px -3px 6px rgba(0,0,0,0.15),inset 2px 2px 4px rgba(255,255,255,0.4);
    filter:brightness(1.1);
  }
}

@keyframes galacticBreathHover{
  0%,100%{
    box-shadow:0 0 20px rgba(201,145,255,0.7),0 0 40px rgba(255,116,208,0.4),0 0 60px rgba(138,100,200,0.3),inset -3px -3px 6px rgba(0,0,0,0.15),inset 2px 2px 4px rgba(255,255,255,0.4);
    filter:brightness(1.05);
    transform:scale(1);
  }
  50%{
    box-shadow:0 0 28px rgba(201,145,255,0.9),0 0 56px rgba(255,116,208,0.6),0 0 80px rgba(138,100,200,0.4),inset -3px -3px 6px rgba(0,0,0,0.1),inset 2px 2px 4px rgba(255,255,255,0.5);
    filter:brightness(1.15);
    transform:scale(1.05);
  }
}

@keyframes initialsGlow{
  0%,100%{
    opacity:0.7;
    text-shadow:0 0 2px rgba(255,255,255,0.8),0 0 4px rgba(201,145,255,0.3);
  }
  50%{
    opacity:0.95;
    text-shadow:0 0 3px rgba(255,255,255,1),0 0 6px rgba(201,145,255,0.5),0 0 9px rgba(255,116,208,0.3);
  }
}

@keyframes shimmerRotate{
  from{
    transform:rotate(0deg);
  }
  to{
    transform:rotate(360deg);
  }
}

@keyframes sparkleOrbitSmooth{
  0%{
    transform:translate(-50%,-50%) rotate(0deg) translateX(28px) rotate(0deg);
    opacity:0.7;
  }
  50%{
    opacity:1;
  }
  100%{
    transform:translate(-50%,-50%) rotate(360deg) translateX(28px) rotate(-360deg);
    opacity:0.7;
  }
}

@keyframes orbitText{
  0%{
    transform:translate(-50%,-50%) rotate(0deg) translateX(30px) rotate(0deg) scale(1);
    opacity:0.9;
  }
  25%{
    transform:translate(-50%,-50%) rotate(90deg) translateX(35px) rotate(-90deg) scale(1.15);
    opacity:1;
  }
  50%{
    transform:translate(-50%,-50%) rotate(180deg) translateX(30px) rotate(-180deg) scale(1);
    opacity:0.9;
  }
  75%{
    transform:translate(-50%,-50%) rotate(270deg) translateX(35px) rotate(-270deg) scale(1.15);
    opacity:1;
  }
  100%{
    transform:translate(-50%,-50%) rotate(360deg) translateX(30px) rotate(-360deg) scale(1);
    opacity:0.9;
  }
}

@keyframes orbitTextFast{
  0%{
    transform:translate(-50%,-50%) rotate(0deg) translateX(32px) rotate(0deg) scale(1);
    opacity:1;
  }
  25%{
    transform:translate(-50%,-50%) rotate(90deg) translateX(37px) rotate(-90deg) scale(1.2);
    opacity:1;
  }
  50%{
    transform:translate(-50%,-50%) rotate(180deg) translateX(32px) rotate(-180deg) scale(1);
    opacity:1;
  }
  75%{
    transform:translate(-50%,-50%) rotate(270deg) translateX(37px) rotate(-270deg) scale(1.2);
    opacity:1;
  }
  100%{
    transform:translate(-50%,-50%) rotate(360deg) translateX(32px) rotate(-360deg) scale(1);
    opacity:1;
  }
}

@keyframes sparkleOrbitFaster{
  0%{
    transform:translate(-50%,-50%) rotate(0deg) translateX(30px) rotate(0deg);
    opacity:0.9;
    font-size:10px;
  }
  50%{
    opacity:1;
    font-size:12px;
  }
  100%{
    transform:translate(-50%,-50%) rotate(360deg) translateX(30px) rotate(-360deg);
    opacity:0.9;
    font-size:10px;
  }
}

@keyframes moonGlow{
  0%,100%{
    box-shadow:0 0 8px rgba(255,255,255,0.6),inset -2px -2px 4px rgba(0,0,0,0.3);
    transform:scale(1);
  }
  50%{
    box-shadow:0 0 16px rgba(255,214,255,0.9),0 0 24px rgba(201,145,255,0.5),inset -2px -2px 4px rgba(0,0,0,0.3);
    transform:scale(1.05);
  }
}

@keyframes moonGlowIntense{
  0%,100%{
    box-shadow:0 0 12px rgba(255,255,255,0.8),0 0 20px rgba(255,214,255,0.6),inset -2px -2px 4px rgba(0,0,0,0.3);
    transform:scale(1.05) rotate(0deg);
  }
  50%{
    box-shadow:0 0 20px rgba(255,214,255,1),0 0 32px rgba(201,145,255,0.8),inset -2px -2px 4px rgba(0,0,0,0.3);
    transform:scale(1.1) rotate(5deg);
  }
}

@keyframes sparkleOrbit{
  0%{
    transform:translate(-50%,-50%) rotate(0deg) translateX(20px) rotate(0deg);
    opacity:0.8;
  }
  50%{
    opacity:1;
  }
  100%{
    transform:translate(-50%,-50%) rotate(360deg) translateX(20px) rotate(-360deg);
    opacity:0.8;
  }
}

@keyframes sparkleOrbitFast{
  0%{
    transform:translate(-50%,-50%) rotate(0deg) translateX(22px) rotate(0deg);
    opacity:1;
    font-size:12px;
  }
  50%{
    opacity:0.6;
    font-size:14px;
  }
  100%{
    transform:translate(-50%,-50%) rotate(360deg) translateX(22px) rotate(-360deg);
    opacity:1;
    font-size:12px;
  }
}

/* Section title - show on all screens */
.section-title{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1px;
  flex:1;
  text-align:center;
  min-height:0;
  transition:flex 0.3s ease, gap 0.3s ease;
}

.section-title-text{
  font-size:13px;
  color:var(--accent);
  letter-spacing:0.05em;
  opacity:1;
  transition:opacity 0.3s ease;
  font-weight:600;
  min-height:0;
}

/* Collapse section title when empty or hidden */
.section-title-text:empty,
.section-title-text[style*="opacity: 0"]{
  display:none;
}

.section-title:has(> .section-title-text:empty),
.section-title:has(> .section-title-text[style*="opacity: 0"]){
  flex:0;
  min-height:0;
  gap:0;
}

/* Social Icons */
.header-social{
  display:flex;
  gap:8px;
  flex-shrink:0;
  justify-content:flex-end;
  grid-column:3;
}

.social-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  padding:8px;
  color:var(--muted);
  text-decoration:none;
  transition:color 0.2s ease, transform 0.2s ease;
  border-radius:6px;
  background:transparent;
}

.social-link:hover,
.social-link:focus-visible{
  color:var(--accent);
  transform:scale(1.2);
}

.social-link svg{
  width:24px;
  height:24px;
}

/* Hamburger menu - show on all screens */
.mobile-nav-toggle{
  display:flex !important;
  position:fixed !important;
  left:20px !important;
  top:32px !important;
  flex-direction:column;
  gap:3px;
  width:22px;
  height:18px;
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  z-index:105 !important;
  visibility:visible !important;
}

.mobile-nav-toggle span{
  width:18px;
  height:1.5px;
  background:var(--fg);
  border-radius:1px;
  transition:all 0.3s ease;
  transform-origin:center;
  display:block !important;
  visibility:visible !important;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1){
  transform:rotate(45deg) translate(8px, 8px);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3){
  transform:rotate(-45deg) translate(8px, -8px);
}

/* ===================================================================
   HEADER LEFT - Moon Symbol with Sparkles
   =================================================================== */

.header-left{
  display:flex;
  align-items:center;
  justify-content:center;
  grid-column:1;
}

.moon-container{
  position:relative;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.header-moon{
  width:40px;
  height:40px;
  image-rendering:pixelated;
  image-rendering:-moz-crisp-edges;
  image-rendering:crisp-edges;
  flex-shrink:0;
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  filter:drop-shadow(0 0 8px rgba(201,145,255,0.6));
  cursor:pointer;
}

.header-moon:hover{
  filter:drop-shadow(0 0 16px rgba(201,145,255,1)) drop-shadow(0 0 24px rgba(255,116,208,0.6));
  transform:scale(1.05);
}

/* Sparkles around the moon */
.sparkle{
  position:absolute;
  font-size:8px;
  color:#ffd6ff;
  text-shadow:0 0 4px rgba(255,214,255,1),0 0 8px rgba(201,145,255,0.8);
  opacity:0;
  animation:sparkleAnimation 3s ease-in-out infinite;
  pointer-events:none;
}

.sparkle-1{
  top:-2px;
  right:2px;
  animation-delay:0s;
}

.sparkle-2{
  bottom:-2px;
  left:2px;
  animation-delay:0.75s;
}

.sparkle-3{
  top:8px;
  right:-4px;
  animation-delay:1.5s;
}

.sparkle-4{
  bottom:8px;
  left:-4px;
  animation-delay:2.25s;
}

@keyframes sparkleAnimation{
  0%,100%{
    opacity:0;
    transform:scale(0.5) rotate(0deg);
  }
  50%{
    opacity:1;
    transform:scale(1) rotate(180deg);
  }
}

.moon-container:hover .sparkle{
  animation-duration:1.5s;
}

.moon-container:hover .header-moon{
  animation:moonPulse 2s ease-in-out infinite;
}

@keyframes moonPulse{
  0%,100%{
    filter:drop-shadow(0 0 12px rgba(201,145,255,0.8));
  }
  50%{
    filter:drop-shadow(0 0 20px rgba(201,145,255,1)) drop-shadow(0 0 32px rgba(255,116,208,0.8));
  }
}

/* Center wrapper for brandmark and section title */
.header-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  grid-column:2;
  min-width:0;
}

.site-nav{
  display:none;
  flex-wrap:wrap;
  gap:18px;
  font-size:10px;
}

.site-nav a{
  text-decoration:none;
  color:var(--muted);
  padding:6px 0;
  transition:color .2s ease;
  min-height:44px;
  display:flex;
  align-items:center;
}

.site-nav a:hover,
.site-nav a:focus-visible{
  color:var(--fg);
}

.site-nav a.active{
  color:var(--accent);
  font-weight:600;
}

/* Mobile Navigation - Show on all screens */
.mobile-nav-toggle,
.mobile-nav-drawer,
.mobile-nav-overlay{
  display:block;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  z-index:99;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.3s ease;
}

.mobile-nav-overlay.open{
  opacity:1;
  pointer-events:auto;
}

/* Mobile Navigation Drawer Base */
.mobile-nav-drawer{
  display:flex;
  flex-direction:column;
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  max-height:90vh;
  background:linear-gradient(180deg,rgba(18,17,41,0.98),rgba(23,20,58,0.98));
  backdrop-filter:saturate(120%) blur(12px);
  -webkit-backdrop-filter:saturate(120%) blur(12px);
  border-top:1.5px solid rgba(255,230,255,0.4);
  border-radius:28px 28px 0 0;
  z-index:100;
  transform:translateY(100%);
  transition:transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow:0 -12px 40px rgba(0,0,0,0.5);
  pointer-events:auto;
}

.mobile-nav-drawer.open{
  transform:translateY(0);
}

/* Desktop - hide hamburger and drawer */
@media (min-width:561px){
  .mobile-nav-toggle{
    display:none !important;
  }
  
  .mobile-nav-drawer{
    display:none !important;
  }
  
  .mobile-nav-overlay{
    display:none !important;
  }
}

/* Mobile - stack moon + brandmark vertically */
@media (max-width:560px){
  .mobile-nav-toggle{
    display:none !important;
  }
  
  .mobile-nav-drawer{
    display:none !important;
  }
  
  .mobile-nav-overlay{
    display:none !important;
  }
  /* Mobile header - horizontal layout with moon visible */
  .site-header{
    position:relative;
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:space-between !important;
    padding:10px 8px;
    gap:6px;
    grid-template-columns:none !important;
  }

  /* Show moon on mobile, on the left */
  .header-left{
    display:flex !important;
    grid-column:initial;
    flex-shrink:0;
  }

  .moon-container{
    width:28px;
    height:28px;
  }

  .header-moon{
    width:28px;
    height:28px;
  }

  .sparkle{
    font-size:5px;
  }

  /* Hamburger on the left */
  .mobile-nav-toggle{
    display:flex !important;
    position:static !important;
    flex-direction:column;
    gap:3px;
    width:24px;
    height:18px;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    z-index:105 !important;
  }

  /* Center content wrapper - grows to fill space */
  .header-center{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2px;
    flex:1;
    min-width:0;
  }

  /* Mobile social icons - on the right */
  .header-social{
    position:static !important;
    transform:none !important;
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:flex-end !important;
    width:auto !important;
    height:auto !important;
    flex-shrink:0;
    gap:4px !important;
    right:auto !important;
    top:auto !important;
  }

  .social-link{
    width:24px !important;
    height:24px !important;
    padding:2px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .social-link svg{
    width:14px !important;
    height:14px !important;
  }

  /* Hide desktop nav */
  .site-nav{
    display:none;
  }

  /* Shrink moon on mobile */
  .brandmark-moon{
    width:36px;
    height:36px;
  }
  
  .moon-icon{
    width:28px;
    height:28px;
  }
  
  .moon-sparkle{
    font-size:5px;
  }
  
  .moon-word{
    font-size:4px;
  }

  /* Shrink brandmark on mobile */
  .brandmark{
    font-size:10px;
    line-height:1;
    padding:5px 10px;
    gap:4px;
  }

  .brandmark-moon{
    width:18px;
    height:18px;
  }

  .brandmark-collector{
    font-size:0.85em;
  }

  .brandmark-separator{
    font-size:0.85em;
  }

  .brandmark-greg{
    font-size:0.85em;
  }

  /* Legacy mobile styles (backwards compatibility) */
  .brandmark-prefix{
    font-size:0.8em;
  }

  .brandmark-core{
    font-size:0.95em;
  }

  /* Shrink section title on mobile */
  .section-title{
    display:flex;
    font-size:8px;
    line-height:1;
  }

  /* Section title styling on mobile */
  .section-title-text{
    font-size:11px;
    flex:1;
    min-width:0;
  }

  .mobile-nav-toggle span{
    width:18px;
    height:1.5px;
    background:var(--fg);
    border-radius:1px;
    transition:all 0.3s ease;
    transform-origin:center;
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(1){
    transform:rotate(45deg) translate(8px, 8px);
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(2){
    opacity:0;
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(3){
    transform:rotate(-45deg) translate(8px, -8px);
  }

  /* Header for mobile nav */
  .mobile-nav-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 20px;
    border-bottom:1px solid rgba(255,230,255,0.2);
  }

  .mobile-nav-header h2{
    margin:0;
    font-size:14px;
    color:var(--fg);
  }

  .mobile-nav-close{
    background:none;
    border:none;
    font-size:28px;
    color:var(--fg);
    cursor:pointer;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:color 0.2s ease;
  }

  .mobile-nav-close:hover{
    color:var(--accent);
  }

  /* Navigation content */
  .mobile-nav-content{
    flex:1;
    overflow-y:auto;
    padding:12px 0;
    -webkit-overflow-scrolling:touch;
  }

  .mobile-nav-links{
    display:flex;
    flex-direction:column;
    gap:0;
  }

  .mobile-nav-link{
    display:flex;
    align-items:center;
    gap:16px;
    padding:14px 20px;
    text-decoration:none;
    color:var(--muted);
    font-size:12px;
    transition:all 0.2s ease;
    border-left:3px solid transparent;
    position:relative;
  }

  .mobile-nav-link:hover{
    color:var(--fg);
    background:rgba(255,230,255,0.08);
  }

  .mobile-nav-link.active{
    color:var(--accent);
    background:rgba(255,214,255,0.1);
    border-left-color:var(--accent);
  }

  /* Timeline dot indicator */
  .mobile-nav-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--glowA);
    flex-shrink:0;
    transition:all 0.3s ease;
  }

  .mobile-nav-link.active .mobile-nav-dot{
    background:var(--accent);
    width:12px;
    height:12px;
    box-shadow:0 0 12px var(--accent);
  }

  /* Mobile nav footer with CTA */
  .mobile-nav-footer{
    padding:12px 16px;
    border-top:1px solid rgba(255,230,255,0.2);
    display:flex;
    gap:10px;
  }

  .mobile-nav-cta{
    flex:1;
    font-size:10px;
    padding:10px 14px;
    text-align:center;
  }

  .mobile-nav-cta.secondary{
    background:linear-gradient(90deg,rgba(255,230,255,0.15),rgba(255,189,242,0.15));
    border:1px solid rgba(255,189,242,0.3);
    color:rgba(255,230,255,0.9);
  }

  /* Mobile nav styles */
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 20px;
  border-radius:999px;
  font-weight:600;
  font-size:13px;
  letter-spacing:.03em;
  background:linear-gradient(90deg,rgba(255,214,255,0.92),rgba(255,189,242,0.95));
  color:#120a25;
  text-decoration:none;
  border:1.5px solid rgba(255,230,255,0.85);
  box-shadow:0 16px 42px rgba(0,0,0,0.35),0 0 60px var(--glowA);
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
  min-height:44px;
  min-width:44px;
}

.cta:hover,
.cta:focus-visible{
  transform:scale(1.05) translateY(-2px);
  box-shadow:0 20px 48px rgba(0,0,0,0.45),0 0 70px var(--glowB);
}

.cta.ghost{
  background:transparent;
  color:var(--fg);
  border:1.5px solid rgba(255,230,255,0.6);
  box-shadow:none;
}

.hero{
  position:relative;
  border-radius:32px;
  padding:60px clamp(24px,6vw,80px) 60px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  background:linear-gradient(135deg,rgba(18,17,41,0.95),rgba(23,20,58,0.95));
  box-shadow:0 20px 60px rgba(0,0,0,.6),0 0 180px rgba(201,145,255,.35),inset 0 1px 0 rgba(255,230,255,0.1);
  overflow:hidden;
  border:1.5px solid rgba(255,230,255,0.2);
}

/* Hero Background Carousel */
.hero-carousel-bg{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}

.hero-carousel-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
}

.hero-carousel-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* Dark overlay for text readability */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(18,17,41,0.85),rgba(23,20,58,0.82)),
              radial-gradient(ellipse at 50% 0%,rgba(201,145,255,0.12),transparent 60%),
              radial-gradient(ellipse at 50% 100%,rgba(255,116,208,0.08),transparent 50%);
  z-index:1;
  pointer-events:none;
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
}

.hero-content{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:20px;
  align-items:center;
}

.hero h1{
  margin:0;
  font-size:clamp(24px,5.5vw,40px);
  line-height:1.2;
  letter-spacing:0.03em;
  text-shadow:0 4px 20px rgba(201,145,255,0.4),0 0 60px rgba(255,116,208,0.2);
  max-width:580px;
  width:100%;
  background:linear-gradient(135deg,#f9f3ff,#ffd6ff,#c991ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.hero p{
  margin:0;
  font-size:11px;
  color:rgba(249,243,255,0.92);
  max-width:520px;
  width:100%;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  width:100%;
}

.hero-highlights{
  margin:0;
  padding-left:0;
  display:grid;
  gap:8px;
  color:var(--muted);
  font-size:13.5px;
  text-align:center;
  max-width:520px;
  width:100%;
}

.hero,
.section-glass,
.section-solid{
  scroll-margin-top:140px;
  border-radius:32px;
  box-shadow:0 18px 54px rgba(0,0,0,.48),0 0 120px rgba(201,145,255,.18);
}

.section-glass{
  background:url("../assets/images/middle-bg.jpg") center/cover;
}

.section-solid{
  background:url("../assets/images/middle-bg.jpg") center/cover;
}

.section-inner{
  width:100%;
  padding:28px 20px;
  border-radius:28px;
  background:rgba(18,17,41,0.28);
  backdrop-filter:blur(24px) saturate(1.4);
  -webkit-backdrop-filter:blur(24px) saturate(1.4);
  border:1px solid rgba(255,230,255,0.15);
  display:flex;
  flex-direction:column;
  gap:20px;
  margin:0 auto;
  align-items:center;
}

.section-head{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:720px;
  margin:0 auto;
  text-align:center;
  width:100%;
  align-items:center;
}

.section-intro{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:720px;
  margin:0 auto;
  text-align:center;
  width:100%;
  align-items:center;
  padding:20px 22px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(21,20,48,0.82),rgba(17,15,40,0.78));
  border:none;
  border-top:3px solid var(--accent);
  box-shadow:0 4px 16px rgba(0,0,0,0.25);
}

.story-content{
  width:100%;
  padding:20px 22px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(21,20,48,0.82),rgba(17,15,40,0.78));
  border:none;
  border-top:3px solid var(--accent);
  box-shadow:0 4px 16px rgba(0,0,0,0.25);
  text-align:center;
}

.section-inner h2{
  margin:0;
  font-size:clamp(18px,4vw,32px);
  letter-spacing:0.03em;
}

.section-inner h3{
  margin:0 0 8px;
  font-size:11px;
}

.section-inner p{
  margin:0;
  font-size:10px;
  color:rgba(249,243,255,0.9);
}

.story-grid,
.benefit-grid,
.collectors-grid,
.trust-grid,
.lore-grid,
.story-grid{
  display:flex;
  flex-direction:column;
  gap:20px;
  width:100%;
  margin:0 auto;
}

.story-grid article,
.benefit-grid article,
.collectors-grid .collect-card,
.trust-grid article,
.lore-grid article{
  padding:20px 22px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(21,20,48,0.82),rgba(17,15,40,0.78));
  border:none;
  border-top:3px solid var(--accent);
  box-shadow:0 4px 16px rgba(0,0,0,0.25);
  animation:cardSlideIn 0.6s ease-out both;
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  width:100%;
}

.story-grid article p,
.benefit-grid article p,
.collectors-grid .collect-card p,
.trust-grid article p,
.lore-grid article p{
  white-space:pre-line;
  line-height:1.9;
}

.story-grid article p + p,
.benefit-grid article p + p,
.collectors-grid .collect-card p + p,
.trust-grid article p + p,
.lore-grid article p + p{
  margin-top:1.2em;
}

/* New Benefit Section Card Layout */
.benefit-section{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.benefit-section-title{
  font-size:18px;
  color:var(--accent-strong);
  text-align:center;
  margin:0;
  padding-bottom:8px;
  border-bottom:2px solid rgba(255,214,255,0.3);
}

.benefit-cards{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  width:100%;
}

.benefit-card{
  padding:20px;
  border-radius:20px;
  background:linear-gradient(135deg,rgba(21,20,48,0.88),rgba(17,15,40,0.84));
  border:2px solid rgba(255,214,255,0.4);
  box-shadow:0 4px 16px rgba(0,0,0,0.3);
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  position:relative;
  overflow:hidden;
  opacity:0;
  animation:cardFadeInUp 0.6s ease-out forwards;
}

.benefit-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg,var(--accent),var(--accent-strong));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.4s ease;
}

.benefit-card:hover::before{
  transform:scaleX(1);
}

.benefit-card:hover{
  transform:translateY(-6px) scale(1.02);
  border-color:var(--accent);
  box-shadow:0 12px 32px rgba(255,189,242,0.25),0 0 40px rgba(201,145,255,0.15);
}

.benefit-card[data-card-index="1"]{
  animation-delay:0.1s;
}

.benefit-card[data-card-index="2"]{
  animation-delay:0.2s;
}

.benefit-card[data-card-index="3"]{
  animation-delay:0.3s;
}

.benefit-card[data-card-index="4"]{
  animation-delay:0.4s;
}

.benefit-card[data-card-index="5"]{
  animation-delay:0.5s;
}

.benefit-card-icon{
  font-size:32px;
  margin-bottom:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border-radius:16px;
  background:linear-gradient(135deg,rgba(255,214,255,0.12),rgba(255,189,242,0.08));
  border:2px solid rgba(255,214,255,0.3);
  transition:all 0.3s ease;
}

.benefit-card:hover .benefit-card-icon{
  transform:scale(1.15) rotate(5deg);
  border-color:var(--accent);
  background:linear-gradient(135deg,rgba(255,214,255,0.2),rgba(255,189,242,0.15));
}

.benefit-card h4{
  font-size:16px;
  color:var(--accent);
  margin:0 0 12px 0;
  line-height:1.5;
}

.benefit-card p{
  margin:0;
  line-height:1.8;
  color:var(--fg);
}

/* Pixel Pack Hero CTA */
/* Founder's Tier Banner */
.founders-tier-banner{
  width:100%;
  max-width:540px;
  margin:24px auto;
  padding:20px 24px;
  background:linear-gradient(135deg,rgba(255,116,208,0.15),rgba(201,145,255,0.15));
  border:2px solid var(--accent);
  border-radius:16px;
  box-shadow:0 0 32px rgba(255,116,208,0.3),inset 0 0 60px rgba(255,116,208,0.1);
}

.founders-tier-content{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  text-align:center;
}

.founders-tier-exclusive{
  color:var(--accent);
  font-size:16px;
  font-weight:600;
  margin:0;
  letter-spacing:0.05em;
}

.founders-tier-pricing{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  font-size:16px;
  font-weight:600;
}

.founders-tier-arrow{
  color:var(--muted);
  font-size:18px;
}

.founders-tier-closing{
  color:var(--accent);
  font-size:14px;
  letter-spacing:0.05em;
}

.founders-tier-date{
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.05em;
  width:100%;
  margin-top:4px;
}

.founders-tier-benefit{
  margin:0;
  font-size:13px;
  color:var(--fg);
  line-height:1.6;
}

.pixel-pack-cta-wrapper{
  width:100%;
  display:flex;
  justify-content:center;
  margin:8px 0 24px 0;
}

.cta-hero{
  position:relative;
  font-size:16px;
  padding:16px 32px;
  background:linear-gradient(135deg,#ff74d0,#c991ff);
  border:none;
  color:#000;
  font-weight:bold;
  box-shadow:0 8px 24px rgba(255,116,208,0.4),0 0 40px rgba(201,145,255,0.3);
  animation:ctaPulse 2s ease-in-out infinite;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.cta-hero::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.4),transparent);
  animation:ctaShine 3s ease-in-out infinite;
}

.cta-hero:hover{
  transform:scale(1.08) translateY(-2px);
  box-shadow:0 12px 32px rgba(255,116,208,0.6),0 0 60px rgba(201,145,255,0.5);
  animation:ctaPulse 1s ease-in-out infinite;
}

.cta-hero:active{
  transform:scale(1.02) translateY(0);
}

.cta-icon{
  font-size:20px;
  animation:iconFloat 2s ease-in-out infinite;
  display:inline-block;
}

.cta-hero:hover .cta-icon{
  animation:iconSpin 0.6s ease-in-out;
}

@keyframes ctaPulse{
  0%,100%{
    box-shadow:0 8px 24px rgba(255,116,208,0.4),0 0 40px rgba(201,145,255,0.3);
  }
  50%{
    box-shadow:0 8px 24px rgba(255,116,208,0.6),0 0 60px rgba(201,145,255,0.5);
  }
}

@keyframes ctaShine{
  0%{
    left:-100%;
  }
  50%,100%{
    left:100%;
  }
}

@keyframes iconFloat{
  0%,100%{
    transform:translateY(0) scale(1);
  }
  50%{
    transform:translateY(-3px) scale(1.1);
  }
}

@keyframes iconSpin{
  0%{
    transform:rotate(0deg) scale(1);
  }
  50%{
    transform:rotate(180deg) scale(1.3);
  }
  100%{
    transform:rotate(360deg) scale(1);
  }
}

@keyframes cardFadeInUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Story Section Animations */
#story-title{
  animation:titleWave 2s ease-in-out infinite,titleFadeIn 0.8s ease-out;
  background:linear-gradient(135deg,#ffd6ff,#c991ff,#ff74d0);
  background-size:200% 200%;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 0 40px rgba(255,116,208,0.4);
  position:relative;
  display:inline-block;
}

@keyframes titleWave{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-4px);
  }
}

@keyframes titleFadeIn{
  from{
    opacity:0;
    transform:scale(0.9);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

.story-subtitle{
  font-size:10px;
  color:var(--accent);
  text-align:center;
  margin:8px 0 0;
  font-style:italic;
  opacity:0;
  animation:subtitleFadeIn 1s ease-out 0.3s forwards;
  letter-spacing:0.05em;
}

@keyframes subtitleFadeIn{
  from{
    opacity:0;
    transform:translateY(-10px);
  }
  to{
    opacity:0.9;
    transform:translateY(0);
  }
}

.carousel-slide{
  animation:slideIn 0.5s ease-out;
}

.carousel-slide.active{
  animation:slideIn 0.5s ease-out,cardGlow 3s ease-in-out infinite;
}

@keyframes slideIn{
  from{
    opacity:0;
    transform:translateX(30px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes cardGlow{
  0%,100%{
    box-shadow:0 4px 16px rgba(0,0,0,0.25);
  }
  50%{
    box-shadow:0 4px 24px rgba(255,116,208,0.3),0 0 40px rgba(201,145,255,0.2);
  }
}

/* Carousel Styles (Story & Benefit) */
.story-carousel-wrapper,
.benefit-carousel-wrapper{
  position:relative;
  width:100%;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.story-carousel,
.benefit-carousel{
  position:relative;
  width:100%;
  overflow:hidden;
  border-radius:22px;
}

.carousel-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  width:100%;
}

.carousel-slide{
  display:none;
  padding:24px 28px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(21,20,48,0.82),rgba(17,15,40,0.78));
  border:none;
  border-top:3px solid var(--accent);
  box-shadow:0 4px 16px rgba(0,0,0,0.25);
  width:100%;
  opacity:0;
  transition:opacity 0.4s ease-in-out;
}

.carousel-slide.active{
  display:block;
  opacity:1;
  animation:slideIn 0.5s ease-out,cardGlow 3s ease-in-out infinite 1s;
}

.carousel-slide p{
  white-space:pre-line;
  line-height:1.9;
}

.carousel-slide p + p{
  margin-top:1.2em;
}

.carousel-btn{
  background:linear-gradient(180deg,rgba(21,20,48,0.8),rgba(17,15,40,0.8));
  border:1.5px solid var(--accent);
  color:var(--accent);
  font-size:18px;
  width:32px;
  height:32px;
  border-radius:50%;
  cursor:pointer;
  transition:all 0.3s ease;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  padding:0;
  font-family:system-ui,sans-serif;
}

.carousel-btn:hover{
  background:linear-gradient(180deg,rgba(31,30,68,0.95),rgba(27,25,60,0.95));
  border-color:var(--accent-strong);
  color:var(--accent-strong);
  transform:scale(1.05);
  box-shadow:0 4px 16px rgba(255,189,242,0.3);
}

.carousel-btn:active{
  transform:scale(0.95);
}

.carousel-dots{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
}

.carousel-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(255,214,255,0.3);
  border:2px solid rgba(255,214,255,0.5);
  cursor:pointer;
  transition:all 0.3s ease;
  padding:0;
}

.carousel-dot.active{
  background:var(--accent);
  border-color:var(--accent);
  transform:scale(1.2);
}

.carousel-dot:hover{
  background:var(--accent-strong);
  border-color:var(--accent-strong);
}

@keyframes fadeIn{
  from{opacity:0;transform:translateY(10px);}
  to{opacity:1;transform:translateY(0);}
}

.story-grid article:hover,
.benefit-grid article:hover,
.collectors-grid .collect-card:hover,
.trust-grid article:hover,
.lore-grid article:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.35);
  border-top-color:#ffbdf2;
}

.lore-status{
  margin:0;
  font-size:13px;
  color:rgba(217,201,255,0.78);
}

.lore-card{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.lore-card h3{
  font-size:17px;
  margin:0;
}

.lore-card p{
  font-size:14px;
  color:rgba(249,243,255,0.88);
}

.lore-meta{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(217,201,255,0.75);
}

.collect-card{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.collect-card .deep-link{
  color:var(--accent);
  text-decoration:none;
  font-size:13px;
  font-weight:600;
}

.collect-card .deep-link:hover,
.collect-card .deep-link:focus-visible{
  text-decoration:underline;
}

.preview-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}

.preview-card{
  border-radius:20px;
  padding:18px;
  background:radial-gradient(circle at 20% 20%,rgba(255,214,255,0.35),rgba(18,15,40,0.85));
  border:1px solid rgba(255,230,255,0.4);
  box-shadow:0 12px 34px rgba(0,0,0,0.32);
  display:flex;
  flex-direction:column;
  gap:10px;
}

.preview-card h4{
  margin:0;
  font-size:16px;
}

.section-cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.collector-footer{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  align-items:center;
  justify-content:space-between;
}

.collector-footer p{
  flex:1 1 280px;
  margin:0;
}

.trust-grid blockquote{
  margin:0;
  font-size:14px;
  color:rgba(249,243,255,0.9);
}

.trust-grid cite{
  display:block;
  margin-top:8px;
  font-style:normal;
  color:var(--muted);
  font-size:12.5px;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(255,214,255,0.18);
  border:1px solid rgba(255,214,255,0.35);
  font-size:12px;
  color:var(--fg);
  margin-right:6px;
}

.community-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.newsletter{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}

.newsletter input{
  flex:1 1 260px;
  min-width:220px;
  padding:12px 16px;
  border-radius:999px;
  border:1.4px solid rgba(255,230,255,0.55);
  background:rgba(16,14,35,0.82);
  color:var(--fg);
  font-size:14px;
}

.newsletter input::placeholder{
  color:rgba(217,201,255,0.7);
}

.newsletter button{
  border:none;
  cursor:pointer;
  font:inherit;
  color:#120a25;
  background:linear-gradient(90deg,rgba(255,214,255,0.92),rgba(255,189,242,0.95));
  padding:12px 24px;
  border-radius:999px;
  font-weight:600;
  letter-spacing:.03em;
  box-shadow:0 16px 42px rgba(0,0,0,0.35),0 0 60px var(--glowA);
  transition:transform .15s ease, box-shadow .15s ease;
}

.newsletter button:hover,
.newsletter button:focus-visible{
  transform:translateY(-1px);
  box-shadow:0 18px 48px rgba(0,0,0,0.45),0 0 70px var(--glowB);
}

.newsletter-disclaimer{
  font-size:12.5px;
  color:var(--muted);
}

.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.site-footer{
  display:flex;
  justify-content:center;
}

.footer-legal{
  max-width:780px;
  font-size:8px;
  color:#d4c1ea;
  text-align:center;
  line-height:1.4;
}

@media (max-width:820px){
  body{
    padding:24px 12px 60px;
  }

  .page{
    gap:24px;
  }

  .site-header{
    flex-direction:column;
    align-items:flex-start;
    position:sticky;
  }

  .site-nav{
    width:100%;
    justify-content:space-between;
    gap:12px;
  }

  .hero{
    padding:36px 28px;
    min-height:auto;
  }

  .hero-content{
    max-width:100%;
  }

  .collector-footer{
    flex-direction:column;
    align-items:flex-start;
  }

  .newsletter{
    flex-direction:column;
    align-items:stretch;
  }

  .newsletter input,
  .newsletter button{
    width:100%;
  }
}

@media (max-width:560px){
  .site-nav{
    flex-direction:column;
    align-items:flex-start;
    font-size:9px;
  }

  .hero{
    border-radius:24px;
    padding:16px clamp(16px, 4vw, 40px) 16px;
  }

  .hero h1 {
    font-size:clamp(14px, 4vw, 22px);
  }

  .hero p {
    font-size:10px;
  }

  .hero-actions {
    gap:8px;
    flex-direction:column;
    width:100%;
  }

  .hero-actions .cta {
    width:100%;
    padding:11px 18px;
    font-size:11px;
  }

  main {
    gap:32px;
  }

  .page {
    gap:16px;
    padding:20px 12px 60px;
  }

  .section-inner {
    gap:20px;
    padding:24px clamp(16px, 4vw, 36px);
  }

  .section-inner{
    padding:32px 22px;
  }

  .section-inner h2{
    font-size:22px;
  }

  .section-inner h3{
    font-size:16px;
  }

  /* Mobile card grid - full width stack */
  .story-grid article,
  .benefit-grid article,
  .collectors-grid .collect-card,
  .trust-grid article,
  .lore-grid article{
    padding:18px;
    max-width:100%;
    min-height:auto;
  }
}

/* Contact Form Styles */
/* Contact Form */
.contact-form{
  display:flex;
  flex-direction:column;
  gap:24px;
  margin:32px auto 0;
  max-width:560px;
  width:100%;
}

.contact-form .form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.contact-form .form-group label{
  font-size:11px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:0.08em;
}

.contact-form input,
.contact-form textarea{
  padding:14px 18px;
  background:rgba(18,17,41,0.6);
  border:1.5px solid rgba(255,230,255,0.25);
  border-radius:12px;
  color:var(--fg);
  font-size:14px;
  font-family:"Press Start 2P",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  transition:all 0.3s ease;
  line-height:1.6;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:var(--muted);
  opacity:0.6;
}

.contact-form input:hover,
.contact-form textarea:hover{
  border-color:rgba(255,230,255,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--accent);
  background:rgba(18,17,41,0.8);
  box-shadow:0 0 20px rgba(201,145,255,0.2);
}

.contact-form textarea{
  resize:vertical;
  min-height:140px;
  font-family:inherit;
}

.contact-form .btn-submit{
  align-self:center;
  margin-top:8px;
  padding:16px 40px;
  font-size:13px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  background:linear-gradient(135deg,var(--accent),var(--accent-strong));
  color:#120a25;
  border:none;
  border-radius:12px;
  cursor:pointer;
  transition:all 0.3s ease;
  box-shadow:0 8px 24px rgba(0,0,0,0.3),0 0 24px rgba(255,214,255,0.3);
  font-family:"Press Start 2P",system-ui;
  font-weight:normal;
}

.contact-form .btn-submit:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 32px rgba(0,0,0,0.4),0 0 36px rgba(255,214,255,0.5);
}

.contact-form .btn-submit:active{
  transform:translateY(-1px);
}

.contact-social{
  margin-top:40px;
  padding-top:32px;
  border-top:1px solid var(--line);
  text-align:center;
}

.contact-social p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:14px;
}

/* Contact Links Grid */
.contact-links{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:16px;
  margin-top:24px;
}

.contact-link-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 24px;
  background:linear-gradient(135deg,rgba(18,17,41,0.8),rgba(23,20,58,0.8));
  border:1.5px solid rgba(255,230,255,0.3);
  border-radius:16px;
  text-decoration:none;
  transition:all 0.3s ease;
  cursor:pointer;
}

.contact-link-card h3{
  margin:0;
  font-size:14px;
  font-weight:normal;
  color:var(--fg);
}

.contact-link-card .arrow{
  font-size:20px;
  color:var(--accent);
  transition:transform 0.3s ease;
}

.contact-link-card:hover{
  border-color:var(--accent);
  box-shadow:0 0 24px var(--glowA);
  transform:translateY(-4px);
}

.contact-link-card:hover .arrow{
  transform:translateX(4px);
}

.social-links{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

.social-links a{
  padding:10px 20px;
  background:var(--pill2);
  border:1px solid var(--line);
  border-radius:8px;
  font-size:14px;
  text-decoration:none;
  transition:all 0.2s;
}

.social-links a:hover{
  border-color:var(--accent);
  box-shadow:0 0 12px var(--glowA);
  transform:translateY(-2px);
}

@media (max-width:768px){
  .contact-form{
    max-width:100%;
  }

  .social-links{
    flex-direction:column;
  }

  .social-links a{
    width:100%;
  }
}

/* Form Success Message */
.form-success-message{
  padding:24px 32px;
  background:var(--pill2);
  border:2px solid var(--accent);
  border-radius:12px;
  text-align:center;
  margin:32px 0;
}

.form-success-message h3{
  margin:0 0 12px;
  color:var(--accent);
  font-size:18px;
}

.form-success-message p{
  margin:8px 0;
  color:var(--fg);
}

/* Form Messages */
.form-messages{
  margin-bottom:20px;
}

.form-message{
  padding:12px 16px;
  border-radius:8px;
  margin-bottom:12px;
  font-size:14px;
}

.form-message-error{
  background:rgba(255,100,100,0.1);
  border:1px solid rgba(255,100,100,0.3);
  color:#ff6464;
}

.form-message-warning{
  background:rgba(255,180,50,0.1);
  border:1px solid rgba(255,180,50,0.3);
  color:#ffb432;
}

.form-message-info{
  background:var(--glowA);
  border:1px solid var(--accent);
  color:var(--accent);
}

/* ===== KEYFRAME ANIMATIONS ===== */

@keyframes pageSlideIn {
  from {
    opacity:0;
    transform:translateY(20px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes sectionFadeInUp {
  from {
    opacity:0;
    transform:translateY(40px) scale(0.98);
  }
  to {
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@keyframes cardSlideIn {
  from {
    opacity:0;
    transform:translateY(20px) rotateX(10deg);
  }
  to {
    opacity:1;
    transform:translateY(0) rotateX(0);
  }
}

@keyframes formFadeIn {
  from {
    opacity:0;
    transform:scale(0.95);
  }
  to {
    opacity:1;
    transform:scale(1);
  }
}

@keyframes fieldSlideIn {
  from {
    opacity:0;
    transform:translateX(-20px);
  }
  to {
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes labelSlideIn {
  from {
    opacity:0;
    transform:translateY(-10px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes buttonFadeIn {
  from {
    opacity:0;
    transform:scale(0.8);
  }
  to {
    opacity:1;
    transform:scale(1);
  }
}

/* Community Floating Section - No Container */
.community-floating {
  background:none !important;
  box-shadow:none !important;
  padding:40px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:32px;
}

.community-floating .section-head {
  text-align:center;
  max-width:600px;
}

.community-floating .section-head h2 {
  margin-bottom:12px;
}

/* Art Carousel Styles - Mobile-First, Banner Aspect Ratio */
.art-carousel {
  width:100%;
  max-width:100%;
  margin:0 auto;
}

.carousel-track {
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  overflow:hidden;
  background:var(--pill2);
  box-shadow:0 12px 40px rgba(0,0,0,0.35), 0 0 32px var(--glowA);
  user-select:none;
  -webkit-user-select:none;
}

/* Holographic rainbow overlay */
.carousel-track::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgb(255,119,115) calc(5% * 1),
      rgba(255,237,95,1) calc(5% * 2),
      rgba(168,255,95,1) calc(5% * 3),
      rgba(131,255,247,1) calc(5% * 4),
      rgba(120,148,255,1) calc(5% * 5),
      rgb(216,117,255) calc(5% * 6),
      rgb(255,119,115) calc(5% * 7)
    ),
    repeating-linear-gradient(
      133deg,
      #0e152e 0%,
      hsl(180,10%,60%) 3.8%,
      hsl(180,29%,66%) 4.5%,
      hsl(180,10%,60%) 5.2%,
      #0e152e 10%,
      #0e152e 12%
    ),
    radial-gradient(
      farthest-corner circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
      rgba(0,0,0,0.1) 12%,
      rgba(0,0,0,0.15) 20%,
      rgba(0,0,0,0.25) 120%
    );
  background-blend-mode:exclusion, hue, normal;
  filter:brightness(1) contrast(1);
  mix-blend-mode:color-dodge;
  opacity:0.75;
  pointer-events:none;
  z-index:2;
  animation:holoSparkle 12s ease-in-out infinite;
}

/* Scanline texture */
.carousel-track::after {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0) 0px,
      rgba(255,255,255,0.03) 1px,
      rgba(255,255,255,0) 2px,
      rgba(255,255,255,0) 4px
    );
  pointer-events:none;
  z-index:3;
}

@keyframes holoSparkle {
  0%, 100% {
    filter:brightness(1.2) contrast(1.4);
    opacity:0.5;
  }
  5%, 8% {
    filter:brightness(1.4) contrast(1.5);
    opacity:0.8;
  }
  13%, 16% {
    filter:brightness(1.1) contrast(1.3);
    opacity:0.5;
  }
  35%, 38% {
    filter:brightness(1.3) contrast(1.5);
    opacity:0.7;
  }
  55% {
    filter:brightness(1.2) contrast(1.4);
    opacity:0.6;
  }
}

/* Art Carousel Slides - positioned to fill track */
.carousel-track .carousel-slide {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.5s cubic-bezier(0.4,0,0.2,1);
  padding:0;
  background:none;
  border:none;
  border-radius:0;
  box-shadow:none;
  z-index:1;
}

.carousel-track .carousel-slide img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.lore-carousel-slide {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity 0.5s cubic-bezier(0.4,0,0.2,1);
  overflow:hidden;
  border-radius:20px;
  user-select:none;
  -webkit-user-select:none;
}

.carousel-btn {
  width:44px;
  height:44px;
  border:2px solid rgba(255,230,255,0.5);
  background:linear-gradient(135deg,rgba(23,20,58,0.9),rgba(18,15,40,1));
  color:var(--fg);
  border-radius:12px;
  cursor:pointer;
  font-size:20px;
  font-weight:bold;
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  user-select:none;
  -webkit-user-select:none;
}

.carousel-btn:hover {
  border-color:var(--accent);
  background:linear-gradient(135deg,rgba(23,20,58,1),rgba(18,15,40,1));
  box-shadow:0 0 20px var(--glowA);
  transform:scale(1.08);
}

.carousel-btn:active {
  transform:scale(0.96);
}

@media (max-width:560px) {
  .art-carousel {
    max-width:100%;
  }

  .carousel-btn {
    width:40px;
    height:40px;
    font-size:18px;
  }
}

/* Ultra-mobile optimization (< 380px) */
@media (max-width:380px) {
  body {
    font-size:11px;
    padding:16px 10px 50px;
  }

  .site-header {
    gap:8px;
    padding:10px clamp(10px, 2vw, 14px);
  }

  .brandmark {
    font-size:1em;
    padding:4px 12px;
  }

  .site-nav {
    font-size:8px;
    gap:8px;
  }

  .page {
    gap:12px;
    padding:16px 10px 50px;
  }

  main {
    gap:20px;
  }

  .section-inner {
    gap:16px;
    padding:18px 14px;
  }

  .hero h1 {
    font-size:14px;
    line-height:1.2;
  }

  .hero p {
    font-size:9px;
  }

  .hero-actions {
    gap:6px;
  }

  .cta {
    font-size:10px;
    padding:9px 14px;
  }

  h2 {
    font-size:clamp(12px, 3.5vw, 18px);
  }

  h3 {
    font-size:clamp(10px, 3vw, 14px);
  }
}

/* Tablet and Desktop - Multi-column benefit cards */
@media (min-width:640px){
  .benefit-cards{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }
  
  .benefit-section-title{
    font-size:20px;
  }
  
  .benefit-card h4{
    font-size:17px;
  }
}

/* =====================================================
   COLLECTORS HERO SECTION - Redesigned CTA Focus
   ===================================================== */

.collectors-hero .section-inner {
  padding: 48px 24px;
  max-width: 100%;
}

.collectors-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 560px;
  margin: 0 auto;
}

.collectors-headline {
  font-size: clamp(16px, 4vw, 24px);
  line-height: 1.4;
  color: var(--accent);
  margin: 0;
  text-shadow: 0 0 20px rgba(255, 214, 255, 0.4);
  letter-spacing: 0.02em;
}

.collectors-intro {
  font-size: clamp(10px, 2.5vw, 14px);
  line-height: 1.9;
  color: rgba(249, 243, 255, 0.92);
  margin: 0;
  max-width: 480px;
}

/* Animated CTA Button */
.cta-animated {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 14px;
  font-family: "Press Start 2P", monospace;
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 16px rgba(255, 189, 242, 0.4),
    0 0 32px rgba(201, 145, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: ctaPulse 2s ease-in-out infinite;
}

.cta-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-animated:hover::before {
  left: 100%;
}

.cta-animated:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 12px 32px rgba(255, 189, 242, 0.6),
    0 0 48px rgba(201, 145, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: none;
}

.cta-animated:active {
  transform: translateY(-2px) scale(1.02);
}

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

.cta-arrow {
  font-size: 18px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.cta-animated:hover .cta-arrow {
  transform: translateX(6px);
  animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 
      0 4px 16px rgba(255, 189, 242, 0.4),
      0 0 32px rgba(201, 145, 255, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 
      0 4px 20px rgba(255, 189, 242, 0.6),
      0 0 48px rgba(201, 145, 255, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(10px);
  }
}

/* Mobile optimizations */
@media (max-width: 560px) {
  .collectors-hero .section-inner {
    padding: 32px 16px;
  }
  
  .collectors-content {
    gap: 20px;
  }
  
  .cta-animated {
    padding: 12px 24px;
    font-size: 11px;
    gap: 8px;
  }
  
  .cta-arrow {
    font-size: 14px;
  }
}

/* =====================================================
   CONTACT HERO SECTION - Modern Form Design
   ===================================================== */

.contact-hero .section-inner {
  padding: 48px 24px;
  max-width: 100%;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}

.contact-header {
  text-align: center;
  width: 100%;
}

.contact-headline {
  font-size: clamp(18px, 4vw, 24px);
  line-height: 1.4;
  color: var(--accent);
  margin: 0 0 16px 0;
  text-shadow: 0 0 20px rgba(255, 214, 255, 0.4);
  letter-spacing: 0.02em;
}

.contact-intro {
  font-size: clamp(10px, 2.5vw, 13px);
  line-height: 1.9;
  color: rgba(249, 243, 255, 0.88);
  margin: 0;
}

/* Modern Form Styling */
.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  animation: formFadeIn 0.6s ease-out;
}

.form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: formFieldSlideIn 0.5s ease-out both;
}

.form-group-modern:nth-child(1) {
  animation-delay: 0.1s;
}

.form-group-modern:nth-child(2) {
  animation-delay: 0.2s;
}

.form-group-modern:nth-child(3) {
  animation-delay: 0.3s;
}

.form-label {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.form-input,
.form-textarea {
  padding: 14px 16px;
  font-family: "Press Start 2P", monospace;
  font-size: 10px;
  color: var(--fg);
  background: rgba(17, 15, 40, 0.6);
  border: 2px solid rgba(255, 214, 255, 0.2);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  line-height: 1.6;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(249, 243, 255, 0.4);
  font-size: 9px;
}

.form-input:hover,
.form-textarea:hover {
  border-color: rgba(255, 214, 255, 0.4);
  background: rgba(17, 15, 40, 0.8);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  background: rgba(17, 15, 40, 0.9);
  box-shadow: 
    0 0 0 3px rgba(255, 214, 255, 0.1),
    0 4px 16px rgba(255, 189, 242, 0.2);
  transform: translateY(-2px);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.8;
}

/* Modern Submit Button */
.btn-submit-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 13px;
  font-family: "Press Start 2P", monospace;
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 16px rgba(255, 189, 242, 0.4),
    0 0 32px rgba(201, 145, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: btnPulse 2.5s ease-in-out infinite;
  margin-top: 8px;
}

.btn-submit-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-submit-modern:hover::before {
  left: 100%;
}

.btn-submit-modern:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 12px 32px rgba(255, 189, 242, 0.6),
    0 0 48px rgba(201, 145, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: none;
}

.btn-submit-modern:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-text,
.btn-icon {
  position: relative;
  z-index: 1;
}

.btn-icon {
  font-size: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit-modern:hover .btn-icon {
  transform: translateX(4px) scale(1.1);
  animation: iconFloat 0.8s ease-in-out infinite;
}

/* Divider */
.contact-divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 8px;
  position: relative;
}

.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 214, 255, 0.3),
    transparent
  );
}

.divider-text {
  padding: 0 16px;
  font-size: 10px;
  color: rgba(249, 243, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Social Links Cards */
.social-links-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  width: 100%;
  animation: socialFadeIn 0.6s ease-out 0.5s both;
}

.social-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(21, 20, 48, 0.6), rgba(17, 15, 40, 0.5));
  border: 2px solid rgba(255, 214, 255, 0.25);
  border-radius: 12px;
  text-decoration: none;
  color: var(--fg);
  font-size: 11px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.social-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.social-link-card:hover::before {
  transform: scaleX(1);
}

.social-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(21, 20, 48, 0.85), rgba(17, 15, 40, 0.75));
  box-shadow: 
    0 8px 24px rgba(255, 189, 242, 0.3),
    0 0 32px rgba(201, 145, 255, 0.2);
}

.social-title {
  font-weight: normal;
}

.social-arrow {
  font-size: 14px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
}

.social-link-card:hover .social-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Animations */
@keyframes formFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes formFieldSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: 
      0 4px 16px rgba(255, 189, 242, 0.4),
      0 0 32px rgba(201, 145, 255, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 
      0 4px 20px rgba(255, 189, 242, 0.6),
      0 0 48px rgba(201, 145, 255, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateX(4px) translateY(0) scale(1.1);
  }
  50% {
    transform: translateX(4px) translateY(-3px) scale(1.1);
  }
}

@keyframes socialFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile optimizations */
@media (max-width: 560px) {
  .contact-hero .section-inner {
    padding: 32px 16px;
  }
  
  .contact-content {
    gap: 24px;
  }
  
  .contact-headline {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .contact-intro {
    font-size: 9px;
  }
  
  .form-input,
  .form-textarea {
    padding: 12px 14px;
    font-size: 9px;
  }
  
  .btn-submit-modern {
    padding: 14px 24px;
    font-size: 11px;
    gap: 10px;
  }
  
  .social-links-modern {
    grid-template-columns: 1fr;
  }
  
  .social-link-card {
    padding: 12px 16px;
    font-size: 10px;
  }
}

/* =====================================================
   STORY HERO SECTION - Modern Carousel Design
   ===================================================== */

.story-hero .section-inner {
  padding: 48px 24px;
  max-width: 100%;
}

.story-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
}

.story-header {
  text-align: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.story-headline {
  font-size: clamp(20px, 5vw, 28px);
  line-height: 1.3;
  color: var(--accent);
  margin: 0 0 12px 0;
  text-shadow: 0 0 24px rgba(255, 214, 255, 0.5);
  letter-spacing: 0.02em;
  animation: headlineGlow 3s ease-in-out infinite;
}

.story-subtitle {
  font-size: clamp(13px, 3vw, 16px);
  line-height: 1.6;
  color: rgba(249, 243, 255, 0.88);
  margin: 0;
  font-style: italic;
  letter-spacing: 0.03em;
}

/* Modern Carousel Container */
.story-carousel-modern {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-carousel-container {
  position: relative;
  width: 100%;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.story-slide {
  position: relative;
  width: 100%;
  padding: 32px 28px;
  background: linear-gradient(
    135deg,
    rgba(21, 20, 48, 0.85) 0%,
    rgba(17, 15, 40, 0.8) 100%
  );
  border: 2px solid rgba(255, 214, 255, 0.2);
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: none;
}

.story-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  border-color: rgba(255, 214, 255, 0.35);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(201, 145, 255, 0.15),
    inset 0 1px 0 rgba(255, 214, 255, 0.1);
  display: block;
}

.story-slide-title {
  font-size: clamp(14px, 3.5vw, 18px);
  line-height: 1.4;
  color: var(--accent-strong);
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
  text-shadow: 0 0 16px rgba(255, 189, 242, 0.4);
}

.story-slide-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-slide-content p {
  font-size: clamp(10px, 2.2vw, 13px);
  line-height: 1.9;
  color: rgba(249, 243, 255, 0.92);
  margin: 0;
  white-space: pre-line;
  min-height: 1.9em;
}

.story-slide-content p + p {
  margin-top: 16px;
}

/* Modern Carousel Controls */
.carousel-controls-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 0 16px;
}

.carousel-btn-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(21, 20, 48, 0.8), rgba(17, 15, 40, 0.7));
  border: 2px solid rgba(255, 214, 255, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.carousel-btn-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(255, 214, 255, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-btn-modern:hover::before {
  opacity: 1;
}

.carousel-btn-modern:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(31, 30, 68, 0.9), rgba(27, 25, 60, 0.85));
  transform: translateY(-2px);
  box-shadow: 
    0 8px 20px rgba(255, 189, 242, 0.3),
    0 0 32px rgba(201, 145, 255, 0.2);
}

.carousel-btn-modern:active {
  transform: translateY(0) scale(0.95);
}

.btn-arrow {
  font-size: 20px;
  color: var(--accent);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.carousel-btn-modern:hover .btn-arrow {
  color: var(--accent-strong);
  transform: scale(1.1);
}

.carousel-prev-modern:hover .btn-arrow {
  animation: arrowBounceLeft 0.6s ease-in-out infinite;
}

.carousel-next-modern:hover .btn-arrow {
  animation: arrowBounceRight 0.6s ease-in-out infinite;
}

/* Progress Dots */
.carousel-progress {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.progress-dot {
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dot-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 214, 255, 0.3);
  border: 2px solid rgba(255, 214, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.dot-inner::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 255, 0.2) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.progress-dot.active .dot-inner {
  background: var(--accent);
  border-color: var(--accent);
  width: 14px;
  height: 14px;
  box-shadow: 0 0 16px rgba(255, 214, 255, 0.6);
}

.progress-dot.active .dot-inner::before {
  opacity: 1;
}

.progress-dot:hover .dot-inner {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(255, 189, 242, 0.5);
}

/* Animations */
@keyframes headlineGlow {
  0%, 100% {
    text-shadow: 0 0 24px rgba(255, 214, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 32px rgba(255, 214, 255, 0.7);
  }
}

@keyframes arrowBounceLeft {
  0%, 100% {
    transform: translateX(0) scale(1.1);
  }
  50% {
    transform: translateX(-4px) scale(1.1);
  }
}

@keyframes arrowBounceRight {
  0%, 100% {
    transform: translateX(0) scale(1.1);
  }
  50% {
    transform: translateX(4px) scale(1.1);
  }
}

/* Mobile optimizations */
@media (max-width: 560px) {
  .story-hero .section-inner {
    padding: 32px 16px;
  }
  
  .story-inner {
    gap: 28px;
  }
  
  .story-headline {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .story-subtitle {
    font-size: 12px;
  }

  .story-slide {
    padding: 24px 20px;
  }
  
  .story-slide-title {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .story-slide-content p {
    font-size: 10px;
    line-height: 1.8;
  }
  
  .carousel-controls-modern {
    gap: 12px;
    padding: 0 8px;
  }
  
  .carousel-btn-modern {
    width: 40px;
    height: 40px;
  }
  
  .btn-arrow {
    font-size: 18px;
  }
  
  .progress-dot {
    width: 32px;
    height: 32px;
  }
  
  .dot-inner {
    width: 8px;
    height: 8px;
  }
  
  .progress-dot.active .dot-inner {
    width: 12px;
    height: 12px;
  }
}

