/* ═══════════════════════════════════════════════════════
   VANGUARD ELITES — styles.css
   Luxury CSS: Design Tokens, Glassmorphism, Animations
═══════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────── */
:root {
  --bg-main:        #050505;
  --bg-secondary:   #0D0D0D;
  --bg-card:        rgba(13, 13, 13, 0.6);

  --gold:           #D4A64A;
  --gold-highlight: #F0C46C;
  --gold-bronze:    #8C6A2E;
  --gold-border:    #6B4E1D;
  --gold-glow:      rgba(212, 166, 74, 0.35);
  --gold-glow-soft: rgba(212, 166, 74, 0.12);

  --white:          #FFFFFF;
  --text-secondary: #D9D9D9;
  --text-muted:     #888888;

  --glass-bg:       rgba(255, 255, 255, 0.04);
  --glass-border:   rgba(212, 166, 74, 0.18);
  --glass-blur:     blur(18px);

  --font-display:   'Clash Display', 'Inter', sans-serif;
  --font-body:      'Inter', sans-serif;

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;

  --ease-luxury:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  background: var(--bg-main);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; }

/* ── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── SELECTION ─────────────────────────────────────── */
::selection { background: var(--gold-glow); color: var(--gold-highlight); }

/* ═══════════════════════════════════════════════════════
   GLOBAL CANVAS
═══════════════════════════════════════════════════════ */
#webgl-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-smooth), backdrop-filter 0.4s;
}

#main-nav.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.72rem, 2vw, 1rem);
  letter-spacing: 0.12em;
  color: var(--white);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-logo:hover { color: var(--gold-highlight); }

.nav-logo-icon {
  color: var(--gold);
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-luxury);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  transition: all 0.3s var(--ease-luxury);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-main);
  box-shadow: 0 0 24px var(--gold-glow);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   GLASSMORPHISM UTILITY
═══════════════════════════════════════════════════════ */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px clamp(24px, 5vw, 80px) 80px;
  overflow: hidden;
}

.hero-glass-panel {
  position: relative;
  max-width: 860px;
  width: 100%;
  padding: clamp(48px, 6vw, 80px) clamp(40px, 6vw, 80px);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  text-align: center;
}

/* Corner accents */
.corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.7;
}
.corner-tl { top: 12px; left: 12px; border-width: 1px 0 0 1px; border-radius: 4px 0 0 0; }
.corner-tr { top: 12px; right: 12px; border-width: 1px 1px 0 0; border-radius: 0 4px 0 0; }
.corner-bl { bottom: 12px; left: 12px; border-width: 0 0 1px 1px; border-radius: 0 0 0 4px; }
.corner-br { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; border-radius: 0 0 4px 0; }

.hero-content {
  position: relative;
  z-index: 1;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 166, 74, 0.08);
  border: 1px solid rgba(212, 166, 74, 0.25);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,166,74,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(212,166,74,0); }
}

/* Title — single line "VANGUARD ELITES" */
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 6.5vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  display: block;
}

.title-line {
  display: block;
  overflow: hidden;
  word-break: break-word;
}

/* Gold "ELITES" sweep effect */
.title-line-gold {
  background: linear-gradient(
    105deg,
    var(--gold-bronze) 0%,
    var(--gold) 30%,
    var(--gold-highlight) 50%,
    var(--gold) 70%,
    var(--gold-bronze) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-sweep 3.5s linear infinite;
}
@keyframes gold-sweep {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.8s var(--ease-luxury) 1.8s forwards;
}

.hero-description {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-luxury) 2.1s forwards;
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-luxury) 2.3s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--bg-main);
}
.btn-primary:hover {
  background: var(--gold-highlight);
  box-shadow: 0 8px 32px var(--gold-glow), 0 0 60px rgba(212,166,74,0.15);
  transform: translateY(-2px);
}
.btn-icon { transition: transform 0.3s var(--ease-spring); }
.btn-primary:hover .btn-icon { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stat { text-align: center; }
.stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold-border), transparent);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fade-up 1s var(--ease-luxury) 3s both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; height: 48px; }
  50% { opacity: 1; height: 60px; }
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   CONTENT SECTIONS
═══════════════════════════════════════════════════════ */
.content-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
}

