/* ═══════════════════════════════════════════════
   DESIGN SYSTEM
   White background. Navy + Gold as accents.
   Generous whitespace. Premium editorial feel.
═══════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white:       #FFFFFF;
  --ink:         #12172B;
  --ink-800:     #1E2540;
  --ink-600:     #3D4566;
  --ink-400:     #6B7498;
  --ink-200:     #B0B8D4;
  --ink-100:     #DEE2F0;
  --ink-50:      #F4F5FA;
  --gold:        #C8991A;
  --gold-lt:     #E5B820;
  --gold-xlt:    #F6D96A;
  --gold-bg:     #FDF8E8;
  --gold-border: rgba(200,153,26,0.28);
  --amber:       #D4751A;
  --navy:        #12172B;
  --navy-800:    #1A2040;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --mono:  'DM Mono', monospace;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Graph-paper grid — barely-there */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(18,23,43,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,23,43,.028) 1px, transparent 1px),
    linear-gradient(rgba(200,153,26,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,153,26,.014) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 16px 16px, 16px 16px;
}

/* Particle canvas */
#ptc { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .45; }

/* Scroll bar */
#spb {
  position: fixed; top: 0; left: 0; z-index: 900;
  height: 2.5px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--amber), var(--gold-lt));
  transition: width .08s linear;
}

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink-50); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--amber)); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber); }

/* ── TEXT SELECTION ── */
::selection { background: rgba(200,153,26,.2); color: var(--ink); }

/* ── CURSOR GLOW ── */
#cursor-glow {
  position: fixed; width: 320px; height: 320px;
  border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(200,153,26,.07) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  transition: opacity .4s;
  will-change: transform;
}

/* ── PAGE LOADER — Cinematic Intro ── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #0a0c18 0%, #12172B 40%, #1A1F3A 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity .8s cubic-bezier(0.4, 0, 0.2, 1), visibility .8s, transform .8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
#page-loader.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: scale(1.08);
}

/* Floating ambient orbs */
.loader-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.loader-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
}
.loader-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,153,26,0.15), transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat1 6s ease-in-out infinite;
}
.loader-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(212,117,26,0.1), transparent 70%);
  bottom: -80px; right: -80px;
  animation: orbFloat2 8s ease-in-out infinite;
}
.loader-orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(229,184,32,0.08), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: orbFloat3 5s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(40px,30px);} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(-30px,-25px);} }
@keyframes orbFloat3 { 0%,100%{transform:translate(-50%,-50%) scale(1);} 50%{transform:translate(-50%,-50%) scale(1.4);} }

/* Spinning concentric rings */
.loader-rings {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.loader-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid transparent; border-top-color: rgba(200,153,26,0.15);
  top: 50%; left: 50%;
}
.loader-ring-1 {
  width: 200px; height: 200px; margin: -100px 0 0 -100px;
  animation: ringSpin1 4s linear infinite;
  border-top-color: rgba(200,153,26,0.2);
}
.loader-ring-2 {
  width: 280px; height: 280px; margin: -140px 0 0 -140px;
  animation: ringSpin2 6s linear infinite;
  border-top-color: rgba(212,117,26,0.12);
  border-right-color: rgba(200,153,26,0.06);
}
.loader-ring-3 {
  width: 360px; height: 360px; margin: -180px 0 0 -180px;
  animation: ringSpin3 8s linear infinite;
  border-top-color: rgba(229,184,32,0.08);
}
@keyframes ringSpin1 { 0%{transform:rotate(0deg);} 100%{transform:rotate(360deg);} }
@keyframes ringSpin2 { 0%{transform:rotate(0deg);} 100%{transform:rotate(-360deg);} }
@keyframes ringSpin3 { 0%{transform:rotate(0deg);} 100%{transform:rotate(360deg);} }

/* Content container */
.loader-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
}

/* Logo with glow halo */
.loader-logo-wrap {
  position: relative; margin-bottom: 20px;
  opacity: 0;
  animation: logoReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}
.loader-logo-wrap img {
  height: 72px; display: block; position: relative; z-index: 1;
  filter: drop-shadow(0 0 20px rgba(200,153,26,0.4));
}
.loader-logo-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,153,26,0.25) 0%, transparent 70%);
  animation: glowPulse 2s ease-in-out infinite;
  z-index: 0;
}
@keyframes logoReveal {
  0% { opacity: 0; transform: scale(0.5) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes glowPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%,-50%) scale(1.3); opacity: 1; }
}

/* Brand text */
.loader-brand {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: brandReveal 0.8s ease 0.6s forwards;
}
.loader-brand-otm {
  font-family: var(--serif);
  font-size: 36px; font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt), var(--amber));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 3s linear infinite;
  letter-spacing: 0.08em;
}
.loader-brand-research {
  font-family: var(--sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
@keyframes brandReveal {
  0% { opacity: 0; transform: translateY(12px); letter-spacing: 0.5em; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 0; }
}

/* Circular progress ring */
.loader-progress {
  position: relative;
  width: 56px; height: 56px;
  margin-bottom: 24px;
  opacity: 0;
  animation: progressReveal 0.6s ease 0.9s forwards;
}
@keyframes progressReveal {
  0% { opacity: 0; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}
.loader-ring-svg { width: 56px; height: 56px; }
.loader-ring-track {
  stroke: rgba(255,255,255,0.06);
}
.loader-ring-fill {
  stroke: url(#ringGrad);
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 28px 28px;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.08s linear;
  /* fallback color if gradient not available */
  stroke: var(--gold);
}
.loader-pct {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

/* Tagline */
.loader-tagline {
  font-family: var(--serif);
  font-size: 14px; font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
  opacity: 0;
  animation: taglineReveal 0.8s ease 1.2s forwards;
}
@keyframes taglineReveal {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Loader particle dots */
.loader-particles {
  position: absolute; inset: -100px; pointer-events: none;
}

/* ═══════════════════════════════════════════════
   TOP TICKER STRIP
═══════════════════════════════════════════════ */
.ticker {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 32px;
  background: var(--navy);
  display: flex; align-items: center; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-track {
  display: flex; white-space: nowrap; will-change: transform;
  animation: ticker 45s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 32px;
  font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border-right: 1px solid rgba(255,255,255,.06);
  white-space: nowrap;
}
.ticker-item .td { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════ */
header {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 400;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,153,26,.16);
  animation: navSlide .7s ease forwards;
}
@keyframes navSlide { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-link img { height: 46px; width: auto; display: block; }

.brand-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin-left: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.header-right { display: flex; align-items: center; gap: 20px; }

.launch-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
}
.lp-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: ldot 2.4s ease infinite; }
@keyframes ldot { 0%,100%{box-shadow:0 0 0 0 rgba(200,153,26,.5);} 50%{box-shadow:0 0 0 5px rgba(200,153,26,.12);} }
.lp-text { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); }

/* ═══════════════════════════════════════════════
   FLOATING PRODUCT CARDS — Premium Glassmorphism
═══════════════════════════════════════════════ */
.float-zone { position: absolute; inset: 0; pointer-events: none; z-index: 10; }
.fc {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200,153,26,0.12);
  border-radius: 18px;
  padding: 20px 22px;
  min-width: 168px;
  box-shadow: 0 4px 32px rgba(18,23,43,.08), 0 0 0 1px rgba(200,153,26,0.04);
  opacity: 0;
  pointer-events: auto;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.fc-lbl {
  display: flex; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.fc-lbl-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  animation: fcLblDotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes fcLblDotPulse { 0%,100%{opacity:1; box-shadow: 0 0 0 0 rgba(200,153,26,0.4);} 50%{opacity:0.5; box-shadow: 0 0 0 3px rgba(200,153,26,0.1);} }
.fc-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-bg), rgba(200,153,26,0.08));
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.fc-icon::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(200,153,26,0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.fc:hover .fc-icon {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(200,153,26,0.2);
}
.fc:hover .fc-icon::after { opacity: 1; }
.fc-title { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--ink); line-height: 1.2; margin-bottom: 8px; }
.fc-tag {
  display: inline-block; font-size: 9.5px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 999px; padding: 4px 11px; color: var(--amber);
  transition: background 0.3s, border-color 0.3s;
}
.fc:hover .fc-tag { background: rgba(200,153,26,0.12); border-color: rgba(200,153,26,0.3); }

.fc1 { top: 18%; left: 4%; animation: fcSlideIn .9s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s forwards, bob1 8s ease-in-out 2s infinite; }
.fc2 { top: 50%; left: 3%; animation: fcSlideIn .9s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards, bob2 9s ease-in-out 2.4s infinite; }
.fc3 { top: 22%; right: 4%; animation: fcSlideIn .9s cubic-bezier(0.34, 1.56, 0.64, 1) 1.3s forwards, bob2 7.5s ease-in-out 2.2s infinite; }
.fc4 { top: 56%; right: 3.5%; animation: fcSlideIn .9s cubic-bezier(0.34, 1.56, 0.64, 1) 1.7s forwards, bob1 8.5s ease-in-out 2.6s infinite; }
@keyframes fcSlideIn {
  0% { opacity: 0; transform: translateY(24px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bob1 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
@keyframes bob2 { 0%,100%{transform:translateY(-6px);} 50%{transform:translateY(8px);} }
.fc:hover {
  box-shadow: 0 16px 56px rgba(200,153,26,.18), 0 0 0 1px rgba(200,153,26,0.15);
  border-color: rgba(200,153,26,0.3);
  transform: translateY(-6px) scale(1.03) !important;
}

/* Floating Card SVG Animations — Enhanced */
.fc-anim-sig-path {
  stroke-dasharray: 100; stroke-dashoffset: 100;
  animation: fcSigDraw 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes fcSigDraw {
  0%, 10% { stroke-dashoffset: 100; opacity: 0; }
  20% { opacity: 1; }
  60%, 100% { stroke-dashoffset: 0; opacity: 1; }
}
.fc-anim-sig-node {
  animation: fcNodePop 3s ease-in-out infinite;
  transform-origin: center;
}
@keyframes fcNodePop {
  0%, 30% { transform: scale(0); opacity: 0; }
  45%, 85% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.5); opacity: 0; }
}
.fc-anim-sig-pulse {
  animation: fcSigPulse 3s ease-out infinite;
  transform-origin: 23px 6px;
}
@keyframes fcSigPulse {
  0%, 60% { transform: scale(0); opacity: 0; }
  80% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(2); opacity: 0; }
}

.fc-anim-bsk-body {
  animation: fcBskFloat 4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes fcBskFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
.fc-anim-bsk-handle {
  stroke-dasharray: 30; stroke-dashoffset: 30;
  animation: fcHandleBounce 4s ease-in-out infinite;
}
@keyframes fcHandleBounce { 0%, 10%, 100% { stroke-dashoffset: 30; } 40%, 80% { stroke-dashoffset: 0; } }
.fc-anim-bsk-gem {
  animation: fcGemGlow 2s ease-in-out infinite alternate;
}
@keyframes fcGemGlow { 0% { opacity: 0.3; filter: blur(0px); } 100% { opacity: 1; filter: blur(1px); } }

.fc-anim-alrt-base {
  animation: fcAlrtPulse 2.5s ease-in-out infinite;
}
@keyframes fcAlrtPulse { 0%, 100% { stroke-width: 1.5; } 50% { stroke-width: 2.5; filter: drop-shadow(0 0 5px var(--amber)); } }
.fc-anim-alrt-wave {
  animation: fcAlrtWave 2.5s ease-out infinite;
  transform-origin: 14px 14px;
}
.fc-anim-alrt-wave:nth-child(2) { animation-delay: 0.4s; }
@keyframes fcAlrtWave { 0% { transform: scale(0.5); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } }
.fc-anim-alrt-ping {
  animation: fcAlrtPing 1.25s ease-in-out infinite alternate;
}
@keyframes fcAlrtPing { from { opacity: 0.2; } to { opacity: 0.8; stroke-width: 2; } }

.fc-anim-doc {
  animation: fcDocFloat 4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes fcDocFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-1px);} }
.fc-anim-doc-fold {
  stroke-dasharray: 18; stroke-dashoffset: 18;
  animation: fcFoldDraw 3.5s ease-out infinite;
}
@keyframes fcFoldDraw { 0%,10%{stroke-dashoffset:18;opacity:0;} 30%,100%{stroke-dashoffset:0;opacity:1;} }
.fc-anim-doc-l1 {
  stroke-dasharray: 12; stroke-dashoffset: 12;
  animation: fcDocType 3.5s ease-out 0.3s infinite;
}
.fc-anim-doc-l2 {
  stroke-dasharray: 8; stroke-dashoffset: 8;
  animation: fcDocType 3.5s ease-out 0.6s infinite;
}
@keyframes fcDocType {
  0%,10% { stroke-dashoffset: 12; opacity: 0; }
  25% { opacity: 1; }
  45%,85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 12; opacity: 0; }
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
main { position: relative; z-index: 5; padding-top: 70px; min-height: 100vh; }

.hero {
  max-width: 100%; margin: 0 auto;
  padding: 40px 40px 64px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}

/* entrance animations */
.a1{opacity:0;transform:translateY(20px);animation:up .85s ease .1s forwards}
.a2{opacity:0;transform:translateY(24px);animation:up .95s ease .25s forwards}
.a3{opacity:0;transform:translateY(20px);animation:up .85s ease .42s forwards}
.a4{opacity:0;transform:translateY(18px);animation:up .8s ease .56s forwards}
.a5{opacity:0;transform:translateY(16px);animation:up .8s ease .7s forwards}
.a6{opacity:0;transform:translateY(16px);animation:up .8s ease .84s forwards}
.a7{opacity:0;transform:translateY(14px);animation:up .75s ease .98s forwards}
.a8{opacity:0;transform:translateY(14px);animation:up .75s ease 1.12s forwards}
@keyframes up { to { opacity:1; transform:translateY(0); } }

/* chip */
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 20px; border-radius: 999px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--gold), var(--amber), var(--gold-lt)) border-box;
  font-size: 10.5px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 40px;
  animation: chipShine 4s linear infinite;
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: cdot 2s ease infinite; }
@keyframes cdot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.4;transform:scale(.7);} }
@keyframes chipShine {
  0%   { background: linear-gradient(white,white) padding-box, linear-gradient(0deg,var(--gold),var(--amber),var(--gold-lt)) border-box; }
  100% { background: linear-gradient(white,white) padding-box, linear-gradient(360deg,var(--gold),var(--amber),var(--gold-lt)) border-box; }
}

