:root {
  --blue: #0a192f;
  --blue-2: #07111f;
  --cyan: #00d4ff;
  --purple: #7c3aed;
  --green: #22c55e;
  --white: #ffffff;
  --muted: #9fb0c7;
  --panel: rgba(255, 255, 255, 0.065);
  --line: rgba(0, 212, 255, 0.18);
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 212, 255, 0.16), transparent 25rem),
    radial-gradient(circle at 84% 20%, rgba(124, 58, 237, 0.18), transparent 30rem),
    radial-gradient(circle at 40% 92%, rgba(34, 197, 94, 0.12), transparent 26rem),
    linear-gradient(180deg, #030712 0%, var(--blue) 42%, #030712 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.app-shell {
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 108px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(calc(100% - 36px), 1220px);
  min-height: 72px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(3, 7, 18, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  transition: top 180ms ease, background 180ms ease, border-color 180ms ease;
}

.navbar.scrolled {
  top: 10px;
  border-color: rgba(0, 212, 255, 0.38);
  background: rgba(7, 17, 31, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 236px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.brand-orbit {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 212, 255, 0.42);
  border-radius: 14px;
  background:
    radial-gradient(circle at 62% 32%, var(--green) 0 5px, transparent 6px),
    linear-gradient(135deg, rgba(0, 212, 255, 0.28), rgba(124, 58, 237, 0.24));
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.18);
}

.brand-orbit::before {
  content: "";
  position: absolute;
  inset: 11px 8px;
  border: 2px solid var(--cyan);
  border-left-color: transparent;
  border-bottom-color: var(--purple);
  border-radius: 999px;
  transform: rotate(-22deg);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 15px;
  font-weight: 900;
}

.brand small {
  margin-top: 5px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.nav-menu a {
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu a:hover {
  color: var(--cyan);
}

.nav-cta,
.btn,
.footer-cta,
.mobile-sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  min-height: 46px;
  padding: 0 18px;
  color: #03111e;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 14px 36px rgba(0, 212, 255, 0.22);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  color: #03111e;
  background: linear-gradient(135deg, #82f0ff, #3bef83);
}

.btn {
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.btn:hover,
.nav-cta:hover,
.footer-cta:hover,
.mobile-sticky-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #03111e;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 18px 52px rgba(0, 212, 255, 0.23);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(0, 212, 255, 0.28);
  background: rgba(255, 255, 255, 0.055);
}

.btn-secondary:hover,
.btn-secondary.glow {
  border-color: rgba(0, 212, 255, 0.56);
  box-shadow: 0 18px 54px rgba(124, 58, 237, 0.18);
}

.icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.send-icon::before {
  content: "";
  position: absolute;
  inset: 2px;
  clip-path: polygon(0 42%, 100% 0, 70% 100%, 48% 62%, 30% 78%);
  background: currentColor;
}

.arrow-icon::before {
  content: "";
  position: absolute;
  inset: 4px 2px 4px 4px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--cyan);
}

.hero {
  min-height: 100vh;
  padding-top: 158px;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 62% 42%, rgba(0, 212, 255, 0.13), transparent 28rem),
    linear-gradient(120deg, rgba(124, 58, 237, 0.1), transparent 38%),
    repeating-linear-gradient(120deg, transparent 0 32px, rgba(255, 255, 255, 0.025) 33px 34px);
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 52px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  max-width: 100%;
  flex-wrap: wrap;
  padding: 10px 12px;
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: var(--radius);
  color: #dff8ff;
  background: rgba(3, 7, 18, 0.72);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.eyebrow span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 24px var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.95;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.04;
  font-weight: 900;
}

h3 {
  font-size: 19px;
  line-height: 1.24;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

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

.hero-actions.centered {
  justify-content: center;
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.signal-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(0, 212, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 900;
}

.terminal-stack {
  position: relative;
  min-height: 560px;
}

.terminal-card {
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(3, 7, 18, 0.72);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
}

.main-terminal {
  min-height: 524px;
  padding: 18px;
}

.terminal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.terminal-top strong {
  display: block;
  font-size: 18px;
}

.terminal-top span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.terminal-top b {
  padding: 8px 10px;
  border: 1px solid rgba(34, 197, 94, 0.32);
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(34, 197, 94, 0.08);
  font-size: 12px;
}

.terminal-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 16px;
}

.chart-stage,
.analytics-panel {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.chart-stage svg {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.chart-grid path {
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
}

.price-path {
  fill: none;
  stroke: url("#cyanPath");
  stroke-width: 5;
  stroke-dasharray: 900;
  animation: drawLine 4.2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.32));
}

.liquidity-line,
.shift-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 2;
  stroke-dasharray: 8 8;
}

.fvg-zone {
  fill: rgba(124, 58, 237, 0.16);
  stroke: rgba(124, 58, 237, 0.48);
}

.ob-zone {
  fill: rgba(34, 197, 94, 0.14);
  stroke: rgba(34, 197, 94, 0.42);
}

.candle-set path {
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 2;
}

.candle-set rect {
  fill: rgba(0, 212, 255, 0.7);
}

.chart-tag,
.floating-chip {
  position: absolute;
  z-index: 2;
  padding: 9px 11px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(3, 7, 18, 0.76);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
}

.tag-liquidity {
  top: 62px;
  right: 54px;
}

.tag-fvg {
  top: 126px;
  left: 330px;
}

.tag-ob {
  bottom: 118px;
  left: 134px;
}

.floating-chip {
  animation: float 4s ease-in-out infinite;
}

.chip-one {
  top: 56px;
  left: -18px;
}

.chip-two {
  top: 190px;
  right: -18px;
  animation-delay: 0.8s;
}

.chip-three {
  left: 50px;
  bottom: 54px;
  animation-delay: 1.4s;
}

.analytics-panel {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
}

.metric {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.metric span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.metric strong {
  color: var(--cyan);
  font-size: 14px;
}

.metric.active {
  border-color: rgba(0, 212, 255, 0.38);
}

.metric.green strong {
  color: var(--green);
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.hook-marquee {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.14), transparent 26rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.hook-marquee span,
.hook-marquee strong {
  display: block;
  font-size: clamp(28px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 900;
}

.hook-marquee strong {
  margin-top: 8px;
  color: var(--cyan);
}

.hook-grid,
.fail-grid,
.learn-grid,
.edge-grid,
.stats-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.hook-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

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

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

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

.stats-grid {
  grid-template-columns: repeat(6, 1fr);
}

.testimonial-grid {
  grid-template-columns: repeat(4, 1fr);
}

.hook-card,
.glass-card,
.learn-card,
.edge-card,
.stat-card,
.testimonial,
.founder-panel,
.cta-panel,
details {
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.038);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hook-card,
.glass-card,
.learn-card,
.edge-card,
.testimonial {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hook-card:hover,
.glass-card:hover,
.learn-card:hover,
.edge-card:hover,
.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.42);
  background: rgba(255, 255, 255, 0.07);
}

.card-icon {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.075);
}

.card-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
}

.structure-icon::before {
  clip-path: polygon(0 82%, 18% 62%, 35% 70%, 52% 36%, 70% 48%, 100% 12%, 100% 27%, 72% 64%, 56% 51%, 39% 84%, 20% 76%, 0 100%);
}

.liquidity-icon::before {
  width: 24px;
  height: 20px;
  clip-path: polygon(0 22%, 100% 22%, 100% 34%, 0 34%, 0 64%, 100% 64%, 100% 76%, 0 76%);
  background: linear-gradient(180deg, currentColor 0 100%);
}

.liquidity-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: translateY(-1px);
}

