@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #090909;
  --bg-2: #0d0d0d;
  --panel: #121212;
  --panel-2: #171717;
  --surface: #171717;
  --surface-2: #121212;
  --surface-3: #0d0d0d;
  --surface-4: #060606;
  --gold: #c99a2e;
  --gold-light: #f1d98a;
  --gold-mid: #e6c66a;
  --gold-dark: #a97824;
  --text: #f5f5f5;
  --text-2: #d4d4d4;
  --muted: #a3a3a3;
  --muted-2: #737373;
  --border: #262626;
  --border-soft: rgba(255,255,255,.08);
  --border-gold: rgba(201,154,46,.4);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.3);
  --max: 1280px;
  --radius: 24px;
  --transition: .3s cubic-bezier(.25,.8,.25,1);
}

/* -----------------------------
   Base styles & shared utilities
   ----------------------------- */

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: #e5e5e5;
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.5
}

button,
input,
textarea,
select {
  font: inherit
}

button {
  cursor: pointer
}

a {
  text-decoration: none;
  color: inherit
}

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

.site-main {
  min-height: 60vh
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto
}

.section {
  padding: 80px 0;
  border-top: 1px solid #171717;
  position: relative;
  overflow: hidden
}

.section.alt {
  background: var(--bg-2)
}

.section.dark {
  background: #060606
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  background: rgba(201, 154, 46, .10);
  border: 1px solid rgba(201, 154, 46, .30);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase
}

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px
}

.eyebrow-line:before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold)
}

h1,
h2,
h3,
h4,
p {
  margin: 0
}

h1 {
  font-size: clamp(40px, 6vw, 58px);
  line-height: 1.08;
  color: #fff
}

h2 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
  color: #fff
}

h3 {
  color: #fff
}

.malayalam {
  font-family: Manrope, Arial, sans-serif
}

.gold {
  color: var(--gold-light)
}

.gold-gradient {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.muted {
  color: #a3a3a3
}

.small {
  font-size: 12px
}

.body-copy {
  color: #d4d4d4;
  font-size: 15px;
  line-height: 1.8
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .25s
}

.btn-gold {
  background: var(--gold);
  color: #000;
  box-shadow: 0 4px 20px rgba(201, 154, 46, .20)
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px)
}

.btn-gradient {
  background: linear-gradient(90deg, var(--gold), var(--gold-mid), var(--gold-dark));
  color: #000;
  box-shadow: 0 6px 25px rgba(201, 154, 46, .25)
}

.btn-gradient:hover {
  filter: brightness(1.1);
  transform: translateY(-1px)
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.btn-soft {
  background: #171717;
  border: 1px solid #3a3a3a;
  color: #eee
}

.btn-soft:hover {
  background: #222
}

.btn-round {
  border-radius: 999px
}

.btn-square {
  border-radius: 3px
}

.btn-xl {
  padding: 16px 30px
}

.icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto
}

.icon-lg {
  width: 20px;
  height: 20px
}

.check {
  color: var(--gold);
  width: 17px;
  height: 17px;
  flex: 0 0 auto
}

.grid {
  display: grid
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.gap-3 {
  gap: 12px
}

.gap-4 {
  gap: 16px
}

.gap-6 {
  gap: 24px
}

.gap-8 {
  gap: 32px
}

.gap-12 {
  gap: 48px
}

.card {
  background: var(--bg-2);
  border: 1px solid rgba(201, 154, 46, .25);
  border-radius: var(--radius);
  padding: 24px
}

.card-dark {
  background: var(--panel);
  border-color: #292929
}

.gold-card:hover {
  border-color: rgba(201, 154, 46, .55);
  box-shadow: 0 0 30px rgba(201, 154, 46, .08)
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d4d4d4;
  font-size: 13px
}

.check-row+.check-row {
  margin-top: 12px
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: .3s;
  padding: 24px 0;
  background: transparent
}

.site-header.scrolled {
  padding: 16px 0;
  background: rgba(9, 9, 9, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .7)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: inline-flex;
  align-items: center;
  cursor: pointer
}

.brand img {
  width: auto;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201, 154, 46, .25))
}

.site-header.scrolled .brand img {
  height: 45px
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px
}

.desktop-nav button,
.mobile-nav button {
  border: 0;
  background: none;
  color: #a3a3a3;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
  transition: .2s
}

.desktop-nav button:hover,
.desktop-nav button.active {
  color: var(--gold)
}

.header-cta {
  border-left: 1px solid rgba(255, 255, 255, .1);
  padding-left: 32px
}

.mobile-toggle {
  display: none;
  border: 0;
  background: none;
  color: #ddd;
  padding: 8px
}

.mobile-menu {
  display: none
}

.hero {
  padding: 140px 0 112px;
  background: var(--bg);
  position: relative;
  overflow: hidden
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 18px 18px
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  background: rgba(201, 154, 46, .07)
}

.hero-glow.one {
  width: 600px;
  height: 600px;
  right: -5%;
  top: -10%
}

.hero-glow.two {
  width: 400px;
  height: 400px;
  left: -5%;
  bottom: -10%;
  background: rgba(169, 120, 36, .05)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1
}

.hero-copy {
  padding-right: 24px
}

.hero-copy h1 {
  font-family: Georgia, serif;
  font-weight: 600;
  letter-spacing: -.03em;
  margin-bottom: 24px
}

.hero-copy h1 .gold {
  font-weight: 700
}