/* headline */
.headline {
  font-family: var(--serif);
  font-size: clamp(48px, 7.5vw, 92px);
  font-weight: 400; line-height: 1.05; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 18px;
}
.headline em {
  font-style: italic; font-weight: 300; display: block;
  background: linear-gradient(90deg, var(--gold) 0%, var(--amber) 30%, var(--gold-xlt) 55%, var(--gold) 80%, var(--amber) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { from{background-position:220% center;} to{background-position:-220% center;} }

.sub-head { font-family: var(--serif); font-size: clamp(18px,2.4vw,26px); font-style: italic; font-weight: 400; color: var(--ink-400); margin-bottom: 28px; }

.desc { max-width: 520px; font-size: 16.5px; font-weight: 400; line-height: 1.82; color: var(--ink-800); margin-bottom: 52px; }

/* ── COUNTDOWN ── */
.cd-wrap { margin-bottom: 52px; text-align: center; }
.cd-label { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.cd-label::before, .cd-label::after { content:''; display:block; width:28px; height:1px; background:linear-gradient(90deg,transparent,var(--gold)); }
.cd-label::after { background:linear-gradient(90deg,var(--gold),transparent); }

.countdown {
  display: inline-flex;
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 0 var(--gold-border), 0 8px 40px rgba(200,153,26,.1);
  animation: cdGlow 3s ease-in-out infinite;
}
@keyframes cdGlow { 0%,100%{box-shadow:0 2px 0 var(--gold-border),0 8px 40px rgba(200,153,26,.06);} 50%{box-shadow:0 2px 0 var(--gold-border),0 12px 56px rgba(200,153,26,.2);} }

.cdu {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 40px;
  border-right: 1px solid var(--gold-border);
  min-width: 110px;
}
.cdu:last-child { border-right: none; }
.cdn {
  font-family: var(--mono);
  font-size: 52px; font-weight: 300; line-height: 1; letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  background-size: 220% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 4s linear infinite;
  transition: transform .12s ease;
}
.cdn.flip { transform: translateY(-5px); }
.cdt { font-size: 9.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-200); margin-top: 6px; }

/* ── QUOTE BELOW TIMER ── */
.cd-quote {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeQuote 1.2s ease 1.5s forwards;
  position: relative;
  width: 100%;
}
@keyframes fadeQuote { from{opacity:0;transform:translateY(18px);} to{opacity:1;transform:translateY(0);} }
.cd-quote-mark {
  font-family: var(--serif);
  font-size: 96px; font-weight: 300; line-height: .45;
  color: var(--gold); opacity: .24;
  margin-bottom: 8px; user-select: none; letter-spacing: -.05em;
}
.cd-quote-text {
  font-family: var(--serif);
  font-size: clamp(19px, 2.5vw, 25px);
  font-weight: 500; font-style: italic; line-height: 1.6;
  color: var(--ink); text-align: center; max-width: 640px;
  margin: 0; letter-spacing: -.005em;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}
.cd-quote-text em {
  font-style: italic; font-weight: 700;
  color: #b45309 !important;
  background: none !important;
  -webkit-text-fill-color: #b45309 !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  display: inline !important;
}
.cd-quote-bar, .cd-quote-line {
  margin-top: 28px; width: 64px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  opacity: 0.6;
}

/* ── FOUR PILLARS (SERVICES) ── */
.svc-section { width: 100%; max-width: 1360px; margin: 0 auto 80px; padding: 0 40px; text-align: center; }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  text-align: left;
}
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }

.scard {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--ink-100);
  border-top: 4px solid var(--c-accent);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.02);
  display: flex; flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.scard:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.07);
  z-index: 2;
}
.scard-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--c-bg); color: var(--c-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.scard:hover .scard-icon {
  transform: scale(1.15) rotate(-5deg);
  background: var(--c-accent); color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.scard-lbl { font-size: 9px; font-weight: 700; letter-spacing: 0.15em; color: var(--c-accent); text-transform: uppercase; margin-bottom: 8px; }
.scard-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); line-height: 1.2; margin-bottom: 12px; }
.scard-desc { font-size: 13.5px; font-weight: 400; color: var(--ink-600); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.scard-tag {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  padding: 6px 12px; border-radius: 99px; border: 1px solid var(--ink-100);
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.05em; color: var(--ink-400);
  background: #fff; z-index: 2;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.scard:hover .scard-tag { border-color: var(--c-accent); color: var(--c-accent); }
.scard-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); animation: scardDotPulse 2s ease-in-out infinite; }
@keyframes scardDotPulse { 0%,100%{box-shadow: 0 0 0 0 var(--c-accent); opacity: 1;} 50%{box-shadow: 0 0 0 4px transparent; opacity: 0.6;} }
.scard-orb {
  position: absolute; bottom: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--c-bg); z-index: 0; opacity: 0.4;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.scard:hover .scard-orb { transform: scale(1.3); opacity: 0.7; }

/* ── WAITLIST FORM ── */
/* ═══════════════════════════════════════════════
   WAITLIST  —  redesigned: premium, animated, creative
═══════════════════════════════════════════════ */

/* outer wrapper */
.wl-outer {
  max-width: 600px; width: 100%;
  margin-bottom: 36px;
  position: relative;
}

/* ambient glow behind the card */
.wl-outer::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 80%; height: 80%;
  background: radial-gradient(ellipse, rgba(200,153,26,.13) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: wlGlow 4s ease-in-out infinite;
}
@keyframes wlGlow { 0%,100%{opacity:.6;transform:translate(-50%,-50%) scale(1);} 50%{opacity:1;transform:translate(-50%,-50%) scale(1.12);} }

/* section label above card */
.wl-label {
  text-align: center; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  position: relative; z-index: 1;
}
.wl-label span {
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber);
  display: flex; align-items: center; gap: 8px;
}
.wl-label span::before, .wl-label span::after {
  content: '◆'; font-size: 5px; color: var(--gold); opacity: .6;
}
.wl-label::before, .wl-label::after {
  content:''; flex:1; max-width:60px; height:1px;
  background: linear-gradient(90deg, transparent, var(--gold-border));
}
.wl-label::after { background: linear-gradient(90deg, var(--gold-border), transparent); }

