@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=DM+Sans:wght@400;500&family=JetBrains+Mono:wght@400&display=swap');

:root {
  --bg: #0a0c0f;
  --bg-card: #0f1318;
  --bg-surface: #151b22;
  --accent: #00e5a0;
  --accent-2: #00b8d4;
  --text: #e8edf2;
  --text-muted: #7a8899;
  --border: #1e2830;
  --nt-orange: #FF4E00;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: var(--accent); text-decoration: none; transition: opacity 200ms ease; }
a:hover { opacity: 0.85; }

.mono { font-family: 'JetBrains Mono', monospace; }
.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
  transition: color 200ms ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-top: 1px solid var(--border); }
  .nav-links a { display: block; padding: 1rem 1.25rem; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #04221a;
  box-shadow: 0 0 0 1px rgba(0,229,160,0.4), 0 0 24px rgba(0,229,160,0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0,229,160,0.6), 0 0 36px rgba(0,229,160,0.55);
  opacity: 1;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-nt {
  background: var(--nt-orange);
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 78, 0, 0.35);
}
.btn-nt:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(255, 78, 0, 0.55);
  opacity: 1;
}
.btn-nt-outline {
  background: transparent;
  color: var(--nt-orange);
  border: 1px solid var(--nt-orange);
}
.btn-nt-outline:hover {
  background: rgba(255, 78, 0, 0.08);
  opacity: 1;
}
.btn-lg { padding: 1.05rem 1.85rem; font-size: 1rem; }

/* ================= HERO ================= */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 1.25rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0, 229, 160, 0.08) 1px, transparent 0);
  background-size: 28px 28px;
  animation: dot-drift 24s linear infinite;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, #000 50%, transparent 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(0,229,160,0.12), transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(0,184,212,0.08), transparent 55%);
  pointer-events: none;
}
@keyframes dot-drift {
  from { background-position: 0 0; }
  to { background-position: 28px 28px; }
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { margin-bottom: 1rem; }
.hero .subhead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.5rem;
  animation: bounce 2.4s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ================= PAGE HEADER ================= */
.page-header {
  padding: 4rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0, 229, 160, 0.05) 1px, transparent 0);
  background-size: 28px 28px;
}
.page-header .subhead {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0.5rem auto 0;
  font-size: 1.1rem;
}

/* ================= SECTIONS ================= */
section { padding: 4rem 0; }
.section-title { text-align: center; margin-bottom: 2.5rem; }

/* ================= CARDS / GRIDS ================= */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1200px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 160, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); margin-bottom: 0; }

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0, 229, 160, 0.18), 0 12px 40px rgba(0,0,0,0.4);
}
.product-card.educational { border-top-color: var(--accent-2); }
.product-card.educational:hover {
  box-shadow: 0 0 24px rgba(0, 184, 212, 0.18), 0 12px 40px rgba(0,0,0,0.4);
}
.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.badge-row { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 229, 160, 0.08);
  color: var(--accent);
  border: 1px solid rgba(0, 229, 160, 0.2);
}
.badge.platform {
  background: var(--bg-surface);
  color: var(--text-muted);
  border-color: var(--border);
}
.badge.accent-2 {
  background: rgba(0, 184, 212, 0.08);
  color: var(--accent-2);
  border-color: rgba(0, 184, 212, 0.25);
}
.product-card h3 { margin-bottom: 0.6rem; font-size: 1.35rem; }
.product-card .desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.feature-list li {
  font-size: 0.9rem;
  color: var(--text);
}
.feature-list li::before {
  content: '✓';
  color: var(--accent);
  margin-right: 0.5rem;
  font-weight: 700;
}
.product-card.educational .feature-list li::before { color: var(--accent-2); }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  margin-bottom: 1rem;
}
.price-label { color: var(--text-muted); font-size: 0.85rem; }
.price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 400;
}
.product-card.educational .price { color: var(--accent-2); }

/* small preview cards on home */
.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.preview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0, 229, 160, 0.18);
}
.preview-card h3 { margin: 0; font-size: 1.1rem; }
.preview-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; flex-grow: 1; }
.preview-card .view-link {
  font-size: 0.85rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  color: var(--accent);
  margin-top: 0.5rem;
}
.preview-card.educational { border-top-color: var(--accent-2); }
.preview-card.educational .view-link { color: var(--accent-2); }

/* ================= FILTER PILLS ================= */
.filter-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.pill {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 200ms ease;
}
.pill.active, .pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 229, 160, 0.08);
}

/* ================= PLATFORM BANNER ================= */
.platform-banner {
  background: linear-gradient(135deg, rgba(255, 78, 0, 0.12), rgba(255, 78, 0, 0.04));
  border-top: 1px solid rgba(255, 78, 0, 0.3);
  border-bottom: 1px solid rgba(255, 78, 0, 0.3);
  padding: 3rem 0;
  text-align: center;
}
.platform-banner h2 {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
}
.platform-banner .nt-mark { color: var(--nt-orange); font-weight: 700; }