.hero-desc {
  font-size: 18px;
  color: #9ca3af;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-top: 32px;
  margin-top: 48px
}

.hero-meta .divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .1)
}

.meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: #fff
}

.meta-label.gold {
  color: var(--gold)
}

.meta-sub {
  font-size: 14px;
  color: #666;
  font-style: italic
}

.hero-visual {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 4 / 3;
  height: 450px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  perspective: 1000px;
  z-index: 1;
  overflow: visible;
  user-select: none
}

.orbit {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  background: rgba(13, 13, 13, .4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center
}

.orbit:before,
.orbit:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}

.orbit:before {
  inset: 48px;
  border: 1px solid rgba(255, 255, 255, .05)
}

.orbit:after {
  inset: 96px;
  border: 1px solid rgba(201, 154, 46, .15)
}

.orbit-inner {
  position: absolute;
  inset: 144px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 50%
}

.chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0
}

.float-card {
  position: absolute;
  background: rgba(18, 18, 18, .95);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
  z-index: 2;
  transition: transform .15s ease-out;
  will-change: transform;
  animation: float 6s ease-in-out infinite
}

.float-card.progress {
  top: 48px;
  right: -16px;
  width: 165px
}

.float-card.options {
  bottom: 48px;
  left: -16px
}

.progress-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  text-transform: uppercase;
  font-family: monospace;
  color: #888;
  margin-bottom: 8px
}

.progress-top b {
  color: var(--gold)
}

.progress-bar {
  height: 6px;
  background: #2a2a2a;
  border-radius: 99px;
  overflow: hidden
}

.progress-bar span {
  display: block;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light))
}

.option-float {
  display: flex;
  align-items: center;
  gap: 12px
}

.option-number {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(201, 154, 46, .15);
  border: 1px solid rgba(201, 154, 46, .4);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800
}

.section-copy {
  max-width: 780px
}

.problem-box {
  max-width: 1000px;
  margin: 56px auto 0;
  padding: 24px;
  border-radius: 24px;
  background: var(--bg-2);
  border: 1px solid rgba(201, 154, 46, .3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35)
}

.problem-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #292929;
  padding-bottom: 24px
}

.state-label {
  font-size: 11px;
  color: #999
}

.state-label.danger {
  color: #fb7185
}

.state-label.success {
  color: var(--gold-light)
}

.scattered-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px
}

.scattered-card {
  background: var(--panel);
  border: 1px solid rgba(127, 29, 29, .5);
  border-radius: 16px;
  padding: 16px;
  text-align: center
}

.scattered-card b {
  display: block;
  font-size: 12px;
  color: #d4d4d4
}

.scattered-card span {
  font-size: 10px;
  color: #fb7185
}

.structured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px
}

.path-card {
  background: var(--panel);
  border: 1px solid rgba(201, 154, 46, .4);
  border-radius: 16px;
  padding: 20px
}

.path-card .num {
  font-family: monospace;
  color: var(--gold);
  font-weight: 800;
  font-size: 12px
}

.path-card h4 {
  color: var(--gold-light);
  margin: 4px 0;
  font-size: 15px
}

.path-card p {
  font-size: 12px;
  color: #888
}

.toggle-align {
  padding: 10px 18px;
  border-radius: 999px;
  background: #171717;
  border: 1px solid rgba(201, 154, 46, .4);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.roadmap {
  max-width: 1000px;
  margin: 48px auto 0;
  width: 100%
}

.timeline {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  width: 100%
}

.timeline span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: .35s
}

.step-buttons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none
}

.step-buttons::-webkit-scrollbar {
  display: none
}

.step-btn {
  padding: 16px;
  text-align: left;
  border-radius: 16px;
  border: 1px solid #292929;
  background: rgba(18, 18, 18, .9);
  color: #d4d4d4;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  flex: 1;
  min-width: 160px
}

.step-btn.active {
  background: #171717;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 154, 46, .18)
}

.step-btn .num {
  font: 800 12px monospace;
  color: var(--gold)
}

.step-btn b {
  display: block;
  margin-top: 4px;
  font-size: 12px
}

/* The Main Display Panel */
.step-panel {
  border: 1px solid rgba(201, 154, 46, .3);
  border-radius: 12px;
  padding: 32px;
  background: rgba(0, 0, 0, .2);
  animation: fadeScale .3s ease-out;
  transition: all .3s ease
}

.step-panel:hover {
  background: rgba(201, 154, 46, .03);
  border-color: rgba(201, 154, 46, .7);
  box-shadow: 0 10px 30px rgba(201, 154, 46, .12);
  transform: translateY(-2px)
}

.step-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #292929;
  padding-bottom: 16px
}

.step-panel h3 {
  font-size: 24px;
  margin-top: 2px
}

.step-tag {
  font-size: 11px;
  color: #888;
  background: #171717;
  border: 1px solid #292929;
  border-radius: 99px;
  padding: 6px 12px
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px
}

.topic {
  background: #171717;
  border: 1px solid #292929;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px
}

.progression {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px
}

.progression span {
  background: #171717;
  border: 1px solid rgba(201, 154, 46, .3);
  color: var(--gold-light);
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 12px
}

.teaching-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #171717;
  border: 1px solid rgba(201, 154, 46, .3);
  display: grid;
  place-items: center;
  color: var(--gold)
}

.feature-card h3 {
  font-size: 13px;
  margin: 14px 0 8px;
  letter-spacing: .08em
}