/* THE CARD */
.wl-card {
  background: #ffffff;
  border: 1px solid rgba(220, 205, 185, 0.4);
  border-radius: 24px;
  overflow: hidden;
  position: relative; z-index: 1;
  box-shadow:
    0 12px 48px rgba(35, 30, 25, 0.04),
    0 2px 12px rgba(35, 30, 25, 0.02);
  transition: box-shadow .4s ease, transform .3s ease;
}
.wl-card:hover {
  box-shadow:
    0 16px 56px rgba(35, 30, 25, 0.07),
    0 2px 16px rgba(35, 30, 25, 0.03);
  transform: translateY(-2px);
}

/* animated gradient top bar */
.wl-bar {
  height: 4px;
  background: linear-gradient(90deg,
    var(--gold) 0%, var(--amber) 25%,
    var(--gold-lt) 50%, var(--amber) 75%, var(--gold) 100%);
  background-size: 400% 100%;
  animation: wlbar 2s linear infinite;
  position: relative;
}
.wl-bar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: barSheen 2.5s ease infinite;
}
@keyframes wlbar { from{background-position:0 0;} to{background-position:400% 0;} }
@keyframes barSheen { 0%{transform:translateX(-200%);} 100%{transform:translateX(200%);} }

/* card header area */
.wl-header {
  padding: 36px 36px 0;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
}
.wl-header-left {}
.wl-header-title {
  font-family: var(--serif);
  font-size: 26px; font-weight: 600;
  color: #231F1C; line-height: 1.2; margin-bottom: 4px;
}
.wl-header-title em {
  font-family: var(--serif);
  font-style: italic;
  color: #b45309 !important;
  font-weight: 500;
}
.wl-header-sub {
  font-size: 13px; font-weight: 400;
  color: #7F7362; letter-spacing: .01em;
  margin-top: 4px;
}
/* live counter badge */
.wl-live-badge {
  display: flex; align-items: center; gap: 7px;
  background: #FDF8E8; border: 1px solid rgba(180, 83, 9, 0.15);
  border-radius: 999px; padding: 6px 12px; flex-shrink: 0;
}
.wl-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #b45309; animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(180, 83, 9,.5);} 50%{opacity:.7;box-shadow:0 0 0 4px rgba(180, 83, 9,.18);} }
.wl-live-text { font-family: var(--mono); font-size: 10px; font-weight: 600; color: #b45309; letter-spacing: .06em; }

.wl-body { padding: 24px 36px 36px; }

/* Form field groups */
.wl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.wl-full-row { margin-bottom: 16px; }
.wl-group { display: flex; flex-direction: column; }

.wl-input-lbl {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: #A09485; margin-bottom: 8px; display: block;
}

/* Section Titles and Icons inside waitlist form */
.wl-sec-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.wl-sec-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #A09485;
}
.wl-sec-ico {
  width: 14px;
  height: 14px;
  color: #b45309;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.svc-badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: #b45309;
  background: #FDF8E8;
  border: 1px solid rgba(180, 83, 9, 0.15);
  border-radius: 999px;
  padding: 4px 10px;
}
.spacer-top {
  margin-top: 24px;
}

/* Input field */
.wl-field {
  display: flex; align-items: center;
  background: #FAF6EE;
  border: 1.5px solid #EDE7DF;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.wl-field::before {
  content: '';
  position: absolute; inset: 0; border-radius: 12px; pointer-events: none;
  background: linear-gradient(135deg, rgba(180, 83, 9, .03), transparent);
  opacity: 0; transition: opacity .25s;
}
.wl-field:focus-within {
  border-color: #b45309;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(180, 83, 9, .08);
}
.wl-field:focus-within::before { opacity: 1; }

.wl-fi {
  width: 48px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  color: #A09485;
  border-right: 1.5px solid #EDE7DF; flex-shrink: 0;
  transition: color .25s, border-color .25s, background .25s;
}
.wl-field:focus-within .wl-fi {
  color: #b45309;
  border-right-color: rgba(180, 83, 9, .15);
  background: rgba(180, 83, 9, .03);
}
.wl-fi svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }

.wl-flag {
  display: flex; align-items: center;
  padding: 0 14px; height: 54px;
  border-right: 1.5px solid #EDE7DF;
  background: #FAF6EE;
  white-space: nowrap; flex-shrink: 0;
  transition: border-color .25s, background .25s;
}
.wl-field:focus-within .wl-flag {
  border-right-color: rgba(180, 83, 9, .15);
  background: rgba(180, 83, 9, .03);
}
.flag-text { font-family: var(--sans); font-size: 12.5px; color: #7F7362; font-weight: 500; }
.flag-text strong { color: #231F1C; font-weight: 700; }

.wl-field input {
  flex: 1; min-width: 0; height: 54px; padding: 0 16px;
  background: transparent; border: none; outline: none;
  font-family: var(--sans); font-size: 14.5px; font-weight: 500;
  color: #231F1C; letter-spacing: .01em;
}
.wl-field input::placeholder { color: #A09485; font-size: 14px; font-weight: 400; }
.wl-field.err { border-color: #E04B4B; box-shadow: 0 0 0 3px rgba(224,75,75,.1); animation: shake .35s ease; }
@keyframes shake { 0%,100%{transform:translateX(0);} 25%{transform:translateX(-6px);} 75%{transform:translateX(6px);} }

.wl-field-caption {
  font-size: 11.5px; color: #A09485; margin-top: 6px; font-weight: 400;
}

/* Submit button — premium dark charcoal (centered and animated) */
.wl-btn {
  width: 100%; height: 58px;
  background: #1C1816;
  color: #ffffff; border: none; cursor: pointer;
  border-radius: 14px;
  font-family: var(--sans); font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 28px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 18px rgba(28, 24, 22, 0.15);
  transition: transform .18s, box-shadow .2s, background .2s, opacity .2s;
  border: 1px solid rgba(220, 205, 185, 0.1);
  animation: btnGlowPulse 3s infinite ease-in-out;
}
.wl-btn::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.wl-btn:hover {
  background: #2D2623;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(180, 83, 9, 0.28);
  animation: none; /* stop pulsing on hover */
}
.wl-btn:hover::after {
  animation: btnSweep 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.wl-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 4px 12px rgba(28, 24, 22, 0.1);
}

@keyframes btnSweep {
  0% { left: -100%; }
  100% { left: 180%; }
}
@keyframes btnGlowPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(28, 24, 22, 0.12); }
  50% { box-shadow: 0 4px 28px rgba(180, 83, 9, 0.15); }
}

.wl-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.wl-arr {
  width: 32px; height: 32px; border-radius: 50%;
  background: #b45309;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.3);
  transition: transform .18s, background .18s;
}
.wl-btn:hover .wl-arr {
  transform: translateX(4px);
  background: #d97706;
}

/* Submitting Post-Click Loader Animation */
.wl-spin-icn {
  display: none;
}
.wl-btn.submitting {
  pointer-events: none;
  opacity: 0.85;
  box-shadow: 0 4px 12px rgba(28, 24, 22, 0.1) !important;
  transform: none !important;
  animation: none !important;
}
.wl-btn.submitting .wl-arr {
  background: #b45309 !important;
  transform: none !important;
}
.wl-btn.submitting .wl-arr-icn {
  display: none;
}
.wl-btn.submitting .wl-spin-icn {
  display: block;
  animation: spinSubmit 0.9s linear infinite;
}
@keyframes spinSubmit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* trust strip */
.wl-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 16px; flex-wrap: wrap;
}
.trust-i {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 500; color: #A09485;
}
.trust-i svg { width:12px;height:12px; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }

/* ── SUCCESS STATE ── */
.wl-success {
  display: none;
  background: linear-gradient(135deg, #F0FDF6, #E8FAF1);
  border: 1px solid #A8E6BF;
  border-radius: 24px; padding: 52px 36px; text-align: center;
  position: relative; overflow: hidden; z-index: 1;
}
.wl-success::before {
  content: '';
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,138,82,.08), transparent);
  pointer-events: none;
}
.ws-ring {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #1E8A52, #27AE60);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 32px rgba(30,138,82,.3), 0 0 0 8px rgba(30,138,82,.08);
  animation: successPop .6s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes successPop { from{transform:scale(0);opacity:0;} to{transform:scale(1);opacity:1;} }
.ws-h { font-family:var(--serif);font-size:28px;font-weight:500;color:#166534;margin-bottom:10px; }
.ws-p { font-size:14px;font-weight:300;color:#15803D;line-height:1.8; }

/* social proof */
.wl-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 24px;
}
.wl-avs { display: flex; }
.wl-av {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid #ffffff; display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 700; color: #ffffff; margin-left: -8px;
  box-shadow: 0 2px 6px rgba(18,23,43,0.06);
  transition: transform .2s;
  flex-shrink: 0;
}
.wl-av:first-child { margin-left: 0; }
.wl-av:hover { transform: translateY(-3px) scale(1.1); z-index: 5; }
.wl-av:nth-child(1) { background: #b45309; }
.wl-av:nth-child(2) { background: #3b82f6; }
.wl-av:nth-child(3) { background: #10b981; }
.wl-av:nth-child(4) { background: #8b5cf6; }
.wl-proof-txt { font-size:13.5px; font-weight: 500; color: #7F7362; }
.wl-proof-txt strong { font-weight:700; color: #231F1C; }

/* ═══════════════════════════════════════════════
   PLATFORM COMPLETION  —  redesigned: cinematic
═══════════════════════════════════════════════ */
.prog-wrap {
  max-width: 600px; width: 100%;
  background: #fff;
  border: 1px solid rgba(200,153,26,.18);
  border-radius: 24px;
  padding: 32px 32px 28px;
  box-shadow:
    0 4px 24px rgba(18,23,43,.05),
    0 0 60px rgba(200,153,26,.07);
  margin-bottom: 48px;
  position: relative; overflow: hidden;
}
/* Subtle corner accent */
.prog-wrap::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle at top right, rgba(200,153,26,.08), transparent 70%);
  pointer-events: none;
}

/* top row: label + live animated counter */
.prog-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 24px;
}
.prog-left {}
.prog-lbl {
  font-size: 10px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-400);
  display: block; margin-bottom: 5px;
}
.prog-sublbl { font-size: 12.5px; font-weight: 300; color: var(--ink-300); }

/* big animated percentage */
.prog-right { text-align: right; }
.prog-pct {
  font-family: var(--serif);
  font-size: 52px; font-weight: 500; line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 50%, var(--gold-lt) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 4s linear infinite;
  letter-spacing: -.03em;
}
.prog-pct-lbl {
  font-size: 9.5px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-200);
  margin-top: 3px;
}

/* circular arc ring */
.prog-ring-wrap {
  display: flex; justify-content: center;
  margin-bottom: 28px; position: relative;
}
.prog-ring-svg { width: 120px; height: 120px; }
.prog-ring-track { fill: none; stroke: var(--ink-50); stroke-width: 8; }
.prog-ring-fill {
  fill: none; stroke-width: 8;
  stroke: url(#ringGrad);
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 60px 60px;
  stroke-dasharray: 326;
  stroke-dashoffset: 326;
  transition: stroke-dashoffset 2s cubic-bezier(.34,1.1,.64,1);
}
.prog-ring-fill.animated { stroke-dashoffset: 42; } /* 326 * (1 - 0.87) ≈ 42 */
.prog-ring-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  display: flex; flex-direction: column; align-items: center;
}
.prog-ring-num {
  font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.prog-ring-unit {
  font-family: var(--mono); font-size: 9px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-300);
  margin-top: 2px;
}

/* segmented bar */
.prog-bar-label {
  font-size: 9.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-300);
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.prog-bar-label::after {
  content:''; flex:1; height:1px;
  background: linear-gradient(90deg, var(--ink-100), transparent);
}
.prog-segs {
  display: flex; gap: 4px; height: 10px; margin-bottom: 20px;
  border-radius: 999px; overflow: hidden;
}
.pseg {
  flex: 1; border-radius: 3px;
  background: var(--ink-50);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.pseg.on {
  background: linear-gradient(90deg, var(--gold), var(--amber));
}
/* travelling sheen across ALL filled bars */
.prog-segs.animate .pseg.on::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: translateX(-100%);
  animation: segsh 2.4s ease var(--i, 0s) infinite;
}
@keyframes segsh { 0%{transform:translateX(-100%);} 40%,100%{transform:translateX(200%);} }
.pseg.half { background: linear-gradient(90deg, var(--gold), rgba(212,117,26,.25)); }

/* milestones */
.prog-miles {
  display: flex; justify-content: space-between;
  align-items: flex-start; padding-top: 4px;
}
.pmile {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 600; color: var(--ink-200);
  letter-spacing: .08em; text-transform: uppercase; text-align: center;
  position: relative;
}
/* connecting line between milestones */
.pmile:not(:last-child)::after {
  content: '';
  position: absolute; top: 5px; left: calc(50% + 7px);
  width: calc(100% + 14px);
  height: 1px;
  background: var(--ink-100);
  z-index: 0;
}
.pmile.done:not(:last-child)::after {
  background: linear-gradient(90deg, var(--amber), var(--gold-border));
}
.pmile-dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--ink-100);
  background: #fff;
  z-index: 1; position: relative;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.pmile.done .pmile-dot {
  background: var(--amber); border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,117,26,.18), 0 2px 8px rgba(212,117,26,.3);
}
.pmile.active .pmile-dot {
  background: #fff; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,153,26,.2), 0 2px 8px rgba(200,153,26,.2);
  animation: mpulse 1.8s ease infinite;
}
@keyframes mpulse {
  0%,100%{box-shadow:0 0 0 3px rgba(200,153,26,.2),0 2px 8px rgba(200,153,26,.2);}
  50%{box-shadow:0 0 0 7px rgba(200,153,26,.06),0 4px 12px rgba(200,153,26,.1);}
}
.pmile-label { position: relative; z-index: 1; }
.pmile.done .pmile-label { color: var(--amber); }
.pmile.active .pmile-label { color: var(--gold); }

/* Stats strip */
.stats-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--ink-100); border-radius: 14px;
  overflow: hidden; max-width: 600px; width: 100%;
  margin-bottom: 48px; background: var(--ink-50);
  gap: 1px;
}
.ss { background:#fff;padding:22px 18px;text-align:center;transition:background .2s,transform .18s; }
.ss:hover { background:var(--gold-bg);transform:translateY(-2px); }
.ss-n { font-family:var(--serif);font-size:32px;font-weight:500;background:linear-gradient(135deg,var(--gold),var(--amber));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;line-height:1;margin-bottom:5px; }
.ss-l { font-size:9.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-400); }

