:root {
  color-scheme: dark;
  --bg: #050506;
  --ink: #f6f3ed;
  --muted: #a9aaad;
  --dim: #707276;
  --panel: rgba(18, 19, 21, 0.82);
  --panel-strong: rgba(24, 25, 27, 0.96);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.26);
  --red: #eb2d36;
  --red-hot: #ff3b45;
  --green: #24d89b;
  --green-soft: #109866;
  --metal: #d8dde2;
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -12rem, rgba(255, 255, 255, 0.08), transparent 31rem),
    radial-gradient(circle at 78% 26rem, rgba(235, 45, 54, 0.11), transparent 27rem),
    linear-gradient(180deg, #030303 0%, #070708 44%, #020202 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 88%, transparent);
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.brand-lockup,
.top-nav,
.hero-actions,
.actions {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 13px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 850;
}

.brand-icon {
  width: 58px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 0 16px rgba(255, 59, 69, 0.32));
}

.top-nav {
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 12, 13, 0.72);
}

.top-nav a {
  min-width: 76px;
  padding: 10px 14px;
  color: var(--muted);
  text-align: center;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 750;
  border-radius: 999px;
}

.top-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(20px, 7vw, 120px) 64px;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 54% 42%, rgba(42, 49, 54, 0.34), transparent 42%),
    radial-gradient(ellipse at 50% 82%, rgba(235, 45, 54, 0.1), transparent 32%),
    linear-gradient(180deg, #020203 0%, #050506 58%, #020202 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  z-index: 2;
  inset: -1px;
  background:
    radial-gradient(ellipse at 54% 44%, transparent 0 23%, rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(90deg, #050506 0%, rgba(5, 5, 6, 0.88) 5%, rgba(5, 5, 6, 0.34) 23%, rgba(5, 5, 6, 0.04) 52%, rgba(5, 5, 6, 0.46) 76%, #050506 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.16) 18%, rgba(5, 5, 6, 0.04) 58%, #050506 96%);
}

.hero::after {
  z-index: 3;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, #050506 88%);
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 780px;
  padding-bottom: 2vh;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--red-hot);
  box-shadow: 0 0 18px rgba(255, 59, 69, 0.85);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3.7rem, 9.4vw, 8.1rem);
  line-height: 0.88;
  text-wrap: balance;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 0.92;
}

h3 {
  font-size: 1.2rem;
}

.lede {
  max-width: 610px;
  margin: 22px 0 0;
  color: #c4c5c7;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.45;
  font-weight: 680;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.link-button,
button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.link-button {
  display: inline-grid;
  place-items: center;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 850;
}

.primary {
  color: #fff;
  border-color: rgba(255, 59, 69, 0.58);
  background: linear-gradient(180deg, var(--red-hot), #b51620);
  box-shadow: 0 16px 42px rgba(235, 45, 54, 0.28);
}

.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
}

.risk-note {
  max-width: 740px;
  margin: 18px 0 0;
  color: var(--dim);
  font-size: 0.84rem;
}

.watch-scene {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  opacity: 1;
  animation: none;
}

.approved-hero {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  animation: none;
}

.approved-hero picture,
.approved-hero img {
  position: absolute;
  inset: 0;
}

.approved-hero picture {
  z-index: 1;
  inset: 3%;
  overflow: hidden;
  transform: none;
  -webkit-mask-image: radial-gradient(ellipse at 50% 52%, #000 0 48%, rgba(0, 0, 0, 0.82) 62%, rgba(0, 0, 0, 0.28) 77%, transparent 92%);
  mask-image: radial-gradient(ellipse at 50% 52%, #000 0 48%, rgba(0, 0, 0, 0.82) 62%, rgba(0, 0, 0, 0.28) 77%, transparent 92%);
}

.approved-hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 46%;
  filter: saturate(1.32) contrast(1.08) brightness(0.94);
  transform: scale(1);
  transform-origin: center center;
  animation: none;
}

.approved-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -18%;
  background:
    radial-gradient(ellipse at 30% 43%, rgba(62, 73, 80, 0.24), transparent 34%),
    radial-gradient(ellipse at 65% 52%, rgba(56, 68, 75, 0.22), transparent 36%),
    radial-gradient(ellipse at 50% 76%, rgba(12, 17, 20, 0.94), transparent 60%);
  filter: blur(30px);
  opacity: 0.78;
  animation: backgroundSmoke 28s ease-in-out infinite alternate;
}

.approved-hero::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: -14%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 52% 48%, transparent 0 30%, rgba(5, 5, 6, 0.14) 53%, #050506 86%),
    linear-gradient(90deg, #050506 0%, rgba(5, 5, 6, 0.82) 10%, transparent 31%, transparent 69%, rgba(5, 5, 6, 0.84) 90%, #050506 100%),
    linear-gradient(180deg, #050506 0%, rgba(5, 5, 6, 0.2) 20%, transparent 54%, #050506 96%);
  opacity: 0.98;
}

.fog-layer {
  position: absolute;
  z-index: 0;
  left: 50%;
  width: 150vw;
  height: 42vh;
  transform: translateX(-50%);
  pointer-events: none;
  background-position: center;
  background-repeat: repeat-x;
  background-size: 50% 100%;
  mix-blend-mode: screen;
  will-change: transform, opacity, background-position;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 13%, #000 87%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 13%, #000 87%, transparent);
}

.fog-layer-back {
  z-index: 0;
  top: 25%;
  height: 52vh;
  opacity: 0.42;
  filter: blur(2px);
  background-image: url("brand/fog-depth-back.svg");
  animation: fogDepthBack 24s ease-in-out infinite alternate;
}

.fog-layer-front {
  z-index: 5;
  background-image: url("brand/fog-depth-front.svg");
  filter: blur(1px);
}

.fog-layer-front-a {
  top: 35%;
  height: 38vh;
  opacity: 0.22;
  animation: fogDepthFrontA 22s ease-in-out infinite alternate;
}

.fog-layer-front-b {
  top: 52%;
  width: 138vw;
  height: 30vh;
  opacity: 0.16;
  animation: fogDepthFrontB 28s ease-in-out infinite alternate;
  animation-delay: -7s;
}

.watch-scene:not(.approved-hero)::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(ellipse at 50% 72%, rgba(36, 216, 155, 0.11), transparent 24%),
    radial-gradient(ellipse at 50% 62%, rgba(235, 45, 54, 0.12), transparent 34%);
  filter: blur(2px);
}

.fog {
  position: absolute;
  left: 50%;
  width: 115%;
  height: 26%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(202, 210, 210, 0.34), rgba(96, 101, 103, 0.12) 44%, transparent 72%);
  filter: blur(21px);
  opacity: 0.74;
  animation: fogDrift 9s ease-in-out infinite alternate;
}