.feature-card p {
  font-size: 12px;
  color: #888;
  line-height: 1.7
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 56px
}

.category-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(201, 154, 46, .3);
  padding-bottom: 8px
}

.category ul {
  list-style: none;
  padding: 0;
  margin: 16px 0
}

.category li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d4d4d4;
  font-size: 13px;
  margin: 10px 0
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold)
}

.sim-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center
}

.sim-copy h2 {
  margin: 16px 0
}

.sim-terminal {
  background: var(--bg-2);
  border: 1px solid rgba(201, 154, 46, .3);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .7)
}

.terminal-badge,
.ticker,
.sim-box {
  background: #171717;
  border: 1px solid rgba(201, 154, 46, .2);
  border-radius: 12px
}

.terminal-badge {
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #888
}

.ticker {
  margin-top: 20px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.ticker .price {
  font: 900 25px monospace;
  color: #fff
}

.tick-actions {
  display: flex;
  gap: 8px
}

.tick-actions button {
  padding: 6px 10px;
  border-radius: 8px;
  font: 800 11px monospace
}

.up {
  background: #052e22;
  border: 1px solid #10b981;
  color: #34d399
}

.down {
  background: #3b0a17;
  border: 1px solid #f43f5e;
  color: #fb7185
}

.sim-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px
}

.sim-box {
  padding: 16px
}

.sim-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-light);
  margin-bottom: 12px
}

.action-grid,
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

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

.sim-button {
  border: 0;
  background: #171717;
  color: #aaa;
  border-radius: 10px;
  padding: 9px;
  font-size: 11px;
  font-weight: 800
}

.sim-button.active.buy {
  background: #059669;
  color: #fff
}

.sim-button.active.sell {
  background: #e11d48;
  color: #fff
}

.sim-button.active.type {
  background: var(--gold);
  color: #000
}

.explain {
  background: #171717;
  border: 1px solid #292929;
  border-radius: 12px;
  padding: 12px;
  margin-top: 14px
}

.explain-title {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700
}

.explain p {
  font-size: 11px;
  color: #888;
  margin-top: 4px
}

.params {
  margin-top: 14px;
  font: 11px monospace
}

.param {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #292929
}

.param span:first-child {
  color: #888
}

.param .value {
  color: #fff;
  font-weight: 800
}

.sim-place {
  width: 100%;
  margin-top: 14px
}

.toast {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(201, 154, 46, .5);
  border-radius: 12px;
  color: var(--gold-light);
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
  z-index: 100;
  transition: opacity .3s ease;
  width: max-content;
  max-width: 90%
}

.toast button {
  background: none;
  border: 0;
  color: #999;
  text-decoration: underline
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 56px
}

.concept-btn {
  position: relative;
  padding: 16px;
  border-radius: 16px;
  background: #121212;
  border: 1px solid #292929;
  color: #999;
  text-align: center
}

.concept-btn.active {
  background: #171717;
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(201, 154, 46, .2);
  transform: scale(1.03);
  color: var(--gold-light)
}

.concept-btn b {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.concept-btn span {
  font-size: 10px;
  color: #666
}

.concept-inspector {
  margin-top: 32px;
  background: #121212;
  border: 1px solid rgba(201, 154, 46, .4);
  border-radius: 24px;
  padding: 32px
}

.inspector-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: center
}

.context {
  background: #171717;
  border: 1px solid #292929;
  border-radius: 12px;
  padding: 14px;
  margin-top: 12px;
  font-size: 11px;
  color: #d4d4d4
}

.coverage {
  background: #171717;
  border: 1px solid rgba(201, 154, 46, .2);
  border-radius: 16px;
  padding: 20px
}

.coverage ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none
}

.coverage li {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: #d4d4d4;
  margin: 9px 0
}

.target-list {
  max-width: 900px;
  margin: 48px auto 0
}

.target-item {
  background: #121212;
  border: 1px solid #292929;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.target-item+.target-item {
  margin-top: 12px
}

.target-item b {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: .08em;
  margin-right: 6px
}

.target-item span {
  font-size: 12px;
  color: #d4d4d4
}

.pricing-card {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  background: #0d0d0d;
  border: 1px solid rgba(201, 154, 46, .5);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 0 50px rgba(201, 154, 46, .15)
}

.price {
  font-size: 60px;
  line-height: 1;
  color: var(--gold-light);
  font-weight: 900
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 20px 0
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px auto;
  max-width: 620px
}

.pricing-features div {
  background: #121212;
  border: 1px solid #292929;
  border-radius: 12px;
  padding: 12px;
  font-size: 11px
}

.philosophy {
  text-align: center
}

.philosophy h2 {
  margin: 18px auto
}

.philosophy .big {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--gold-light)
}

.final-cta {
  text-align: center
}

.final-card {
  max-width: 420px;
  margin: 24px auto 0;
  text-align: center
}

.final-card .price {
  font-size: 42px
}

.footer {
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, .1);
  position: relative;
  overflow: hidden
}

.footer-inner {
  padding: 48px 0
}

.footer-pillars {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding-bottom: 32px
}

.pillar-row {
  display: flex;
  gap: 32px
}

.pillar {
  font-size: 10px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: .12em
}

.pillar:after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, .1);
  margin-top: 5px
}

.pillar:first-child:after {
  background: rgba(201, 154, 46, .6)
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.footer-logo img {
  height: 80px
}

.footer-copy {
  max-width: 520px;
  color: #888;
  font-size: 12px;
  line-height: 1.7
}

.footer-mainline {
  color: #d4d4d4;
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0
}

.trust-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px
}