/* Broker compat */
.compat { display:flex;align-items:center;gap:8px;flex-wrap:wrap;justify-content:center;margin-bottom:14px; }
.compat-lbl { font-size:10px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-200);margin-right:4px; }
.bpill { background:var(--ink-50);border:1px solid var(--ink-100);border-radius:999px;padding:5px 13px;font-size:11px;font-weight:500;color:var(--ink-400);transition:background .18s,border-color .18s,color .18s; }
.bpill:hover { background:var(--gold-bg);border-color:var(--gold-border);color:var(--amber); }

/* ═══════════════════════════════════════════════
   SECTIONS BELOW HERO
═══════════════════════════════════════════════ */
.sections { position:relative;z-index:5;background:#fff; }

/* Section wrapper */
.sec-inner { max-width: 960px; margin: 0 auto; padding: 96px 48px; }

.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 20px;
}
.sec-eyebrow::before { content:''; display:block; width:24px;height:1.5px; background:linear-gradient(90deg,var(--gold),var(--amber)); border-radius:2px; }

.sec-title {
  font-family: var(--serif);
  font-size: clamp(38px,5.5vw,64px);
  font-weight: 400; line-height: 1.04; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 24px;
}
.sec-title em { font-style:italic;font-weight:300;background:linear-gradient(135deg,var(--gold),var(--amber));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }

/* ── ABOUT US (PREMIUM SPLIT LAYOUT) ── */
.about-sec { border-top: 1px solid var(--ink-100); background: #fff; position: relative; overflow: hidden; padding-bottom: 40px; }
.ab-orb {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,153,26,0.05) 0%, rgba(139,92,246,0.03) 40%, transparent 70%);
  top: -200px; right: -200px; border-radius: 50%; z-index: 0; pointer-events: none;
}
.about-sec .sec-inner { position: relative; z-index: 1; }

.ab-split {
  display: flex; gap: 80px; align-items: center; margin-top: 32px;
}
.ab-left { flex: 1; max-width: 480px; }
.ab-lead { font-size: 17px; line-height: 1.8; color: var(--ink-800); margin-bottom: 40px; }

.ab-stats { display: flex; gap: 40px; }
.ab-stat { display: flex; flex-direction: column; gap: 4px; border-left: 2px solid var(--gold); padding-left: 16px; }
.ab-stat-n { font-family: var(--serif); font-size: 32px; font-weight: 500; color: var(--ink); line-height: 1; }
.ab-stat-l { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-400); }

.ab-right {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative;
}
.ab-card {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 20px; padding: 32px 28px;
  border: 1px solid var(--ink-100);
  box-shadow: 0 4px 24px rgba(0,0,0,0.02);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative; overflow: hidden;
}
.ab-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.06); z-index: 2; }
.ab-offset { margin-top: 40px; }
.ab-offset-more { grid-column: span 2; margin-top: 16px; }
.ab-card:hover.ab-offset { transform: translateY(-8px) scale(1.02); }
.ab-card:hover.ab-offset-more { transform: translateY(-8px) scale(1.02); }