.content-section:nth-child(even) {
  background: linear-gradient(to bottom, transparent, rgba(13,13,13,0.6), transparent);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-bronze), var(--gold), var(--gold-highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.section-grid-reverse {
  direction: rtl;
}
.section-grid-reverse > * {
  direction: ltr;
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.feature-icon {
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.section-link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  transition: color 0.3s;
}
.section-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-highlight);
  transition: width 0.3s var(--ease-luxury);
}
.section-link:hover { color: var(--gold-highlight); }
.section-link:hover::after { width: 100%; }

/* Section Visual Card */
.section-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  width: 100%;
  max-width: 440px;
  padding: 36px;
  transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s;
}
.visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 40px var(--gold-glow-soft);
}

.metric-display {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gold-border);
}
.metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 16px var(--gold-glow));
}
.metric-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.metric-bars { display: flex; flex-direction: column; gap: 20px; }
.metric-bar { display: flex; flex-direction: column; gap: 8px; }
.metric-bar span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}
.bar-track {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-bronze), var(--gold), var(--gold-highlight));
  border-radius: 2px;
  transition: width 1.2s var(--ease-luxury) var(--delay, 0s);
}
.bar-fill.animate { width: var(--w, 80%); }

/* Communications Visual */
.comms-card {
  height: 340px;
  padding: 0;
  overflow: hidden;
}
.comms-node-grid {
  position: relative;
  width: 100%;
  height: 100%;
}
.comms-node {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(212, 166, 74, 0.12);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.node-main {
  width: 72px; height: 72px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(212, 166, 74, 0.18);
  border-color: var(--gold);
  box-shadow: 0 0 32px var(--gold-glow);
  font-size: 0.72rem;
}
.node-a { top: 12%; left: 10%; }
.node-b { top: 12%; right: 10%; }
.node-c { bottom: 12%; left: 10%; }
.node-d { bottom: 12%; right: 10%; }

.node-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: node-ripple 2.5s ease-out infinite;
}
@keyframes node-ripple {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

.comms-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.comms-line {
  stroke: var(--gold);
  stroke-width: 0.5;
  stroke-dasharray: 6 4;
  opacity: 0.35;
  animation: line-pulse 3s ease-in-out infinite alternate;
}
@keyframes line-pulse {
  0%   { opacity: 0.15; }
  100% { opacity: 0.5; }
}

/* ═══════════════════════════════════════════════════════
   MEMBERSHIP PLANS
═══════════════════════════════════════════════════════ */
.plans-section {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
  text-align: center;
}

.plans-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 60px;
  letter-spacing: 0.05em;
}

/* "Get Started Today" — larger than default section-title */
#plans-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  margin-bottom: 16px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.plan-card {
  position: relative;
  padding: 40px 32px 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury);
  cursor: default;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.plan-card:hover {
  transform: perspective(1000px) rotateX(-3deg) rotateY(2deg) scale(1.03);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px var(--gold-glow-soft), 0 0 0 1px var(--gold-border);
}

.plan-featured {
  border-color: var(--gold);
  background: rgba(212, 166, 74, 0.06);
  box-shadow: 0 8px 48px rgba(212,166,74,0.12), 0 0 0 1px var(--gold);
}
.plan-featured:hover {
  box-shadow: 0 24px 80px rgba(212,166,74,0.25), 0 0 60px rgba(212,166,74,0.15), 0 0 0 1px var(--gold);
}

.plan-featured-label {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-main);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}

.plan-tier-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.plan-tier-badge-featured { color: var(--gold); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.plan-currency {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-secondary);
}
.plan-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.plan-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.plan-featured .plan-name { color: var(--gold-highlight); }

