:root {
  --bg: #070a09;
  --bg-soft: #0b0f0d;
  --surface: #101613;
  --surface-2: #141c18;
  --line: rgba(214, 237, 223, 0.13);
  --line-strong: rgba(214, 237, 223, 0.23);
  --text: #f1f5f0;
  --muted: #94a098;
  --muted-2: #68736c;
  --lime: #c9f56a;
  --lime-soft: #aee255;
  --mint: #75d7a2;
  --amber: #f2bf5e;
  --red: #ef7c78;
  --max-width: 1240px;
  --radius: 24px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 8%, rgba(91, 134, 94, 0.12), transparent 26rem),
    var(--bg);
  font-family: Inter, "SF Pro Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

::selection {
  color: #0a0d0b;
  background: var(--lime);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: #080b09;
  background: var(--lime);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 78px;
  margin: 14px auto 0;
  padding: 0 18px 0 14px;
  border: 1px solid transparent;
  border-radius: 18px;
  transition:
    background 250ms ease,
    border 250ms ease,
    box-shadow 250ms ease,
    backdrop-filter 250ms ease;
}

.site-header.scrolled {
  background: rgba(8, 12, 10, 0.82);
  border-color: var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.brand-mark,
.cta-mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #f2f5ef;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 48%),
    #090c0b;
  border: 1px solid rgba(213, 236, 221, 0.18);
  box-shadow:
    0 0 35px rgba(201, 245, 106, 0.08),
    inset 0 0 0 6px #121915;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.brand-mark strong,
.cta-mark strong {
  transform: translateX(-3px);
  font-weight: 850;
  letter-spacing: -0.08em;
}

.brand-mark strong {
  font-size: 22px;
}

.brand-mark i,
.cta-mark i {
  position: absolute;
  top: 10px;
  right: 11px;
  display: block;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(201, 245, 106, 0.5);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 16px;
  font-weight: 760;
  letter-spacing: 0.18em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.48em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.text-link {
  position: relative;
  color: #b8c2bc;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--text);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.inline-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  color: #090c0a;
  background: var(--lime);
  border-radius: 11px;
  box-shadow: 0 10px 30px rgba(201, 245, 106, 0.12);
}

.button-primary {
  color: #090c0a;
  background: var(--lime);
  box-shadow: 0 14px 40px rgba(201, 245, 106, 0.15);
}

.button-primary:hover,
.button-small:hover {
  background: #d7ff7d;
  box-shadow: 0 18px 50px rgba(201, 245, 106, 0.22);
}

.button-ghost {
  color: #dbe1dc;
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--line-strong);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(201, 245, 106, 0.34);
}

.button-large {
  min-height: 60px;
  padding: 0 30px;
  font-size: 15px;
}

.button-full {
  width: 100%;
}

.play-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--lime);
  border: 1px solid rgba(201, 245, 106, 0.25);
  border-radius: 50%;
  font-size: 8px;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(580px, 1.12fr);
  gap: clamp(32px, 4vw, 76px);
  align-items: center;
  width: min(calc(100% - 48px), 1440px);
  min-height: min(840px, calc(100svh - 58px));
  margin: 0 auto;
  padding: 108px 0 36px;
}

.hero::before {
  position: absolute;
  top: 0;
  left: 48%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--line) 14%, var(--line) 84%, transparent);
  content: "";
  opacity: 0.55;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 660px;
  padding-left: clamp(0px, 3vw, 68px);
}

.eyebrow,
.section-index,
.feature-kicker,
.plan-label {
  color: var(--lime);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.status-dot,
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(117, 215, 162, 0.08), 0 0 18px rgba(117, 215, 162, 0.5);
}

