:root {
  --lux-black: #070a08;
  --lux-panel: #0d130f;
  --lux-card: #111912;
  --lux-gold: #f7c85b;
  --lux-gold-2: #ffe7a0;
  --lux-muted: #b8b2a2;
}

html {
  background: var(--lux-black);
}

body {
  color: #f8f0dc;
  background:
    radial-gradient(circle at 20% 0%, rgba(247, 200, 91, .22), transparent 24%),
    radial-gradient(circle at 78% 12%, rgba(185, 255, 102, .13), transparent 25%),
    radial-gradient(circle at 50% 48%, rgba(247, 200, 91, .06), transparent 36%),
    linear-gradient(180deg, #070a08 0%, #0b100d 46%, #101713 100%);
}

body > :not(.trading-graph-bg) {
  position: relative;
}

.trading-graph-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .78;
}

.trading-graph-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 14%, rgba(247, 200, 91, .12), transparent 25%),
    radial-gradient(circle at 82% 24%, rgba(185, 255, 102, .08), transparent 22%),
    linear-gradient(180deg, rgba(7, 10, 8, .1), rgba(7, 10, 8, .68) 72%, rgba(7, 10, 8, .92));
}

.trading-graph-bg svg {
  width: 100%;
  height: 100%;
  transform: scale(1.05);
}

.graph-grid {
  fill: none;
  stroke: rgba(247, 200, 91, .07);
  stroke-width: 1;
}

.graph-fill {
  fill: rgba(247, 200, 91, .045);
  animation: graph-fill-breathe 5s ease-in-out infinite;
}

.graph-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1650;
  filter: drop-shadow(0 0 16px rgba(247, 200, 91, .34));
}

.graph-line-a {
  stroke: rgba(247, 200, 91, .46);
  stroke-width: 5;
  animation: graph-draw 6.5s ease-in-out infinite;
}

.graph-line-b {
  stroke: rgba(185, 255, 102, .16);
  stroke-width: 3;
  animation: graph-draw 8s ease-in-out infinite reverse;
}

.graph-candles path,
.graph-candles rect {
  stroke: rgba(255, 231, 160, .28);
  fill: rgba(247, 200, 91, .12);
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: candle-glow 2.8s ease-in-out infinite;
}

.graph-candles rect:nth-of-type(2n) {
  fill: rgba(185, 255, 102, .08);
  animation-delay: .55s;
}

.graph-spark {
  fill: #ffe7a0;
  filter: drop-shadow(0 0 18px rgba(247, 200, 91, .95));
  offset-path: path("M0 700 C120 642 190 670 290 610 C420 532 510 570 630 480 C760 382 850 410 980 310 C1130 194 1240 240 1440 138");
  animation: graph-spark-travel 6.5s ease-in-out infinite;
}

body::after {
  opacity: .28;
  background-image:
    linear-gradient(rgba(247, 200, 91, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 200, 91, .08) 1px, transparent 1px);
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 10px 18px;
  background:
    radial-gradient(circle at 25% 0%, rgba(185, 255, 102, .16), transparent 28%),
    linear-gradient(90deg, #070a08, #2a1d07 48%, #070a08);
  color: var(--lux-gold-2);
  border-bottom: 1px solid rgba(247, 200, 91, .25);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.announcement span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lux-gold);
  box-shadow: 0 0 16px rgba(247, 200, 91, .85);
}

