/* ═══════════════════════════════════════════════════════════════════════
   Grahachara — Premium Redesign
   Cinematic Immersive Experience
   Font: Clash Display (headings) + Inter (body)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────────────── */
:root {
  --bg: #060a18;
  --bg-mid: #0a0f24;
  --bg-light: #111a36;
  --bg-card: rgba(8, 14, 36, 0.65);
  --bg-glass: rgba(6, 10, 28, 0.70);

  --border: rgba(255, 255, 255, 0.04);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(212, 175, 55, 0.25);

  --primary: #D4AF37;
  --primary-light: #E8C84A;
  --primary-glow: rgba(212, 175, 55, 0.18);
  --accent: #D4AF37;
  --accent-light: #F0D060;
  --accent-glow: rgba(212, 175, 55, 0.15);
  --accent-deep: #B8860B;

  --teal: #6BB5A0;
  --rose: #C9A0A0;
  --green: #7DD3A8;

  --text: #FAFAF9;
  --text-secondary: rgba(220, 215, 205, 0.80);
  --text-muted: rgba(160, 155, 145, 0.50);

  --container: 1200px;
  --container-wide: 1400px;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-full: 9999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 0.4s;
  --dur-slow: 0.8s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(25, 35, 80, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 15%, rgba(212, 175, 55, 0.18) 0%, transparent 40%),
    radial-gradient(ellipse at 25% 50%, rgba(200, 160, 50, 0.12) 0%, transparent 35%),
    radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.14) 0%, transparent 30%),
    radial-gradient(ellipse at 50% 90%, rgba(180, 140, 40, 0.10) 0%, transparent 35%),
    radial-gradient(ellipse at 15% 80%, rgba(15, 25, 60, 0.6) 0%, transparent 45%),
    var(--bg);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: transparent;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='4' fill='none' stroke='%23D4AF37' stroke-width='1.5'/%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23D4AF37'/%3E%3C/svg%3E") 10 10, auto;
}

/* Custom cursor for interactive elements */
a, button, [role="button"], input[type="submit"], .btn, .nav__link, .showcase__item, .feature__img {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='5' fill='none' stroke='%23D4AF37' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='12' r='2' fill='%23F0D060'/%3E%3Cline x1='12' y1='2' x2='12' y2='6' stroke='%23D4AF37' stroke-width='1' opacity='0.6'/%3E%3Cline x1='12' y1='18' x2='12' y2='22' stroke='%23D4AF37' stroke-width='1' opacity='0.6'/%3E%3Cline x1='2' y1='12' x2='6' y2='12' stroke='%23D4AF37' stroke-width='1' opacity='0.6'/%3E%3Cline x1='18' y1='12' x2='22' y2='12' stroke='%23D4AF37' stroke-width='1' opacity='0.6'/%3E%3C/svg%3E") 12 12, pointer;
}