.fog-a {
  top: 23%;
}

.fog-b {
  top: 57%;
  width: 92%;
  opacity: 0.48;
  animation-delay: -3s;
}

.scan-beam {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 36%;
  width: 118vw;
  height: 9px;
  transform: translateX(-50%) scaleX(0.2);
  transform-origin: 50% 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 69, 0.62), #fff 50%, rgba(255, 59, 69, 0.9), transparent);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.72),
    0 0 38px rgba(255, 59, 69, 0.92),
    0 0 82px rgba(255, 59, 69, 0.55);
  animation: beamWake 1.35s cubic-bezier(0.18, 0.8, 0.18, 1) 0.35s forwards, beamPulse 2.8s ease-in-out 1.75s infinite;
}

.tower-wrap {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 21%;
  width: clamp(260px, 38vw, 430px);
  height: clamp(410px, 58vh, 610px);
  transform: translateX(-50%) translateY(16px) scale(0.94);
  opacity: 0;
  animation: towerReveal 1.5s ease-out 0.55s forwards;
}

.tower-roof {
  position: absolute;
  left: 50%;
  top: 0;
  width: 58%;
  height: 13%;
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 100% 62%, 91% 100%, 9% 100%, 0 62%);
  background: linear-gradient(180deg, #edf2f5, #81878d 48%, #151719);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.28), 0 0 42px rgba(255, 255, 255, 0.12);
}

.tower-room {
  position: absolute;
  left: 50%;
  top: 11.5%;
  width: 46%;
  height: 18%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid rgba(226, 232, 236, 0.68);
  background: linear-gradient(180deg, rgba(246, 249, 250, 0.1), rgba(18, 19, 21, 0.58));
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.12);
}