.ab-ico {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ab-ico svg { width: 24px; height: 24px; } /* CRITICAL BUG FIX */
.ab-card:hover .ab-ico { transform: scale(1.15) rotate(-5deg); }

.ab-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.ab-card p { font-size: 13.5px; color: var(--ink-600); line-height: 1.6; margin: 0; }

/* Apply Colors */
.ab-card.clr-1 { border-top: 4px solid #f97316; }
.ab-card.clr-1 .ab-ico { background: #ffedd5; color: #f97316; }
.ab-card.clr-6 { border-top: 4px solid #ec4899; }
.ab-card.clr-6 .ab-ico { background: #fce7f3; color: #ec4899; }
.ab-card.clr-5 { border-top: 4px solid #3b82f6; }
.ab-card.clr-5 .ab-ico { background: #dbeafe; color: #3b82f6; }

@media (max-width: 992px) {
  .ab-split { flex-direction: column; gap: 64px; }
  .ab-left { max-width: 100%; text-align: center; }
  .ab-stats { justify-content: center; }
  .ab-right { width: 100%; max-width: 600px; margin: 0 auto; }
  .ab-offset { margin-top: 0; }
  .ab-offset-more { margin-top: 0; grid-column: span 1; max-width: 100%; }
  .ab-card:hover.ab-offset, .ab-card:hover.ab-offset-more { transform: translateY(-8px) scale(1.02); }
  .ab-right { grid-template-columns: 1fr; }
}

/* ── PHILOSOPHY ── */
.phil-sec { border-top: 1px solid var(--ink-100); }

.phil-grid { display:grid;grid-template-columns:1.1fr 1fr;gap:64px;align-items:center; }
.phil-lead { font-size:17.5px;font-weight:400;color:var(--ink-800);line-height:1.9;margin-bottom:32px;max-width:400px; }
.phil-quote { border-left:3.5px solid var(--gold);padding-left:24px;font-family:var(--serif);font-size:24px;font-style:italic;font-weight:500;color:var(--ink);line-height:1.55; }

.phil-cards { display:flex;flex-direction:column;gap:16px; }
.pcrd {
  background:var(--ink-50);border:1px solid var(--ink-100);border-radius:13px;
  padding:22px 22px;
  display:flex;align-items:flex-start;gap:16px;
  transition:background .2s,border-color .2s,box-shadow .2s;
  cursor:default;
}
.pcrd:hover { background:#fff;border-color:rgba(200,153,26,.4);box-shadow:0 6px 28px rgba(200,153,26,.1); }
.pcrd-icon { width:40px;height:40px;border-radius:10px;background:#fff;border:1px solid var(--ink-100);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background .2s,border-color .2s; }
.pcrd:hover .pcrd-icon { background:var(--gold-bg);border-color:var(--gold-border); }
.pcrd-icon svg { width:18px;height:18px;fill:none;stroke:var(--ink-400);stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;transition:stroke .2s; }
.pcrd:hover .pcrd-icon svg { stroke:var(--amber); }
.pcrd-title { font-size:14px;font-weight:600;color:var(--ink);margin-bottom:4px; }
.pcrd-desc { font-size:13.5px;font-weight:400;color:var(--ink-600);line-height:1.65; }

/* ── WHY CHOOSE ── */
.wc-sec { border-top:1px solid var(--ink-100);background:var(--ink-50); }
.wc-head { text-align:center;margin-bottom:56px; }
.wc-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--ink-100);border:1px solid var(--ink-100);border-radius:18px;overflow:hidden;box-shadow:0 4px 32px rgba(18,23,43,.06); }
.wcard {
  background:#fff;padding:38px 32px;
  transition:background .22s,transform .22s,box-shadow .22s;
  cursor:default;position:relative;overflow:hidden;
}
.wcard::after { content:'';position:absolute;bottom:0;left:0;right:0;height:2.5px;background:linear-gradient(90deg,var(--gold),var(--amber));transform:scaleX(0);transform-origin:left;transition:transform .4s ease; }
.wcard:hover { background:var(--gold-bg);transform:translateY(-3px);box-shadow:0 8px 32px rgba(200,153,26,.1); }
.wcard:hover::after { transform:scaleX(1); }
.wc-num { font-family:var(--mono);font-size:11px;font-weight:400;color:var(--gold);letter-spacing:.1em;margin-bottom:16px; }
.wc-ico { width:48px;height:48px;border-radius:12px;background:var(--gold-bg);border:1px solid var(--gold-border);display:flex;align-items:center;justify-content:center;margin-bottom:18px;transition:background .2s,border-color .2s; }
.wcard:hover .wc-ico { background:rgba(200,153,26,.18);border-color:rgba(200,153,26,.45); }
.wc-ico svg { width:22px;height:22px;fill:none;stroke:var(--amber);stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round; }
.wc-title { font-size:15.5px;font-weight:600;color:var(--ink);margin-bottom:9px;line-height:1.3; }
.wc-desc { font-size:14.5px;font-weight:400;color:var(--ink-600);line-height:1.75; }

/* ═══════════════════════════════════════════════
   FOOTER  —  Premium Redesigned
═══════════════════════════════════════════════ */
footer {
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, #0a0c18 0%, #0d0f1a 40%, #101325 100%);
  overflow: hidden;
}

/* Animated gold top accent line */
.footer-glow {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 30%, var(--gold-lt) 55%, var(--amber) 78%, transparent 95%);
  z-index: 2;
  animation: footerGlowPulse 3s ease-in-out infinite;
}
@keyframes footerGlowPulse {
  0%,100% { opacity: .7; }
  50% { opacity: 1; }
}
/* Glow aura under the line */
.footer-glow::after {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 40px;
  background: linear-gradient(180deg, rgba(200,153,26,.15) 0%, transparent 100%);
  filter: blur(12px);
  pointer-events: none;
}

/* Background ambient orbs */
footer::before {
  content: ''; position: absolute; top: -80px; left: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,153,26,.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: footerOrb1 8s ease-in-out infinite;
}
footer::after {
  content: ''; position: absolute; bottom: -60px; right: -80px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,117,26,.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: footerOrb2 10s ease-in-out infinite;
}
@keyframes footerOrb1 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(30px,20px);} }
@keyframes footerOrb2 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(-20px,-15px);} }

/* ── OTM WATERMARK — bottom-right, DM Mono, outline ghost ── */
.ft-wm {
  position: absolute;
  bottom: -28px;
  right: -24px;
  font-family: var(--mono);
  font-size: clamp(140px, 22vw, 300px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.04);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  animation: wmFloat 12s ease-in-out infinite;
}
@keyframes wmFloat { 0%,100%{opacity:.6;transform:translateY(0);} 50%{opacity:1;transform:translateY(-6px);} }

/* ── MAIN GRID ── */
.ft-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr;
  gap: 0;
  padding: 72px 56px 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative; z-index: 1;
}
.ft-col { padding-right: 36px; }
.ft-col:last-child { padding-right: 0; }

/* Logo with glow effect */
.ft-brand {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
.ft-logo {
  height: 64px; width: auto; display: block;
  filter: drop-shadow(0 0 20px rgba(200,153,26,.15));
  transition: filter .3s;
}
.ft-logo:hover { filter: drop-shadow(0 0 28px rgba(200,153,26,.3)); }
.ft-brand-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  margin-left: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* Tagline under logo */
.ft-about {
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,.7);
  line-height: 1.82; margin-bottom: 28px;
  max-width: 280px;
}

/* Social icon row - premium glassmorphism */
.ft-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.sc {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,.35);
  transition: all .28s cubic-bezier(.22,1,.36,1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.sc::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,153,26,.15), rgba(212,117,26,.1));
  border-radius: inherit; opacity: 0;
  transition: opacity .28s;
}
.sc:hover {
  border-color: rgba(200,153,26,.5);
  color: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(200,153,26,.2), 0 0 0 1px rgba(200,153,26,.15);
}
.sc:hover::before { opacity: 1; }
.sc svg { width: 15px; height: 15px; fill: currentColor; position: relative; z-index: 1; }

/* Column heading - with animated underline */
.ft-col-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
  padding-bottom: 10px;
  position: relative;
}
.ft-col-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 20px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  border-radius: 99px;
  transition: width .4s ease;
}
.ft-col:hover .ft-col-title::after { width: 40px; }

/* Nav links - with slide-in hover */
.ft-links { display: flex; flex-direction: column; gap: 13px; }
.ft-link {
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s, transform .2s, padding-left .2s;
  display: flex; align-items: center; gap: 0;
  position: relative;
}
.ft-link:hover {
  color: rgba(255,255,255,.9);
  transform: translateX(4px);
  padding-left: 2px;
}
.ft-link::before {
  content: ''; position: absolute; left: -12px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  opacity: 0; transition: opacity .2s;
}
.ft-link:hover::before { opacity: 1; }

/* Contact plain text */
.ct-plain {
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,.65);
  line-height: 1.4; margin-bottom: 14px;
  text-decoration: none; display: block;
  transition: color .2s, transform .2s;
}
.ct-plain:hover { color: rgba(255,255,255,.95); transform: translateX(3px); }

/* Legal sub-section */
.ft-legal-sub { margin-top: 28px; }
.ft-legal-sub .ft-col-title { margin-bottom: 16px; }
.ft-legal-links { display: flex; flex-direction: column; gap: 12px; }
.ft-legal-links a {
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,.65);
  text-decoration: none; transition: color .2s, transform .2s;
}
.ft-legal-links a:hover { color: rgba(255,255,255,.95); transform: translateX(3px); }

/* ── BOTTOM BAR — enhanced ── */
.ft-bottom {
  padding: 22px 56px;
  display: flex; align-items: flex-start;
  justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative; z-index: 1;
  background: rgba(0,0,0,.15);
}
.ft-disc {
  font-size: 10.5px; font-weight: 300;
  color: rgba(255,255,255,.2);
  line-height: 1.72; max-width: 560px;
}
.ft-bottom-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  flex-shrink: 0;
}
.ft-legal-row {
  display: flex; align-items: center; gap: 0;
}
.ft-legal-row a {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.28);
  text-decoration: none;
  transition: color .2s, text-shadow .2s;
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.ft-legal-row a:first-child { padding-left: 0; }
.ft-legal-row a:last-child { border-right: none; }
.ft-legal-row a:hover { color: var(--gold-lt); text-shadow: 0 0 12px rgba(200,153,26,.3); }
.ft-copy {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 300;
  color: rgba(255,255,255,.2);
  letter-spacing: .02em;
}
/* Made in Bharat with beating heart */
.ft-made {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 4px;
  letter-spacing: .02em;
}
.ft-made .heart {
  display: inline-block;
  color: #e74c3c;
  font-size: 14px;
  animation: heartBeat 1.2s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(231,76,60,.5));
}
@keyframes heartBeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.25); }
  28% { transform: scale(1); }
  42% { transform: scale(1.2); }
  56% { transform: scale(1); }
  100% { transform: scale(1); }
}

/* Footer responsive */
@media(max-width:900px){
  .ft-main { grid-template-columns:1fr 1fr;gap:36px;padding:48px 28px 40px; }
  .ft-bottom { flex-direction:column;align-items:flex-start;padding:16px 28px; }
  .ft-bottom-right { align-items:flex-start; }
  .ft-legal-row { flex-wrap:wrap;gap:8px; }
  .ft-legal-row a { border-right:none;padding:0 8px 0 0; }
}
@media(max-width:600px){
  .ft-main { grid-template-columns:1fr; }
}

/* ─── REVEAL ─── */
/* ─── SCROLL REVEAL SYSTEM ─── */
.reveal { 
  opacity: 0; 
  transform: translateY(40px); 
  transition: opacity 1s cubic-bezier(0.21, 0.6, 0.35, 1), transform 1s cubic-bezier(0.21, 0.6, 0.35, 1); 
  will-change: transform, opacity;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.95); }

.reveal.visible.reveal-left, 
.reveal.visible.reveal-right, 
.reveal.visible.reveal-scale { transform: translate(0) scale(1); }

/* Staggering Delays */
.reveal[style*="--d:1"] { transition-delay: 0.1s; }
.reveal[style*="--d:2"] { transition-delay: 0.2s; }
.reveal[style*="--d:3"] { transition-delay: 0.3s; }
.reveal[style*="--d:4"] { transition-delay: 0.4s; }
.reveal[style*="--d:5"] { transition-delay: 0.5s; }
.reveal[style*="--d:6"] { transition-delay: 0.6s; }