/* ── Custom Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent-deep) 100%);
  border-radius: var(--r-full);
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--primary) 100%);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg);
}

img { display: block; max-width: 100%; height: auto; }

/* ── Loading Screen ────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  transition: opacity 0.6s ease, visibility 0s 0.6s;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__cosmos {
  position: relative;
  width: 140px;
  height: 140px;
}

.loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid transparent;
}

.loader__ring--1 {
  border-top-color: rgba(212, 175, 55, 0.6);
  border-right-color: rgba(212, 175, 55, 0.15);
  animation: loaderSpin 2s linear infinite;
}

.loader__ring--2 {
  inset: 16px;
  border-bottom-color: rgba(212, 175, 55, 0.4);
  border-left-color: rgba(212, 175, 55, 0.1);
  animation: loaderSpin 2.8s linear infinite reverse;
}

.loader__ring--3 {
  inset: 32px;
  border-top-color: rgba(212, 175, 55, 0.25);
  border-right-color: rgba(212, 175, 55, 0.08);
  animation: loaderSpin 3.5s linear infinite;
}

.loader__planet {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #F0D060, var(--accent), var(--accent-deep));
  box-shadow: 
    0 0 20px rgba(212, 175, 55, 0.4),
    0 0 60px rgba(212, 175, 55, 0.15);
  animation: loaderPulse 2s ease-in-out infinite;
}

.loader__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.loader__brand {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: loaderFadeUp 0.8s ease 0.3s forwards;
}

.loader__tagline {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  animation: loaderFadeUp 0.8s ease 0.6s forwards;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.15); }
  50% { transform: translate(-50%, -50%) scale(1.15); box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 80px rgba(212, 175, 55, 0.25); }
}

@keyframes loaderFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

/* All sections above the starfield canvas */
section, footer, nav {
  position: relative;
  z-index: 1;
}
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Scroll Progress ───────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--accent-light));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ── Navigation ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.nav--solid {
  padding: 12px 0;
  background: rgba(4, 3, 12, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.nav__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav__logo-text {
  font-family: 'Clash Display', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

/* Nav Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav__link--dropdown svg {
  transition: transform 0.3s var(--ease);
}

.nav__dropdown:hover .nav__link--dropdown svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 12px 0;
  background: rgba(12, 12, 24, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav__dropdown-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 8px 20px 4px;
  opacity: 0.7;
}

.nav__dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: all 0.2s var(--ease);
}

.nav__dropdown-menu a:hover {
  color: var(--text);
  background: rgba(212, 175, 55, 0.05);
  padding-left: 24px;
}

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

.nav__lang {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-full);
  transition: all 0.3s var(--ease);
}

.nav__lang:hover {
  color: var(--text);
  border-color: var(--accent);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--bg);
  text-shadow: 0 1px 1px rgba(0,0,0,0.12);
  background: linear-gradient(160deg, #F0D060 0%, var(--accent) 40%, var(--accent-deep) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 22px;
  border-radius: var(--r-full);
  transition: all 0.3s var(--ease);
  box-shadow: 
    0 2px 12px rgba(212, 175, 55, 0.2),
    inset 0 1px 1px rgba(255,255,255,0.3);
}

.nav__cta:hover {
  background: linear-gradient(160deg, #F7E07A 0%, var(--accent-light) 40%, var(--accent) 100%);
  transform: translateY(-1px);
  box-shadow: 
    0 8px 28px rgba(212, 175, 55, 0.35),
    0 0 40px rgba(212, 175, 55, 0.08),
    inset 0 1px 2px rgba(255,255,255,0.35);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  z-index: 10;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Nav Overlay ────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(4, 3, 12, 0.98);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), visibility 0s 0.35s, transform 0.35s var(--ease);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.35s var(--ease), visibility 0s 0s, transform 0.35s var(--ease);
}

/* Make nav bar background transparent when mobile nav is open */
.nav.nav--mobile-open {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.mobile-nav__content {
  width: 100%;
  max-width: 400px;
  padding: 90px 28px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 100dvh;
  scroll-behavior: smooth;
}

.mobile-nav__sections {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav__group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  opacity: 0.7;
  padding: 0 16px 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  margin-bottom: 4px;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: 'Clash Display', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-nav.active .mobile-nav__link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav__link:hover,
.mobile-nav__link:active {
  background: rgba(212, 175, 55, 0.05);
  color: var(--text);
}

.mobile-nav__link--sub {
  font-size: 1.05rem;
  padding: 12px 16px;
}

.mobile-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.1);
  flex-shrink: 0;
  color: var(--accent);
}

.mobile-nav__icon svg {
  stroke: var(--accent);
  opacity: 0.8;
}

/* Staggered entrance animation */
.mobile-nav.active .mobile-nav__link[data-nav-index="1"] { transition-delay: 0.08s; }
.mobile-nav.active .mobile-nav__link[data-nav-index="2"] { transition-delay: 0.12s; }
.mobile-nav.active .mobile-nav__link[data-nav-index="3"] { transition-delay: 0.16s; }
.mobile-nav.active .mobile-nav__link[data-nav-index="4"] { transition-delay: 0.22s; }
.mobile-nav.active .mobile-nav__link[data-nav-index="5"] { transition-delay: 0.26s; }
.mobile-nav.active .mobile-nav__link[data-nav-index="6"] { transition-delay: 0.30s; }
.mobile-nav.active .mobile-nav__link[data-nav-index="7"] { transition-delay: 0.34s; }
.mobile-nav.active .mobile-nav__link[data-nav-index="8"] { transition-delay: 0.38s; }
.mobile-nav.active .mobile-nav__link[data-nav-index="9"] { transition-delay: 0.44s; }
.mobile-nav.active .mobile-nav__link[data-nav-index="10"] { transition-delay: 0.48s; }
.mobile-nav.active .mobile-nav__link[data-nav-index="11"] { transition-delay: 0.52s; }

.mobile-nav__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease) 0.5s;
}

.mobile-nav.active .mobile-nav__footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav__lang {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
  transition: all 0.3s var(--ease);
}

.mobile-nav__lang:hover {
  border-color: var(--accent);
  color: var(--text);
}

.mobile-nav__cta {
  width: 100%;
  justify-content: center;
}

/* ── Starfield Canvas ──────────────────────────────────────────────── */
.starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Hero Section ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 90px 0 0;
  will-change: opacity, transform;
  transition: opacity 0.1s linear, transform 0.1s linear;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero__aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero__content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero__text {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 4;
  will-change: transform;
  transform: translateZ(60px);
}

.hero__eyebrow {
  font-size: 0.6rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out) 0.2s, transform 0.8s var(--ease-out) 0.2s;
}

.hero--visible .hero__eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero__title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.hero__title-line {
  display: inline;
  background: linear-gradient(135deg, #F0D060 0%, #D4AF37 40%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out) 0.4s;
}

.hero--visible .hero__title-line {
  opacity: 1;
}

.hero__title-accent {
  display: inline;
  background: linear-gradient(135deg, #F0D060 0%, #D4AF37 40%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out) 0.6s;
}

.hero--visible .hero__title-accent {
  opacity: 1;
}

.hero__subtitle {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 auto 20px;
  max-width: 360px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out) 0.8s, transform 0.8s var(--ease-out) 0.8s;
}

.hero--visible .hero__subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out) 1s, transform 0.8s var(--ease-out) 1s;
}

.hero--visible .hero__actions {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero Fan Showcase ─────────────────────────────────────────────── */
.hero__showcase {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 580px;
  margin-top: -30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 1400px;
  will-change: transform;
  transform: translateZ(-20px);
  transform-style: preserve-3d;
}

.hero__fan {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.hero__fan-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: clamp(170px, 17vw, 250px);
  height: clamp(340px, 34vw, 500px);
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 175, 55, 0.06);
  transform: translateX(var(--fan-x)) translateY(var(--fan-y)) rotate(var(--fan-r)) scale(var(--fan-s));
  transform-origin: 50% 100%;
  opacity: 0;
  z-index: var(--fan-z);
  animation: fanEntrance 1.05s var(--ease-out) forwards;
  animation-delay: var(--fan-delay);
}

.hero__fan-card img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 18px;
}

.hero__fan-card:nth-child(1) {
  --fan-x: calc(-50% - 340px);
  --fan-y: 30px;
  --fan-r: -10deg;
  --fan-s: 0.8;
  --fan-z: 1;
  --fan-delay: 1.18s;
  --fan-opacity: 1;
}

.hero__fan-card:nth-child(2) {
  --fan-x: calc(-50% - 170px);
  --fan-y: 8px;
  --fan-r: -5deg;
  --fan-s: 0.92;
  --fan-z: 3;
  --fan-delay: 1.05s;
  --fan-opacity: 1;
}

.hero__fan-card:nth-child(3) {
  --fan-x: -50%;
  --fan-y: 0px;
  --fan-r: 0deg;
  --fan-s: 1;
  --fan-z: 5;
  --fan-delay: 0.92s;
  --fan-opacity: 1;
}

.hero__fan-card:nth-child(4) {
  --fan-x: calc(-50% + 170px);
  --fan-y: 8px;
  --fan-r: 5deg;
  --fan-s: 0.92;
  --fan-z: 3;
  --fan-delay: 1.05s;
  --fan-opacity: 1;
}