.announcement strong,
.announcement b {
  border: 1px solid rgba(247, 200, 91, .38);
  border-radius: 999px;
  padding: 6px 10px;
  background: linear-gradient(135deg, #ffe7a0, #f7c85b);
  color: #070a08;
  box-shadow: 0 8px 22px rgba(247, 200, 91, .16);
}

.nav-wrap {
  background: rgba(7, 10, 8, .82);
  border-bottom: 1px solid rgba(247, 200, 91, .18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .32);
}

.brand,
.nav-links a,
.text-link {
  color: #fff3d6;
}

.brand-mark {
  background: linear-gradient(135deg, #ffe7a0, #f7c85b 48%, #8f651d);
  color: #070a08;
  box-shadow: 0 0 0 1px rgba(247, 200, 91, .35), 0 12px 28px rgba(247, 200, 91, .25);
}

.brand-logo {
  gap: 12px;
}

.brand-logo .logo-image {
  width: 46px;
  height: 46px;
  border-radius: 0;
  background: none;
  box-shadow: 0 12px 30px rgba(247, 200, 91, .2);
  object-fit: contain;
}

.brand-word {
  display: grid;
  gap: 0;
  line-height: .95;
}

.brand-word strong {
  color: #fff3d6;
  font: 900 20px/1 var(--font-display);
  letter-spacing: -.045em;
}

.brand-word small {
  color: var(--lux-gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .24em;
}

.nav-links a::after {
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
}

.button {
  background: linear-gradient(135deg, #f7c85b, #ffe7a0);
  color: #080b09;
  box-shadow: 0 16px 38px rgba(247, 200, 91, .22);
}

.button span {
  color: #080b09;
}

.button:hover {
  background: linear-gradient(135deg, #ffe7a0, #f7c85b);
}

.button-light {
  background: linear-gradient(135deg, #ffe7a0, #f7c85b);
}

.hero {
  min-height: 760px;
}

.hero::after {
  content: "BLACK GOLD";
  color: rgba(247, 200, 91, .055);
}

.hero::before {
  border-color: rgba(247, 200, 91, .16);
  box-shadow:
    56px 36px 0 -32px rgba(247, 200, 91, .55),
    96px -18px 0 -48px rgba(255, 231, 160, .7);
}

.eyebrow,
.hero .eyebrow,
.hero-copy > p,
.trust-row small,
.section-heading > p,
.course-card > p,
.faq > div > p,
details p {
  color: var(--lux-muted);
}

.hero h1,
.section-heading h2,
.method h2,
.faq h2,
.cta-section h2 {
  color: #fff5df;
}

.hero h1 em,
.section-heading h2 em,
.method h2 em,
.faq h2 em,
.cta-section h2 em {
  background: linear-gradient(90deg, #fff8e7, #f7c85b 45%, #a77c25);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-row {
  background: rgba(247, 200, 91, .08);
  border-color: rgba(247, 200, 91, .18);
}

.stars {
  color: var(--lux-gold);
}

.hero-visual .glow {
  background:
    radial-gradient(circle, rgba(247, 200, 91, .44), transparent 58%),
    radial-gradient(circle at 72% 35%, rgba(185, 255, 102, .18), transparent 45%);
}

.dashboard {
  background:
    linear-gradient(145deg, rgba(255, 231, 160, .09), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(247, 200, 91, .13), transparent 28%),
    #080c09;
  border-color: rgba(247, 200, 91, .35);
  box-shadow:
    0 38px 100px rgba(0, 0, 0, .5),
    0 0 0 8px rgba(247, 200, 91, .08),
    inset 0 1px 0 rgba(255, 231, 160, .18);
}

.line {
  stroke: var(--lux-gold);
}

.chart-dot,
.dot {
  fill: var(--lux-gold);
  background: var(--lux-gold);
}

.gain,
.green,
.dash-stats b.green {
  color: var(--lux-gold);
}

.gain {
  background: rgba(247, 200, 91, .12);
}

.float-card {
  background: rgba(14, 18, 15, .82);
  border-color: rgba(247, 200, 91, .22);
  color: #fff5df;
}

.float-card small {
  color: var(--lux-muted);
}

.safe,
.risk-card .safe {
  background: rgba(247, 200, 91, .14);
  color: var(--lux-gold);
}

.ticker {
  background: linear-gradient(90deg, #070a08, #f7c85b, #ffe7a0, #f7c85b, #070a08);
  box-shadow: 0 20px 50px rgba(247, 200, 91, .16);
}

.ticker-inner {
  color: #080b09;
}

.section-heading::after {
  background: linear-gradient(90deg, var(--lux-gold), transparent);
}

.markets-taught {
  padding-bottom: 70px;
}

.market-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.market-image-preview {
  margin: 0 0 24px;
  border: 1px solid rgba(247, 200, 91, .22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(7, 10, 8, .58);
  box-shadow: 0 24px 68px rgba(0, 0, 0, .26);
}

.market-image-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.market-brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}

.market-brand-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 136px;
  border: 1px solid rgba(247, 200, 91, .24);
  border-radius: 999px;
  padding: 9px 13px 9px 9px;
  background:
    linear-gradient(135deg, rgba(255, 231, 160, .11), rgba(255, 255, 255, .035)),
    rgba(7, 10, 8, .58);
  box-shadow: inset 0 1px 0 rgba(255, 231, 160, .12), 0 10px 26px rgba(0, 0, 0, .18);
}

.market-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 231, 160, .5);
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe7a0, #f7c85b);
  box-shadow: 0 0 0 1px rgba(255, 231, 160, .25), 0 10px 26px rgba(247, 200, 91, .18);
}

.market-logo svg {
  width: 26px;
  height: 26px;
}

.market-logo path {
  fill: none;
  stroke: #070a08;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-bank path:first-child,
.logo-gold path,
.logo-btc path {
  fill: rgba(7, 10, 8, .08);
}

.logo-btc {
  background: linear-gradient(135deg, #ffe2a6, #f7931a);
}

.logo-bank {
  background: linear-gradient(135deg, #e6f4ff, #72c3ff);
}

.logo-gold {
  background: linear-gradient(135deg, #fff0ad, #d49b22);
}

.logo-forex {
  background: linear-gradient(135deg, #d8ffc2, #7fe044);
}

.market-brand-strip small {
  color: #fff5df;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.market-focus-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(247, 200, 91, .18);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 231, 160, .075), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(247, 200, 91, .11), transparent 32%),
    #0d130f;
  box-shadow: 0 22px 62px rgba(0, 0, 0, .28);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.market-focus-card::before {
  content: "";
  position: absolute;
  inset: -80% -40%;
  background: linear-gradient(110deg, transparent 43%, rgba(255, 231, 160, .18) 50%, transparent 57%);
  transform: translateX(-60%);
  transition: transform .9s ease;
}

.market-focus-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 200, 91, .42);
  box-shadow: 0 30px 78px rgba(0, 0, 0, .36), 0 0 0 1px rgba(247, 200, 91, .12);
}

.market-focus-card:hover::before {
  transform: translateX(60%);
}

.market-card-visual {
  position: relative;
  height: 142px;
  margin: -4px 0 22px;
  border: 1px solid rgba(247, 200, 91, .18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 247, 223, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 223, .05) 1px, transparent 1px),
    radial-gradient(circle at 80% 0%, rgba(247, 200, 91, .18), transparent 42%),
    rgba(2, 4, 3, .48);
  background-size: 100% 34px, 52px 100%, auto, auto;
}

.market-card-visual .market-logo {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 58px;
  height: 58px;
}

.market-card-visual .market-logo svg {
  width: 34px;
  height: 34px;
}

.market-card-visual .card-logo-secondary {
  left: 78px;
  transform: scale(.82);
  opacity: .9;
}

.market-card-visual svg {
  position: absolute;
  inset: 22px 14px 12px;
  width: calc(100% - 28px);
  height: calc(100% - 34px);
}

.market-card-visual svg path:first-child {
  fill: none;
  stroke: var(--lux-gold);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(247, 200, 91, .42));
}

.market-card-visual svg path:last-child {
  fill: none;
  stroke: rgba(255, 247, 223, .12);
  stroke-width: 2;
}

.market-focus-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe7a0, #f7c85b);
  color: #070a08;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.market-focus-card h3 {
  margin: 18px 0 12px;
  color: #fff5df;
  font: 800 28px/1.08 var(--font-display);
  letter-spacing: -.04em;
}

.market-focus-card p {
  margin: 0;
  color: var(--lux-muted);
  font-size: 14px;
}

.course-card,
.testimonial-grid blockquote,
details {
  background:
    linear-gradient(145deg, rgba(255, 231, 160, .055), transparent 30%),
    var(--lux-card);
  border-color: rgba(247, 200, 91, .16);
  color: #fff5df;
}

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

.masterclass-card {
  border-color: rgba(247, 200, 91, .42);
  background:
    radial-gradient(circle at 78% 0%, rgba(247, 200, 91, .24), transparent 34%),
    radial-gradient(circle at 20% 100%, rgba(185, 255, 102, .08), transparent 30%),
    linear-gradient(145deg, #111912, #090c0a);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .38),
    0 0 0 7px rgba(247, 200, 91, .075);
}

.masterclass-card::after {
  content: "";
  position: absolute;
  inset: -80% -45%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 42%, rgba(255, 231, 160, .22) 50%, transparent 58%);
  transform: translateX(-60%);
  animation: masterclass-sweep 4.6s ease-in-out infinite;
}

.masterclass-card > * {
  position: relative;
  z-index: 1;
}

.masterclass-card .badge {
  background: linear-gradient(135deg, #ffe7a0, #f7c85b);
  color: #070a08;
}

.masterclass-card .course-icon {
  background: linear-gradient(135deg, #f7c85b, #ffe7a0);
  color: #070a08;
  box-shadow: 0 14px 30px rgba(247, 200, 91, .18);
}

.master-support-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.limited-deal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffefb9, #f7c85b 55%, #b58020);
  color: #070a08;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .1em;
  box-shadow: 0 12px 30px rgba(247, 200, 91, .24);
  animation: limited-deal-pulse 1.8s ease-in-out infinite;
}

.limited-deal-tag span {
  animation: limited-deal-bolt .9s ease-in-out infinite;
}

.master-support-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(247, 200, 91, .3);
  border-radius: 999px;
  background: rgba(247, 200, 91, .09);
  color: var(--lux-gold-2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
}

.master-support-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lux-gold);
  box-shadow: 0 0 14px rgba(247, 200, 91, .72);
}

.masterclass-card ul {
  margin-top: 22px;
}

.masterclass-card li {
  line-height: 1.45;
}

.masterclass-card li b {
  color: var(--lux-gold-2);
}

.masterclass-card .offer-price {
  color: var(--lux-gold-2);
  animation: masterclass-price-pop .8s cubic-bezier(.18, .9, .28, 1.35) both, masterclass-price-glow 2.4s ease-in-out infinite;
}

.masterclass-card .original-price {
  color: rgba(255, 248, 232, .5);
}

.masterclass-card .save-badge {
  animation: masterclass-save-pulse 2s ease-in-out infinite;
}

.course-card::before {
  background:
    radial-gradient(circle at 78% 0%, rgba(247, 200, 91, .17), transparent 32%),
    linear-gradient(180deg, rgba(255, 231, 160, .04), transparent);
}

.course-card:hover {
  box-shadow: 0 30px 75px rgba(0, 0, 0, .36), 0 0 0 1px rgba(247, 200, 91, .25);
}

.course-card.featured {
  background:
    radial-gradient(circle at 20% 0, rgba(255, 255, 255, .25), transparent 32%),
    linear-gradient(145deg, #ffe7a0, #f7c85b 54%, #97701f);
  color: #080b09;
}

.course-card.featured h3,
.course-card.featured p,
.course-card.featured li,
.course-card.featured .level,
.course-card.featured .card-bottom small {
  color: #080b09;
}

.course-card.featured .badge,
.badge {
  background: #070a08;
  color: var(--lux-gold);
}

.level,
.card-bottom small,
.price-row small,
.dash-stats small {
  color: var(--lux-muted);
}

.course-icon,
.course-icon.dark {
  background: linear-gradient(135deg, rgba(247, 200, 91, .18), rgba(255, 231, 160, .08));
  color: var(--lux-gold);
  border: 1px solid rgba(247, 200, 91, .18);
}

.card-bottom {
  border-top-color: rgba(247, 200, 91, .16);
}

.card-bottom strong {
  color: #fff5df;
}

.course-card.featured .card-bottom strong {
  color: #080b09;
}

.round-button,
.round-button.light {
  background: linear-gradient(135deg, #f7c85b, #ffe7a0);
  color: #070a08;
}

.enroll-box,
.enroll-box.round-button {
  width: 118px;
  height: 58px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  color: #070a08;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow:
    0 12px 28px rgba(247, 200, 91, .24),
    inset 0 1px 0 rgba(255, 255, 255, .5);
  touch-action: manipulation;
}

.enroll-box::after {
  content: "";
  position: absolute;
  inset: -70% -45%;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, .52) 50%, transparent 58%);
  transform: translateX(-60%);
  transition: transform .5s ease;
  pointer-events: none;
}

.enroll-box span,
.enroll-box b {
  position: relative;
  z-index: 1;
}

.enroll-box b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(7, 10, 8, .12);
  font-size: 15px;
  line-height: 1;
}

.enroll-box:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 18px 38px rgba(247, 200, 91, .32),
    0 0 0 4px rgba(247, 200, 91, .12);
}

.enroll-box:hover::after {
  transform: translateX(58%);
}

.course-card.featured .enroll-box {
  background: #070a08;
  color: #f7c85b;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.course-card.featured .enroll-box b {
  background: rgba(247, 200, 91, .14);
}

.value-card {
  border-color: var(--lux-gold);
  background:
    radial-gradient(circle at 70% 0%, rgba(247, 200, 91, .28), transparent 34%),
    linear-gradient(145deg, #0a0e0b, #17120a);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .45),
    0 0 0 8px rgba(247, 200, 91, .08);
}

.value-ribbon,
.save-badge {
  background: linear-gradient(135deg, #ffe7a0, #f7c85b);
  color: #080b09;
}

.offer-price,
.value-card .offer-price {
  color: var(--lux-gold-2);
}

.method {
  background:
    radial-gradient(circle at 18% 15%, rgba(247, 200, 91, .12), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(185, 255, 102, .06), transparent 28%),
    linear-gradient(135deg, #070a08, #151008);
  border: 1px solid rgba(247, 200, 91, .16);
}

.step {
  border-color: rgba(247, 200, 91, .15);
}

.step > b {
  color: var(--lux-gold);
}

.step:hover {
  background: rgba(247, 200, 91, .06);
  border-color: rgba(247, 200, 91, .3);
}

.testimonial-grid blockquote::before {
  color: rgba(247, 200, 91, .25);
}

.trust-grid blockquote {
  min-height: 248px;
}

.trust-grid blockquote > b {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(247, 200, 91, .34);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(247, 200, 91, .1);
  color: var(--lux-gold-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.trust-grid blockquote p {
  margin: 0 0 22px;
  color: rgba(255, 247, 223, .76);
  font-size: 16px;
  line-height: 1.55;
}

.testimonial-grid footer {
  background: transparent;
}

.testimonial-grid footer > span {
  background: rgba(247, 200, 91, .14);
  color: var(--lux-gold);
}

.lead-section {
  padding-top: 18px;
}

.lead-panel {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(247, 200, 91, .26);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 48px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(247, 200, 91, .22), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(185, 255, 102, .09), transparent 28%),
    linear-gradient(135deg, #10170f, #090c09);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36);
}

.lead-visual {
  display: grid;
  place-items: center;
}

.lead-phone {
  width: min(100%, 270px);
  border: 1px solid rgba(247, 200, 91, .28);
  border-radius: 28px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .09), transparent 30%),
    rgba(3, 5, 3, .74);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 231, 160, .16);
}

.lead-phone-top {
  width: 58px;
  height: 5px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(255, 247, 223, .32);
}

.lead-chart {
  display: grid;
  align-content: end;
  gap: 13px;
  height: 180px;
  border: 1px solid rgba(247, 200, 91, .16);
  border-radius: 18px;
  padding: 22px 18px;
  background:
    linear-gradient(rgba(255, 247, 223, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 223, .05) 1px, transparent 1px),
    rgba(255, 255, 255, .03);
  background-size: 100% 42px, 52px 100%;
}

.lead-chart span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(247, 200, 91, .18), var(--lux-gold));
  transform: rotate(-5deg);
}

.lead-chart span:nth-child(2) {
  width: 74%;
  margin-left: auto;
  background: linear-gradient(90deg, rgba(185, 255, 102, .12), #b9ff66);
}

.lead-chart span:nth-child(3) {
  width: 52%;
  background: rgba(255, 247, 223, .45);
}

.lead-logo-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.lead-logo-row .market-logo {
  width: 52px;
  height: 52px;
}

.lead-logo-row .market-logo svg {
  width: 31px;
  height: 31px;
}

.header-market-item .market-logo {
  width: 30px;
  height: 30px;
}

.header-market-item .market-logo svg {
  width: 19px;
  height: 19px;
}

.lead-copy h2 {
  max-width: 620px;
  margin: 10px 0 16px;
  color: #fff5df;
  font: 900 clamp(34px, 5vw, 64px)/.96 var(--font-display);
  letter-spacing: -.05em;
}

.lead-copy p {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--lux-muted);
  font-size: 17px;
  line-height: 1.65;
}

.faq {
  border-top-color: rgba(247, 200, 91, .16);
}

details[open] {
  background:
    linear-gradient(145deg, rgba(255, 231, 160, .08), transparent 34%),
    #141b16;
}

.faq a {
  color: var(--lux-gold);
}

.cta-section {
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 255, 255, .25), transparent 24%),
    linear-gradient(135deg, #ffe7a0, #f7c85b 48%, #8a641d);
  color: #080b09;
}

.cta-section h2,
.cta-section h2 em,
.cta-section .eyebrow,
.cta-inner p {
  color: #080b09;
  background: none;
}

.cta-inner .button-light {
  background: #070a08;
  color: #fff3d6;
}

.cta-inner .button-light span {
  color: var(--lux-gold);
}

footer {
  margin-top: 0 !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(247, 200, 91, .1), transparent 30%),
    #050705;
  border-top: 1px solid rgba(247, 200, 91, .16);
}

.footer-grid a:hover {
  color: var(--lux-gold);
}

@media (max-width: 900px) {
  .nav-links.open {
    background: rgba(7, 10, 8, .97);
  }

  .market-focus-grid {
    grid-template-columns: 1fr;
  }

  .market-brand-strip span {
    flex: 1 1 150px;
  }

  .lead-panel {
    grid-template-columns: 1fr;
  }

  .lead-visual {
    order: 2;
  }

  .courses .course-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 20% 0%, rgba(247, 200, 91, .2), transparent 30%),
      linear-gradient(180deg, #070a08 0%, #0b100d 100%);
  }

  .market-brand-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .market-brand-strip span {
    min-width: 0;
    padding: 8px;
  }

  .market-brand-strip small {
    font-size: 10px;
  }

  .market-focus-card {
    min-height: auto;
    padding: 22px;
  }

  .market-card-visual {
    height: 132px;
  }

  .lead-panel {
    padding: 22px;
  }

  .lead-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .lead-phone {
    width: 100%;
    max-width: 280px;
  }
}