.eyebrow-rule {
  width: 28px;
  height: 1px;
  margin-left: 4px;
  background: var(--line-strong);
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(64px, 6.1vw, 98px);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero h1 span,
.section-heading h2 span,
.horizons-copy h2 span,
.section-heading-centered h2 span,
.intelligence-copy h2 span,
.plans-intro h2 span {
  color: var(--lime);
}

.hero-lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: #aab5ae;
  font-size: clamp(17px, 1.4vw, 20px);
  letter-spacing: -0.025em;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.hero-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.hero-assurances svg {
  width: 15px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-product {
  position: relative;
  z-index: 3;
  justify-self: end;
  width: min(100%, 830px);
  margin-left: 0;
}

.product-glow {
  position: absolute;
  z-index: -1;
  top: 4%;
  left: 10%;
  width: 70%;
  height: 82%;
  background: radial-gradient(ellipse, rgba(178, 233, 90, 0.18), transparent 68%);
  filter: blur(25px);
}

.browser-frame {
  overflow: hidden;
  background: #080b09;
  border: 1px solid rgba(213, 236, 221, 0.2);
  border-radius: 20px;
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transform: none;
}

.browser-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 48px;
  padding: 0 17px;
  background: #111714;
  border-bottom: 1px solid var(--line);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i {
  width: 8px;
  height: 8px;
  background: #3a433e;
  border-radius: 50%;
}

.browser-dots i:first-child {
  background: #7c4744;
}

.browser-dots i:nth-child(2) {
  background: #816b3c;
}

.browser-dots i:last-child {
  background: #416b50;
}

.browser-address {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 248px;
  padding: 6px 16px;
  color: #849088;
  background: #0b0f0d;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 9px;
  font-size: 10px;
  text-align: center;
}

.browser-address svg {
  width: 12px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 1.5;
}

.browser-status {
  justify-self: end;
  color: var(--mint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-screenshot {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.02) contrast(1.08) brightness(1.08);
}

.dashboard-fallback {
  display: none;
  grid-template-columns: 120px 1fr;
  min-height: 425px;
  padding: 22px;
  background:
    radial-gradient(circle at 76% 18%, rgba(201, 245, 106, 0.1), transparent 30%),
    linear-gradient(135deg, #0d1411, #070a09);
}

.browser-frame.screenshot-missing .dashboard-fallback {
  display: grid;
}

.fallback-sidebar {
  display: grid;
  gap: 13px;
  align-content: start;
  padding: 18px 14px;
  border-right: 1px solid rgba(213, 236, 221, 0.09);
}

.fallback-sidebar span,
.fallback-kpis strong,
.fallback-table span {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(213, 236, 221, 0.08);
  border-radius: 10px;
}

.fallback-sidebar span {
  height: 32px;
}

.fallback-main {
  display: grid;
  gap: 22px;
  padding: 18px 12px 18px 28px;
}

.fallback-topline,
.fallback-kpis,
.fallback-table {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fallback-topline {
  justify-content: space-between;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.fallback-topline i {
  color: var(--lime);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.fallback-kpis strong {
  min-height: 86px;
  padding: 18px;
  color: #dfe5e1;
  font-size: 12px;
}

.fallback-chart {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background:
    linear-gradient(rgba(213, 236, 221, 0.06) 1px, transparent 1px) 0 0 / 100% 52px,
    linear-gradient(90deg, rgba(213, 236, 221, 0.05) 1px, transparent 1px) 0 0 / 25% 100%,
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(213, 236, 221, 0.08);
  border-radius: 16px;
}

.fallback-chart svg {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
}

.fallback-chart path {
  fill: none;
  stroke: var(--lime);
  stroke-width: 5;
  stroke-linecap: round;
}

.fallback-table {
  flex-wrap: wrap;
}

.fallback-table span {
  padding: 11px 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  background: rgba(17, 24, 20, 0.88);
  border: 1px solid rgba(213, 236, 221, 0.17);
  border-radius: 14px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
}

.floating-card-market {
  top: 72px;
  right: -10px;
  flex-direction: column;
  width: 190px;
  padding: 16px 17px;
}

.floating-label {
  margin-bottom: 9px;
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.floating-card-market strong {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
}

.floating-card-market small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.floating-card-risk {
  bottom: 62px;
  left: -54px;
  align-items: center;
  gap: 12px;
  width: 235px;
  padding: 14px;
}

.floating-card-risk > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-card-risk strong {
  font-size: 12px;
}

.floating-card-risk small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.floating-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--lime);
  background: rgba(201, 245, 106, 0.08);
  border: 1px solid rgba(201, 245, 106, 0.15);
  border-radius: 10px;
}

.floating-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-orbit,
.final-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(201, 245, 106, 0.06);
  border-radius: 50%;
}

.hero-orbit::after,
.final-orbit::after {
  position: absolute;
  top: 18%;
  left: 7%;
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--lime);
  content: "";
}

.hero-orbit-one {
  top: 80px;
  right: -160px;
  width: 620px;
  height: 620px;
}

.hero-orbit-two {
  top: 224px;
  right: -20px;
  width: 340px;
  height: 340px;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue span::after {
  position: absolute;
  top: -14px;
  left: 0;
  width: 1px;
  height: 14px;
  background: var(--lime);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(0);
  }
  65%,
  100% {
    transform: translateY(52px);
  }
}

.market-ribbon {
  overflow: hidden;
  padding: 20px 0;
  background: var(--lime);
  border-top: 1px solid rgba(10, 13, 11, 0.12);
  border-bottom: 1px solid rgba(10, 13, 11, 0.16);
  transform: none;
}

.market-ribbon-track {
  display: flex;
  align-items: center;
  width: max-content;
  color: #0a0d0b;
  animation: ribbon 30s linear infinite;
}

.market-ribbon-track span {
  padding: 0 30px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.market-ribbon-track i {
  width: 5px;
  height: 5px;
  background: #0a0d0b;
  border-radius: 50%;
}

@keyframes ribbon {
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 150px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 390px;
  gap: 30px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.horizons-copy h2,
.section-heading-centered h2,
.intelligence-copy h2,
.plans-intro h2 {
  margin: 0;
  font-size: clamp(44px, 5.3vw, 72px);
  font-weight: 590;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-heading > p,
.plans-intro > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 32px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.025), transparent 45%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.feature-card:hover {
  border-color: rgba(201, 245, 106, 0.22);
  transform: translateY(-5px);
}

.feature-card-main {
  padding: 0;
  background: var(--surface-2);
}

.feature-card-main .feature-copy {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 32px 32px 0;
}

.feature-number {
  position: relative;
  z-index: 2;
  color: #566159;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin: 18px 0 16px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.feature-card p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.portfolio-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 265px;
  overflow: hidden;
}

.portfolio-value {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 48px;
  display: flex;
  flex-direction: column;
}

.portfolio-value span {
  color: var(--muted);
  font-size: 10px;
}

.portfolio-value strong {
  margin-top: 8px;
  font-size: 33px;
  font-weight: 630;
  letter-spacing: -0.05em;
}

.portfolio-value small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.portfolio-value b {
  color: var(--mint);
}

.chart-svg {
  position: absolute;
  right: -10px;
  bottom: -6px;
  left: -10px;
  width: calc(100% + 20px);
  height: 190px;
}

.chart-area {
  fill: url(#areaGradient);
}

.chart-line {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.4;
  vector-effect: non-scaling-stroke;
}

.chart-svg circle {
  fill: var(--surface-2);
  stroke: var(--lime);
  stroke-width: 2;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 42px 0 92px;
  place-items: center;
  color: var(--lime);
  background: rgba(201, 245, 106, 0.06);
  border: 1px solid rgba(201, 245, 106, 0.13);
  border-radius: 14px;
}

.feature-icon svg,
.trust-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-accent {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 245, 106, 0.11), transparent 45%),
    var(--surface);
}

.asset-pills {
  position: absolute;
  right: 26px;
  bottom: 27px;
  left: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.asset-pills span {
  padding: 7px 10px;
  color: #aeb8b2;
  background: #0b100d;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.update-chip {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: #b5c0b9;
  background: #0b100d;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 10px;
}

.update-chip span {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(117, 215, 162, 0.5);
}

.horizons-section {
  width: 100%;
  padding: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, var(--line) 50%, transparent 50.1%),
    radial-gradient(circle at 70% 50%, rgba(100, 142, 104, 0.1), transparent 33%),
    #0a0e0c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.horizons-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 790px;
  margin: 0 auto;
  padding: 120px 0;
}

.horizons-copy h2 {
  margin-top: 25px;
}

.horizons-copy > p {
  max-width: 540px;
  margin: 28px 0 35px;
  color: var(--muted);
}

.horizon-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #080b09;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.horizon-tabs button {
  padding: 10px 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}

.horizon-tabs button.active {
  color: #0a0d0b;
  background: var(--lime);
}

.horizon-content {
  max-width: 530px;
  min-height: 152px;
  margin-top: 24px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.horizon-content span {
  color: var(--mint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.horizon-content h3 {
  margin: 9px 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.horizon-content p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.analysis-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: rgba(15, 21, 18, 0.9);
  border: 1px solid rgba(201, 245, 106, 0.18);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.analysis-card::before {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 245, 106, 0.11), transparent 68%);
  content: "";
}

.analysis-header,
.analysis-price,
.analysis-signals {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.analysis-header > div {
  display: flex;
  flex-direction: column;
}

.analysis-header span,
.analysis-price span,
.analysis-signals span {
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.analysis-header strong {
  margin-top: 5px;
  font-size: 22px;
}

.ticker-badge {
  padding: 8px 10px;
  color: var(--lime) !important;
  background: rgba(201, 245, 106, 0.07);
  border: 1px solid rgba(201, 245, 106, 0.14);
  border-radius: 8px;
}

.analysis-price {
  justify-content: flex-start;
  gap: 16px;
  margin-top: 30px;
}

.analysis-price strong {
  color: var(--lime);
  font-size: 33px;
  letter-spacing: -0.04em;
}

.analysis-price span {
  max-width: 120px;
  line-height: 1.5;
}

.analysis-chart {
  position: relative;
  height: 220px;
  margin: 14px -4px 0;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 55px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 25% 100%;
}

.analysis-chart::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 75%;
  background: linear-gradient(rgba(201, 245, 106, 0.08), transparent);
  clip-path: polygon(0 95%, 7% 87%, 12% 97%, 20% 67%, 26% 73%, 32% 47%, 38% 58%, 44% 29%, 51% 41%, 57% 27%, 63% 35%, 69% 11%, 77% 24%, 83% 6%, 90% 17%, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.analysis-chart svg {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.analysis-chart path {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.4;
  vector-effect: non-scaling-stroke;
}

.chart-label {
  position: absolute;
  z-index: 3;
  bottom: 5px;
  color: var(--muted-2);
  font-size: 7px;
  font-weight: 800;
}

.label-one {
  left: 0;
}

.label-two {
  right: 0;
}

.analysis-signals {
  gap: 8px;
  margin-top: 12px;
}

.analysis-signals div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 13px;
  background: #0a0e0c;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.analysis-signals strong {
  margin-top: 5px;
  color: #dbe2dd;
  font-size: 10px;
}

.analysis-disclaimer {
  margin: 17px 0 0;
  color: #68736c;
  font-size: 8px;
  text-align: center;
}

.section-heading-centered {
  display: block;
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading-centered .section-index {
  display: block;
  margin-bottom: 24px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.steps::before {
  position: absolute;
  top: 45px;
  right: 16.6%;
  left: 16.6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 8%, var(--line-strong) 92%, transparent);
  content: "";
}

.step {
  position: relative;
  min-height: 490px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.step-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 auto;
  place-items: center;
  color: #080b09;
  background: var(--lime);
  border: 7px solid var(--bg);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 900;
  box-sizing: content-box;
}

.step-visual {
  display: flex;
  height: 235px;
  flex-direction: column;
  justify-content: center;
  margin: 18px 0 6px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.step > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.capital-card {
  display: flex;
  flex-direction: column;
  padding: 25px;
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 245, 106, 0.09), transparent 40%),
    #0a0e0c;
  border: 1px solid rgba(201, 245, 106, 0.14);
  border-radius: 16px;
}

.capital-card small {
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.capital-card strong {
  margin: 14px 0 5px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.capital-card span {
  color: var(--mint);
  font-size: 9px;
}

.search-card,
.search-result {
  display: flex;
  align-items: center;
  background: #0a0e0c;
  border: 1px solid var(--line);
}

.search-card {
  gap: 9px;
  padding: 12px;
  color: var(--muted);
  border-radius: 10px;
  font-size: 9px;
}

.search-card kbd {
  margin-left: auto;
  padding: 2px 5px;
  color: var(--muted-2);
  background: #131914;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 7px;
}

.search-icon {
  width: 10px;
  height: 10px;
  border: 1px solid var(--muted);
  border-radius: 50%;
}

.search-result {
  gap: 10px;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 9px;
}

.search-result b {
  width: 34px;
  color: var(--lime);
  font-size: 9px;
}

.search-result span {
  color: var(--muted);
  font-size: 8px;
}

.search-result i {
  display: grid;
  width: 20px;
  height: 20px;
  margin-left: auto;
  place-items: center;
  color: #090c0a;
  background: var(--lime);
  border-radius: 6px;
  font-style: normal;
  font-size: 11px;
}

.decision-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: #0a0e0c;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.decision-dot {
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(242, 191, 94, 0.5);
}

.decision-card div {
  display: flex;
  flex-direction: column;
}

.decision-card small {
  color: var(--muted-2);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.decision-card strong {
  margin-top: 4px;
  font-size: 12px;
}

.risk-meter {
  height: 5px;
  margin-top: 26px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--mint), var(--amber), var(--red));
  border-radius: 6px;
}

.risk-meter span {
  display: block;
  width: 11px;
  height: 11px;
  margin: -3px 0 0 56%;
  background: white;
  border: 3px solid #19201c;
  border-radius: 50%;
}

.risk-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 7px;
}

.intelligence-section {
  width: min(calc(100% - 28px), 1480px);
  padding-top: 40px;
}

.intelligence-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
  min-height: 740px;
  overflow: hidden;
  padding: 90px max(30px, calc((100% - var(--max-width)) / 2));
  background:
    radial-gradient(circle at 90% 50%, rgba(201, 245, 106, 0.13), transparent 35%),
    linear-gradient(135deg, #111915, #080b09 68%);
  border: 1px solid var(--line);
  border-radius: 34px;
}

.intelligence-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background:
    linear-gradient(rgba(201, 245, 106, 0.08) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(90deg, rgba(201, 245, 106, 0.08) 1px, transparent 1px) 0 0 / 52px 52px;
  mask-image: radial-gradient(circle at 85% 50%, black, transparent 58%);
}

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

.ai-mark {
  display: grid;
  grid-template-columns: repeat(3, 7px);
  gap: 5px;
  width: max-content;
  margin-bottom: 34px;
  transform: rotate(45deg);
}

.ai-mark span {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 2px;
}

.ai-mark span:nth-child(2),
.ai-mark span:nth-child(4) {
  opacity: 0.3;
}

.ai-mark span:nth-child(3),
.ai-mark span:nth-child(5) {
  opacity: 0.65;
}

.intelligence-copy h2 {
  margin-top: 20px;
}

.intelligence-copy > p {
  max-width: 560px;
  margin: 28px 0;
  color: var(--muted);
}

.intelligence-copy ul {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.intelligence-copy li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  color: #c7cfca;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.intelligence-copy li span {
  color: var(--lime);
  font-size: 8px;
  font-weight: 800;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 750;
}

.intelligence-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-window {
  width: min(100%, 560px);
  max-width: 540px;
  overflow: hidden;
  background: rgba(10, 14, 12, 0.89);
  border: 1px solid rgba(201, 245, 106, 0.2);
  border-radius: 22px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  transform: none;
}

.ai-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--line);
}

.ai-window-header > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ai-window-header strong {
  font-size: 11px;
}

.ai-window-header small {
  color: var(--muted-2);
  font-size: 8px;
}

.ai-pulse {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(201, 245, 106, 0.7);
}

.ai-query,
.ai-response {
  margin: 20px;
  padding: 20px;
  border-radius: 14px;
}

.ai-query {
  margin-left: 82px;
  background: rgba(201, 245, 106, 0.08);
  border: 1px solid rgba(201, 245, 106, 0.12);
}

.ai-query span {
  color: var(--lime);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.ai-query p {
  margin: 7px 0 0;
  color: #d8ded9;
  font-size: 11px;
}

.ai-response {
  margin-right: 45px;
  background: #121814;
  border: 1px solid var(--line);
}

.response-line {
  height: 6px;
  margin: 8px 0;
  background: #2b352e;
  border-radius: 4px;
}

.response-line-title {
  width: 42%;
  height: 9px;
  margin-bottom: 18px;
  background: #77877c;
}

.response-line-long {
  width: 94%;
}

.response-line-medium {
  width: 78%;
}

.response-line-short {
  width: 55%;
}

.scenario-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 22px 0;
}

.scenario-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 7px;
}

.scenario-row i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.positive {
  background: var(--mint);
}

.neutral {
  background: var(--amber);
}

.negative {
  background: var(--red);
}

.ai-caveat {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 20px 20px;
  padding: 12px 14px;
  color: var(--muted);
  background: #090d0b;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 8px;
}

.ai-caveat svg {
  width: 16px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.5;
}

.trust-section .section-heading {
  grid-template-columns: 220px minmax(0, 1fr) 390px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-card {
  min-height: 280px;
  padding: 25px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.trust-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 55px;
  place-items: center;
  color: var(--lime);
  background: rgba(201, 245, 106, 0.05);
  border: 1px solid rgba(201, 245, 106, 0.11);
  border-radius: 12px;
}

.trust-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.honesty-note {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  margin-top: 14px;
  padding: 26px 30px;
  background: rgba(242, 191, 94, 0.035);
  border: 1px solid rgba(242, 191, 94, 0.13);
  border-radius: 16px;
}

.honesty-note span {
  color: var(--amber);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.honesty-note p {
  margin: 0;
  color: #9ea9a2;
  font-size: 12px;
}

.plans-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 100px;
  align-items: center;
}

.plans-intro h2 {
  margin-top: 22px;
}

.plans-intro > p {
  max-width: 510px;
  margin-top: 26px;
}

.plans-cards {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 12px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.plan-card h3 {
  margin: 17px 0 13px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.plan-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 auto;
  padding: 0;
  list-style: none;
}

.plan-card li,
.plan-capabilities span {
  position: relative;
  padding-left: 17px;
  color: #b5bfb8;
  font-size: 10px;
}

.plan-card li::before,
.plan-capabilities span::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--mint);
  border-radius: 50%;
  content: "";
}

.plan-card .button {
  margin-top: 28px;
}

.plan-card-featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 245, 106, 0.15), transparent 42%),
    var(--surface-2);
  border-color: rgba(201, 245, 106, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.plan-popular {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 8px;
  color: #0b0e0c;
  background: var(--lime);
  border-radius: 6px;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.plan-capabilities {
  display: grid;
  gap: 12px;
  margin: 28px 0 auto;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  padding-top: 110px;
}

.faq-heading h2 {
  margin: 20px 0 0;
  font-size: 58px;
  font-weight: 590;
  letter-spacing: -0.06em;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 620;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 10px;
  left: 6px;
  width: 8px;
  height: 1px;
  background: var(--lime);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 700px;
  margin: -7px 45px 25px 0;
  color: var(--muted);
  font-size: 13px;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 740px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 245, 106, 0.13), transparent 31%),
    #0a0e0c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background:
    linear-gradient(rgba(201, 245, 106, 0.07) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(90deg, rgba(201, 245, 106, 0.07) 1px, transparent 1px) 0 0 / 70px 70px;
  mask-image: radial-gradient(circle, black 5%, transparent 65%);
  content: "";
}

.final-cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 100px 24px;
  text-align: center;
}

.cta-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 30px;
  border-radius: 17px;
  box-shadow:
    0 0 50px rgba(201, 245, 106, 0.15),
    inset 0 0 0 8px #121915;
}

.cta-mark strong {
  font-size: 34px;
}

.cta-mark i {
  top: 14px;
  right: 15px;
  width: 10px;
  height: 10px;
}

.final-cta-content > span {
  display: block;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.7;
}

.final-cta h2 {
  margin: 23px 0;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.final-cta p {
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--muted);
}

.final-orbit-one {
  width: 620px;
  height: 620px;
}

.final-orbit-two {
  width: 920px;
  height: 920px;
}

.final-orbit-two::after {
  top: auto;
  right: 10%;
  bottom: 21%;
  left: auto;
}

.site-footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 55px 0 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding-bottom: 45px;
}

.footer-main > p {
  justify-self: center;
  color: var(--muted);
  font-size: 12px;
}

.footer-main nav {
  display: flex;
  gap: 20px;
}

.footer-main nav a,
.footer-bottom {
  color: var(--muted);
  font-size: 10px;
}

.footer-main nav a:hover,
.footer-bottom a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr 0.7fr;
  align-items: center;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  max-width: 620px;
  margin: 0;
  text-align: center;
}