.hero__fan-card:nth-child(5) {
  --fan-x: calc(-50% + 340px);
  --fan-y: 30px;
  --fan-r: 10deg;
  --fan-s: 0.8;
  --fan-z: 1;
  --fan-delay: 1.18s;
  --fan-opacity: 1;
}

@keyframes fanEntrance {
  0% {
    opacity: 0;
    transform: translateX(var(--fan-x)) translateY(calc(var(--fan-y) + 60px)) rotate(var(--fan-r)) scale(var(--fan-s));
  }
  100% {
    opacity: var(--fan-opacity);
    transform: translateX(var(--fan-x)) translateY(var(--fan-y)) rotate(var(--fan-r)) scale(var(--fan-s));
  }
}

/* ── Hero Scroll Hint ──────────────────────────────────────────────── */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.8s forwards;
}

.hero__scroll-hint span {
  font-size: 0.6rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 3s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.8; transform: scaleY(1); }
  50% { opacity: 0.2; transform: scaleY(0.5); }
}

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 12px 26px;
  border-radius: var(--r-full);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(160deg, #F0D060 0%, var(--accent) 40%, var(--accent-deep) 100%);
  color: var(--bg);
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 
    0 4px 24px var(--accent-glow),
    inset 0 1px 1px rgba(255,255,255,0.35),
    inset 0 -1px 2px rgba(0,0,0,0.1);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(160deg, #F7E07A 0%, var(--accent-light) 40%, var(--accent) 100%);
  box-shadow: 
    0 12px 40px rgba(212, 175, 55, 0.4),
    0 0 60px rgba(212, 175, 55, 0.12),
    inset 0 1px 2px rgba(255,255,255,0.4),
    inset 0 -1px 2px rgba(0,0,0,0.1);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.btn--ghost:hover {
  color: var(--accent-light);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.04);
}

.btn--large {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 20px 44px;
  color: #0d0800;
  text-shadow: none;
  border: 1px solid rgba(255,255,255,0.25);
  background: linear-gradient(170deg, #F7E07A 0%, #D4AF37 45%, #B8860B 100%);
  box-shadow: 
    0 6px 30px rgba(212, 175, 55, 0.4),
    0 0 60px rgba(212, 175, 55, 0.08),
    inset 0 2px 3px rgba(255,255,255,0.4),
    inset 0 -2px 4px rgba(0,0,0,0.12);
  letter-spacing: 0.02em;
}

.btn--large:hover {
  color: #0d0800;
  background: linear-gradient(170deg, #FFF1A3 0%, #F0D060 45%, #D4AF37 100%);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 14px 50px rgba(212, 175, 55, 0.5),
    0 0 80px rgba(212, 175, 55, 0.12),
    inset 0 2px 3px rgba(255,255,255,0.5),
    inset 0 -2px 4px rgba(0,0,0,0.1);
}

.btn--large span {
  color: #0d0800;
}

.btn--large svg {
  fill: #0d0800;
  opacity: 0.8;
}

/* ── Metrics Bar — Compact Cinematic Strip ────────────────────────── */
.metrics {
  position: relative;
  padding: 40px 0 36px;
  overflow: hidden;
  background: linear-gradient(180deg, 
    rgba(4, 3, 12, 0.98) 0%, 
    rgba(11, 61, 145, 0.05) 50%, 
    rgba(4, 3, 12, 0.98) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

/* Cosmos background with orbits */
.metrics__cosmos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.metrics__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.06);
  transform: translate(-50%, -50%);
}

.metrics__orbit--1 {
  width: 500px;
  height: 500px;
  animation: metricsOrbitSpin 60s linear infinite;
  border-style: dashed;
  border-color: rgba(212, 175, 55, 0.06);
}

.metrics__orbit--2 {
  width: 800px;
  height: 800px;
  animation: metricsOrbitSpin 90s linear infinite reverse;
  border-color: rgba(11, 61, 145, 0.08);
}

.metrics__orbit--3 {
  width: 1100px;
  height: 1100px;
  animation: metricsOrbitSpin 120s linear infinite;
  border-color: rgba(212, 175, 55, 0.03);
}

/* Dot on orbit */
.metrics__orbit--1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  transform: translate(-50%, -50%);
}

.metrics__orbit--2::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #6ea8fe;
  box-shadow: 0 0 8px #6ea8fe;
  transform: translate(50%, 50%);
}

@keyframes metricsOrbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Starfield dots */
.metrics__starfield {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 30%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 70%, rgba(212,175,55,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(110,168,254,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,0.2) 0%, transparent 100%);
  animation: metricsStarTwinkle 4s ease-in-out infinite alternate;
}

@keyframes metricsStarTwinkle {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Inner — single horizontal row */
.metrics__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* Card — compact inline style */
.metrics__card {
  position: relative;
  text-align: center;
  padding: 20px 40px;
  border-radius: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  flex: 1;
  max-width: 320px;
  border-right: 1px solid rgba(212, 175, 55, 0.08);
}

.metrics__card:last-child {
  border-right: none;
}

.metrics__card:hover {
  background: rgba(212, 175, 55, 0.02);
}

.metrics__card--featured {
  background: transparent;
}

.metrics__card--featured:hover {
  background: rgba(11, 61, 145, 0.03);
}

/* Card inner glow — subtle */
.metrics__card-glow {
  position: absolute;
  top: -60%;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  transform: translateX(-50%);
  animation: metricsGlowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.metrics__card-glow--nasa {
  background: radial-gradient(circle, rgba(11, 61, 145, 0.12) 0%, transparent 70%);
}

@keyframes metricsGlowPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.8; transform: translateX(-50%) scale(1.2); }
}

/* Icon — small inline */
.metrics__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  opacity: 0.75;
  transition: opacity 0.3s, transform 0.3s;
}

.metrics__card:hover .metrics__icon {
  opacity: 1;
  transform: scale(1.1);
}

.metrics__icon--nasa {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(11, 61, 145, 0.3);
}