.trust {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 6px 10px;
  border-radius: 3px;
  color: var(--gold-light);
  font-size: 10px
}

.footer-title {
  font-size: 11px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase
}

.footer-nav {
  list-style: none;
  margin: 14px 0;
  padding: 0
}

.footer-nav li {
  margin: 8px 0
}

.footer-nav button {
  border: 0;
  background: none;
  color: #888;
  padding: 0;
  font-size: 13px
}

.footer-nav button:hover {
  color: var(--gold)
}

.footer-program {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 24px;
  border-radius: 3px
}

.footer-program h4 {
  margin: 8px 0;
  color: #fff
}

.footer-disclaimer {
  margin-top: 32px;
  background: rgba(13, 13, 13, .5);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 16px;
  border-radius: 3px;
  color: #888;
  font-size: 11px;
  line-height: 1.7
}

.footer-disclaimer strong {
  display: flex;
  gap: 8px;
  color: var(--gold);
  margin-bottom: 4px
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  color: #666;
  font-size: 10px;
  text-transform: uppercase
}

.legal-links {
  display: flex;
  gap: 24px;
  text-transform: none;
  font-size: 12px
}

.legal-links button {
  border: 0;
  background: none;
  color: #666
}

.legal-links button:hover {
  color: var(--gold)
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto
}

.modal {
  width: min(100%, 520px);
  background: #0d0d0d;
  border: 1px solid rgba(201, 154, 46, .4);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  box-shadow: 0 0 50px rgba(201, 154, 46, .15);
  margin: 32px 0
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: 0;
  background: rgba(255, 255, 255, .05);
  color: #aaa;
  border-radius: 50%;
  width: 34px;
  height: 34px
}

.modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1)
}

.modal-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #121212;
  border: 1px solid rgba(201, 154, 46, .25);
  border-radius: 16px;
  padding: 16px;
  margin: 18px 0
}

.modal-price .price {
  font-size: 34px
}

.mini-list {
  font-size: 11px;
  color: var(--gold-light);
  text-align: right
}

.form-group label {
  display: block;
  color: #d4d4d4;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 5px
}

.form-group+.form-group {
  margin-top: 14px
}

.form-input {
  width: 100%;
  background: #171717;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  color: #fff;
  padding: 12px 14px;
  font-size: 13px;
  outline: none
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold)
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.modal-actions {
  margin-top: 18px;
  display: grid;
  gap: 10px
}

.modal-foot {
  text-align: center;
  color: #666;
  font-size: 11px;
  margin-top: 12px
}

.success {
  text-align: center;
  padding: 20px 0
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 154, 46, .2);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--gold-light)
}

.receipt {
  background: #121212;
  border: 1px solid #292929;
  border-radius: 12px;
  text-align: left;
  padding: 14px;
  font-size: 11px;
  margin: 18px 0
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #292929
}

.receipt-row:last-child {
  border-bottom: 0
}

.legal-modal .modal {
  max-width: 620px
}

.legal-content {
  max-height: 320px;
  overflow: auto;
  color: #ccc;
  font-size: 12px;
  line-height: 1.8
}

.legal-content p+p {
  margin-top: 12px
}

.page-hero {
  text-align: center;
  padding: 144px 0 0
}

.page-hero h1 {
  margin-top: 16px
}

.page-hero .lead {
  max-width: 700px;
  margin: 20px auto 0;
  color: #ccc;
  font-size: 17px;
  line-height: 1.8
}

.progress-cards {
  max-width: 900px;
  margin: 32px auto 0
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center
}

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

.course-hero {
  padding: 144px 0 0
}

.course-banner {
  background: #0d0d0d;
  border: 1px solid rgba(201, 154, 46, .4);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .5)
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.pill {
  background: #171717;
  color: #ccc;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px
}

.course-banner h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin: 20px 0
}

.course-banner .mal-title {
  font-size: 22px;
  color: var(--gold-light);
  font-weight: 700
}

.course-banner-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid #292929;
  padding-top: 20px;
  margin-top: 20px
}

.curriculum {
  max-width: 900px;
  margin: 48px auto 0
}

.accordion {
  border: 1px solid #292929;
  border-radius: 16px;
  overflow: hidden;
  background: #0d0d0d
}

.accordion+.accordion {
  margin-top: 12px
}

.accordion.open {
  border-color: rgba(201, 154, 46, .5);
  background: #121212;
  box-shadow: 0 4px 25px rgba(201, 154, 46, .08)
}

.accordion-head {
  width: 100%;
  border: 0;
  background: none;
  color: #fff;
  text-align: left;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

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

.module-number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #171717;
  border: 1px solid rgba(201, 154, 46, .3);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font: 800 13px monospace;
  flex: 0 0 auto
}

.module-title h4 {
  font-size: 17px
}

.module-title p {
  font-size: 11px;
  color: #777;
  margin-top: 2px
}

.accordion-body {
  padding: 0 20px 20px;
  border-top: 1px solid #292929
}

.topic-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.topic-list div {
  background: #171717;
  border: 1px solid #292929;
  border-radius: 12px;
  padding: 10px;
  font-size: 11px;
  color: #ddd;
  display: flex;
  gap: 8px
}

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

.outcome-box {
  background: #0d0d0d;
  border: 1px solid rgba(201, 154, 46, .2);
  border-radius: 24px;
  padding: 24px
}