.plan-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex: 1;
}
.plan-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}
.plan-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.btn-plan-ghost {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  transition: all 0.3s var(--ease-luxury);
  margin-top: auto;
}
.btn-plan-ghost:hover {
  background: var(--gold-glow-soft);
  border-color: var(--gold);
}

.btn-plan-gold {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-main);
  background: var(--gold);
  border: none;
  transition: all 0.3s var(--ease-luxury);
  margin-top: auto;
  cursor: pointer;
}
.btn-plan-gold:hover {
  background: var(--gold-highlight);
  box-shadow: 0 8px 32px var(--gold-glow);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS MARQUEE
═══════════════════════════════════════════════════════ */
.marquee-section {
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(212, 166, 74, 0.03);
}

.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 32s linear infinite;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.marquee-sep {
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════ */
.contact-section {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.contact-text .section-description {
  max-width: 400px;
}

.contact-cta {
  margin-top: 8px;
}

/* Social Dock */
.social-dock-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.social-dock-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.social-dock {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.social-dock-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s var(--ease-luxury);
}
.social-dock-trigger:hover {
  background: rgba(212, 166, 74, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 32px var(--gold-glow-soft);
}
.social-dock-trigger[aria-expanded="true"] {
  background: rgba(212, 166, 74, 0.1);
  border-color: var(--gold);
  box-shadow: 0 0 40px var(--gold-glow);
}

.social-dock-trigger-icon {
  font-size: 1.1rem;
  transition: transform 0.4s var(--ease-spring);
}
.social-dock-trigger[aria-expanded="true"] .social-dock-trigger-icon {
  transform: rotate(45deg);
}

/* Social icons container */
.social-dock-icons {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  max-width: 0;
  max-height: 56px;
  opacity: 0;
  transition: max-width 0.6s var(--ease-luxury), opacity 0.4s var(--ease-smooth), gap 0.4s;
}
.social-dock-icons.open {
  max-width: 400px;
  gap: 10px;
  opacity: 1;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-secondary);
  flex-shrink: 0;
  transform: scale(0.5) translateY(20px);
  opacity: 0;
  transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s,
              transform 0.45s var(--ease-spring), opacity 0.3s;
}
.social-dock-icons.open .social-icon {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.social-dock-icons.open .social-icon:nth-child(1) { transition-delay: 0.05s; }
.social-dock-icons.open .social-icon:nth-child(2) { transition-delay: 0.1s; }
.social-dock-icons.open .social-icon:nth-child(3) { transition-delay: 0.15s; }
.social-dock-icons.open .social-icon:nth-child(4) { transition-delay: 0.2s; }

.social-icon:hover {
  color: var(--gold);
  background: rgba(212, 166, 74, 0.1);
  border-color: var(--gold-border);
  box-shadow: 0 0 20px var(--gold-glow-soft);
  transform: scale(1.12);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  padding: 40px clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   LETTER SPAN ANIMATION SETUP (via JS)
═══════════════════════════════════════════════════════ */
.letter-span {
  display: inline-block;
  transform-origin: bottom center;
  /* Default: visible. JS will hide+animate these if GSAP loads */
  opacity: 1;
}

/* Once JS adds this class, the raw element text is hidden
   so only the animated spans show. Without JS the title stays visible. */
.js-title-ready {
  opacity: 1 !important;
}

/* ── Communication heading block (always visible) ────── */
.comms-heading-block {
  margin-bottom: 40px;
}
.comms-intro-desc {
  max-width: 620px;
}

/* ── Solo / single plan card layout ─────────────────── */
.plans-grid-single {
  grid-template-columns: 1fr;
  max-width: 540px;
  margin: 0 auto;
}

.plan-card-solo {
  text-align: center;
  padding: 48px 40px 40px;
}

/* Solo plan card — INR price centered */
.plan-price-inr {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.plan-price-inr .plan-currency {
  font-size: 1.6rem;
  color: var(--gold);
}
.plan-price-inr .plan-amount {
  font-size: clamp(3rem, 7vw, 4.5rem);
  color: var(--gold);
}
.plan-price-inr .plan-period {
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════
   COUNTDOWN TIMER
═══════════════════════════════════════════════════════ */
.countdown-wrapper {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(212, 166, 74, 0.06);
  border: 1px solid rgba(212, 166, 74, 0.2);
  border-radius: var(--radius-md);
  text-align: center;
  transition: background 0.4s, border-color 0.4s;
}

.countdown-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.countdown-fire { font-size: 1rem; }

.countdown-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.05em;
  min-width: 2.2ch;
  display: inline-block;
  text-align: center;
  transition: color 0.4s;
}

.countdown-unit-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.countdown-colon {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  animation: colon-blink 1s step-end infinite;
  transition: color 0.4s;
}
@keyframes colon-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.countdown-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 10px;
  font-style: italic;
}

/* Final 60 seconds — red urgency state */
.countdown-urgent {
  background: rgba(220, 60, 60, 0.08);
  border-color: rgba(220, 60, 60, 0.35);
  animation: urgent-pulse 1.5s ease-in-out infinite;
}
.countdown-urgent .countdown-num,
.countdown-urgent .countdown-colon {
  color: #e05555;
  filter: drop-shadow(0 0 8px rgba(220, 60, 60, 0.5));
}
.countdown-urgent .countdown-label { color: #e05555; }
@keyframes urgent-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,60,60,0); }
  50%       { box-shadow: 0 0 20px 2px rgba(220,60,60,0.18); }
}

/* Expired state */
.countdown-expired {
  opacity: 0.5;
  pointer-events: none;
}
.countdown-expired .countdown-note::before {
  content: '\26A0  Offer may have ended. ';
  color: #e05555;
}

.plan-card-solo .plan-features {
  text-align: left;
  margin-bottom: 28px;
}

.plan-card-solo .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 0;
}
.plan-card-solo .plan-features li::before { display: none; }

.plan-feature-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Urgency badge */
.plan-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212, 166, 74, 0.08);
  border: 1px solid rgba(212, 166, 74, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.urgency-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.btn-plan-solo {
  width: 100%;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  letter-spacing: 0.08em;
  box-shadow: 0 8px 40px var(--gold-glow);
}
.btn-plan-solo:hover {
  box-shadow: 0 12px 60px var(--gold-glow), 0 0 0 2px var(--gold);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   Breakpoints: 900px tablet | 768px small tablet |
                600px large phone | 480px mid phone |
                380px small phone
═══════════════════════════════════════════════════════ */

/* ── 900px: hide desktop nav, stack grids ─────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }

  .section-grid,
  .section-grid-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .section-grid-reverse > * { direction: ltr; }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .contact-text .section-description { max-width: 100%; }
  .social-dock-wrapper { align-items: center; }

  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }

  .visual-card { max-width: 100%; }
  .comms-card { height: 280px; }
}

/* ── 768px: small tablet / large landscape phone ──── */
@media (max-width: 768px) {
  #main-nav {
    padding: 0 20px;
    height: 60px;
  }

  .nav-cta {
    padding: 7px 14px;
    font-size: 0.7rem;
  }

  .hero-section {
    padding: 90px 16px 72px;
    min-height: 100svh;
  }

  .hero-glass-panel {
    padding: 36px 24px 32px;
    border-radius: var(--radius-lg);
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 5px 12px;
    margin-bottom: 24px;
  }

  .hero-tagline {
    font-size: clamp(0.78rem, 3vw, 1rem);
    letter-spacing: 0.18em;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .hero-description br { display: none; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 13px 24px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding-top: 28px;
  }
  .stat { min-width: 80px; }

  .stat-number {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .content-section {
    padding: 64px 20px;
  }

  .section-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .section-description {
    font-size: 0.92rem;
    max-width: 100%;
  }

  .plans-section {
    padding: 64px 20px;
  }

  .plan-card {
    padding: 32px 24px 28px;
  }

  /* Disable 3D tilt on touch — too jittery */
  .plan-card:hover {
    transform: scale(1.01);
  }

  .contact-section {
    padding: 64px 20px;
  }

  .section-inner { max-width: 100%; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-links {
    justify-content: center;
    gap: 20px;
  }

  .scroll-indicator { display: none; }
}

/* ── 600px: standard phone landscape / large portrait ─ */
@media (max-width: 600px) {
  .hero-glass-panel {
    padding: 28px 18px 28px;
    border-radius: var(--radius-md);
    margin: 0 4px;
  }

  .corner { display: none; }

  .hero-title {
    font-size: clamp(1.8rem, 8.5vw, 2.8rem);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
  }

  .hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
    text-align: center;
  }

  .stat:last-child {
    grid-column: 1 / -1;
  }

  .plan-amount {
    font-size: 2rem;
  }

  .plans-subtitle {
    font-size: 0.88rem;
    margin-bottom: 36px;
  }

  .marquee-item {
    font-size: 0.82rem;
  }

  .social-dock-trigger {
    padding: 12px 22px;
    font-size: 0.75rem;
  }

  .social-icon {
    width: 42px; height: 42px;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .metric-value { font-size: 2.8rem; }
  .comms-card  { height: 240px; }

  .comms-node { width: 44px; height: 44px; font-size: 0.58rem; }
  .node-main  { width: 58px; height: 58px; font-size: 0.62rem; }
}

/* ── 480px: mid-range phones (iPhone SE, Galaxy A-series) */
@media (max-width: 480px) {
  html { scroll-padding-top: 60px; }

  #main-nav { height: 56px; padding: 0 16px; }

  .nav-logo-icon { font-size: 1.1rem; }

  .nav-cta {
    padding: 6px 12px;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }

  .hero-section { padding: 82px 12px 60px; }

  .hero-glass-panel {
    padding: 24px 16px 24px;
  }

  .hero-badge { font-size: 0.6rem; padding: 5px 10px; }

  .hero-title {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
    letter-spacing: 0.01em;
  }

  .hero-description { font-size: 0.85rem; }

  .btn { font-size: 0.75rem; padding: 12px 20px; }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-top: 20px;
  }

  .stat-number { font-size: 1.4rem; }
  .stat-suffix { font-size: 1rem; }
  .stat-label  { font-size: 0.62rem; }

  .section-label { font-size: 0.62rem; }

  .section-title {
    font-size: clamp(1.6rem, 8.5vw, 2.2rem);
  }

  .section-description { font-size: 0.88rem; }

  .feature-item { font-size: 0.85rem; }

  .plan-card { padding: 28px 18px 24px; }
  .plan-amount { font-size: 1.8rem; }
  .plan-name { font-size: 1.2rem; }
  .plan-desc { font-size: 0.82rem; }
  .plan-features li { font-size: 0.82rem; }

  .btn-plan-ghost,
  .btn-plan-gold { padding: 11px 18px; font-size: 0.72rem; }

  .contact-section { padding: 52px 16px; }

  .social-dock-trigger { padding: 11px 18px; }

  .footer-copy { font-size: 0.7rem; }
}

/* ── 380px: very small phones (iPhone 12 mini, Galaxy S9) */
@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(1.35rem, 9.5vw, 1.8rem);
    letter-spacing: 0;
  }

  .hero-glass-panel { padding: 20px 14px 20px; }

  .hero-badge { display: none; }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stat:last-child { grid-column: auto; }

  .plan-card { padding: 22px 14px 20px; }

  .section-title { font-size: clamp(1.5rem, 9vw, 2rem); }

  .nav-cta { display: none; }
}

/* ═══════════════════════════════════════════════════════
   GSAP INITIAL STATES
═══════════════════════════════════════════════════════ */
.gsap-fade-up {
  opacity: 0;
  transform: translateY(40px);
}
.section-text,
.section-visual,
.plan-card,
.visual-card {
  will-change: transform, opacity;
}