.metrics__icon--nasa svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* Numbers — smaller */
.metrics__number {
  display: block;
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 200;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metrics__number--text {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  background: linear-gradient(135deg, #6ea8fe 0%, #ffffff 50%, #6ea8fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metrics__plus {
  font-size: 0.5em;
  background: linear-gradient(135deg, #F0D060, #B8860B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metrics__label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.metrics__sublabel {
  display: block;
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
  opacity: 0.6;
}

/* NASA badge — compact */
.metrics__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(11, 61, 145, 0.12);
  border: 1px solid rgba(110, 168, 254, 0.15);
  font-size: 0.58rem;
  color: #6ea8fe;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.metrics__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 4px #4caf50;
  animation: metricsBadgePulse 2s ease-in-out infinite;
}

@keyframes metricsBadgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Tech credibility scrolling strip */
.metrics__tech-strip {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

.metrics__tech-scroll {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: metricsTechScroll 30s linear infinite;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.4;
}

.metrics__tech-scroll span {
  flex-shrink: 0;
}

@keyframes metricsTechScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.metrics__divider {
  display: none;
}

/* ── Section Typography ────────────────────────────────────────────── */

/* Golden glow for all headings */
.section-title,
.hero__title,
.feature__title,
.how__step-title,
.cta__title,
.footer__statement {
  background: linear-gradient(135deg, #F0D060 0%, #D4AF37 40%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.25));
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
}

/* ── Features Intro ────────────────────────────────────────────────── */
/* ── What is Grahachara ────────────────────────────────────────────── */
.what-is {
  padding: 160px 0 140px;
  text-align: center;
  position: relative;
  overflow: visible;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(6, 20, 60, 0.3) 0%, transparent 60%);
}

/* Orbit container */
.what-is__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(750px, 95vw);
  height: min(750px, 95vw);
  pointer-events: none;
}

.what-is__orbit-track {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.06);
  animation: what-is-orbit 60s linear infinite;
  transform-origin: center center;
}

.what-is__zodiac {
  position: absolute;
  width: 50px;
  height: 50px;
  object-fit: contain;
  top: 50%;
  left: 50%;
  --angle: calc(var(--i) * 30deg);
  --radius: min(340px, 44vw);
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle)));
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

/* Counter-rotate to keep icons upright as ring spins */
.what-is__orbit-track .what-is__zodiac {
  animation: what-is-icon-spin 60s linear infinite reverse;
}

@keyframes what-is-icon-spin {
  from { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(360deg); }
}

.what-is__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 40%, transparent 70%);
  animation: what-is-pulse 4s ease-in-out infinite;
}

/* Desktop: scattered floating signs */
@media (min-width: 769px) {
  .what-is__orbit {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
  }

  .what-is__orbit-track {
    position: absolute;
    inset: 0;
    border: none;
    border-radius: 0;
    animation: none;
  }

  .what-is__zodiac {
    width: 48px;
    height: 48px;
    --radius: 0;
    transform: none;
    opacity: 0.55;
  }

  .what-is__orbit-track .what-is__zodiac {
    animation: float-drift 6s ease-in-out infinite;
  }

  .what-is__zodiac:nth-child(1)  { top: 12%; left: 5%;  animation-duration: 5.5s; animation-delay: 0s; }
  .what-is__zodiac:nth-child(2)  { top: 60%; left: 3%;  animation-duration: 6.8s; animation-delay: 1.2s; }
  .what-is__zodiac:nth-child(3)  { top: 82%; left: 12%; animation-duration: 7.2s; animation-delay: 0.5s; }
  .what-is__zodiac:nth-child(4)  { top: 30%; left: 10%; animation-duration: 5.8s; animation-delay: 2.0s; }
  .what-is__zodiac:nth-child(5)  { top: 75%; left: 25%; animation-duration: 6.5s; animation-delay: 1.8s; }
  .what-is__zodiac:nth-child(6)  { top: 8%;  left: 20%; animation-duration: 7.0s; animation-delay: 0.8s; }
  .what-is__zodiac:nth-child(7)  { top: 10%; right: 5%;  left: auto; animation-duration: 6.2s; animation-delay: 1.5s; }
  .what-is__zodiac:nth-child(8)  { top: 55%; right: 4%;  left: auto; animation-duration: 5.5s; animation-delay: 2.5s; }
  .what-is__zodiac:nth-child(9)  { top: 80%; right: 14%; left: auto; animation-duration: 7.5s; animation-delay: 0.3s; }
  .what-is__zodiac:nth-child(10) { top: 28%; right: 12%; left: auto; animation-duration: 6.0s; animation-delay: 1.0s; }
  .what-is__zodiac:nth-child(11) { top: 70%; right: 25%; left: auto; animation-duration: 5.8s; animation-delay: 2.2s; }
  .what-is__zodiac:nth-child(12) { top: 5%;  right: 22%; left: auto; animation-duration: 7.8s; animation-delay: 1.8s; }

  .what-is__glow {
    width: 280px;
    height: 280px;
  }
}

@keyframes float-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(3deg); }
  66% { transform: translateY(6px) rotate(-2deg); }
}

@keyframes what-is-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes what-is-pulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.15); }
}

/* Content */
.what-is__content {
  position: relative;
  z-index: 2;
}

.what-is__title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #F7E07A 0%, #D4AF37 50%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 16px;
}

.what-is__desc {
  max-width: 560px;
  margin: 28px auto 0;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
}

/* Pillars */
.what-is__pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
}

.what-is__pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.what-is__pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.what-is__pillar-label {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.what-is__pillar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.4);
  margin-bottom: 20px;
}

/* ── Features Intro ────────────────────────────────────────────────── */
.features-intro {
  padding: 140px 0 80px;
  text-align: center;
}

.features-intro .section-subtitle {
  margin: 0 auto;
}

/* ── Feature Sections ──────────────────────────────────────────────── */
.feature {
  padding: 120px 0;
  position: relative;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(212, 175, 55, 0.015) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 60%, rgba(10, 40, 100, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 40%, rgba(10, 40, 100, 0.04) 0%, transparent 60%);
}