/* ================= STATS ================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) { .stats-row { grid-template-columns: 1fr; } }
.stat .value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent);
}
.stat .label { color: var(--text-muted); font-size: 0.95rem; }

/* ================= FAQ ================= */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 200ms ease;
}
.faq-question:hover { color: var(--accent); }
.faq-question .chev { transition: transform 200ms ease; color: var(--accent); }
.faq-item.open .faq-question .chev { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.faq-item.open .faq-answer { display: block; }

/* ================= NINJATRADER PAGE ================= */
.nt-accent { color: var(--nt-orange); }
.platform-mockup {
  background: linear-gradient(135deg, #0c1218 0%, #15202b 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.platform-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: #08101a;
  border-bottom: 1px solid var(--border);
}
.platform-mockup::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--nt-orange);
  box-shadow: 18px 0 0 #555, 36px 0 0 #555;
}
.mockup-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.5rem;
  margin-top: 32px;
  height: 280px;
}
.mockup-chart {
  background: linear-gradient(180deg, #10171f 0%, #0a1018 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.mockup-chart::before {
  content: '';
  position: absolute;
  inset: 8px;
  background:
    linear-gradient(135deg, transparent 49%, rgba(0,229,160,0.5) 49%, rgba(0,229,160,0.5) 51%, transparent 51%) 0 0/40px 40px,
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0/40px 100%,
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0/100% 30px;
}
.mockup-chart::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  height: 60%;
  background:
    linear-gradient(90deg,
      rgba(0,229,160,0.15) 0%, rgba(0,229,160,0.4) 25%,
      rgba(255,78,0,0.4) 55%, rgba(0,229,160,0.5) 80%, rgba(0,229,160,0.2) 100%);
  clip-path: polygon(0% 80%, 8% 60%, 16% 70%, 24% 40%, 32% 50%, 40% 30%, 48% 45%, 56% 25%, 64% 40%, 72% 20%, 80% 35%, 88% 15%, 100% 25%, 100% 100%, 0 100%);
}
.mockup-ladder {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.5rem;
  background: #0a1018;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
}
.mockup-ladder .row {
  display: flex;
  justify-content: space-between;
  padding: 2px 6px;
  border-radius: 2px;
}
.mockup-ladder .bid { background: rgba(0, 229, 160, 0.1); color: var(--accent); }
.mockup-ladder .ask { background: rgba(255, 78, 0, 0.1); color: var(--nt-orange); }
.mockup-ladder .spread { color: var(--text-muted); justify-content: center; }
.mockup-label {
  text-align: center;
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
}

.nt-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.nt-bullets li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
}
.nt-bullets li::before {
  content: '▸';
  color: var(--nt-orange);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col.about-grid { grid-template-columns: 6fr 4fr; align-items: start; }
@media (max-width: 768px) {
  .two-col, .two-col.about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 4rem 0;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  max-width: 720px;
}
.steps-list li {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  counter-increment: step;
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 78, 0, 0.12);
  color: var(--nt-orange);
  border: 1px solid rgba(255, 78, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.note-box {
  background: var(--bg-surface);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ================= BLOG ================= */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 200ms ease, border-color 200ms ease;
}
.blog-card:hover { transform: translateY(-2px); border-color: rgba(0,229,160,0.4); }
.blog-card h3 { margin: 0.4rem 0; font-size: 1.2rem; line-height: 1.3; }
.blog-card .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.blog-card .excerpt { color: var(--text-muted); font-size: 0.95rem; flex-grow: 1; margin: 0; }
.blog-card .read-more {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 0.5rem;
}

/* ================= NEWSLETTER ================= */
.newsletter {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.newsletter-inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.newsletter-text { font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 1.15rem; }
.newsletter form { display: flex; gap: 0.5rem; flex-grow: 1; max-width: 480px; flex-wrap: wrap; }
.newsletter input[type="email"] {
  flex-grow: 1;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}
.newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}
.newsletter-success {
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
}

/* ================= CONTACT FORM ================= */
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info .item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 1rem;
}
.contact-info .icon { font-size: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 0.95rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 200ms ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-success {
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.3);
  color: var(--accent);
  padding: 1.25rem;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  display: none;
}

/* ================= ABOUT ================= */
.profile-card {
  background: linear-gradient(135deg, #0e1419 0%, #18222e 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(0,229,160,0.18), transparent 60%);
  pointer-events: none;
}
.profile-initial {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: var(--accent);
  line-height: 1;
  position: relative;
}
.profile-label {
  margin-top: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
}

.mission-box {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  font-style: italic;
  color: var(--text);
}

/* ================= FOOTER ================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
  margin-top: 4rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) { .footer-cols { grid-template-columns: 1fr; gap: 1.5rem; } }
.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent); }
.footer-divider { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-bottom: 1.5rem;
}
.disclosure-box {
  background: #050709;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.6;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.disclosure-box p { margin: 0 0 1rem; }
.disclosure-box p:last-child { margin: 0; }

/* ================= NT AFFILIATE BANNERS ================= */
.nt-top-banner {
  display: block;
  width: 100%;
  background: #000;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border);
}
.nt-top-banner img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.nt-footer-banner {
  display: block;
  text-align: center;
  padding: 1.5rem 1rem 0.5rem;
  background: #050709;
}
.nt-footer-banner img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.nt-hero-affiliate {
  display: inline-block;
  line-height: 0;
  margin: 0 auto 1.25rem;
}
.nt-hero-affiliate img {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 12px;
}
.nt-platform-image {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 100%;
  width: min(100%, 640px);
  height: auto;
  border-radius: 12px;
}
.nt-platform-visual {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.nt-page .page-header .nt-wordmark {
  display: block;
  margin: 0 auto 1.25rem;
  max-width: 360px;
  width: 100%;
  height: auto;
}

/* ================= DISCLOSURES ================= */
.disclosure-content { max-width: 820px; margin: 0 auto; }
.disclosure-content h2 { margin-top: 2.5rem; }
.disclosure-content h2:first-child { margin-top: 0; }
.disclosure-content p { color: var(--text-muted); line-height: 1.8; }

/* ================= UTILITIES ================= */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.center-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