.tower-room span {
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.tower-deck {
  position: absolute;
  left: 50%;
  top: 29%;
  width: 62%;
  height: 13%;
  transform: translateX(-50%);
  border: 2px solid rgba(226, 232, 236, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(18, 19, 21, 0.7));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
}

.tower-deck::before,
.tower-deck::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.tower-deck::before {
  left: 3%;
}

.tower-deck::after {
  right: 3%;
}

.tower-light {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 29%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 17%, #ffedc6 18% 27%, var(--red-hot) 28% 54%, rgba(235, 45, 54, 0.05) 74%);
  box-shadow: 0 0 24px #fff, 0 0 70px var(--red-hot);
  animation: lightPulse 2.4s ease-in-out infinite;
}

.tower-legs {
  position: absolute;
  left: 50%;
  top: 41%;
  width: 52%;
  height: 52%;
  transform: translateX(-50%);
}

.tower-legs span,
.tower-legs::before,
.tower-legs::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14%;
  background: linear-gradient(90deg, #eef2f4, #2a2c2f 45%, #08090a);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.16);
}

.tower-legs span:first-child {
  left: 13%;
  transform: skewX(-8deg);
}

.tower-legs span:last-child {
  right: 13%;
  transform: skewX(8deg);
}

.tower-legs::before {
  left: 43%;
  width: 14%;
}

.tower-legs::after {
  left: 15%;
  right: 15%;
  top: 42%;
  bottom: auto;
  width: 70%;
  height: 10%;
  transform: rotate(-27deg);
}

.candle-fence {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 10%;
  width: min(88%, 680px);
  height: 172px;
  transform: translateX(-50%);
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0 5%;
  border-bottom: 12px solid rgba(219, 226, 229, 0.28);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.55));
  opacity: 0;
  animation: fenceReveal 1.2s ease-out 1.1s forwards;
}

.candle-fence span {
  position: relative;
  width: 23px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), currentColor);
  color: var(--green-soft);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.22), 0 0 20px color-mix(in srgb, currentColor 55%, transparent);
}

.candle-fence span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 2px;
  height: 46px;
  transform: translateX(-50%);
  background: rgba(245, 248, 249, 0.72);
}

.candle-fence .red {
  color: #d83b42;
}

.candle-fence .tall {
  height: 120px;
}

.candle-fence .high {
  height: 96px;
}

.candle-fence .mid {
  height: 78px;
}

.candle-fence .low {
  height: 52px;
}

.waterline {
  position: absolute;
  z-index: 1;
  left: 6%;
  right: 6%;
  bottom: 0;
  height: 32%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  transform: perspective(450px) rotateX(64deg);
  filter: blur(2px);
  opacity: 0.42;
}

.scroll-cue {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 26px;
  width: 34px;
  height: 52px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  text-decoration: none;
}

.scroll-cue span {
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--red-hot);
  border-bottom: 2px solid var(--red-hot);
  transform: rotate(45deg);
  box-shadow: 4px 4px 18px rgba(255, 59, 69, 0.8);
  animation: arrowNudge 1.5s ease-in-out infinite;
}

.section {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 100px 0;
}

.intro-grid,
.proof-band,
.academy-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.intro-grid p:not(.eyebrow),
.proof-band p:not(.eyebrow),
.academy-band p:not(.eyebrow),
.chart-card p,
.signal-board p {
  color: var(--muted);
  line-height: 1.6;
}

.intro-grid > p {
  margin: 0;
  font-size: 1.15rem;
}

.signal-board,
.chart-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.signal-board article,
.chart-card,
.mini-dashboard,
.lesson-card,
.auth-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(24, 25, 27, 0.92), rgba(9, 9, 10, 0.94));
  box-shadow: var(--shadow);
}

.signal-board article {
  min-height: 236px;
  padding: 24px;
}

.card-label {
  margin: 0 0 38px;
  color: var(--dim);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.positive {
  color: var(--green);
}

.neutral {
  color: #d9dadb;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.chart-card {
  overflow: hidden;
}

.chart-card h3,
.chart-card p {
  padding: 0 22px;
}

.chart-card h3 {
  margin-top: 22px;
}

.chart-card p {
  min-height: 76px;
  margin: 16px 0 22px;
}

.chart-demo {
  position: relative;
  height: 300px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #0a0b0c;
  background-size: 100% 25%, 20% 100%;
  border-bottom: 1px solid var(--line);
}

.candle,
.lesson-candle {
  position: absolute;
  bottom: 74px;
  width: 16px;
  border-radius: 2px;
}

.candle::before,
.lesson-candle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -36px;
  bottom: -32px;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(234, 238, 239, 0.72);
}

.candle.up,
.lesson-candle.up {
  background: var(--green);
  box-shadow: 0 0 18px rgba(36, 216, 155, 0.18);
}

.candle.down,
.lesson-candle.down {
  background: #e25d61;
  box-shadow: 0 0 18px rgba(226, 93, 97, 0.18);
}

.order-block .a { left: 16%; height: 76px; bottom: 118px; }
.order-block .b { left: 27%; height: 58px; bottom: 104px; }
.order-block .c { left: 45%; height: 112px; bottom: 104px; }
.order-block .d { left: 57%; height: 88px; bottom: 158px; }
.order-block .e { left: 70%; height: 104px; bottom: 186px; }