.feature::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3) 20%, rgba(212, 175, 55, 0.5) 50%, rgba(212, 175, 55, 0.3) 80%, transparent);
}

.feature:last-of-type::after {
  display: none;
}

.feature:nth-child(even) {
  background:
    radial-gradient(ellipse 70% 50% at 70% 50%, rgba(212, 175, 55, 0.025) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 30% 50%, rgba(6, 30, 80, 0.08) 0%, transparent 60%);
}

.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* Default: visuals LEFT, content RIGHT */
.feature__visuals { order: 1; }
.feature__content { order: 2; }

/* Reversed: visuals RIGHT, content LEFT */
.feature__grid--reverse .feature__visuals { order: 2; }
.feature__grid--reverse .feature__content { order: 1; }

.feature__content {
  max-width: 640px;
}

.feature__list {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.feature__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}

.feature__title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.feature__desc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.feature__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.feature__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Feature Screenshots ───────────────────────────────────────────── */
.feature__screenshots {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__img {
  position: absolute;
  border-radius: var(--r-xl);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  box-shadow:
    0 0 12px rgba(212, 175, 55, 0.15),
    0 0 30px rgba(212, 175, 55, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.7s var(--ease-out), box-shadow 0.5s var(--ease-out), opacity 0.6s var(--ease-out);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.feature__img:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.25),
    0 0 50px rgba(212, 175, 55, 0.12),
    0 30px 60px rgba(0, 0, 0, 0.5);
}

.feature__img--main {
  width: 220px;
  z-index: 3;
  transform: rotate(0deg) scale(0.92);
  opacity: 0;
}

.feature__img--secondary {
  width: 190px;
  z-index: 2;
  transform: translate(0px, 0px) rotate(0deg) scale(0.88);
  opacity: 0;
}

.feature__img--tertiary {
  width: 170px;
  z-index: 1;
  transform: translate(0px, 0px) rotate(0deg) scale(0.85);
  opacity: 0;
}

/* Expanded state when section is in view */
.feature.in-view .feature__img--main {
  transform: rotate(-2deg) scale(1);
  opacity: 1;
  transition-delay: 0.1s;
}

.feature.in-view .feature__img--secondary {
  transform: translate(120px, 20px) rotate(4deg) scale(1);
  opacity: 1;
  transition-delay: 0.25s;
}

.feature.in-view .feature__img--tertiary {
  transform: translate(-110px, 30px) rotate(-6deg) scale(1);
  opacity: 1;
  transition-delay: 0.4s;
}

.feature__visuals:hover .feature__img--main { transform: rotate(0deg) scale(1.02); }
.feature__visuals:hover .feature__img--secondary { transform: translate(130px, 15px) rotate(2deg) scale(1.02); }
.feature__visuals:hover .feature__img--tertiary { transform: translate(-120px, 25px) rotate(-4deg) scale(1.02); }

/* ── App Showcase Gallery ──────────────────────────────────────────── */
.showcase {
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.showcase__track {
  width: 100%;
  overflow: hidden;
  margin-top: 56px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.showcase__scroll {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: showcaseScroll 30s linear infinite;
}

.showcase__scroll:hover {
  animation-play-state: paused;
}

@keyframes showcaseScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.showcase__item {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  background: var(--bg-card);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  flex-shrink: 0;
  width: 200px;
}

.showcase__item:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(212, 175, 55, 0.1);
}

.showcase__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-xl);
  transition: transform 0.5s var(--ease);
}

.showcase__item:hover img {
  transform: scale(1.05);
}

.showcase__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  background: linear-gradient(to top, rgba(5, 2, 8, 0.9) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
}

.showcase__item:hover .showcase__label {
  opacity: 1;
  transform: translateY(0);
}

/* ── How It Works ──────────────────────────────────────────────────── */
.how {
  padding: 140px 0;
  text-align: center;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.how__step {
  padding: 40px 32px;
  border-radius: var(--r-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  text-align: left;
}

.how__step:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.how__step-number {
  font-family: 'Clash Display', sans-serif;
  font-size: 3rem;
  font-weight: 200;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
}

.how__step-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.how__step-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── FAQ ───────────────────────────────────────────────────────────── */
.faq {
  padding: 140px 0;
}

.faq .section-title { text-align: center; }
.faq .section-eyebrow { text-align: center; }

.faq__list {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: color 0.3s var(--ease);
  list-style: none;
}

.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { display: none; content: ''; }

.faq__question:hover { color: var(--accent); }

.faq__icon {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

details[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 0 24px;
}

.faq__answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ── CTA Section — Immersive ────────────────────────────────────────── */
.cta {
  position: relative;
  padding: 180px 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* Central radial glow */
.cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.12) 0%,
    rgba(212, 175, 55, 0.05) 30%,
    rgba(184, 134, 11, 0.02) 50%,
    transparent 70%
  );
  animation: ctaGlowPulse 4s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}

@keyframes ctaGlowPulse {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Orbital rings */
.cta__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.06);
  pointer-events: none;
  z-index: -1;
}

.cta__ring--1 {
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: ctaRingSpin 50s linear infinite;
  border-style: dashed;
  border-color: rgba(212, 175, 55, 0.08);
}

.cta__ring--2 {
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: ctaRingSpin 80s linear infinite reverse;
  border-color: rgba(212, 175, 55, 0.04);
}

@keyframes ctaRingSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating particles */
.cta__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.cta__particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: ctaParticleFloat 6s ease-in-out infinite;
}