/* ─── RESPONSIVE ─── */
@media(max-width:900px){
  .float-zone { display:none; }
  .hero { padding:64px 24px 48px; }
  header { padding:0 28px; }
  .cdu-p { padding:16px 12px; min-width: 80px; }
  .cdn-p { font-size: 32px; }
  .countdown-premium { gap: 10px; }
  .pillars { grid-template-columns:1fr; }
  .stats-strip { grid-template-columns:repeat(2,1fr); }
  .phil-grid { grid-template-columns:1fr;gap:40px; }
  .wc-grid { grid-template-columns:1fr; }
  .sec-inner { padding:72px 28px; }
  .ft-main { grid-template-columns:1fr 1fr;gap:32px;padding:44px 28px 36px; }
  .ft-bottom { flex-direction:column;align-items:flex-start;padding:16px 28px; }
  .ft-legal { flex-wrap:wrap;gap:12px; }
}
@media(max-width:600px){
  .ticker-item { padding:0 20px; }
  header { padding:0 20px; }
  .headline { font-size:clamp(42px, 12vw, 56px); }
  .desc { font-size: 15px; margin-bottom: 32px; }
  .wl-grid { grid-template-columns:1fr; }
  .wl-row { grid-template-columns:1fr; }
  .countdown-premium { gap: 6px; flex-wrap: wrap; }
  .cdu-p { padding:12px 8px; min-width: 65px; border-radius: 12px; }
  .cdn-p { font-size: 24px; }
  .cdt-p { font-size: 8px; }
  .cd-sep { font-size: 18px; margin-bottom: 8px; }
  .ft-main { grid-template-columns:1fr; }
  .compat { gap:6px; flex-wrap: wrap; justify-content: center; }
  .svc-grid { grid-template-columns: 1fr; }
}

/* Floating Card SVG Animations */
.anim-ecg {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawEcg 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes drawEcg {
  0% { stroke-dashoffset: 60; opacity: 1; }
  60% { stroke-dashoffset: 0; opacity: 1; }
  80% { stroke-dashoffset: 0; opacity: 0; }
  100% { stroke-dashoffset: 60; opacity: 0; }
}

.anim-bar1 {
  transform-origin: 50% 17px;
  animation: pulseBar 1.5s ease-in-out infinite alternate;
}
.anim-bar2 {
  transform-origin: 50% 17px;
  animation: pulseBar 1.5s ease-in-out infinite alternate-reverse;
}
@keyframes pulseBar {
  0% { transform: scaleY(0.6); }
  100% { transform: scaleY(1.1); }
}

.anim-clock {
  transform-origin: 10px 10px;
  animation: rotateClock 4s linear infinite;
}
@keyframes rotateClock {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.anim-lines {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawLines 3s ease-out infinite;
}
@keyframes drawLines {
  0% { stroke-dashoffset: 50; opacity: 1; }
  50% { stroke-dashoffset: 0; opacity: 1; }
  80% { stroke-dashoffset: 0; opacity: 0; }
  100% { stroke-dashoffset: 50; opacity: 0; }
}

/* Service Cards SVG Animations */
.scard-ecg {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawScardEcg 2s ease-out infinite;
}
.scard-ecg-arrow {
  animation: fadeArrow 2s ease-out infinite;
}
@keyframes drawScardEcg {
  0% { stroke-dashoffset: 40; opacity: 1; }
  50% { stroke-dashoffset: 0; opacity: 1; }
  80% { stroke-dashoffset: 0; opacity: 0; }
  100% { stroke-dashoffset: 40; opacity: 0; }
}
@keyframes fadeArrow {
  0%, 40% { opacity: 0; transform: translateX(-2px); }
  50%, 80% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; }
}

.scard-hex {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawHex 3s ease-in-out infinite alternate;
}
@keyframes drawHex {
  0% { stroke-dashoffset: 60; }
  100% { stroke-dashoffset: 0; }
}

.scard-doc-line1 {
  stroke-dasharray: 8;
  stroke-dashoffset: 8;
  animation: drawDocLine 2.5s ease-out infinite;
}
.scard-doc-line2 {
  stroke-dasharray: 8;
  stroke-dashoffset: 8;
  animation: drawDocLine 2.5s ease-out 0.2s infinite;
}
@keyframes drawDocLine {
  0%, 10% { stroke-dashoffset: 8; opacity: 1; }
  40%, 80% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 8; opacity: 0; }
}

.scard-shield {
  transform-origin: center;
  animation: pulseShield 2.5s ease-in-out infinite;
}
@keyframes pulseShield {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Heartbeat Animation */
.heart {
  display: inline-block;
  color: #ff3333;
  animation: heartbeat 1.2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.25); }
  30% { transform: scale(1); }
  45% { transform: scale(1.25); }
}

/* ═══════════════════════════════════════════════
   CUSTOM OPTION BUTTONS GRID (SERVICES & EXP)
═══════════════════════════════════════════════ */
.wl-btn-grid {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}
.svc-grid-3 { grid-template-columns: repeat(3, 1fr); }
.exp-grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 768px) {
  .svc-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .svc-grid-3 { grid-template-columns: 1fr; }
  .exp-grid-2 { grid-template-columns: 1fr; }
}

.wl-opt-btn {
  display: block;
  cursor: pointer;
  user-select: none;
  height: 100%;
}
.wl-opt-btn input { display: none; }

/* Service Cards Inner Styling */
.wl-opt-btn .btn-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  padding: 16px;
  background: #FAF6EE;
  border: 1.5px solid #EDE7DF;
  border-radius: 14px;
  height: 100%;
  min-height: 106px;
  transition: all 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 1px 2px rgba(35,30,25,0.02);
}
.wl-opt-btn .opt-icn {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #b45309;
  transition: all 0.22s ease;
}
.wl-opt-btn:hover .btn-inner {
  border-color: #D5C9B9;
  background: #FAF3E6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(35,30,25,0.04);
}

.wl-opt-btn input:checked + .btn-inner {
  border-color: #b45309;
  background: #FDF7ED;
  box-shadow: 0 0 0 1px #b45309, 0 6px 16px rgba(180, 83, 9, 0.05);
}

/* Service Card Top Row */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

/* Custom Icon Box inside cards */
.card-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ffffff;
  border: 1.5px solid #EDE7DF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  flex-shrink: 0;
}
.wl-opt-btn input:checked + .btn-inner .card-icon-box {
  background: #b45309;
  border-color: #b45309;
}
.wl-opt-btn input:checked + .btn-inner .card-icon-box .opt-icn {
  color: #ffffff !important;
}

/* Custom Checkmark Indicator top-right */
.chk-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
.chk-indicator svg {
  width: 10px;
  height: 10px;
}
.wl-opt-btn input:checked + .btn-inner .chk-indicator {
  opacity: 1;
  transform: scale(1);
}

/* Bottom Label inside cards */
.card-label {
  font-size: 13px;
  font-weight: 600;
  color: #231F1C;
  margin-top: 14px;
  line-height: 1.25;
}

/* Experience Cards Inner Styling */
.wl-opt-btn .exp-card-inner {
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: unset !important;
  padding: 14px 18px !important;
}
.exp-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.exp-text-stack {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.exp-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #231F1C;
}
.exp-desc {
  font-size: 11.5px;
  color: #7F7362;
  margin-top: 2px;
}

/* Circular Radio Indicator */
.radio-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #C5B9A5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  background: #ffffff;
  flex-shrink: 0;
}
.radio-indicator::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b45309;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.22s ease;
}
.wl-opt-btn input:checked + .btn-inner .radio-indicator {
  border-color: #b45309;
}
.wl-opt-btn input:checked + .btn-inner .radio-indicator::after {
  opacity: 1;
  transform: scale(1);
}

.wl-opt-btn input:disabled + .btn-inner {
  opacity: 0.35;
  cursor: not-allowed;
  background: #EDE7DF;
  border-color: #EDE7DF;
}
.wl-opt-btn input:disabled + .btn-inner:hover {
  transform: none;
  box-shadow: none;
}

/* ═══════════════════════════════════════════════
   PREMIUM ICON ANIMATIONS — All 9 Service Cards
═══════════════════════════════════════════════ */

/* Service Cards SVG Animations — Enhanced */
.ico-bsk-body {
  animation: bskFloat 4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes bskFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-1px); } }
.ico-bsk-handle {
  stroke-dasharray: 25; stroke-dashoffset: 25;
  animation: bskHandleDraw 3s ease-in-out infinite;
}
@keyframes bskHandleDraw { 0%, 15% { stroke-dashoffset: 25; } 45%, 100% { stroke-dashoffset: 0; } }
.ico-bsk-gem-1, .ico-bsk-gem-2, .ico-bsk-gem-3 {
  animation: bskGemGlow 2.5s ease-in-out infinite alternate;
}
.ico-bsk-gem-2 { animation-delay: 0.5s; }
.ico-bsk-gem-3 { animation-delay: 1s; }
@keyframes bskGemGlow { from { opacity: 0.4; } to { opacity: 1; filter: drop-shadow(0 0 3px currentColor); } }

.ico-sig-path {
  stroke-dasharray: 80; stroke-dashoffset: 80;
  animation: sigDraw 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes sigDraw {
  0%, 10% { stroke-dashoffset: 80; opacity: 0; }
  20% { opacity: 1; }
  60%, 100% { stroke-dashoffset: 0; opacity: 1; }
}
.ico-sig-node {
  animation: sigNodePop 3s ease-in-out infinite;
  transform-origin: center;
}
@keyframes sigNodePop {
  0%, 35% { transform: scale(0); opacity: 0; }
  50%, 85% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.6); opacity: 0; }
}
.ico-sig-pulse {
  animation: sigPulse 3s ease-out infinite;
  transform-origin: 26px 4px;
}
@keyframes sigPulse {
  0%, 65% { transform: scale(0); opacity: 0; }
  85% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── 3. RESEARCH REPORT — Page unfold + lines type ── */
.ico-report-page {
  animation: reportFloat 4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes reportFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}
.ico-report-fold {
  stroke-dasharray: 20; stroke-dashoffset: 20;
  animation: foldReveal 3.5s ease-out infinite;
}
@keyframes foldReveal {
  0%, 10% { stroke-dashoffset: 20; opacity: 0; }
  30%, 100% { stroke-dashoffset: 0; opacity: 1; }
}
.ico-report-l1 {
  stroke-dasharray: 12; stroke-dashoffset: 12;
  animation: reportType 3.5s ease-out 0.4s infinite;
}
.ico-report-l2 {
  stroke-dasharray: 9; stroke-dashoffset: 9;
  animation: reportType 3.5s ease-out 0.7s infinite;
}
.ico-report-l3 {
  stroke-dasharray: 6; stroke-dashoffset: 6;
  animation: reportType 3.5s ease-out 1s infinite;
}
@keyframes reportType {
  0%, 10% { stroke-dashoffset: 12; opacity: 0; }
  25% { opacity: 1; }
  45%, 85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 12; opacity: 0; }
}
.ico-report-chart {
  animation: chartFade 3.5s ease-in-out 1.2s infinite;
}
@keyframes chartFade {
  0%, 20% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
  35%, 80% { opacity: 0.15; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); }
}
.ico-report-seal {
  animation: sealSpin 6s linear infinite;
  transform-origin: 19.5px 5.5px;
}
@keyframes sealSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── 4. BRIEFING ROOM — Mic broadcast + live indicator ── */
.ico-mic-body {
  animation: micBounce 4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes micBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}