.zone {
  position: absolute;
  border: 1px solid rgba(36, 216, 155, 0.9);
  background: rgba(36, 216, 155, 0.12);
}

.demand {
  left: 24%;
  right: 54%;
  bottom: 92px;
  height: 82px;
}

.fvg .a { left: 19%; height: 64px; bottom: 82px; }
.fvg .impulse { left: 42%; height: 176px; bottom: 92px; }
.fvg .e { left: 66%; height: 76px; bottom: 220px; }

.gap-zone {
  position: absolute;
  left: 50%;
  right: 28%;
  bottom: 151px;
  height: 74px;
  border: 1px solid rgba(235, 45, 54, 0.9);
  background: repeating-linear-gradient(135deg, rgba(235, 45, 54, 0.16) 0 7px, rgba(235, 45, 54, 0.04) 7px 14px);
}

.sweep .level {
  position: absolute;
  left: 12%;
  right: 13%;
  top: 96px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.sweep .level::after {
  content: "liquidity";
  position: absolute;
  right: 0;
  bottom: 8px;
  color: var(--dim);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sweep .a { left: 18%; height: 74px; bottom: 88px; }
.sweep .b { left: 35%; height: 70px; bottom: 102px; }
.sweep .wick { left: 52%; height: 86px; bottom: 72px; }
.sweep .wick::before { top: -110px; }
.sweep .e { left: 68%; height: 92px; bottom: 70px; }

.proof-band {
  width: 100%;
  max-width: none;
  padding: 108px max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent 38%, rgba(235, 45, 54, 0.08));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mini-dashboard {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.metric span,
.metric em {
  display: block;
  color: var(--muted);
  font-style: normal;
}

.metric strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 1.9rem;
}

.bar-chart {
  grid-column: 1 / -1;
  height: 230px;
  display: flex;
  align-items: end;
  gap: 9%;
  padding: 24px 28px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #08090a;
  background-size: 100% 33%;
}

.bar-chart span {
  width: 9%;
  height: var(--h);
  background: var(--c);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 22px color-mix(in srgb, var(--c) 45%, transparent);
}

.academy-band {
  align-items: start;
}

.lesson-card {
  min-height: 420px;
  padding: 18px;
}

.lesson-toolbar {
  height: 42px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.lesson-toolbar span {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.lesson-canvas {
  position: relative;
  height: 326px;
  margin-top: 18px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #070809;
  background-size: 100% 25%, 16.666% 100%;
}

.drawn-zone {
  position: absolute;
  left: 26%;
  top: 45%;
  width: 28%;
  height: 18%;
  border: 2px solid var(--green);
  background: rgba(36, 216, 155, 0.12);
  box-shadow: 0 0 26px rgba(36, 216, 155, 0.16);
}

.lesson-candle.one { left: 18%; height: 90px; bottom: 95px; background: #e25d61; }
.lesson-candle.two { left: 34%; height: 56px; bottom: 124px; background: #e25d61; }
.lesson-candle.three { left: 58%; height: 158px; bottom: 102px; background: var(--green); }
.lesson-candle.four { left: 74%; height: 108px; bottom: 180px; background: var(--green); }

.access-section {
  min-height: 720px;
  display: grid;
  place-items: center;
}

.auth-panel {
  width: min(560px, 100%);
  padding: 28px;
}

.tabs,
.provider-row,
.auth-form,
.account-meta {
  display: grid;
  gap: 12px;
}

.tabs {
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  margin: 22px 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #090a0b;
}

.tab,
.provider {
  min-height: 46px;
  color: var(--muted);
  background: transparent;
}

.tab.active {
  color: var(--ink);
  border-color: rgba(255, 59, 69, 0.52);
  background: linear-gradient(180deg, var(--red-hot), #a91620);
}

.provider-row {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
}

.provider {
  background: rgba(255, 255, 255, 0.045);
}

.provider:disabled {
  opacity: 0.44;
  cursor: not-allowed;
}

.field {
  display: grid;
  gap: 8px;
}

.field span,
dt {
  color: var(--muted);
  font-size: 0.82rem;
}

input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  outline: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #08090a;
}

input:focus {
  border-color: rgba(255, 59, 69, 0.74);
  box-shadow: 0 0 0 3px rgba(255, 59, 69, 0.16);
}

.auth-form .primary {
  min-height: 52px;
  font-weight: 850;
}

.status {
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.status.error {
  color: #ff8a90;
}

.status.success {
  color: var(--green);
}

.account-meta {
  margin: 24px 0;
}

.account-meta div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

dd {
  margin: 0;
  color: var(--ink);
  text-align: right;
}

.actions {
  flex-wrap: wrap;
  gap: 12px;
}

.actions .secondary {
  padding: 0 22px;
}

.hidden {
  display: none !important;
}

@keyframes sceneReveal {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes approvedHeroReveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(26px) scale(1.055);
  }
  54% {
    opacity: 0.92;
    filter: blur(2px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes heroImageBreath {
  from {
    transform: scale(1) translate3d(-0.18%, 0, 0);
  }
  to {
    transform: scale(1.012) translate3d(0.24%, -0.2%, 0);
  }
}

@keyframes fogDepthBack {
  0% {
    opacity: 0.34;
    background-position: 0% 50%;
    transform: translateX(-58%) translateY(12px) scale(1.03);
  }
  50% {
    opacity: 0.5;
    background-position: 55% 48%;
    transform: translateX(-50%) translateY(-8px) scale(1.09);
  }
  100% {
    opacity: 0.4;
    background-position: 110% 52%;
    transform: translateX(-42%) translateY(8px) scale(1.06);
  }
}

@keyframes fogDepthFrontA {
  0% {
    opacity: 0.12;
    background-position: 92% 50%;
    transform: translateX(-38%) translateY(10px) scale(1.02);
  }
  50% {
    opacity: 0.3;
    background-position: 48% 52%;
    transform: translateX(-52%) translateY(-12px) scale(1.08);
  }
  100% {
    opacity: 0.16;
    background-position: -18% 49%;
    transform: translateX(-66%) translateY(4px) scale(1.12);
  }
}

@keyframes fogDepthFrontB {
  0% {
    opacity: 0.1;
    background-position: 10% 50%;
    transform: translateX(-68%) translateY(8px) scale(1.04);
  }
  52% {
    opacity: 0.24;
    background-position: 56% 48%;
    transform: translateX(-50%) translateY(-10px) scale(1.11);
  }
  100% {
    opacity: 0.13;
    background-position: 125% 51%;
    transform: translateX(-32%) translateY(6px) scale(1.08);
  }
}

@keyframes backgroundSmoke {
  from {
    opacity: 0.64;
    transform: translate3d(-2.6%, 0.6%, 0) scale(1);
  }
  to {
    opacity: 0.86;
    transform: translate3d(2.4%, -1.4%, 0) scale(1.08);
  }
}

@keyframes ambientFogDrift {
  0% {
    opacity: 0.3;
    transform: translate3d(-2%, 1%, 0) scale(1.02);
  }
  48% {
    opacity: 0.46;
    transform: translate3d(1%, -1%, 0) scale(1.06);
  }
  100% {
    opacity: 0.34;
    transform: translate3d(2.4%, 0.5%, 0) scale(1.04);
  }
}

@keyframes beamWake {
  from {
    opacity: 0.2;
    transform: translateX(-50%) scaleX(0.08);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes towerReveal {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateX(-50%) translateY(34px) scale(0.9);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes fenceReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 0.86;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fogDrift {
  from {
    transform: translateX(-54%);
  }
  to {
    transform: translateX(-46%);
  }
}

@keyframes lightPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.92);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes beamPulse {
  0%, 100% {
    filter: brightness(0.85);
  }
  50% {
    filter: brightness(1.35);
  }
}

@keyframes arrowNudge {
  0%, 100% {
    transform: translateY(-4px) rotate(45deg);
    opacity: 0.58;
  }
  50% {
    transform: translateY(5px) rotate(45deg);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 960px) {
  .top-nav {
    display: none;
  }

  .hero {
    min-height: 920px;
    padding-top: 96px;
  }

  .hero-copy {
    padding-bottom: 76px;
  }

  .intro-grid,
  .proof-band,
  .academy-band,
  .signal-board,
  .chart-grid {
    grid-template-columns: 1fr;
  }

  .proof-band {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding: 14px 18px;
  }

  .hero {
    min-height: 860px;
    padding: 92px 20px 54px;
  }

  h1 {
    font-size: clamp(3.25rem, 14vw, 3.75rem);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(2.4rem, 13vw, 4.2rem);
  }

  .approved-hero img {
    object-fit: cover;
    object-position: center 50%;
  }

  .hero-copy {
    max-width: 100%;
    padding-bottom: 84px;
  }

  .lede,
  .risk-note {
    max-width: 100%;
  }

  .tower-wrap {
    top: 8%;
    width: 188px;
    height: 274px;
  }

  .candle-fence {
    bottom: 0;
    width: 96%;
    height: 92px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 72px 0;
  }

  .mini-dashboard,
  .provider-row {
    grid-template-columns: 1fr;
  }

  .chart-demo {
    height: 260px;
  }

  .auth-panel {
    padding: 20px;
  }
}