.cta__particles span:nth-child(1) { left: 15%; top: 20%; animation-delay: 0s; }
.cta__particles span:nth-child(2) { left: 85%; top: 25%; animation-delay: 0.5s; }
.cta__particles span:nth-child(3) { left: 10%; top: 70%; animation-delay: 1s; }
.cta__particles span:nth-child(4) { left: 90%; top: 75%; animation-delay: 1.5s; }
.cta__particles span:nth-child(5) { left: 30%; top: 15%; animation-delay: 2s; }
.cta__particles span:nth-child(6) { left: 70%; top: 85%; animation-delay: 2.5s; }
.cta__particles span:nth-child(7) { left: 50%; top: 10%; animation-delay: 3s; }
.cta__particles span:nth-child(8) { left: 25%; top: 85%; animation-delay: 3.5s; }
.cta__particles span:nth-child(9) { left: 75%; top: 15%; animation-delay: 4s; }
.cta__particles span:nth-child(10) { left: 40%; top: 90%; animation-delay: 4.5s; }
.cta__particles span:nth-child(11) { left: 60%; top: 5%; animation-delay: 5s; }
.cta__particles span:nth-child(12) { left: 20%; top: 50%; animation-delay: 5.5s; }

@keyframes ctaParticleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.6; }
  50% { opacity: 0.8; transform: translateY(-30px) scale(1); }
  80% { opacity: 0.4; }
}

/* Content */
.cta__content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta__eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}

.cta__title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.7;
}

.cta__btn {
  font-size: 1rem;
  padding: 20px 48px;
  box-shadow:
    0 4px 24px rgba(212, 175, 55, 0.3),
    0 0 60px rgba(212, 175, 55, 0.1);
  animation: ctaBtnPulse 3s ease-in-out infinite;
}

.cta__btn:hover {
  box-shadow:
    0 8px 40px rgba(212, 175, 55, 0.5),
    0 0 80px rgba(212, 175, 55, 0.2);
}

@keyframes ctaBtnPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(212, 175, 55, 0.3), 0 0 60px rgba(212, 175, 55, 0.1); }
  50% { box-shadow: 0 4px 36px rgba(212, 175, 55, 0.45), 0 0 80px rgba(212, 175, 55, 0.15); }
}

/* ── Footer ────────────────────────────────────────────────────────── */
/* ── Footer — Immersive ────────────────────────────────────────────── */
.footer {
  position: relative;
  padding: 120px 0 48px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #030610 100%);
  overflow: hidden;
}

/* Orbital decoration */
.footer__orbit {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  pointer-events: none;
}

.footer__orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.08);
  animation: footerOrbitSpin 60s linear infinite;
}

.footer__orbit-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.footer__orbit-dot--1 { top: 0; left: 50%; transform: translateX(-50%); }
.footer__orbit-dot--2 { bottom: 20%; right: 5%; }
.footer__orbit-dot--3 { bottom: 20%; left: 5%; }

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

/* Hero brand statement */
.footer__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 64px;
  position: relative;
  z-index: 1;
}

.footer__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 32px;
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.4),
    0 0 60px rgba(212, 175, 55, 0.2),
    0 0 100px rgba(212, 175, 55, 0.1);
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    box-shadow:
      0 0 20px rgba(212, 175, 55, 0.4),
      0 0 60px rgba(212, 175, 55, 0.2),
      0 0 100px rgba(212, 175, 55, 0.1);
  }
  100% {
    box-shadow:
      0 0 30px rgba(212, 175, 55, 0.6),
      0 0 80px rgba(212, 175, 55, 0.3),
      0 0 120px rgba(212, 175, 55, 0.15);
  }
}

.footer__statement {
  font-family: 'Clash Display', sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer__socials {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}

.footer__socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

/* Glowing divider */
.footer__divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.3) 30%,
    rgba(212, 175, 55, 0.5) 50%,
    rgba(212, 175, 55, 0.3) 70%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

/* Footer inner content */
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 24px 0;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  padding-bottom: 48px;
}

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

.footer__heading {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.footer__col a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* Zodiac scrolling strip */
.footer__zodiac {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 48px 0 24px;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.footer__zodiac-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: zodiacScroll 40s linear infinite;
}

.footer__zodiac-track img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.25;
  filter: grayscale(0.5) brightness(1.2) drop-shadow(0 0 6px rgba(212, 175, 55, 0.15));
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.footer__zodiac-track img:hover {
  opacity: 0.7;
  filter: grayscale(0) brightness(1.4) drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
}

@keyframes zodiacScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SEO Block (crawlable, visually minimal) ───────────────────────── */
.seo-block {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Feature/Blog Pages — Immersive Design ─────────────────────────── */
.nav--simple .nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.breadcrumb {
  display: none;
}

/* Immersive Hero */
.feature-page__hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.feature-page__hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.feature-page__hero-zodiac {
  position: absolute;
  width: 320px;
  height: 320px;
  opacity: 0.12;
  animation: floatZodiac 8s ease-in-out infinite;
  filter: blur(0.5px);
}

.feature-page__hero-zodiac--1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.feature-page__hero-zodiac--2 {
  bottom: 10%;
  left: 5%;
  animation-delay: -3s;
  width: 240px;
  height: 240px;
  opacity: 0.08;
}

.feature-page__hero-zodiac--3 {
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  animation-delay: -5s;
  width: 180px;
  height: 180px;
  opacity: 0.06;
}

@keyframes floatZodiac {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(2deg); }
  75% { transform: translateY(10px) rotate(-2deg); }
}

.feature-page__hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: heroGlowPulse 5s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.feature-page__hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.feature-page__hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 16px;
  background: rgba(212, 175, 55, 0.04);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
  animation: iconPulse 3s ease-in-out infinite;
}

.feature-page__hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.1); }
  50% { box-shadow: 0 0 60px rgba(212, 175, 55, 0.2); }
}

.feature-page__title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #F0D060 0%, #D4AF37 40%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.3));
}

.feature-page__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Glassmorphic Content Cards */
.feature-page__content {
  padding: 0 0 80px;
  position: relative;
  z-index: 2;
}

.feature-page__text {
  max-width: 760px;
  margin: 0 auto;
}

.feature-page__glass-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
}