@keyframes masterclass-sweep {
  0%, 22% {
    transform: translateX(-60%);
  }
  70%, 100% {
    transform: translateX(60%);
  }
}

@keyframes masterclass-price-pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.82);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes masterclass-price-glow {
  50% {
    text-shadow: 0 0 24px rgba(247, 200, 91, .42);
  }
}

@keyframes masterclass-save-pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(247, 200, 91, .09);
  }
}

@keyframes limited-deal-pulse {
  50% {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(247, 200, 91, .34), 0 0 0 6px rgba(247, 200, 91, .08);
  }
}

@keyframes limited-deal-bolt {
  50% {
    transform: scale(1.2) rotate(-8deg);
  }
}

@keyframes graph-draw {
  0% {
    stroke-dashoffset: 1650;
    opacity: .16;
  }
  45%, 70% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -1650;
    opacity: .18;
  }
}

@keyframes graph-fill-breathe {
  50% {
    fill: rgba(247, 200, 91, .075);
  }
}

@keyframes candle-glow {
  50% {
    opacity: .72;
    filter: drop-shadow(0 0 12px rgba(247, 200, 91, .22));
    transform: scaleY(1.08);
  }
}

@keyframes graph-spark-travel {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  12%, 82% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

.checkout-open {
  overflow: hidden;
}

.checkout-drawer {
  position: fixed !important;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 5, 4, .72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.checkout-drawer[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.checkout-panel {
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  position: relative;
  padding: 34px;
  border: 1px solid rgba(247, 200, 91, .34);
  border-radius: 8px;
  background: #11100d;
  color: #fff7df;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.checkout-panel h2 {
  margin: 8px 0 10px;
  font: 800 clamp(28px, 4vw, 42px) var(--font-display);
}

.checkout-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(247, 200, 91, .3);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff7df;
  cursor: pointer;
}

.checkout-plan {
  margin: 0 0 22px;
  color: rgba(255, 247, 223, .78);
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 247, 223, .78);
  font-size: 13px;
  font-weight: 700;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(247, 200, 91, .26);
  border-radius: 6px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, .08);
  color: #fff7df;
  font: 600 15px var(--font-body);
  outline: none;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(247, 200, 91, .16);
}