.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.contact-form {
  max-width: 600px;
  margin: 48px auto 0
}

.contact-card {
  background: #0d0d0d;
  border: 1px solid rgba(201, 154, 46, .3);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45)
}

.contact-form .form-group {
  margin-bottom: 16px
}

.contact-actions {
  margin-top: 18px
}

.whatsapp-link {
  border: 0;
  background: none;
  color: var(--gold-light);
  font-size: 11px;
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  gap: 6px
}

.contact-success {
  text-align: center;
  padding: 32px 0
}

@media(max-width:900px) {

  .desktop-nav,
  .header-cta {
    display: none
  }

  .mobile-toggle {
    display: block
  }

  .mobile-menu {
    display: none;
    background: rgba(13, 13, 13, .97);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 24px 16px
  }

  .mobile-menu.open {
    display: block
  }

  .mobile-nav {
    display: grid;
    gap: 6px
  }

  .mobile-nav button {
    text-align: left;
    padding: 12px 14px;
    border-radius: 3px
  }

  .mobile-nav button.active {
    background: rgba(201, 154, 46, .12);
    color: var(--gold);
    border-left: 2px solid var(--gold)
  }

  .mobile-cta {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 12px;
    padding-top: 16px
  }

  .hero-grid,
  .sim-grid,
  .about-grid {
    grid-template-columns: 1fr
  }

  .hero-copy {
    padding-right: 0
  }

  .hero-visual {
    max-width: 600px
  }

  .grid-4,
  .teaching-grid,
  .feature-grid,
  .learn-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .scattered-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .structured-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .step-buttons {
    grid-template-columns: 1fr 1fr
  }

  .timeline {
    display: none
  }

  .inspector-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid>div:first-child {
    grid-column: 1/-1
  }

  .pricing-features {
    grid-template-columns: 1fr
  }

  .outcome-grid,
  .risk-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {
  .container {
    width: min(var(--max), calc(100% - 24px))
  }

  .site-header {
    padding: 18px 0
  }

  .site-header.scrolled {
    padding: 12px 0
  }

  .brand img {
    height: 48px
  }

  .site-header.scrolled .brand img {
    height: 40px
  }

  .hero {
    padding-top: 120px
  }

  .hero-desc {
    font-size: 16px
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-meta {
    gap: 20px
  }

  .hero-meta .divider {
    display: none
  }

  .hero-visual {
    max-width: 430px
  }

  .float-card.progress {
    right: -4px
  }

  .float-card.options {
    left: -4px
  }

  .section {
    padding: 64px 0
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .teaching-grid,
  .feature-grid,
  .learn-grid,
  .approach-grid {
    grid-template-columns: 1fr
  }

  .scattered-grid,
  .structured-grid {
    grid-template-columns: 1fr
  }

  .problem-header {
    align-items: flex-start;
    flex-direction: column
  }

  .roadmap {
    margin-top: 32px
  }

  .step-buttons {
    grid-template-columns: 1fr
  }

  .step-panel {
    padding: 20px
  }

  .topic-grid {
    grid-template-columns: 1fr
  }

  .sim-controls {
    grid-template-columns: 1fr
  }

  .ticker {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column
  }

  .tick-actions {
    width: 100%
  }

  .tick-actions button {
    flex: 1
  }

  .options-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .concept-inspector {
    padding: 20px
  }

  .course-banner {
    padding: 24px
  }

  .course-banner-bottom {
    flex-direction: column;
    align-items: stretch
  }

  .topic-list {
    grid-template-columns: 1fr
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .modal {
    padding: 24px
  }

  .modal-price {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column
  }

  .mini-list {
    text-align: left
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-grid>div:first-child {
    grid-column: auto
  }

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

  .legal-links {
    gap: 14px;
    flex-wrap: wrap
  }

  .pillar-row {
    gap: 16px
  }

  .page-hero {
    padding-top: 120px
  }
}

.desktop-nav a,
.mobile-nav a {
  color: #a3a3a3;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--gold)
}

.footer-nav a {
  color: #888;
  font-size: 13px
}

.footer-nav a:hover {
  color: var(--gold)
}

.mobile-nav a {
  display: block;
  padding: 12px
}

/* --- Live graph animations --- */
.chart-svg, .float-card {
  transition: transform .15s ease-out;
  will-change: transform
}

/* Make the data points (circles) pulse to feel "live" */
@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.chart-svg circle {
    transform-origin: center;
    animation: pulseDot 2s infinite ease-in-out;
}

/* Stagger the pulsing so they don't all blink at once */
.chart-svg circle:nth-of-type(1) { animation-delay: 0s; transform-origin: 120px 250px; }
.chart-svg circle:nth-of-type(2) { animation-delay: 0.4s; transform-origin: 220px 180px; }
.chart-svg circle:nth-of-type(3) { animation-delay: 0.8s; transform-origin: 320px 120px; }

/* Setup for the line drawing animation handled in JS */
.chart-svg path:first-of-type {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* --- Firefly Effect (Rotational Swirl) --- */
#firefly-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0; /* Keeps them behind your content but visible */
    overflow: hidden;
}

.firefly {
    position: absolute;
    width: 1px; /* Extremely small and delicate */
    height: 1.5px;
    pointer-events: none;
}

.firefly::before,
.firefly::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform-origin: -8vw 4vh; /* Wide, sweeping circular path */
}

.firefly::before {
    background: black;
    opacity: 0.2;
    /* Uses variables passed from JS */
    animation: drift var(--drift-dur) ease var(--drift-del) alternate infinite;
}

.firefly::after {
    background: white;
    opacity: 0;
    /* Gold accent color matching your theme */
    box-shadow: 0 0 6px 1px #C99A2E; 
    /* Combines the swirl and the blinking */
    animation: 
        drift var(--drift-dur) ease var(--drift-del) alternate infinite, 
        flash var(--flash-dur) ease infinite;
}

@keyframes drift {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* --- Interactive curriculum roadmap --- */
.roadmap {
  margin-top: 40px;
  width: 100%
}

.timeline #roadmapProgress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gold);
  transition: width .4s cubic-bezier(.22,1,.36,1)
}

.step-btn:hover {
  background: rgba(255,255,255,.03)
}

.step-btn.active {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201,154,46,.1)
}

.step-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold)
}

.step-title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: .8
}