.feature-page__glass-card:hover {
  border-color: rgba(212, 175, 55, 0.15);
  background: rgba(212, 175, 55, 0.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-page__text h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.8rem;
  font-weight: 200;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #F0D060 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-page__text h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 32px 0 8px;
  color: var(--accent);
}

.feature-page__text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.feature-page__text ul,
.feature-page__text ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.feature-page__text li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.feature-page__text li strong {
  color: var(--text);
}

.feature-page__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.feature-page__text a:hover { color: var(--accent-light); }

/* In-content CTA */
.feature-page__cta {
  margin: 56px 0;
  padding: 48px 40px;
  border-radius: 24px;
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-page__cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.feature-page__cta h3 {
  margin-top: 0;
  color: var(--text);
  position: relative;
}

/* Related Section */
.feature-page__related {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.feature-page__related h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 32px;
  color: var(--text);
  text-align: center;
}

.feature-page__related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-page__related-card {
  padding: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(8px);
}
.feature-page__related-card:hover {
  border-color: var(--accent);
  background: rgba(212, 175, 55, 0.03);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.feature-page__related-card h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-page__related-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s var(--ease);
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(160deg, #F0D060 0%, var(--accent) 40%, var(--accent-deep) 100%);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 
    0 8px 32px rgba(212, 175, 55, 0.35),
    0 0 0 1px rgba(212, 175, 55, 0.15),
    inset 0 1px 2px rgba(255,255,255,0.35),
    inset 0 -1px 2px rgba(0,0,0,0.1);
  animation: floatingCTAPulse 3s ease-in-out infinite;
  transition: all 0.3s var(--ease);
}

.floating-cta__btn:hover {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(160deg, #F7E07A 0%, var(--accent-light) 40%, var(--accent) 100%);
  box-shadow: 
    0 16px 48px rgba(212, 175, 55, 0.45),
    0 0 80px rgba(212, 175, 55, 0.12),
    0 0 0 1px rgba(212, 175, 55, 0.3),
    inset 0 1px 2px rgba(255,255,255,0.4);
}

@keyframes floatingCTAPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.15), inset 0 1px 2px rgba(255,255,255,0.35), inset 0 -1px 2px rgba(0,0,0,0.1); }
  50% { box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5), 0 0 60px rgba(212, 175, 55, 0.1), 0 0 0 2px rgba(212, 175, 55, 0.25), inset 0 1px 2px rgba(255,255,255,0.35), inset 0 -1px 2px rgba(0,0,0,0.1); }
}

/* Zodiac Signs Page */
.zodiac-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.zodiac-hero__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.1);
  transform: translate(-50%, -50%);
  animation: metricsOrbitSpin 40s linear infinite;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 100px;
  position: relative;
  z-index: 2;
}

.zodiac-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: all 0.5s var(--ease);
  overflow: hidden;
}

.zodiac-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-glow) 0%, transparent 70%);
  transform: translateX(-50%);
  opacity: 0.3;
  transition: opacity 0.4s;
  pointer-events: none;
}

.zodiac-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-glow);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--card-glow-dim);
}

.zodiac-card:hover::before {
  opacity: 0.6;
}

