/* G2G Landing Page — Enhanced Styles */

:root {
  --navy-950: #050d1a;
  --navy-900: #0a1628;
  --navy-800: #0f3460;
  --navy-700: #1a2744;
  --gold-400: #f4c430;
  --gold-500: #d4af37;
  --gold-600: #b8960c;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.35);
  --section-gap: clamp(4rem, 8vw, 7rem);
}

.dark {
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
}

::selection {
  background-color: rgba(212, 175, 55, 0.35);
}

/* ── Navigation ── */
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
}

.dark #navbar.scrolled {
  background: rgba(5, 13, 26, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(10, 22, 40, 0.06);
  border: 1px solid rgba(10, 22, 40, 0.08);
  transition: all 0.25s ease;
  cursor: pointer;
}

.dark .icon-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.icon-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-1px);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  transition: color 0.25s ease;
  position: relative;
  border-radius: 0.5rem;
}

.dark .nav-link { color: #94a3b8; }

.nav-link:hover,
.nav-link.active {
  color: var(--gold-500);
}

.nav-link.active {
  background: rgba(212, 175, 55, 0.1);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: 4rem;
  z-index: 40;
  background: rgba(5, 13, 26, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

@media (min-width: 768px) {
  .mobile-menu { top: 4.5rem; }
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 1.25rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  max-height: calc(100dvh - 6rem);
  overflow-y: auto;
}

.dark .mobile-menu-panel {
  background: rgba(15, 25, 45, 0.97);
  border-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-link {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
}

.dark .mobile-nav-link { color: #e2e8f0; }

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-600);
}

.dark .mobile-nav-link:hover,
.dark .mobile-nav-link.active {
  color: var(--gold-400);
}

body.menu-open {
  overflow: hidden;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy-900);
  background: linear-gradient(135deg, #f4c430 0%, #d4af37 50%, #e8c547 100%);
  background-size: 200% 200%;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .btn-primary {
    padding: 0.875rem 1.75rem;
    border-radius: 0.875rem;
    font-size: 0.9375rem;
  }
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
  background-position: 100% 0;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(10, 22, 40, 0.12);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .btn-secondary {
    padding: 0.875rem 1.75rem;
    border-radius: 0.875rem;
    font-size: 0.9375rem;
  }
}

.dark .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  border-color: var(--gold-500);
  color: var(--gold-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.dark .btn-secondary:hover { color: var(--gold-400); }

.btn-sm {
  padding: 0.4rem 0.9rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .btn-sm {
    padding: 0.5rem 1.25rem;
    border-radius: 0.625rem;
    font-size: 0.8125rem;
  }
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  min-width: 7rem;
}

.btn-plan {
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-plan:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-plan-featured {
  background: linear-gradient(135deg, #f4c430, #d4af37);
  color: var(--navy-900);
  border-color: transparent;
}

/* ── Hero ── */
.hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(15, 52, 96, 0.5) 0%, transparent 60%),
    linear-gradient(165deg, #050d1a 0%, #0a1628 35%, #0f3460 70%, #1a2744 100%);
}

html:not(.dark) .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    linear-gradient(165deg, #f8fafc 0%, #eef2f7 40%, #e2e8f0 100%);
}

.hero-gradient {
  background:
    radial-gradient(ellipse at 20% 40%, rgba(212, 175, 55, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(15, 52, 96, 0.35) 0%, transparent 50%);
  pointer-events: none;
}

html:not(.dark) .hero-gradient {
  background:
    radial-gradient(ellipse at 20% 40%, rgba(212, 175, 55, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(15, 52, 96, 0.06) 0%, transparent 50%);
}

.hero-noise {
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-drift 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: clamp(200px, 40vw, 420px);
  height: clamp(200px, 40vw, 420px);
  background: rgba(212, 175, 55, 0.15);
  top: 10%;
  left: -5%;
}

.hero-orb-2 {
  width: clamp(180px, 35vw, 360px);
  height: clamp(180px, 35vw, 360px);
  background: rgba(15, 52, 96, 0.4);
  bottom: 15%;
  right: -5%;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: clamp(120px, 25vw, 240px);
  height: clamp(120px, 25vw, 240px);
  background: rgba(244, 196, 48, 0.1);
  top: 50%;
  left: 40%;
  animation-delay: -8s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}

html:not(.dark) #hero .hero-title { color: var(--navy-900); }
html:not(.dark) #hero p { color: #475569; }

.hero-logo {
  width: min(88vw, 22rem);
  height: auto;
  max-height: min(52vh, 24rem);
  object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(212, 175, 55, 0.28));
  transition: transform 0.4s ease;
}

.hero-logo:hover {
  transform: scale(1.02);
}

@media (min-width: 640px) {
  .hero-logo {
    width: min(80vw, 26rem);
    max-height: min(55vh, 28rem);
  }
}

@media (min-width: 1024px) {
  .hero-logo {
    width: min(70vw, 30rem);
    max-height: min(58vh, 32rem);
  }
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(12px);
}

html:not(.dark) .hero-badge {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(212, 175, 55, 0.3);
}

.text-gradient-gold {
  background: linear-gradient(135deg, #ffe066 0%, #f4c430 30%, #d4af37 60%, #ffe066 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 4s linear infinite;
}

@keyframes shimmer-text {
  to { background-position: 200% center; }
}

/* Hero dashboard */
.hero-visual {
  min-height: 420px;
}

.hero-dashboard {
  padding: 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.hero-dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hero-live-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.hero-dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 140px;
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
}

.hero-bar {
  flex: 1;
  height: var(--h);
  border-radius: 0.5rem 0.5rem 0.125rem 0.125rem;
  background: linear-gradient(to top, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.08));
  transition: height 0.6s ease;
  animation: bar-grow 1.2s ease backwards;
}

.hero-bar.active {
  background: linear-gradient(to top, #d4af37, rgba(244, 196, 48, 0.5));
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-bar:nth-child(1) { animation-delay: 0.1s; }
.hero-bar:nth-child(2) { animation-delay: 0.2s; }
.hero-bar:nth-child(3) { animation-delay: 0.3s; }
.hero-bar:nth-child(4) { animation-delay: 0.4s; }
.hero-bar:nth-child(5) { animation-delay: 0.5s; }
.hero-bar:nth-child(6) { animation-delay: 0.6s; }
.hero-bar:nth-child(7) { animation-delay: 0.7s; }

@keyframes bar-grow {
  from { height: 0; opacity: 0; }
}

.hero-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.hero-mini-stat {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-mini-stat span {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.hero-mini-stat strong {
  font-size: 0.9375rem;
  color: #fff;
}

/* Floating stats */
.floating-stat {
  position: absolute;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  animation: float 5s ease-in-out infinite;
  min-width: 160px;
}

.stat-1 { top: 0; right: -10px; animation-delay: 0s; }
.stat-2 { top: 42%; left: -20px; animation-delay: -1.5s; }
.stat-3 { bottom: 0; right: 15%; animation-delay: -3s; }

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

.stat-pill {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-pill:hover {
  transform: translateY(-3px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  opacity: 0.6;
  animation: bounce-hint 2s ease infinite;
}

.hero-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 2px;
  animation: scroll-dot 2s ease infinite;
}

@keyframes bounce-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes scroll-dot {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 20px; }
}

/* ── Glass cards ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.dark .glass-card {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

#hero .glass-card,
.stat-pill.glass-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

html:not(.dark) #hero .glass-card,
html:not(.dark) .stat-pill.glass-card {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(10, 22, 40, 0.06);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
}

/* ── Sections ── */
.section-padding {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.section-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80vw);
  height: 300px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-600);
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 1rem;
}

.dark .section-badge { color: var(--gold-400); }

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: #64748b;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.dark .section-subtitle { color: #94a3b8; }

.bg-gradient-section {
  background: linear-gradient(180deg, rgba(15, 52, 96, 0.04) 0%, rgba(212, 175, 55, 0.04) 100%);
}

.dark .bg-gradient-section {
  background: linear-gradient(180deg, rgba(15, 52, 96, 0.25) 0%, rgba(5, 13, 26, 0.6) 100%);
}

.bg-grid-pattern {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── Feature cards ── */
.feature-card {
  padding: 1.75rem;
  border-radius: 1.25rem;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

/* ── Plans scroll (mobile/tablet) ── */
.plans-scroll-wrap {
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .plans-scroll-wrap {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1279px) {
  .plans-scroll {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    gap: 1rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .plans-scroll::-webkit-scrollbar { display: none; }

  .plans-scroll .plan-card {
    flex: 0 0 min(280px, 82vw);
    scroll-snap-align: start;
  }

  .plans-scroll .plan-featured {
    flex: 0 0 min(300px, 85vw);
  }
}

.plans-scroll-hint {
  animation: pulse-hint 2s ease infinite;
}

@keyframes pulse-hint {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.plan-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  text-align: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
  height: 100%;
}

.plan-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 40px rgba(212, 175, 55, 0.12);
}

.plan-featured {
  border-color: rgba(212, 175, 55, 0.55);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
}

@media (min-width: 1280px) {
  .plan-featured {
    transform: scale(1.04);
    z-index: 2;
  }

  .plan-featured:hover {
    transform: translateY(-8px) scale(1.06);
  }
}

.plan-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* ── Timeline ── */
.timeline-container {
  max-width: 44rem;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), var(--navy-800), var(--gold-500));
}

@media (min-width: 768px) {
  .timeline-container::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  padding-left: 3.25rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    padding-right: 2.5rem;
    text-align: right;
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    padding-left: 2.5rem;
  }
}

.timeline-dot {
  position: absolute;
  left: 0.875rem;
  top: 1.5rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: var(--navy-700);
  border: 2px solid var(--gold-500);
  z-index: 10;
  transition: box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .timeline-dot {
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -0.4375rem;
  }
}

.timeline-dot.active {
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25), 0 0 20px rgba(212, 175, 55, 0.5);
}

.timeline-content {
  padding: 1.5rem;
  border-radius: 1.25rem;
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-content:hover { transform: translateX(-4px); }
  .timeline-content { width: calc(50% - 2rem); }
}

/* ── Pullout ── */
.pullout-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.25rem 0.75rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
}

.pullout-card-label {
  grid-column: 1 / -1;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.pullout-card strong {
  font-size: 1.125rem;
}

.pullout-card-arrow {
  color: var(--gold-500);
  font-weight: 700;
}

.pullout-table-wrap {
  overflow: hidden;
}

.pullout-table { width: 100%; border-collapse: collapse; }

.pullout-table th {
  padding: 1.125rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(10, 22, 40, 0.4);
}

.dark .pullout-table th { background: rgba(26, 39, 68, 0.5); }

.pullout-table td {
  padding: 1.125rem 1.5rem;
  font-size: 0.9375rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pullout-table tbody tr {
  transition: background 0.25s ease;
}

.pullout-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.06);
}

.release-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-500);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.rule-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.rule-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(4px);
}

.rule-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Lock-in ── */
.lockin-grid {
  align-items: stretch;
}

.lockin-card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: 1.25rem;
  text-align: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.35s ease;
  transition-delay: var(--delay, 0s);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lockin-card .btn-plan { margin-top: auto; }

.lockin-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.lockin-featured {
  border-color: rgba(168, 85, 247, 0.5);
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.15);
}

@media (min-width: 1024px) {
  .lockin-featured {
    transform: scale(1.03);
  }

  .lockin-featured:hover {
    transform: translateY(-8px) scale(1.05);
  }
}

.lockin-duration {
  font-size: 1rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lockin-return {
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 0.25rem;
  line-height: 1;
}

/* ── Steps ── */
.steps-container {
  display: grid;
  gap: 1rem;
  position: relative;
}

@media (min-width: 640px) {
  .steps-container { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (min-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }

  .steps-container::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    z-index: 0;
  }
}

.step-item {
  padding: 1.5rem 1.25rem;
  border-radius: 1.25rem;
  text-align: center;
  transition: all 0.35s ease;
  transition-delay: var(--delay, 0s);
  position: relative;
  z-index: 1;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.1);
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4c430, #d4af37);
  color: var(--navy-900);
  font-weight: 800;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

/* ── FAQ ── */
.faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.08);
}

.faq-question {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  width: 100%;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.active .faq-answer {
  max-height: 320px;
}

/* ── Social ── */
.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-link:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-400);
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.3);
}

.logo-mark {
  position: relative;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(244, 196, 48, 0.5), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-mark:hover::after { opacity: 1; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

html { scroll-behavior: smooth; }

/* ── Responsive utilities ── */
@media (max-width: 380px) {
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .plans-scroll-hint { animation: none; }
}