.risk-icon::before {
  clip-path: polygon(50% 0, 92% 16%, 86% 64%, 50% 100%, 14% 64%, 8% 16%);
}

.emotion-icon::before {
  border: 2px solid currentColor;
  border-radius: 999px;
  background: transparent;
  box-shadow: inset 0 0 0 6px rgba(0, 212, 255, 0.16);
}

.overtrade-icon::before {
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.signal-icon::before {
  width: 24px;
  height: 16px;
  clip-path: polygon(0 58%, 12% 58%, 20% 26%, 32% 92%, 44% 8%, 56% 76%, 68% 42%, 78% 58%, 100% 58%, 100% 70%, 72% 70%, 64% 58%, 54% 92%, 43% 34%, 32% 100%, 20% 52%, 16% 70%, 0 70%);
}

.solution-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.1), rgba(0, 212, 255, 0.07));
}

.solution-bar h3 {
  margin: 0;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.learn-card {
  position: relative;
  min-height: 174px;
  padding-top: 92px;
}

.learn-card h3 {
  color: var(--white);
}

.learn-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 212, 255, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 212, 255, 0.16), rgba(124, 58, 237, 0.1)),
    rgba(0, 212, 255, 0.06);
}

.learn-card::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 35px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--green));
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.2);
}

.learn-card:nth-child(1)::after {
  clip-path: polygon(10% 78%, 30% 54%, 45% 62%, 62% 28%, 78% 42%, 100% 12%, 100% 30%, 80% 60%, 64% 48%, 48% 82%, 31% 70%, 10% 96%);
}

