:root {
  color-scheme: dark;
  --bg: #05070d;
  --bg-soft: #0a1019;
  --panel: rgba(13, 20, 31, 0.9);
  --panel-solid: #0d141f;
  --line: rgba(151, 171, 205, 0.18);
  --text: #f7fbff;
  --muted: #a7b5c7;
  --blue: #1f8cff;
  --green: #32f5a1;
  --warning: #ffd36a;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  background: var(--green);
  color: #04110c;
  border-radius: 6px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(5, 7, 13, 0.66);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  background: rgba(5, 7, 13, 0.9);
  border-color: var(--line);
}

.section-inner,
.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #02050b;
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(50, 245, 161, 0.42);
  border-radius: 7px;
  color: var(--green) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

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

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 54px;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.96) 0%, rgba(5, 7, 13, 0.88) 38%, rgba(5, 7, 13, 0.52) 70%, rgba(5, 7, 13, 0.78) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.18), #05070d 96%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
}

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

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.domain-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  margin-bottom: 14px;
  border: 1px solid rgba(31, 140, 255, 0.4);
  border-radius: 999px;
  background: rgba(31, 140, 255, 0.12);
  color: #cfe5ff;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 7vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.15rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 7px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--green);
  color: #04110c;
  box-shadow: 0 0 34px rgba(50, 245, 161, 0.2);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.button.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 0;
}

.hero-stats div,
.hero-panel,
.price-card,
.account-card,
.resource-card,
.data-card,
.testimonial-grid figure,
.metric-stack article,
.market-card,
.market-news {
  background: rgba(13, 20, 31, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-stats div {
  padding: 16px;
}

.hero-stats dt {
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel {
  padding: 22px;
  box-shadow: var(--shadow);
}

.panel-topline,
.signal-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.panel-topline span,
.signal-list span {
  color: var(--muted);
}

.panel-topline strong,
.positive {
  color: var(--green);
}

.mini-chart {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: repeating-linear-gradient(to top, transparent, transparent 35px, rgba(255, 255, 255, 0.05) 36px);
}

.mini-chart span {
  flex: 1;
  min-width: 14px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.signal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.trust-band {
  background: #080d15;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(31, 140, 255, 0.06), transparent 40%),
    var(--bg-soft);
  border-block: 1px solid var(--line);
}

.live-market {
  background:
    linear-gradient(180deg, rgba(50, 245, 161, 0.05), transparent 42%),
    #060a11;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.filter-bar,
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.market-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.feed-status {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.feed-status.live {
  color: var(--green);
  border-color: rgba(50, 245, 161, 0.36);
}

.feed-status.offline {
  color: var(--warning);
  border-color: rgba(255, 211, 106, 0.36);
}

.ticker-form {
  display: grid;
  grid-template-columns: minmax(150px, 190px) auto auto;
  gap: 10px;
}

.ticker-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 13px;
  text-transform: uppercase;
}

.owner-access-form {
  display: grid;
  grid-template-columns: minmax(180px, 260px) auto;
  gap: 10px;
  margin: 26px 0 0;
}

.owner-access-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 13px;
}

.owner-access-form input:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.ticker-form input:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

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

.market-card {
  position: relative;
  min-height: 178px;
  padding: 18px;
  overflow: hidden;
}

.market-card::after {
  content: "";
  position: absolute;
  inset: auto -26px -44px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(31, 140, 255, 0.12);
}

.market-card.up::after {
  background: rgba(50, 245, 161, 0.14);
}

.market-card.down::after {
  background: rgba(255, 107, 107, 0.14);
}

.market-card header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  margin-bottom: 18px;
}

.market-card h3 {
  margin-bottom: 2px;
}

.market-card small,
.market-card span {
  color: var(--muted);
}

.market-price {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.market-change {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(167, 181, 199, 0.12);
}

.market-change.up,
.change-up {
  color: var(--green);
}

.market-change.down,
.change-down {
  color: var(--danger);
}

.market-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
}

.market-chart-card {
  min-width: 0;
}

#market-chart {
  width: 100%;
  height: auto;
  margin-top: 18px;
  border-radius: 6px;
  background: #07101a;
}

.market-news {
  padding: 20px;
}

.market-news ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.market-news a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.market-news p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.verify-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 116px;
}

.verify-links a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.verify-links a:hover,
.verify-links a:focus-visible {
  border-color: rgba(50, 245, 161, 0.7);
  background: rgba(50, 245, 161, 0.11);
}

.live-table {
  margin-top: 18px;
}

.filter,
.tab {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  min-height: 42px;
  padding: 8px 13px;
  cursor: pointer;
}

.filter.active,
.tab.active {
  color: #04110c;
  background: var(--green);
  border-color: var(--green);
  font-weight: 800;
}

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

.strategy-card {
  min-height: 320px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.strategy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 245, 161, 0.48);
}

.card-kicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.style-pill {
  padding: 4px 8px;
  border-radius: 999px;
  color: #06110d;
  background: var(--green);
  font-weight: 800;
}

.strategy-card p {
  color: var(--muted);
  margin-bottom: auto;
}

.strategy-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.strategy-metrics div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
}

.strategy-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.strategy-metrics strong {
  font-size: 1rem;
}

.performance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 18px;
  align-items: stretch;
}

.chart-board,
.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 18px;
  overflow: hidden;
}

#performance-chart {
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: #07101a;
}

.metric-stack {
  display: grid;
  gap: 12px;
}

.metric-stack article {
  padding: 18px;
}

.metric-stack span {
  color: var(--muted);
}

.metric-stack strong {
  display: block;
  margin-top: 7px;
  font-size: 1.8rem;
}

.table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

td {
  color: #dbe7f5;
}