.checkout-form textarea {
  resize: vertical;
}

.checkout-form button:disabled {
  cursor: wait;
  opacity: .68;
}

.checkout-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.checkout-form label small {
  color: rgba(255, 231, 160, .66);
  font-size: 11px;
  font-weight: 800;
}

.quick-lead-bar {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  gap: 10px;
  padding: 9px;
  border: 1px solid rgba(247, 200, 91, .34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 231, 160, .12), rgba(255, 255, 255, .04)),
    rgba(7, 10, 8, .9);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 231, 160, .16);
  backdrop-filter: blur(14px);
}

.quick-lead-bar a,
.quick-lead-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #080b09;
  background: linear-gradient(135deg, #ffe7a0, #f7c85b);
  font: 950 13px var(--font-display);
  text-decoration: none;
  cursor: pointer;
}

.quick-lead-bar a {
  color: #08140d;
  background: linear-gradient(135deg, #92ffb8, #32d76d);
}

@media (max-width: 620px) {
  .checkout-panel {
    padding: 28px 20px;
  }
}

@media (max-width: 620px) {
  .hero {
    display: block;
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .hero::before,
  .hero::after {
    opacity: .35;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-copy > p {
    max-width: none;
    margin: 22px 0 24px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .hero h1 em {
    display: block;
    margin-top: 3px;
    color: rgba(247, 200, 91, .56);
    text-shadow: none;
  }

  .hero-visual {
    display: block;
    position: relative;
    z-index: 2;
    height: auto;
    min-height: 0;
    margin-top: 28px;
  }

  .hero-visual .glow,
  .hero-visual .float-card {
    display: none;
  }

  .dashboard {
    width: 100%;
    max-width: 100%;
    transform: none;
    padding: 16px;
    border-radius: 16px;
  }

  .dash-top {
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 18px;
  }

  .feed-state {
    line-height: 1.4;
    letter-spacing: .12em;
  }

  .market-controls button {
    width: 38px;
    height: 38px;
    border-radius: 6px;
  }

  .price-row {
    align-items: flex-start;
    gap: 12px;
  }

  .price-row strong {
    font-size: 28px;
    line-height: 1.1;
  }

  .market-slide.error .live-price {
    font-size: 22px;
    line-height: 1.15;
  }

  .chart {
    height: 210px;
    margin: 18px 0;
  }

  .dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .dash-stats > div {
    min-width: 0;
  }

  .dash-stats > div + div {
    padding-left: 16px;
  }

  .dash-stats b {
    font-size: 14px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .dashboard {
    padding: 14px;
  }

  .chart {
    height: 190px;
  }

  .price-row strong {
    font-size: 24px;
  }
}

@media (max-width: 760px) {
  .hero.container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    display: block !important;
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    overflow: visible !important;
    padding-top: 34px !important;
    padding-bottom: 58px !important;
  }

  .hero-copy {
    position: relative !important;
    z-index: 5 !important;
    text-align: left !important;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 54px) !important;
    line-height: 1.02 !important;
  }

  .hero-copy > p {
    max-width: 100% !important;
    margin-bottom: 22px !important;
  }

  .hero-actions,
  .trust-row {
    position: relative;
    z-index: 5;
  }

  .hero-visual {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin-top: 30px !important;
    overflow: visible !important;
  }

  .dashboard {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }

  .hero-visual .glow,
  .hero-visual .float-card {
    display: none !important;
  }
}

.trading-graph-bg,
.hero-visual {
  display: none !important;
}

.hero {
  grid-template-columns: 1fr;
  min-height: auto;
  padding-top: 82px;
  padding-bottom: 72px;
}

.hero-copy {
  max-width: 850px;
}

.hero-copy > p {
  max-width: 650px;
}

.trading-graph-bg {
  display: block !important;
  opacity: 0.55;
  filter: saturate(1.08) contrast(1.08);
}

.trading-graph-bg::before {
  content: "NIFTY 50   BANK NIFTY   BTC/USD   XAU/USD   FOREX   RISK   JOURNAL";
  position: absolute;
  left: 4vw;
  right: 4vw;
  top: 40vh;
  color: rgba(242, 216, 116, 0.1);
  font: 900 clamp(42px, 8vw, 130px) Archivo, sans-serif;
  letter-spacing: 0.12em;
  line-height: 1.25;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero {
  background:
    radial-gradient(circle at 12% 22%, rgba(242, 216, 116, 0.16), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(120, 164, 64, 0.12), transparent 30%),
    linear-gradient(130deg, rgba(242, 216, 116, 0.08), transparent 48%);
}

.lead-mini-card {
  display: grid;
  gap: 4px;
  max-width: 620px;
  margin-top: 22px;
  border: 1px solid rgba(247, 200, 91, .24);
  border-radius: 8px;
  padding: 15px 17px;
  background:
    linear-gradient(135deg, rgba(255, 231, 160, .11), rgba(255, 255, 255, .035)),
    rgba(7, 10, 8, .62);
  box-shadow: inset 0 1px 0 rgba(255, 231, 160, .14), 0 16px 36px rgba(0, 0, 0, .2);
}

.lead-mini-card b {
  color: #fff5df;
  font: 900 14px/1.2 var(--font-display);
}

.lead-mini-card span {
  color: var(--lux-muted);
  font-size: 14px;
  line-height: 1.45;
}

.whatsapp-link .play {
  width: 38px;
  height: 38px;
  border-color: rgba(82, 255, 145, .42);
  background: rgba(82, 255, 145, .13);
  color: #92ffb8;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .04em;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 850px;
  margin-top: 34px;
}

.hero-proof div {
  border: 1px solid rgba(247, 200, 91, .22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(8, 12, 9, .72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.hero-proof small {
  display: block;
  color: var(--lux-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-proof b {
  display: block;
  margin-top: 8px;
  color: #fff5df;
  font: 800 20px/1.1 var(--font-display);
}

.market-header-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(247, 200, 91, .16);
  border-bottom: 1px solid rgba(247, 200, 91, .16);
  background: linear-gradient(90deg, rgba(7, 10, 8, .96), rgba(28, 21, 8, .96), rgba(7, 10, 8, .96));
  color: #fff5df;
}

.market-header-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 10px 18px;
  animation: header-market-scroll 26s linear infinite;
}

.market-header-ticker:hover .market-header-track {
  animation-play-state: paused;
}

.header-market-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding: 8px 13px;
  border: 1px solid rgba(247, 200, 91, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 231, 160, .1);
}

.header-market-item b {
  color: var(--lux-gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
}

.header-market-item strong {
  color: #fff8e8;
  font: 900 14px/1 var(--font-display);
}

.header-market-item em {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(185, 255, 102, .12);
  color: #b9ff66;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
}

.header-market-item em.negative {
  background: rgba(255, 110, 92, .13);
  color: #ff8a78;
}

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

@media (max-width: 620px) {
  .hero {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .market-header-track {
    gap: 10px;
    padding: 8px 12px;
    animation-duration: 20s;
  }

  .header-market-item {
    gap: 8px;
    padding: 7px 10px;
  }

  .header-market-item b {
    font-size: 10px;
  }

  .header-market-item strong {
    font-size: 13px;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  position: relative;
}

.nav-wrap,
.announcement,
.market-header-ticker,
.ticker,
.cta-section,
footer,
main,
section {
  max-width: 100%;
}

.container,
.hero.container {
  max-width: min(1180px, calc(100% - 32px));
}

.market-header-ticker,
.ticker {
  width: 100%;
  max-width: 100vw;
  contain: paint;
}

.market-header-track,
.ticker-inner {
  max-width: none;
  will-change: transform;
}

.course-card,
.market-focus-card,
.testimonial-grid blockquote,
.hero-proof div {
  min-width: 0;
}

.brand-word,
.hero h1,
.hero-copy > p,
.section-heading h2,
.course-card h3,
.market-focus-card h3,
.footer-grid p,
.legal span {
  overflow-wrap: anywhere;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 760px) {
  .announcement {
    gap: 8px;
    padding: 9px 12px;
    font-size: 11px;
    line-height: 1.45;
    flex-wrap: wrap;
  }

  .announcement strong,
  .announcement b {
    padding: 5px 8px;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .nav,
  .container,
  .hero.container {
    width: min(100% - 28px, 1180px) !important;
    max-width: calc(100% - 28px) !important;
  }

  .nav-links.open {
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
  }

  .hero-proof,
  .course-grid,
  .market-focus-grid,
  .testimonial-grid,
  .footer-grid {
    width: 100%;
    max-width: 100%;
  }

  .button,
  .text-link,
  .hero-actions {
    max-width: 100%;
  }
}

html,
body {
  overscroll-behavior-x: none;
}

#courses,
.course-grid,
.course-card {
  overflow-anchor: none;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  overscroll-behavior: auto;
}

#courses,
#method,
#results,
#faq {
  scroll-margin-top: 132px;
}

@media (max-width: 760px) {
  #courses {
    touch-action: pan-y;
  }

  .courses .course-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    overflow: visible;
    scroll-snap-type: none;
  }

  .course-card {
    min-height: auto;
    transform: none;
    touch-action: pan-y;
  }

  .enroll-box {
    touch-action: manipulation;
  }
}

.market-news {
  padding-top: 76px;
}

.news-shell {
  border: 1px solid rgba(247, 200, 91, .22);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(247, 200, 91, .16), transparent 30%),
    radial-gradient(circle at 90% 100%, rgba(185, 255, 102, .08), transparent 28%),
    linear-gradient(145deg, rgba(255, 231, 160, .07), rgba(255, 255, 255, .025));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.news-ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(247, 200, 91, .16);
  background: rgba(5, 7, 5, .72);
}

.news-ticker-track {
  display: flex;
  width: max-content;
  animation: news-scroll 38s linear infinite;
}

.news-ticker-track span {
  flex: 0 0 auto;
  padding: 14px 34px;
  color: #ffe7a0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
}

.news-toolbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-toolbar strong {
  color: #fff5df;
  font: 900 22px/1.1 var(--font-display);
  letter-spacing: 0;
}

.news-toolbar small {
  color: var(--lux-muted);
  font-weight: 800;
}

.news-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b9ff66;
  box-shadow: 0 0 0 6px rgba(185, 255, 102, .12);
}

.news-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news-refresh,
.news-open-page {
  border: 1px solid rgba(247, 200, 91, .28);
  border-radius: 6px;
  padding: 10px 14px;
  background: rgba(247, 200, 91, .14);
  color: #ffe7a0;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.news-open-page {
  background: linear-gradient(135deg, #ffe7a0, #f7c85b);
  color: #070a08;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
  background: transparent;
}

.news-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(247, 200, 91, .15);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 231, 160, .06), rgba(255, 255, 255, .025)),
    rgba(8, 11, 8, .92);
  animation: news-card-rise .55s ease both;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #f7c85b, transparent);
}

.news-card.global-news::before {
  background: linear-gradient(90deg, #b9ff66, transparent);
}

.news-card span {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(247, 200, 91, .45);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(247, 200, 91, .12);
  color: #ffe7a0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0 0 16px;
  color: #fff5df;
  font: 900 23px/1.14 var(--font-display);
  letter-spacing: 0;
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
}

.news-card h3 a:hover {
  color: var(--lux-gold-2);
}

.news-card p {
  margin: 0;
  color: rgba(255, 247, 223, .68);
  font-size: 13px;
  font-weight: 800;
}

.news-card b {
  display: inline-flex;
  margin-top: 20px;
  color: var(--lux-gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-card.loading h3 {
  color: var(--lux-muted);
}

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

@keyframes news-card-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-actions,
  .news-refresh,
  .news-open-page {
    width: 100%;
  }
}

.course-card,
.course-card::before,
.course-card::after,
.value-card,
.value-card::before,
.value-card::after,
.masterclass-card,
.masterclass-card::before,
.masterclass-card::after,
.offer-price,
.save-badge,
.value-ribbon,
.value-ribbon span,
.limited-deal-tag,
.limited-deal-tag span,
.masterclass-card .offer-price,
.masterclass-card .save-badge {
  animation: none !important;
}

.course-card {
  touch-action: pan-y;
}

.course-card > * {
  position: relative;
  z-index: 2;
}

.course-card::before,
.course-card::after,
.value-card::before,
.value-card::after,
.masterclass-card::before,
.masterclass-card::after {
  pointer-events: none !important;
}

.card-bottom,
.enroll-box {
  position: relative;
  z-index: 5;
}

.masterclass-card::after,
.value-card::before {
  display: none !important;
}

.badge,
.value-ribbon,
.save-badge,
.limited-deal-tag,
.master-support-strip span {
  border: 1px solid rgba(247, 200, 91, .55);
  background: linear-gradient(135deg, #ffe7a0, #f7c85b) !important;
  color: #070a08 !important;
  box-shadow: 0 8px 22px rgba(247, 200, 91, .16) !important;
}

.course-card.featured .badge {
  background: #070a08 !important;
  color: #f7c85b !important;
  border-color: rgba(7, 10, 8, .44);
}

@media (max-width: 760px) {
  .course-card:hover,
  .enroll-box:hover {
    transform: none;
  }

  .enroll-box::after {
    display: none;
  }
}

.legal-page {
  padding-top: 92px;
  padding-bottom: 92px;
  color: #fff5df;
}

.legal-page h1 {
  max-width: 900px;
  color: #fff5df;
  font-size: clamp(42px, 7vw, 72px);
}

.legal-updated {
  margin: 16px 0 38px;
  color: var(--lux-muted);
  font-weight: 700;
}

.legal-page section {
  max-width: 900px;
  padding: 28px 0;
  border-top: 1px solid rgba(247, 200, 91, .16);
}

.legal-page h2 {
  margin: 0 0 12px;
  color: var(--lux-gold-2);
  font: 800 24px/1.2 var(--font-display);
  letter-spacing: -.02em;
}

.legal-page p {
  margin: 0;
  color: rgba(255, 247, 223, .78);
  font-size: 16px;
  line-height: 1.75;
}

.legal-page a {
  color: var(--lux-gold);
}

@media (max-width: 620px) {
  .legal-page {
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .legal-page section {
    padding: 24px 0;
  }
}

/* Premium editorial refresh: richer than flat black, while keeping the existing structure intact. */
:root {
  --accent-ink: #07110d;
  --accent-forest: #0d2a20;
  --accent-emerald: #3ce08c;
  --accent-gold: #f1c15d;
  --accent-ivory: #fff7e4;
  --accent-copper: #d9824f;
  --accent-line: rgba(255, 247, 228, .14);
  --accent-glass: rgba(255, 247, 228, .075);
  --accent-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

html {
  background: #102019;
}

body {
  color: var(--accent-ivory);
  background:
    linear-gradient(115deg, rgba(60, 224, 140, .12) 0%, transparent 24%),
    linear-gradient(245deg, rgba(241, 193, 93, .16) 0%, transparent 28%),
    linear-gradient(180deg, #17251c 0%, #101b15 36%, #18251d 66%, #241c14 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 228, .035) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(0deg, rgba(255, 247, 228, .026) 0 1px, transparent 1px 86px),
    linear-gradient(135deg, transparent 0 42%, rgba(255, 247, 228, .045) 50%, transparent 58% 100%);
  background-size: auto, auto, 260% 260%;
  animation: premium-sheen 18s ease-in-out infinite;
}

body::after {
  opacity: .14;
}

.trading-graph-bg {
  opacity: .34;
  mix-blend-mode: screen;
}

.trading-graph-bg::after {
  background:
    linear-gradient(180deg, rgba(10, 23, 17, .22), rgba(10, 23, 17, .5) 68%, rgba(10, 23, 17, .78)),
    linear-gradient(90deg, rgba(241, 193, 93, .08), transparent 38%, rgba(60, 224, 140, .06));
}

.graph-grid {
  stroke: rgba(255, 247, 228, .08);
}

.graph-fill {
  fill: rgba(60, 224, 140, .07);
}

.graph-line-a {
  stroke: rgba(241, 193, 93, .58);
}

.graph-line-b {
  stroke: rgba(60, 224, 140, .34);
}

.announcement {
  background:
    linear-gradient(90deg, #12251c, #f1c15d 52%, #102019);
  color: #07110d;
  border-bottom-color: rgba(255, 247, 228, .2);
  box-shadow: 0 14px 50px rgba(0, 0, 0, .24);
}

.announcement strong,
.announcement b {
  border: 0;
  background: #07110d;
  color: #fff7e4;
}

.announcement span {
  background: #07110d;
  box-shadow: 0 0 16px rgba(7, 17, 13, .45);
}

.nav-wrap {
  background: rgba(10, 23, 17, .78);
  border-bottom-color: rgba(255, 247, 228, .12);
  backdrop-filter: blur(20px);
}

.brand-logo .logo-image {
  filter: drop-shadow(0 16px 24px rgba(241, 193, 93, .22));
}

.nav-links a,
.brand-word strong,
.text-link {
  color: var(--accent-ivory);
}

.brand-word small,
.eyebrow,
.hero .eyebrow,
.section-heading .eyebrow {
  color: #f1c15d;
}

.button,
.button-light,
.news-open-page,
.quick-lead-bar button,
.quick-lead-bar a {
  background: linear-gradient(135deg, #fff1b6 0%, #f1c15d 48%, #d9824f 100%);
  color: #07110d;
  box-shadow: 0 18px 48px rgba(241, 193, 93, .24);
}

.button:hover,
.button-light:hover,
.news-open-page:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(241, 193, 93, .32);
}

.hero.container {
  width: min(1540px, calc(100% - 48px));
}

.hero {
  position: relative;
  min-height: 720px;
  margin-top: 34px;
  border: 1px solid rgba(255, 247, 228, .12);
  border-radius: 34px;
  padding: clamp(42px, 6vw, 92px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 247, 228, .09), transparent 30%),
    linear-gradient(250deg, rgba(60, 224, 140, .13), transparent 35%),
    linear-gradient(135deg, rgba(10, 23, 17, .92), rgba(28, 39, 28, .84) 54%, rgba(43, 30, 18, .82));
  box-shadow: var(--accent-shadow);
}

.hero::after {
  content: "TRADE WITH PROCESS";
  right: 4%;
  bottom: 4%;
  color: rgba(255, 247, 228, .045);
  font-size: clamp(52px, 8vw, 132px);
  letter-spacing: 0;
}

.hero::before {
  border-color: rgba(255, 247, 228, .14);
  box-shadow:
    72px 28px 0 -42px rgba(60, 224, 140, .6),
    110px -20px 0 -54px rgba(241, 193, 93, .7);
}

.hero h1,
.section-heading h2,
.method h2,
.faq h2,
.cta-section h2 {
  color: var(--accent-ivory);
  letter-spacing: -.035em;
}

.hero h1 em,
.section-heading h2 em,
.method h2 em,
.faq h2 em,
.cta-section h2 em {
  background: linear-gradient(100deg, #fff1b6 0%, #f1c15d 46%, #3ce08c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p,
.section-heading > p,
.course-card > p,
.market-focus-card p,
.faq > div > p,
details p,
.lead-mini-card span {
  color: rgba(255, 247, 228, .72);
}

.lead-mini-card,
.hero-proof div,
.dashboard,
.float-card {
  border-color: rgba(255, 247, 228, .14);
  background:
    linear-gradient(150deg, rgba(255, 247, 228, .12), rgba(255, 247, 228, .035)),
    rgba(7, 17, 13, .62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.dashboard {
  border-radius: 28px;
}

.hero-visual .glow {
  background:
    linear-gradient(135deg, rgba(241, 193, 93, .26), transparent 38%),
    linear-gradient(315deg, rgba(60, 224, 140, .2), transparent 45%);
  filter: blur(16px);
}

.dash-top,
.dash-stats {
  border-color: rgba(255, 247, 228, .1);
}

.market-controls button,
.market-pagination button {
  border-color: rgba(255, 247, 228, .16);
  background: rgba(255, 247, 228, .1);
  color: var(--accent-ivory);
}

.chart .line,
.live-line {
  stroke: #3ce08c;
  filter: drop-shadow(0 0 16px rgba(60, 224, 140, .48));
}

.live-area {
  fill: rgba(60, 224, 140, .16);
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 22px;
}

.story-strip article {
  position: relative;
  min-height: 154px;
  border: 1px solid rgba(255, 247, 228, .13);
  border-radius: 22px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 247, 228, .12), rgba(255, 247, 228, .035)),
    rgba(12, 28, 21, .64);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .18);
  transform: translateY(0);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.story-strip article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #f1c15d, #3ce08c, transparent);
}

.story-strip article:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 193, 93, .42);
  background:
    linear-gradient(145deg, rgba(241, 193, 93, .14), rgba(60, 224, 140, .075)),
    rgba(12, 28, 21, .78);
}

.story-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff1b6, #f1c15d);
  color: #07110d;
  font: 900 13px/1 var(--font-display);
}

.story-strip b {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-ivory);
  font: 900 24px/1 var(--font-display);
}

.story-strip small {
  display: block;
  color: rgba(255, 247, 228, .68);
  font-size: 14px;
  line-height: 1.5;
}

.ticker {
  background: linear-gradient(90deg, #0d2a20, #3ce08c 28%, #f1c15d 70%, #25180d);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
}

.ticker-inner {
  color: #07110d;
}

.markets-taught,
.courses,
.results,
.faq,
.lead-section,
.market-news {
  position: relative;
}

.market-image-preview,
.market-brand-strip span,
.market-focus-card,
.course-card,
.news-shell,
.news-card,
details,
.lead-panel {
  border-color: rgba(255, 247, 228, .14);
  background:
    linear-gradient(145deg, rgba(255, 247, 228, .12), rgba(255, 247, 228, .04)),
    rgba(9, 22, 16, .74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.market-focus-card::before,
.course-card::before,
.news-card::before {
  background: linear-gradient(90deg, #f1c15d, #3ce08c, transparent);
}

.market-card-visual {
  border-color: rgba(255, 247, 228, .14);
  background:
    linear-gradient(rgba(255, 247, 228, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 228, .06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(60, 224, 140, .12), rgba(241, 193, 93, .09));
}

.market-card-visual svg path:first-child {
  stroke: #3ce08c;
}

.market-card-visual svg path:last-child {
  stroke: rgba(255, 247, 228, .12);
}

.market-logo {
  background: linear-gradient(135deg, #fff1b6, #f1c15d);
  box-shadow: 0 12px 26px rgba(241, 193, 93, .2);
}

.logo-nifty,
.logo-forex {
  background: linear-gradient(135deg, #dcffd6, #3ce08c);
}

.logo-bank {
  background: linear-gradient(135deg, #e6f4ff, #8bd7ff);
}

.logo-btc {
  background: linear-gradient(135deg, #fff0ad, #f7931a);
}

.course-grid,
.courses .course-grid {
  gap: 22px;
}

.course-card {
  border-radius: 24px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.course-card:hover,
.market-focus-card:hover,
.news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 193, 93, .45);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.course-card.featured {
  color: #07110d;
  background:
    linear-gradient(145deg, rgba(255, 247, 228, .96), rgba(241, 193, 93, .82)),
    #f1c15d;
}

.course-card.featured h3,
.course-card.featured p,
.course-card.featured li,
.course-card.featured .level,
.course-card.featured .card-bottom small {
  color: #07110d;
}

.value-card {
  border-color: rgba(60, 224, 140, .48);
  background:
    linear-gradient(145deg, rgba(60, 224, 140, .18), rgba(255, 247, 228, .05)),
    rgba(9, 34, 24, .82);
}

.masterclass-card {
  border-color: rgba(241, 193, 93, .44);
  background:
    linear-gradient(135deg, rgba(241, 193, 93, .2), rgba(217, 130, 79, .1) 42%, rgba(7, 17, 13, .72)),
    rgba(12, 20, 15, .84);
}

.badge,
.value-ribbon,
.save-badge,
.limited-deal-tag,
.master-support-strip span {
  border-color: rgba(255, 247, 228, .2);
  background: linear-gradient(135deg, #fff1b6, #f1c15d) !important;
  color: #07110d !important;
}

.round-button.enroll-box {
  border-radius: 18px;
}

.method {
  background:
    linear-gradient(135deg, rgba(255, 247, 228, .92), rgba(241, 193, 93, .84)),
    #f1c15d;
  color: #07110d;
}

.method h2,
.method h2 em,
.method p,
.method .eyebrow,
.step h3,
.step p {
  color: #07110d;
}

.step {
  background: rgba(7, 17, 13, .08);
  border-color: rgba(7, 17, 13, .12);
}

.results .trust-grid blockquote {
  background:
    linear-gradient(145deg, rgba(255, 247, 228, .12), rgba(255, 247, 228, .04)),
    rgba(9, 22, 16, .76);
}

.cta-section {
  background:
    linear-gradient(135deg, #fff7e4 0%, #f1c15d 62%, #d9824f 100%);
}

.cta-section,
.cta-section h2,
.cta-section h2 em,
.cta-section .eyebrow,
.cta-inner p {
  color: #07110d;
}

.cta-inner .button-light {
  background: #07110d;
  color: var(--accent-ivory);
}

.header-market-item {
  border-color: rgba(255, 247, 228, .16);
  background:
    linear-gradient(145deg, rgba(255, 247, 228, .105), rgba(255, 247, 228, .035)),
    rgba(8, 19, 14, .72);
}

.header-market-item strong {
  color: var(--accent-ivory);
}

.header-market-item em {
  color: #baffd5;
  background: rgba(60, 224, 140, .13);
}

.news-shell {
  overflow: hidden;
}

.news-card h3 {
  color: var(--accent-ivory);
}

.news-card p {
  color: rgba(255, 247, 228, .68);
}

@keyframes premium-sheen {
  0%, 100% {
    background-position: 0 0, 0 0, 0% 50%;
  }
  50% {
    background-position: 0 0, 0 0, 100% 50%;
  }
}

@media (max-width: 900px) {
  .hero.container {
    width: min(100% - 24px, 1540px);
  }

  .hero {
    border-radius: 26px;
    padding: 34px 22px;
    min-height: auto;
  }

  .story-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  body {
    background:
      linear-gradient(180deg, #18271e 0%, #101b15 42%, #21180f 100%);
  }

  body::before {
    animation: none;
    opacity: .7;
  }

  .trading-graph-bg {
    opacity: .18;
  }

  .hero {
    margin-top: 18px;
    border-radius: 22px;
  }

  .story-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .story-strip article {
    min-height: 118px;
    padding: 18px;
  }

  .course-card:hover,
  .market-focus-card:hover,
  .news-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .story-strip article,
  .course-card,
  .market-focus-card,
  .news-card {
    animation: none !important;
    transition: none !important;
  }
}

/* Brand gold update requested: #ECD06F */
:root {
  --lux-gold: #ECD06F;
  --lux-gold-2: #fff2b8;
  --accent-gold: #ECD06F;
}

.announcement {
  background: linear-gradient(90deg, #12251c, #ECD06F 52%, #102019);
}

.button,
.button-light,
.news-open-page,
.quick-lead-bar button,
.quick-lead-bar a,
.story-strip span,
.market-logo,
.badge,
.value-ribbon,
.save-badge,
.limited-deal-tag,
.master-support-strip span {
  background: linear-gradient(135deg, #fff2b8 0%, #ECD06F 58%, #c89b3e 100%) !important;
}

.hero h1 em,
.section-heading h2 em,
.method h2 em,
.faq h2 em,
.cta-section h2 em {
  background: linear-gradient(100deg, #fff2b8 0%, #ECD06F 48%, #3ce08c 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.ticker {
  background: linear-gradient(90deg, #0d2a20, #3ce08c 28%, #ECD06F 70%, #25180d);
}

.story-strip article::before,
.market-focus-card::before,
.course-card::before,
.news-card::before {
  background: linear-gradient(90deg, #ECD06F, #3ce08c, transparent);
}

.method {
  background: linear-gradient(135deg, rgba(255, 247, 228, .92), rgba(236, 208, 111, .88)), #ECD06F;
}

.cta-section {
  background: linear-gradient(135deg, #fff7e4 0%, #ECD06F 62%, #c89b3e 100%);
}