.step-btn.active .step-title {
  opacity: 1
}

@keyframes fadeScale {
    from { opacity: 0; transform: scale(0.99); }
    to { opacity: 1; transform: scale(1); }
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.panel-module {
    color: #C99A2E;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.panel-main-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* The "Beginner Friendly" Pill */
.panel-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #a0aec0; /* Soft gray-blue */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    display: inline-block;
}

.panel-desc {
    color: #9ca3af;
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* 3-Column Topics Grid */
.panel-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 16px;
    border-radius: 8px;
    color: #d1d5db;
    font-size: 13px;
    font-weight: 500;
}

.topic-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
} 

/* --- Trading Simulator Buy/Sell Active Colors --- */

/* Make the Sell button RED when active */
.action-grid .sim-button.active[data-action="sell"] {
    background: rgba(239, 68, 68, 0.15); /* Soft transparent red */
    border-color: #ef4444; /* Solid red border */
    color: #ef4444; /* Red text */
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2); /* Red glow */
}

/* Make the Buy button GREEN when active (Standard Trading UI) */
.action-grid .sim-button.active[data-action="buy"] {
    background: rgba(34, 197, 94, 0.15); /* Soft transparent green */
    border-color: #22c55e; /* Solid green border */
    color: #22c55e; /* Green text */
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2); /* Green glow */
}

/* --- Toast notification styling --- */
.sim-terminal {
  position: relative
}

.toast[hidden] {
  display: none !important
}

.toast span {
  font-size: 14px
}

/* Style the Dismiss Button */
.toast button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #a0aec0;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

.toast button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* --- Options fundamentals inspector --- */
.option-btn {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 24px;
    min-width: 160px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Active Button State (Gold outline + Diamond pointer) */
.option-btn.active {
    border-color: #C99A2E;
    background: rgba(201, 154, 46, 0.05);
}

/* Active Button Diamond Pointer */
.option-btn.active::after {
    content: '';
    position: absolute;
    bottom: -6px; /* Changed from -32px to sit exactly on the button's border */
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #C99A2E;
    z-index: 2;
    border-radius: 1px; /* Adds a tiny curve so it doesn't look overly sharp */
}

.opt-short {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.opt-sub {
    color: #888;
    font-size: 11px;
}

/* Divider with lines and pill */
.inspect-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    position: relative;
}

.inspect-divider::before, 
.inspect-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.divider-pill {
    margin: 0 16px;
    padding: 6px 16px;
    border: 1px solid rgba(201, 154, 46, 0.3);
    border-radius: 50px;
    font-size: 11px;
    color: #C99A2E;
    background: #0f0f0f;
    letter-spacing: 0.5px;
}

/* Main Inspector Panel */
.inspector-panel {
    border: 1px solid rgba(201, 154, 46, 0.3);
    border-radius: 16px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 40px;
    align-items: flex-start;
    animation: fadeScale 0.3s ease-out;
}

/* Layout for screens wider than mobile */
@media (max-width: 768px) {
    .inspector-panel {
        flex-direction: column;
        padding: 24px;
    }
}

.inspector-left {
    flex: 1;
}

.opt-element-tag {
    color: #C99A2E;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.opt-main-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 0;
}

.opt-desc {
    color: #a0aec0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Dark context box */
.opt-context {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 8px;
    font-size: 13px;
}

/* Right Side: Course Coverage Box */
.inspector-right {
    min-width: 280px;
}

.coverage-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 24px;
}

.coverage-title {
    color: #C99A2E;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-list li {
    color: #d1d5db;
    font-size: 13px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.coverage-list li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   HOVER & INTERACTION ANIMATIONS
   ========================================================================== */

/* Button Hovers */
.btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(201, 154, 46, 0.3); /* Gold glow */
}

.btn:active {
    transform: translateY(1px);
}

/* Card & Grid Item Hovers */
.card, .path-card, .scattered-card, .target-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover, .path-card:hover, .scattered-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(201, 154, 46, 0.15), 0 5px 15px rgba(0,0,0,0.2);
    border-color: rgba(201, 154, 46, 0.5); /* Slight gold border on hover */
}

.target-item:hover {
    transform: translateX(10px); /* Slides right slightly */
    background: rgba(255, 255, 255, 0.05); /* Slight highlight */
    border-radius: 8px;
}

/* Floating animation for hero elements */
@keyframes float {
  0% { transform: translateY(0) }
  50% { transform: translateY(-15px) }
  100% { transform: translateY(0) }
}