/* Element color vars */
.zodiac-card--fire { --card-glow: #F0A030; --card-glow-dim: rgba(240, 160, 48, 0.15); }
.zodiac-card--earth { --card-glow: #4CAF50; --card-glow-dim: rgba(76, 175, 80, 0.15); }
.zodiac-card--air { --card-glow: #6EA8FE; --card-glow-dim: rgba(110, 168, 254, 0.15); }
.zodiac-card--water { --card-glow: #26C6DA; --card-glow-dim: rgba(38, 198, 218, 0.15); }

.zodiac-card__img {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  animation: floatZodiac 6s ease-in-out infinite;
  filter: drop-shadow(0 0 12px var(--card-glow-dim));
}

.zodiac-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.zodiac-card__name {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 2px;
}

.zodiac-card__sanskrit {
  font-size: 0.75rem;
  color: var(--card-glow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.zodiac-card__dates {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.zodiac-card__meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.zodiac-card__tag {
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.zodiac-card__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.zodiac-card__traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.zodiac-card__trait {
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--accent);
  letter-spacing: 0.03em;
}

.zodiac-card__compat {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.zodiac-card__compat strong {
  color: var(--text-secondary);
}

/* Blog-specific */
.blog-article__intro {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 32px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.blog-article__table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 0.9rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.blog-article__table th,
.blog-article__table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.blog-article__table th {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(212, 175, 55, 0.04);
}
.blog-article__table td {
  color: var(--text-secondary);
}
.blog-article__table tr:hover td {
  background: rgba(212, 175, 55, 0.02);
}

/* Section divider — constellation line */
.section-divider {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section-divider::before {
  content: '';
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.section-divider::after {
  content: '✦';
  position: absolute;
  color: var(--accent);
  font-size: 0.6rem;
  opacity: 0.5;
}

/* Mobile floating CTA — full width bar */
@media (max-width: 768px) {
  .floating-cta {
    bottom: 0;
    right: 0;
    left: 0;
    padding: 12px 16px;
    background: rgba(4, 3, 12, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    transform: translateY(100%);
  }
  .floating-cta.visible {
    transform: translateY(0);
  }
  .floating-cta__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
  .feature-page__hero {
    min-height: 50vh;
    padding: 120px 0 60px;
  }
  .feature-page__title { font-size: 2rem; }
  .feature-page__hero-zodiac { width: 160px; height: 160px; }
  .feature-page__hero-zodiac--2 { width: 120px; height: 120px; }
  .feature-page__glass-card { padding: 28px 20px; }
  .zodiac-grid { grid-template-columns: 1fr; gap: 20px; }
  .zodiac-card { padding: 32px 24px; }
}

/* ── Reveal Animations ─────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── Reduced Motion ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__showcase { height: 440px; }

  .hero__fan-card {
    width: clamp(140px, 18vw, 200px);
    height: clamp(280px, 36vw, 400px);
  }

  .hero__fan-card:nth-child(1) { --fan-x: calc(-50% - 260px); }
  .hero__fan-card:nth-child(2) { --fan-x: calc(-50% - 130px); }
  .hero__fan-card:nth-child(4) { --fan-x: calc(-50% + 130px); }
  .hero__fan-card:nth-child(5) { --fan-x: calc(-50% + 260px); }

  .feature__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature__grid--reverse { direction: ltr; }

  .feature__visuals { order: -1 !important; }
  .feature__grid--reverse .feature__visuals { order: -1 !important; }
  .feature__grid--reverse .feature__content { order: 0 !important; }
  .feature__content { text-align: center; margin: 0 auto; order: 0 !important; }

  .feature__screenshots { height: 400px; }
  .feature__img--main { width: 200px; }
  .feature__img--secondary { width: 170px; }
  .feature__img--tertiary { width: 150px; }

  .feature.in-view .feature__img--secondary { transform: translate(100px, 20px) rotate(4deg); }
  .feature.in-view .feature__img--tertiary { transform: translate(-90px, 30px) rotate(-6deg); }

  .how__steps { grid-template-columns: 1fr; max-width: 500px; margin: 64px auto 0; }

  .showcase__item { width: 180px; }

  .footer__links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__lang { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 70px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero__content {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 100%;
  }

  .hero__text {
    transform: none;
  }

  .hero__title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 16px;
  }

  .hero__title-line,
  .hero__title-accent {
    display: block;
  }

  .hero__subtitle {
    font-size: 0.9rem;
    max-width: 260px;
    margin-bottom: 16px;
  }

  .hero__showcase {
    height: auto;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero__fan {
    position: relative;
    width: 100%;
    height: 380px;
    transform-style: preserve-3d;
  }

  .hero__fan-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30vw;
    height: 72vw;
    max-width: 150px;
    max-height: 360px;
    border-radius: 14px;
    transform: translateX(var(--fan-x)) translateY(var(--fan-y)) rotate(var(--fan-r)) scale(var(--fan-s));
    opacity: 1;
    animation: fanEntrance 1.05s var(--ease-out) forwards;
    animation-delay: var(--fan-delay);
  }

  .hero__fan-card:nth-child(1) {
    --fan-x: calc(-50% - 130px);
    --fan-y: 30px;
    --fan-r: -10deg;
    --fan-s: 0.78;
    display: block;
  }
  .hero__fan-card:nth-child(2) {
    --fan-x: calc(-50% - 65px);
    --fan-y: 10px;
    --fan-r: -5deg;
    --fan-s: 0.9;
    display: block;
  }
  .hero__fan-card:nth-child(3) {
    --fan-x: -50%;
    --fan-y: 0px;
    --fan-r: 0deg;
    --fan-s: 1;
    display: block;
  }
  .hero__fan-card:nth-child(4) {
    --fan-x: calc(-50% + 65px);
    --fan-y: 10px;
    --fan-r: 5deg;
    --fan-s: 0.9;
    display: block;
  }
  .hero__fan-card:nth-child(5) {
    --fan-x: calc(-50% + 130px);
    --fan-y: 30px;
    --fan-r: 10deg;
    --fan-s: 0.78;
    display: block;
  }

  .hero__scroll-hint { display: none; }

  .metrics__inner { flex-direction: column; gap: 0; }
  .metrics__card { padding: 16px 24px; border-right: none; border-bottom: 1px solid rgba(212, 175, 55, 0.06); max-width: 100%; }
  .metrics__card:last-child { border-bottom: none; }
  .metrics__number { font-size: 1.8rem; }
  .metrics__orbit--3 { display: none; }

  .feature { padding: 60px 0; }
  .features-intro { padding: 80px 0 40px; }

  /* ── What Is section mobile redesign ── */
  .what-is {
    padding: 100px 0 80px;
  }

  .what-is__orbit {
    width: 500px;
    height: 500px;
  }

  .what-is__zodiac {
    width: 36px;
    height: 36px;
    --radius: 220px;
  }

  .what-is__glow {
    width: 140px;
    height: 140px;
  }

  .what-is .section-eyebrow {
    font-size: 0.55rem;
    margin-bottom: 12px;
  }

  .what-is__title {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .what-is__desc {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 320px;
    margin: 16px auto 0;
    padding: 0 20px;
  }

  .what-is__pillars {
    gap: 18px;
    margin-top: 36px;
  }

  .what-is__pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .what-is__pillar-label {
    font-size: 0.72rem;
  }

  .feature__screenshots { height: 350px; }
  .feature__img--main { width: 180px; }
  .feature__img--secondary { width: 150px; }
  .feature__img--tertiary { width: 130px; }

  .feature.in-view .feature__img--secondary { transform: translate(80px, 15px) rotate(3deg); }
  .feature.in-view .feature__img--tertiary { transform: translate(-70px, 25px) rotate(-5deg); }

  .how { padding: 80px 0; }
  .faq { padding: 80px 0; }
  .cta { padding: 80px 0; }

  .footer { padding: 80px 0 40px; }
  .footer__orbit { width: 240px; height: 240px; top: -60px; }
  .footer__hero { padding: 0 24px 48px; }
  .footer__statement { font-size: 1.6rem; }
  .footer__links { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }

  .showcase { padding: 80px 0; }
  .showcase__item { width: 160px; }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 0;
  }

  .hero__title { font-size: 2.6rem; font-weight: 300; }
  .hero__subtitle { font-size: 0.85rem; max-width: 240px; }

  .hero__actions { gap: 10px; }
  .hero__actions .btn { padding: 10px 16px; font-size: 0.72rem; }

  .hero__fan-card {
    width: 32vw;
    height: 76vw;
    max-width: 145px;
    max-height: 340px;
    bottom: 0;
    border-radius: 12px;
  }

  .metrics__inner {
    flex-direction: column;
    gap: 0;
  }
  .metrics__number { font-size: 1.6rem; }
  .metrics__number--text { font-size: 1.2rem; }
  .metrics__orbit { display: none; }
  .metrics { padding: 28px 0 24px; }
  .metrics__tech-strip { margin-top: 16px; }

  .feature__screenshots { height: 300px; }
  .feature__img--main { width: 160px; }
  .feature__img--secondary { width: 130px; }
  .feature__img--tertiary { width: 120px; }

  .feature.in-view .feature__img--secondary { transform: translate(60px, 15px) rotate(3deg); }
  .feature.in-view .feature__img--tertiary { transform: translate(-55px, 20px) rotate(-4deg); }
}