.disclaimer {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.billing-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  cursor: pointer;
}

.billing-toggle input {
  position: absolute;
  opacity: 0;
}

.toggle-track {
  position: relative;
  width: 50px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.toggle-track::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 3px;
  border-radius: 50%;
  background: var(--text);
  transition: transform 160ms ease, background 160ms ease;
}

.billing-toggle input:checked + .toggle-track::after {
  transform: translateX(21px);
  background: var(--green);
}

.pricing-grid,
.resource-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 24px;
}

.price-card.popular {
  border-color: rgba(50, 245, 161, 0.62);
  box-shadow: 0 0 0 1px rgba(50, 245, 161, 0.16), var(--shadow);
}

.price-card.institutional-card {
  border-color: rgba(31, 140, 255, 0.58);
  background: linear-gradient(180deg, rgba(31, 140, 255, 0.12), rgba(13, 20, 31, 0.72));
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(50, 245, 161, 0.16);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
}

.price-card p,
.resource-card p {
  color: var(--muted);
}

.price {
  margin: 26px 0;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.price.custom-price {
  font-size: 2.45rem;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
}

.price-card ul {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

.resource-card {
  padding: 22px;
}

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

.legal-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.legal-card h3 {
  margin-bottom: 10px;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-checklist {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 18px;
  border: 1px solid rgba(255, 211, 106, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 211, 106, 0.06);
  color: var(--muted);
  list-style-position: inside;
}

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

.security-card,
.payment-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.security-card.priority {
  border-color: rgba(50, 245, 161, 0.4);
  background:
    linear-gradient(135deg, rgba(50, 245, 161, 0.12), rgba(31, 140, 255, 0.08)),
    var(--panel);
}

.security-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.security-card h3,
.payment-grid h3 {
  margin: 10px 0;
}

.security-card p,
.payment-grid p {
  margin: 0;
  color: var(--muted);
}

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

.payment-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.payment-grid a {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.resource-card span,
.data-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.resource-card a,
.data-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

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

.data-card {
  min-height: 270px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--panel);
}

.data-card h3 {
  margin-bottom: 0;
}

.data-card p {
  color: var(--muted);
  margin-bottom: auto;
}

.social {
  background: #060a11;
}

.testimonial-grid figure {
  margin: 0;
  padding: 24px;
}

blockquote {
  margin: 0 0 18px;
  font-size: 1.1rem;
}

figcaption {
  color: var(--muted);
}

.review-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

.review-strip div {
  padding: 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.review-strip div:last-child {
  border-right: 0;
}

.review-strip strong {
  display: block;
  font-size: 1.8rem;
}

.review-strip span {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 44px;
}

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

.accordion-trigger {
  width: 100%;
  min-height: 62px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.accordion-trigger::after {
  content: "+";
  float: right;
  color: var(--green);
}

.accordion-trigger[aria-expanded="true"]::after {
  content: "-";
}

.accordion-panel {
  display: none;
  padding: 16px 0 22px;
  color: var(--muted);
}

.accordion-panel.open {
  display: block;
}

.final-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(31, 140, 255, 0.18), rgba(50, 245, 161, 0.11));
  border-block: 1px solid var(--line);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.final-cta p {
  margin: 10px 0 0;
  color: var(--muted);
}

.account-section {
  background:
    linear-gradient(180deg, rgba(31, 140, 255, 0.08), transparent 45%),
    var(--bg-soft);
  border-block: 1px solid var(--line);
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 38px;
  align-items: center;
}

.account-grid p {
  max-width: 670px;
  color: var(--muted);
}

.account-card {
  padding: 22px;
  box-shadow: var(--shadow);
}

.account-card.active {
  border-color: rgba(50, 245, 161, 0.58);
  box-shadow: 0 0 0 1px rgba(50, 245, 161, 0.12), var(--shadow);
}

.account-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.account-details div {
  min-height: 82px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
}

.account-details dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.account-details dd {
  margin: 7px 0 0;
  color: var(--text);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.account-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.account-modules span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
}

.account-card.active .account-modules span {
  color: var(--green);
  border-color: rgba(50, 245, 161, 0.34);
  background: rgba(50, 245, 161, 0.08);
}

body.account-active .nav-cta {
  color: #04110c !important;
  background: var(--green);
  border-color: var(--green);
}

.site-footer {
  padding: 34px 0;
  background: #03050a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  color: var(--muted);
}

.footer-grid p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.footer-links a {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .performance-layout,
  .section-heading,
  .faq-grid,
  .account-grid,
  .final-cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .strategy-grid,
  .market-grid,
  .data-stack-grid,
  .pricing-grid,
  .resource-grid,
  .testimonial-grid,
  .legal-grid,
  .security-grid,
  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .billing-toggle {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .section-inner,
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 13, 21, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 7, 13, 0.84), rgba(5, 7, 13, 0.96) 56%, #05070d 100%),
      linear-gradient(90deg, rgba(5, 7, 13, 0.82), rgba(5, 7, 13, 0.62));
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-stats,
  .trust-grid,
  .strategy-grid,
  .market-grid,
  .data-stack-grid,
  .pricing-grid,
  .resource-grid,
  .testimonial-grid,
  .legal-grid,
  .security-grid,
  .payment-grid,
  .review-strip {
    grid-template-columns: 1fr;
  }

  .review-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .review-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .filter-bar,
  .tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .filter,
  .tab {
    flex: 0 0 auto;
  }

  .market-toolbar,
  .market-dashboard,
  .ticker-form,
  .owner-access-form {
    grid-template-columns: 1fr;
  }

  .ticker-form .button,
  .owner-access-form .button {
    width: 100%;
  }

  .account-details,
  .account-modules {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 2.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