/* Header Scroll State */
.site-header {
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.site-header.scrolled {
    background: rgba(15, 15, 15, 0.95); /* Adjust base dark color to match your theme */
    backdrop-filter: blur(12px);
    padding: 10px 0; /* Shrinks the navbar slightly */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}


/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (Triggered by JS)
   ========================================================================== */

/* Base class added via JS to elements we want to animate */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

/* Class added when element enters viewport */
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for items in grids so they don't load all at once */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Hero section layout --- */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr
  }
}

/* Creator Context Note Box */
.creator-note {
    display: flex;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
    align-items: flex-start;
}

.creator-note .note-icon {
    font-size: 20px;
    background: rgba(201, 154, 46, 0.1);
    padding: 8px;
    border-radius: 8px;
}

.creator-note p {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Hero Pricing Card */
.hero-pricing-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(201, 154, 46, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.price-top-row {
    font-size: 11px;
    font-weight: 700;
    color: #C99A2E;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.price-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.pricing-nums {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.old-price {
    font-size: 20px;
    color: #6b7280;
    text-decoration: line-through;
}

.current-price {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.one-time {
    font-size: 10px;
    color: #888;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hero-perks {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #a0aec0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    flex-wrap: wrap;
}

.hero-disclaimer-text {
    font-size: 11px;
    color: #6b7280;
    margin-top: 12px;
}

/* Radar rings background in visual area */
.orbit {
  position: relative;
  width: 100%;
  height: 100%
}

.radar-ring {
    position: absolute;
    border: 1px dashed rgba(201, 154, 46, 0.12);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.radar-ring.r1 { width: 180px; height: 180px; }
.radar-ring.r2 { width: 280px; height: 280px; }
.radar-ring.r3 { width: 380px; height: 380px; }

/* Chart SVG */
.chart-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Chart Milestones Positioning */
.chart-milestone {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(201, 154, 46, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    z-index: 3;
}

.milestone-icon {
    font-size: 14px;
}

.milestone-text b {
    display: block;
    font-size: 10px;
    color: #C99A2E;
}

.milestone-text span {
    display: block;
    font-size: 10px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

/* Coordinate placement along the curve path */
.chart-milestone.m1 { bottom: 15%; left: 5%; }
.chart-milestone.m2 { bottom: 38%; left: 28%; }
.chart-milestone.m3 { top: 40%; right: 32%; }
.chart-milestone.m4 { top: 18%; right: 5%; }

/* Progress card adjustment */
.float-card.progress {
  top: 20px;
  right: 20px;
  background: rgba(15, 15, 15, .9);
  border: 1px solid rgba(201, 154, 46, .3);
  padding: 12px 16px;
  border-radius: 12px;
  width: 180px;
  z-index: 4
}

.float-card.options {
  animation-delay: 3s
}
/* --- Curriculum Roadmap (Reference Style) --- */

.roadmap-section {
    position: relative;
    overflow: hidden;
}

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

.sub-heading-ml {
    font-size: 24px;
    font-weight: 700;
    margin: 8px 0 12px 0;
}

/* 5-Column Grid */
.roadmap-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.road-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px 16px;
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.road-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 154, 46, 0.4);
}

/* Highlighted 5th Card State */
.road-card.active {
    border-color: #C99A2E;
    background: rgba(201, 154, 46, 0.04);
    box-shadow: 0 10px 30px rgba(201, 154, 46, 0.1);
}

.road-icon {
    font-size: 22px;
}

.road-num {
    font-size: 13px;
    font-weight: 700;
    color: #C99A2E;
}

.road-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    height: 42px; /* Keeps card header heights uniform */
}

.road-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
}

.road-list li {
    font-size: 12px;
    color: #9ca3af;
}

.road-tag {
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.5px;
    margin-top: auto;
    padding-top: 12px;
}

.road-tag.gold-text {
    color: #C99A2E;
}

.road-arrow {
    color: #C99A2E;
    font-size: 24px;
    font-weight: 300;
    opacity: 0.6;
    flex-shrink: 0;
}

/* Connecting Timeline Bar with Nodes */
.roadmap-timeline-bar {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px auto 60px auto;
    max-width: 90%;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #C99A2E 0%, #C99A2E 100%);
}

.timeline-node {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #0f0f0f;
    border: 2px solid #C99A2E;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(201, 154, 46, 0.5);
}

.timeline-node.highlight {
    background: #C99A2E;
}

/* Bottom Feature Box */
.path-feature-box {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(201, 154, 46, 0.25);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.feature-box-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    text-align: left;
}

.feature-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

@media (max-width: 968px) {
    .feature-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.f-icon {
    font-size: 20px;
    color: #C99A2E;
    margin-bottom: 4px;
}

.feature-col h5 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.feature-col p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.5;
}

.feature-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #cbd5e1;
}

.star-icon {
    color: #C99A2E;
}
/* --- Hero feature banner cards --- */
.hero-feature-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

@media (max-width: 968px) {
    .hero-feature-banner {
        grid-template-columns: 1fr;
    }
}

.hero-f-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
}

.hero-f-card:hover {
    border-color: rgba(201, 154, 46, 0.3);
    background: rgba(201, 154, 46, 0.03);
}