.learn-card:nth-child(2)::after {
  height: 18px;
  clip-path: polygon(0 16%, 100% 16%, 100% 30%, 0 30%, 0 60%, 100% 60%, 100% 74%, 0 74%);
}

.learn-card:nth-child(3)::after {
  clip-path: polygon(50% 0, 100% 34%, 78% 100%, 22% 100%, 0 34%);
}

.learn-card:nth-child(4)::after {
  clip-path: polygon(0 72%, 20% 52%, 38% 62%, 54% 36%, 72% 44%, 100% 14%, 100% 28%, 74% 60%, 56% 52%, 42% 78%, 22% 68%, 0 92%);
}

.learn-card:nth-child(5)::after {
  width: 18px;
  left: 37px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.9), rgba(0, 212, 255, 0.9));
}

.learn-card:nth-child(6)::after {
  width: 28px;
  left: 32px;
  clip-path: polygon(0 20%, 100% 20%, 100% 80%, 0 80%);
}

.learn-card:nth-child(7)::after {
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.learn-card:nth-child(8)::after {
  clip-path: polygon(50% 0, 62% 36%, 100% 36%, 68% 58%, 80% 100%, 50% 72%, 20% 100%, 32% 58%, 0 36%, 38% 36%);
}

.learn-card:nth-child(9)::after {
  clip-path: polygon(50% 0, 92% 16%, 86% 64%, 50% 100%, 14% 64%, 8% 16%);
}

.learn-card:nth-child(10)::after {
  border: 3px solid var(--cyan);
  background: transparent;
  box-shadow: inset 0 0 0 5px rgba(124, 58, 237, 0.26), 0 0 18px rgba(0, 212, 255, 0.2);
}

.learn-card:nth-child(11)::after {
  width: 26px;
  left: 33px;
  clip-path: polygon(0 0, 72% 0, 100% 28%, 100% 100%, 0 100%);
}

.learn-card:nth-child(12)::after {
  clip-path: polygon(0 58%, 12% 58%, 20% 26%, 32% 92%, 44% 8%, 56% 76%, 68% 42%, 78% 58%, 100% 58%, 100% 70%, 72% 70%, 64% 58%, 54% 92%, 43% 34%, 32% 100%, 20% 52%, 16% 70%, 0 70%);
}

.edge {
  background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.045), transparent);
}

.edge-layout,
.founder-layout,
.faq-layout {
  display: grid;
  gap: 48px;
  align-items: center;
}

.edge-layout {
  grid-template-columns: 0.82fr 1.18fr;
}

.mini-svg {
  position: relative;
  height: 94px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    rgba(3, 7, 18, 0.26);
  background-size: 24px 24px;
  overflow: hidden;
}

.mini-svg::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 46px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--green));
  transform: skewY(-10deg);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.28);
}

.mini-svg::after {
  content: "";
  position: absolute;
  border-radius: 6px;
}

.pool::after {
  left: 16px;
  right: 16px;
  top: 20px;
  border-top: 2px dashed rgba(255, 255, 255, 0.52);
}

.manipulation::after {
  width: 62px;
  height: 36px;
  left: 42%;
  top: 20px;
  border: 1px solid rgba(124, 58, 237, 0.55);
  background: rgba(124, 58, 237, 0.14);
}