.footer-bottom a {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1240px) {
  .hero {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .hero-product {
    width: 790px;
  }

  .feature-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }

  .plans-section {
    gap: 55px;
  }

  .intelligence-panel {
    gap: 55px;
  }
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
  }

  .menu-button span {
    width: 16px;
    height: 1px;
    background: var(--text);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 3px;
    padding: 12px;
    visibility: hidden;
    background: rgba(9, 13, 11, 0.97);
    border: 1px solid var(--line);
    border-radius: 14px;
    opacity: 0;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms;
  }

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

  .mobile-menu a {
    padding: 13px 14px;
    color: #c3cdc6;
    border-radius: 9px;
    font-size: 13px;
  }

  .mobile-menu a:hover {
    color: var(--text);
    background: rgba(201, 245, 106, 0.06);
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 165px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-assurances {
    justify-content: center;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-product {
    width: 94%;
    margin: 90px auto 70px;
  }

  .browser-frame {
    transform: none;
  }

  .floating-card-market {
    right: -25px;
  }

  .floating-card-risk {
    left: -25px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 150px 1fr;
  }

  .section-heading > p {
    grid-column: 2;
  }

  .feature-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .feature-card-accent {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .feature-card-accent .feature-icon {
    margin-bottom: 40px;
  }

  .horizons-layout {
    gap: 50px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .step {
    display: grid;
    grid-template-columns: 62px 1fr 1fr;
    gap: 25px;
    align-items: center;
    min-height: 260px;
  }

  .step-number {
    margin: 0;
  }

  .step-visual {
    grid-row: 1 / span 2;
    grid-column: 2;
    height: 210px;
    margin: 0;
  }

  .step h3 {
    align-self: end;
  }

  .step > p {
    align-self: start;
  }

  .intelligence-panel {
    grid-template-columns: 1fr;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .intelligence-copy {
    max-width: 700px;
  }

  .ai-window {
    max-width: 700px;
    margin: 0 auto;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plans-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .plans-intro {
    max-width: 760px;
  }

  .faq-section {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
    min-height: 66px;
    margin-top: 8px;
    padding: 0 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

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

  .brand-copy small {
    font-size: 6px;
  }

  .button-small {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .hero {
    width: calc(100% - 28px);
    padding-top: 130px;
  }

  .eyebrow {
    flex-wrap: wrap;
    font-size: 8px;
  }

  .eyebrow-rule {
    display: none;
  }

  .hero h1 {
    font-size: clamp(55px, 18vw, 79px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-assurances {
    gap: 10px 16px;
  }

  .hero-product {
    width: 112%;
    margin-top: 60px;
    margin-left: -6%;
  }

  .browser-frame {
    border-radius: 12px;
  }

  .browser-bar {
    height: 35px;
    padding: 0 9px;
  }

  .browser-address {
    min-width: 160px;
    padding: 3px 8px;
    font-size: 7px;
  }

  .browser-status {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .hero-orbit-one {
    width: 380px;
    height: 380px;
  }

  .market-ribbon {
    padding: 15px 0;
  }

  .market-ribbon-track span {
    padding: 0 20px;
    font-size: 9px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 105px 0;
  }

  .section-heading,
  .trust-section .section-heading {
    display: block;
    margin-bottom: 45px;
  }

  .section-heading h2,
  .horizons-copy h2,
  .section-heading-centered h2,
  .intelligence-copy h2,
  .plans-intro h2 {
    margin-top: 20px;
    font-size: clamp(39px, 12vw, 55px);
  }

  .section-heading > p {
    margin-top: 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-accent {
    grid-column: auto;
    min-height: 440px;
  }

  .feature-card-main {
    min-height: 525px;
  }

  .feature-card-main .feature-copy {
    grid-template-columns: 34px 1fr;
  }

  .feature-card h3 {
    font-size: 29px;
  }

  .feature-icon {
    margin-bottom: 70px;
  }

  .horizons-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 0;
  }

  .horizon-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
  }

  .horizon-tabs button {
    padding: 9px 5px;
    font-size: 8px;
  }

  .analysis-card {
    padding: 19px;
  }

  .analysis-signals {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .analysis-signals div:last-child {
    grid-column: 1 / -1;
  }

  .steps {
    gap: 12px;
  }

  .step {
    display: block;
    min-height: auto;
    padding: 23px;
  }

  .step-number {
    margin: 0 0 16px;
  }

  .step-visual {
    height: 210px;
    margin-bottom: 16px;
  }

  .intelligence-section {
    width: calc(100% - 14px);
    padding-top: 20px;
  }

  .intelligence-panel {
    gap: 50px;
    padding: 60px 22px;
    border-radius: 24px;
  }

  .intelligence-copy li {
    font-size: 10px;
  }

  .ai-query {
    margin-left: 20px;
  }

  .ai-response {
    margin-right: 20px;
  }

  .scenario-row {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: 235px;
  }

  .trust-icon {
    margin-bottom: 38px;
  }

  .honesty-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }

  .plans-section {
    gap: 45px;
  }

  .plans-cards {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 460px;
  }

  .faq-heading h2 {
    font-size: 48px;
  }

  .faq-list summary {
    gap: 18px;
    font-size: 13px;
  }

  .final-cta {
    min-height: 690px;
  }

  .final-cta h2 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .final-orbit-one {
    width: 380px;
    height: 380px;
  }

  .final-orbit-two {
    width: 570px;
    height: 570px;
  }

  .site-footer {
    width: calc(100% - 28px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-main > p {
    justify-self: start;
  }

  .footer-main nav {
    flex-wrap: wrap;
  }

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

  .footer-bottom p {
    text-align: left;
  }

  .footer-bottom a {
    justify-self: start;
  }
}

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

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

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