.hero-f-icon {
    font-size: 18px;
    background: rgba(201, 154, 46, 0.1);
    border: 1px solid rgba(201, 154, 46, 0.2);
    padding: 8px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-f-content b {
    display: block;
    font-size: 11px;
    color: #C99A2E;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.hero-f-content span {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.4;
}


.hero-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Draw-line animation states */
.draw-line {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    transition: stroke-dashoffset 2.2s ease-out;
}

.hero-visual.loaded .draw-line {
    stroke-dashoffset: 0;
}

.fade-element {
    opacity: 0;
    transition: opacity 1.2s ease-out 0.8s;
}

.hero-visual.loaded .fade-element {
    opacity: 1;
}

.badge-group {
    cursor: pointer;
}

.badge-rect, .badge-circle {
    transition: all 0.3s ease;
}

.icon-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrap svg {
    width: 14px;
    height: 14px;
}

.icon-wrap.active { color: #000000; }
.icon-wrap.inactive { color: #E5B52F; }

.banner-group {
    pointer-events: auto;
    cursor: pointer;
}

@keyframes pinAnimation {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-ping {
    animation: pinAnimation 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    transform-origin: center;
}
.hero-visual {
    align-self: flex-start; /* Pins the graph to the top */
    margin-top: 0; /* Ensures no extra spacing is pushing it down */
}

/* Ensure the timeline bar can hold the animated line */
.roadmap-timeline-bar {
    position: relative;
    /* Set default progress to 90% (Step 05) to match your initial HTML */
    --progress: 90%; 
}

/* Base gray/dark line */
.timeline-line {
    position: relative;
    width: 100%;
    height: 4px; /* Adjust thickness if needed */
    background-color: #2a2a2a; /* Inactive line color */
    border-radius: 2px;
    overflow: hidden;
}

/* The Gold animated fill line */
.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress);
    background: linear-gradient(90deg, #CFA32D, #E5B52F, #FFF2C2);
    border-radius: 2px;
    /* This creates the smooth sliding animation */
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Smooth transitions for the dots */
.timeline-node {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Smooth transitions for the cards */
.road-card {
    transition: all 0.3s ease;
}

/* Container for the 3 feature cards */
.hero-feature-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creates 3 equal columns */
    gap: 24px; /* Space between the cards */
    width: 100%;
    max-width: 1200px; /* Limits the width so it doesn't stretch infinitely */
    margin: 40px auto 0 auto; /* Centers the banner horizontally */
    padding: 0 20px; /* Adds a little breathing room on the sides */
}

/* Make sure the cards themselves fill their grid cells */
.hero-f-card {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    /* Keep your existing background, padding, and border styles here */
}

/* Mobile Responsiveness: Stack cards on smaller screens */
@media (max-width: 992px) {
    .hero-feature-banner {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    }
}
/* Fix the Hero Section height and bottom spacing */
.hero {
    min-height: auto; /* Overrides any 100vh that might be forcing the gap */
    padding-bottom: 60px; /* Adjust this number to get the exact spacing you want */
}

/* Fix the top spacing of the Problem section */
.section {
    padding-top: 60px; /* Reduces the gap from the top of the next section */
    margin-top: 0;
}

/* ========================================================
   RESPONSIVE FIXES FOR HERO SECTION & OVERLAPPING GRAPH
   ======================================================== */

/* Ensure the SVG scales properly and doesn't break out of its container */
.hero-svg {
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    display: block;
}

/* Tablet & Mobile Breakpoint */
@media (max-width: 991px) {
    /* 1. Stack the hero content and the graph vertically */
    .hero-grid {
        display: flex !important;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    /* 2. Fix the graph container so it doesn't overlap below */
    .hero-visual {
        position: relative !important;
        width: 100%;
        max-width: 500px; /* Prevents it from getting too large on tablets */
        margin: 0 auto;
        padding-bottom: 2rem; /* Adds breathing room before the features banner */
    }

    /* 3. Center align the pricing card on mobile */
    .hero-pricing-card {
        margin: 20px auto !important;
        max-width: 400px;
        text-align: left; /* Keep inside text left-aligned */
    }

    /* 4. Fix the bottom features banner (Recorded Classes, Doubt Support, etc.) */
    .hero-feature-banner {
        display: flex;
        flex-direction: column; /* Stacks the cards vertically on mobile */
        gap: 15px;
        width: 100%;
        position: relative;
        z-index: 10; /* Ensures it stays on top of any stray background glows */
        margin-top: 2rem;
    }

    .hero-f-card {
        width: 100%;
        justify-content: center; /* Centers the icon and text */
    }
}

/* Smaller Mobile Screens (Phones) */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem; /* Make the main title slightly smaller for small screens */
    }
    
    .hero-desc {
        font-size: 1rem;
    }

    /* Adjust the floating banner inside the graph if it gets cut off */
    #banner {
        transform: translate(10%, 350px); 
    }
    #banner rect {
        width: 80%; /* Shrinks the floating badge inside the SVG */
    }
}
/* Style for the new SVG icons */
.road-icon svg {
    width: 32px;
    height: 32px;
    color: #E5B52F; /* Matches your gold theme */
    display: block;
    margin: 0 auto;
}

/* Optional: Make the active card icon a bit larger or brighter */
.road-card.active .road-icon svg {
    width: 36px;
    height: 36px;
    color: #CFA32D;
}

/* Style for the feature box SVG icons */
.f-icon svg {
    width: 28px;
    height: 28px;
    color: #E5B52F; /* Gold theme color */
    display: inline-block;
}

/* Style for the tiny star icon in the footer note */
.star-icon svg {
    color: #E5B52F;
}