.ico-mic-wave1 {
  stroke-dasharray: 30; stroke-dashoffset: 30;
  animation: micWave 2.5s ease-in-out infinite;
}
@keyframes micWave {
  0%, 10% { stroke-dashoffset: 30; opacity: 0; }
  30%, 70% { stroke-dashoffset: 0; opacity: 0.9; }
  100% { stroke-dashoffset: 30; opacity: 0; }
}
.ico-mic-wave2 {
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: micWaveOuter 2.5s ease-in-out 0.3s infinite;
}
@keyframes micWaveOuter {
  0%, 15% { stroke-dashoffset: 40; opacity: 0; }
  35%, 65% { stroke-dashoffset: 0; opacity: 0.3; }
  100% { stroke-dashoffset: 40; opacity: 0; }
}
.ico-mic-live {
  animation: liveRing 2s ease-in-out infinite;
}
@keyframes liveRing {
  0%, 100% { stroke-width: 1; opacity: 0.5; }
  50% { stroke-width: 2; opacity: 1; filter: drop-shadow(0 0 4px var(--c-accent)); }
}
.ico-mic-live-dot {
  animation: liveBlink 1.2s ease-in-out infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── 5. PORTFOLIO REVIEW — Lens magnify + chart inspect ── */
.ico-search-lens {
  animation: lensBreath 4s ease-in-out infinite;
  transform-origin: 12px 12px;
}
@keyframes lensBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.ico-search-handle {
  stroke-dasharray: 12; stroke-dashoffset: 12;
  animation: handleSwing 3s ease-in-out infinite;
}
@keyframes handleSwing {
  0%, 15% { stroke-dashoffset: 12; }
  35%, 100% { stroke-dashoffset: 0; }
}
.ico-search-chart {
  stroke-dasharray: 20; stroke-dashoffset: 20;
  animation: chartDraw 3.5s ease-out infinite;
}
@keyframes chartDraw {
  0%, 20% { stroke-dashoffset: 20; opacity: 0; }
  40% { opacity: 1; }
  55%, 85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 20; opacity: 0; }
}
.ico-search-dot {
  animation: searchDotPop 3.5s ease-in-out 0.8s infinite;
}
@keyframes searchDotPop {
  0%, 20% { opacity: 0; transform: scale(0); }
  35%, 75% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(0); }
}
.ico-search-ring {
  animation: ringRotate 8s linear infinite;
  transform-origin: 12px 12px;
}
@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── 6. STRATEGY BACKTESTING — Clock rewind + tick marks ── */
.ico-backtest-outer {
  animation: backtestPulse 4s ease-in-out infinite;
  transform-origin: 14px 14px;
}
@keyframes backtestPulse {
  0%, 100% { stroke-width: 1.5; }
  50% { stroke-width: 2; filter: drop-shadow(0 0 3px var(--c-accent)); }
}
.ico-backtest-inner {
  animation: innerDashSpin 10s linear infinite;
  transform-origin: 14px 14px;
}
@keyframes innerDashSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
.ico-backtest-hand {
  transform-origin: 14px 14px;
  animation: handRewind 3.5s cubic-bezier(0.3, 0.8, 0.2, 1) infinite;
}
@keyframes handRewind {
  0%, 10% { transform: rotate(0deg); opacity: 1; }
  50% { transform: rotate(-180deg); opacity: 1; filter: drop-shadow(0 0 4px var(--c-accent)); }
  90% { transform: rotate(-360deg); opacity: 1; }
  100% { transform: rotate(-360deg); opacity: 0.8; }
}
.ico-backtest-rewind {
  stroke-dasharray: 30; stroke-dashoffset: 30;
  animation: rewindArc 3.5s ease-in-out infinite;
}
@keyframes rewindArc {
  0%, 10% { stroke-dashoffset: 30; opacity: 0; }
  30%, 75% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 30; opacity: 0; }
}
.ico-backtest-arrow {
  opacity: 0;
  animation: rewindArrowPop 3.5s ease-in-out infinite;
}
@keyframes rewindArrowPop {
  0%, 25% { opacity: 0; transform: translate(-2px, 2px); }
  35%, 70% { opacity: 1; transform: translate(0, 0); }
  100% { opacity: 0; }
}

/* ── 7. CUSTOM INDICATOR — Monitor chart trace + cursor blink ── */
.ico-indicator-screen {
  animation: screenGlow 4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes screenGlow {
  0%, 100% { filter: none; }
  50% { filter: drop-shadow(0 0 3px var(--c-accent)); }
}
.ico-indicator-chart {
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: indicatorTrace 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes indicatorTrace {
  0%, 5% { stroke-dashoffset: 40; opacity: 0; }
  15% { opacity: 1; }
  50%, 85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 40; opacity: 0; }
}
.ico-indicator-dot1 {
  opacity: 0;
  animation: indicDotPop 3s ease-in-out 0.5s infinite;
}
.ico-indicator-dot2 {
  opacity: 0;
  animation: indicDotPop 3s ease-in-out 0.9s infinite;
}
@keyframes indicDotPop {
  0%, 15% { opacity: 0; transform: scale(0); }
  30%, 75% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0); }
}
.ico-indicator-cursor {
  animation: cursorBlink 1s ease-in-out infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0; }
}

/* ── 8. PINE SCRIPT — Code brackets type + cursor pulse ── */
.ico-code-window {
  animation: codeWindowGlow 4s ease-in-out infinite;
}
@keyframes codeWindowGlow {
  0%, 100% { filter: none; }
  50% { filter: drop-shadow(0 0 2px var(--c-accent)); }
}
.ico-code-bracket-l {
  stroke-dasharray: 24; stroke-dashoffset: 24;
  animation: bracketTypeL 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes bracketTypeL {
  0%, 10% { stroke-dashoffset: 24; opacity: 0; }
  25%, 80% { stroke-dashoffset: 0; opacity: 1; filter: drop-shadow(0 0 3px var(--c-accent)); }
  100% { stroke-dashoffset: 24; opacity: 0; }
}
.ico-code-bracket-r {
  stroke-dasharray: 24; stroke-dashoffset: 24;
  animation: bracketTypeR 3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s infinite;
}
@keyframes bracketTypeR {
  0%, 10% { stroke-dashoffset: 24; opacity: 0; }
  25%, 80% { stroke-dashoffset: 0; opacity: 1; filter: drop-shadow(0 0 3px var(--c-accent)); }
  100% { stroke-dashoffset: 24; opacity: 0; }
}
.ico-code-slash {
  stroke-dasharray: 14; stroke-dashoffset: 14;
  animation: slashDraw 3s ease-in-out 0.4s infinite;
}
@keyframes slashDraw {
  0%, 15% { stroke-dashoffset: 14; opacity: 0; }
  30%, 75% { stroke-dashoffset: 0; opacity: 0.5; }
  100% { stroke-dashoffset: 14; opacity: 0; }
}
.ico-code-cursor {
  animation: codeCursorBlink 0.8s ease-in-out infinite;
}
@keyframes codeCursorBlink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0; }
}

/* ── 9. SCANNER — Radar sweep + targets ping ── */
.ico-scanner-ring1 {
  animation: ring1Pulse 4s ease-in-out infinite;
  transform-origin: 14px 14px;
}
@keyframes ring1Pulse {
  0%, 100% { opacity: 0.08; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.03); }
}
.ico-scanner-ring2 {
  animation: ring2Pulse 4s ease-in-out 0.3s infinite;
  transform-origin: 14px 14px;
}
@keyframes ring2Pulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.04); }
}
.ico-scanner-ring3 {
  animation: ring3Pulse 4s ease-in-out 0.6s infinite;
  transform-origin: 14px 14px;
}
@keyframes ring3Pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.08); }
}
.ico-scanner-sweep {
  transform-origin: 14px 14px;
  animation: sweepRotate 3s linear infinite;
}
@keyframes sweepRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.ico-scanner-target1 {
  animation: targetPing 3s ease-in-out 0.5s infinite;
}
.ico-scanner-target2 {
  animation: targetPing 3s ease-in-out 1.2s infinite;
}
.ico-scanner-target3 {
  animation: targetPing 3s ease-in-out 1.8s infinite;
}
@keyframes targetPing {
  0%, 15% { opacity: 0; transform: scale(0); }
  25% { opacity: 0.9; transform: scale(1.4); }
  40%, 70% { opacity: 0.7; transform: scale(1); }
  85%, 100% { opacity: 0; transform: scale(0.5); }
}