.inducement::after {
  width: 42px;
  height: 42px;
  right: 22px;
  bottom: 18px;
  border: 2px solid var(--green);
  transform: rotate(45deg);
}

.premium::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.16) 0 50%, rgba(0, 212, 255, 0.1) 50% 100%);
}

.flow::after {
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 24px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.12), rgba(34, 197, 94, 0.2));
}

.shift::after {
  width: 84px;
  height: 2px;
  right: 18px;
  top: 26px;
  background: var(--green);
}

.founder-layout {
  grid-template-columns: 0.82fr 1.18fr;
}

.founder-panel {
  position: relative;
  padding: 32px;
  overflow: hidden;
}

.founder-panel::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.16), transparent 68%);
}

.avatar {
  display: grid;
  width: 112px;
  height: 112px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(0, 212, 255, 0.38);
  border-radius: var(--radius);
  color: #03111e;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-size: 34px;
  font-weight: 900;
}

.founder-panel ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.founder-panel li {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.founder-copy p {
  font-size: 18px;
}

.stat-card {
  min-height: 142px;
  padding: 24px 14px;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: clamp(24px, 3vw, 38px);
}

.stat-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

.stars {
  margin-bottom: 18px;
  color: var(--green);
  letter-spacing: 2px;
}

.testimonial strong {
  color: var(--cyan);
}

.final-cta {
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  animation: gridMove 12s linear infinite;
}

.cta-panel {
  position: relative;
  max-width: 980px;
  padding: clamp(34px, 7vw, 76px);
  text-align: center;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: -50%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 212, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 85% 75%, rgba(124, 58, 237, 0.18), transparent 24rem);
}

.cta-panel p {
  max-width: 740px;
  margin-inline: auto;
  font-size: 18px;
}

.faq-layout {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0;
}

summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 24px;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.footer {
  padding: 70px 0 30px;
  border-top: 1px solid rgba(0, 212, 255, 0.16);
  background: rgba(3, 7, 18, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr 1.35fr;
  gap: 34px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 14px;
  text-transform: uppercase;
}

.footer a:not(.brand):not(.footer-cta) {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-tagline {
  color: var(--green);
  font-weight: 900;
}

.footer-brand .brand-logo {
  width: 320px;
  height: 78px;
  object-position: left center;
}

.footer-cta {
  width: fit-content;
  min-height: 46px;
  margin-top: 14px;
  padding: 0 16px;
  color: #03111e;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.mobile-sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: none;
  min-height: 52px;
  padding: 0 18px;
  color: #03111e;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.mobile-sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 160ms;
}

.delay-3 {
  transition-delay: 230ms;
}

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

@keyframes drawLine {
  from {
    stroke-dashoffset: 170;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes gridMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 38px 38px;
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .edge-layout,
  .founder-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .terminal-stack {
    min-height: auto;
  }

  .fail-grid,
  .learn-grid,
  .stats-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 880px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 100px);
    padding: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(3, 7, 18, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    overflow-y: auto;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 15px;
    border-radius: var(--radius);
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.055);
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    padding-top: 154px;
  }

  .terminal-body {
    grid-template-columns: 1fr;
  }

  .analytics-panel {
    min-height: auto;
  }

  .floating-chip {
    display: none;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 124px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  h2 {
    font-size: clamp(29px, 9vw, 42px);
  }

  .brand strong {
    font-size: 13px;
  }

  .brand-orbit {
    width: 40px;
    height: 40px;
  }

  .brand-logo {
    width: 196px;
    height: 46px;
  }

  .footer-brand .brand-logo {
    width: 260px;
    height: 66px;
  }

  .hero-actions,
  .solution-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .hook-grid,
  .fail-grid,
  .learn-grid,
  .edge-grid,
  .stats-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-terminal {
    padding: 12px;
  }

  .terminal-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .chart-stage,
  .chart-stage svg {
    min-height: 330px;
  }

  .chart-tag {
    font-size: 10px;
  }

  .tag-fvg {
    left: 45%;
  }

  .tag-ob {
    left: 42px;
  }

  .copyright {
    padding-bottom: 66px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