/* ═══════════════════════════════════════════════
   PREMIUM HEADLINE & SHIMMER
═══════════════════════════════════════════════ */
.shimmer-text {
  font-style: italic; font-weight: 300;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 25%, #fff 50%, var(--amber) 75%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ═══════════════════════════════════════════════
   PREMIUM COUNTDOWN
═══════════════════════════════════════════════ */
.cd-wrap { margin: 64px auto 0; max-width: 600px; text-align: center; }
.cd-header { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 32px; opacity: 0.6; }
.cd-line { flex-grow: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.cd-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

.countdown-premium {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-bottom: 64px;
  perspective: 1000px;
}
.cdu-p {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(200, 153, 26, 0.3);
  border-radius: 20px;
  padding: 24px 20px;
  min-width: 110px;
  position: relative;
  box-shadow: 
    0 10px 40px rgba(0,0,0,0.15),
    inset 0 0 20px rgba(200, 153, 26, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex; flex-direction: column; align-items: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  overflow: hidden;
}
.cdu-p::before {
  content: '';
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(200, 153, 26, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: timerGlowMove 8s linear infinite;
}
@keyframes timerGlowMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.cdu-p:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(200, 153, 26, 0.25);
}
.cdn-p {
  font-family: var(--mono);
  font-size: 52px; font-weight: 600; 
  background: linear-gradient(135deg, var(--gold), var(--gold-lt), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 8px;
  position: relative; z-index: 1;
  text-shadow: 0 0 20px rgba(200, 153, 26, 0.3);
  letter-spacing: -0.02em;
}
.cdt-p { 
  font-size: 10px; font-weight: 700; 
  color: var(--ink-400); 
  letter-spacing: 0.2em; text-transform: uppercase;
  position: relative; z-index: 1;
}
.cd-sep { 
  font-size: 32px; font-weight: 200; color: var(--gold); 
  opacity: 0.4; margin-bottom: 16px; 
  animation: sepBlink 2s ease-in-out infinite;
}
@keyframes sepBlink { 0%, 100% { opacity: 0.2; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.1); } }

/* ═══════════════════════════════════════════════
   ABOUT US UPGRADED CARDS
═══════════════════════════════════════════════ */
.ab-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--ink-100);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
}
.ab-card:hover {
  transform: translateY(-12px) scale(1.03) !important;
  box-shadow: 0 24px 64px rgba(18,23,43,0.12);
  z-index: 10;
}
.ab-ico {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ab-card:hover .ab-ico { transform: scale(1.15) rotate(-5deg); }
.ab-ico-halo {
  position: absolute; inset: -10px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-accent) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
  z-index: -1;
}
.ab-card:hover .ab-ico-halo { opacity: 0.15; animation: haloPulse 2s ease-in-out infinite; }
@keyframes haloPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.3);} }

/* About Us SVG Anims */
.ico-ab-quant-line { stroke-dasharray: 40; stroke-dashoffset: 40; animation: abDraw 3s ease infinite; }
.ico-ab-inst-shield { animation: abFloat 4s ease-in-out infinite; }
.ico-ab-act-ray { transform-origin: 14px 14px; animation: abRotate 8s linear infinite; }
@keyframes abDraw { 0%,10%{stroke-dashoffset:40; opacity:0;} 30%,80%{stroke-dashoffset:0; opacity:1;} 100%{stroke-dashoffset:40; opacity:0;} }
@keyframes abFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-2px);} }
@keyframes abRotate { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }

/* ═══════════════════════════════════════════════
   WAITLIST SELECTION ANIMATIONS (Selected Only)
═══════════════════════════════════════════════ */

/* Universal: Stop all animations by default */
.opt-icn * { animation-play-state: paused !important; }

/* Play animation ONLY when input is checked */
.wl-opt-btn input:checked + .btn-inner .opt-icn * {
  animation-play-state: running !important;
}

/* 1. Investment Basket: Briefcase bounce + handle draw */
.wl-anim-basket-body { animation: wlBasketBounce 2s ease-in-out infinite; }
.wl-anim-basket-handle { stroke-dasharray: 20; stroke-dashoffset: 20; animation: wlDraw 2s ease-in-out infinite; }
@keyframes wlBasketBounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-1.5px);} }

/* 2. Alpha Signal: Monitor trace + arrow pop */
.wl-anim-sig-line { stroke-dasharray: 40; stroke-dashoffset: 40; animation: wlDraw 3s linear infinite; }
.wl-anim-sig-arr { opacity: 0; animation: wlArrowPop 3s ease-in-out infinite; }
@keyframes wlArrowPop { 0%,40%{opacity:0; transform:translate(-2px,2px);} 50%,90%{opacity:1; transform:translate(0,0);} 100%{opacity:0;} }

/* 3. Research Report: Fold + type */
.wl-anim-doc-fold { stroke-dasharray: 15; stroke-dashoffset: 15; animation: wlDraw 3s ease-in-out infinite; }
.wl-anim-doc-line { stroke-dasharray: 10; stroke-dashoffset: 10; animation: wlType 3s ease-out infinite; }
@keyframes wlType { 0%,20%{stroke-dashoffset:10; opacity:0;} 40%,80%{stroke-dashoffset:0; opacity:1;} 100%{stroke-dashoffset:10; opacity:0;} }

/* 4. Briefing Room: Waves pulse */
.wl-anim-mic-w1 { animation: wlWave 2s ease-in-out infinite; }
.wl-anim-mic-w2 { animation: wlWave 2s ease-in-out 0.3s infinite; }
@keyframes wlWave { 0%,100%{opacity:0.2; transform:scale(0.9);} 50%{opacity:1; transform:scale(1.1);} }

/* 5. Portfolio Review: Lens move + chart ping */
.wl-anim-lens-body { animation: wlLensMove 4s ease-in-out infinite; }
.wl-anim-lens-chart { animation: wlChartPing 4s ease-in-out infinite; }
@keyframes wlLensMove { 0%,100%{transform:translate(0,0);} 50%{transform:translate(1px,-1px);} }
@keyframes wlChartPing { 0%,30%,100%{opacity:0.2;} 50%,80%{opacity:1;} }

/* 6. Strategy Backtesting: Clock rewind */
.wl-anim-clock-hand { transform-origin: 12px 12px; animation: wlRotateBack 4s cubic-bezier(0.4, 0, 0.2, 1) infinite; }
@keyframes wlRotateBack { from{transform:rotate(0deg);} to{transform:rotate(-360deg);} }

/* 7. Custom Indicator: Screen glow + trace */
.wl-anim-ind-trace { stroke-dasharray: 30; stroke-dashoffset: 30; animation: wlDraw 3s linear infinite; }
.wl-anim-ind-cursor { animation: wlBlink 1s ease-in-out infinite; }
@keyframes wlBlink { 0%,100%{opacity:1;} 50%{opacity:0;} }

/* 8. Pine Script: Code type + brackets bounce */
.wl-anim-code-brkt { animation: wlBrkt 2s ease-in-out infinite; }
@keyframes wlBrkt { 0%,100%{transform:translateX(0);} 50%{transform:translateX(1px);} }

/* 9. Scanner Creation: Radar sweep */
.wl-anim-radar-sweep { transform-origin: 12px 12px; animation: wlRotate 3s linear infinite; }
.wl-anim-radar-ping { animation: wlPing 3s ease-in-out infinite; }
@keyframes wlPing { 0%,70%{opacity:0; transform:scale(0.5);} 80%{opacity:1; transform:scale(1.2);} 100%{opacity:0; transform:scale(1);} }

/* Experience Level Animations */
.wl-anim-exp-sprout { transform-origin: bottom; animation: wlSprout 3s ease-in-out infinite; }
.wl-anim-exp-path { stroke-dasharray: 30; stroke-dashoffset: 30; animation: wlDraw 3s linear infinite; }
.wl-anim-exp-mtn { animation: wlMtn 4s ease-in-out infinite; }
.wl-anim-exp-crown { transform-origin: center; animation: wlCrown 3s ease-in-out infinite; }

@keyframes wlSprout { 0%,100%{transform:scaleY(1);} 50%{transform:scaleY(1.1) rotate(2deg);} }
@keyframes wlMtn { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-2px);} }
@keyframes wlCrown { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-1.5px) rotate(5deg);} }

@keyframes wlRotate { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
@keyframes wlDraw { to { stroke-dashoffset: 0; } }

/* Shared Hover Effect */
.wl-opt-btn:hover .opt-icn { transform: scale(1.15) rotate(-3deg); }
.wl-opt-btn input:checked + .btn-inner .opt-icn { transform: scale(1.1) rotate(0deg); filter: drop-shadow(0 0 8px rgba(200,153,26,0.3)); }


/* Final Polish Header/Footer */
.ticker { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.logo-link:hover img { transform: scale(1.05) rotate(5deg); }
.logo-link img { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }

footer { border-top: 1px solid rgba(200, 153, 26, 0.1); }
.sc:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 24px rgba(200,153,26,0.2); }
.sc { transition: transform 0.3s ease, box-shadow 0.3s ease; }



/* -- PREMIUM HERO ENTRANCE -- */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px) scale(0.98); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.hero-reveal {
  opacity: 0;
  animation: heroReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* -- GLASS SHIMMER EFFECT -- */
.shimmer-card::after {
  content: "";
  position: absolute;
 top: -50%; left: -50%;
 width: 200%; height: 200%;
 background: linear-gradient(
 45deg,
 transparent 20%,
 rgba(255, 255, 255, 0.05) 45%,
 rgba(255, 255, 255, 0.15) 50%,
 rgba(255, 255, 255, 0.05) 55%,
 transparent 80%
 );
 transform: rotate(-45deg);
 animation: cardShimmer 6s infinite;
 pointer-events: none;
}

@keyframes cardShimmer {
 0% { transform: translate(-30%, -30%) rotate(-45deg); }
 20%, 100% { transform: translate(30%, 30%) rotate(-45deg); }
}

/* ═══════════════════════════════════════════════
   FAQ SECTION (PREMIUM INTERACTIVE ACCORDION)
 ═══════════════════════════════════════════════ */
.faq-sec {
  border-top: 1px solid var(--ink-100);
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}
.faq-head {
  text-align: center;
  margin-bottom: 56px;
}
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(200, 153, 26, 0.3);
  box-shadow: 0 8px 24px rgba(18, 23, 43, 0.03);
  transform: translateY(-1px);
}
.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(200, 153, 26, 0.08);
  transform: translateY(0);
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 24px 28px;
  cursor: pointer;
  outline: none;
  text-align: left;
  gap: 20px;
}
.faq-q {
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.25s ease;
}
.faq-trigger:hover .faq-q {
  color: var(--amber);
}
.faq-item.active .faq-trigger .faq-q {
  color: #b45309;
}
.faq-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ink-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-400);
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: #fff;
}
.faq-trigger:hover .faq-icon-wrap {
  background: var(--gold-bg);
  border-color: var(--gold-border);
  color: var(--amber);
}
.faq-item.active .faq-icon-wrap {
  transform: rotate(135deg);
  background: #b45309;
  border-color: #b45309;
  color: #fff;
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.2);
}
.faq-icon-svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-content-inner {
  padding: 0 28px 28px;
}
.faq-content-inner p {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink-600);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-sec { padding-bottom: 24px; }
  .faq-trigger { padding: 20px 24px; }
  .faq-q { font-size: 15px; }
  .faq-content-inner { padding: 0 24px 20px; }
  .faq-content-inner p { font-size: 13.5px; }
  .faq-icon-wrap { width: 32px; height: 32px; }
}
