/* ============================================================
   LANDING PAGE STYLES — Story 29.15
   Dark theme, query-led positioning. Extracted from prototype
   _prototypes/landing-v2-dark-hero.html. Nav/footer/mobile-menu
   live in base_public.html; this file styles landing-specific
   sections only. --brand-* variables are defined in
   base_public.html <style>.
   ============================================================ */

body.landing-page .landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

body.landing-page a {
  text-decoration: none;
}

/* ========== 2. HERO SECTION ========== */
body.landing-page .hero {
  background: #000000;
  color: #fff;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

body.landing-page .hero-inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

body.landing-page .hero-text {
  flex: 0 0 45%;
  padding: 70px 60px 40px 80px;
  z-index: 2;
}

body.landing-page .hero-video-side {
  flex: 0 0 55%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.landing-page .hero-video-side video {
  width: 100%;
  display: block;
}

body.landing-page .hero-video-side .watermark-cover {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: #000000;
}

body.landing-page .hero-badge {
  display: inline-block;
  font-size: 12px;
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

body.landing-page .hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

body.landing-page .hero-sub {
  font-size: 18px;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

body.landing-page .hero .btn-cta {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

body.landing-page .hero .btn-cta:hover {
  background: #1D4ED8;
}

body.landing-page .hero-micro {
  font-size: 13px;
  color: #64748B;
  margin-top: 16px;
}

body.landing-page .hero-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px 40px;
  background: #000000;
}

body.landing-page .hero-label-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

body.landing-page .hero-label-card .label-icon {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
}

body.landing-page .hero-label-card .label-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

body.landing-page .hero-label-card:hover .label-icon img {
  opacity: 1;
}

body.landing-page .hero-label-card .label-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

body.landing-page .hero-label-card .label-desc {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.5;
}

@media (max-width: 991px) {
  body.landing-page .hero-inner {
    flex-direction: column;
    min-height: auto;
  }
  body.landing-page .hero-text {
    flex: none;
    width: 100%;
    padding: 60px 32px 32px;
    text-align: center;
  }
  body.landing-page .hero h1 {
    font-size: 40px;
  }
  body.landing-page .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  body.landing-page .hero-video-side {
    flex: none;
    width: 100%;
  }
  body.landing-page .hero-labels {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 40px;
  }
}

@media (max-width: 576px) {
  body.landing-page .hero-text {
    padding: 40px 20px 24px;
  }
  body.landing-page .hero h1 {
    font-size: 32px;
  }
  body.landing-page .hero-labels {
    grid-template-columns: 1fr;
  }
}

/* ========== 3. TRUST BAR ========== */
body.landing-page .trust-bar {
  background: var(--brand-trust-bar-bg);
  padding: 20px 0;
}

body.landing-page .trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

body.landing-page .trust-bar-item {
  font-size: 13px;
  font-weight: 500;
  color: rgba(241, 245, 249, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  body.landing-page .trust-bar-inner { flex-direction: column; gap: 12px; }
}

/* ========== SHARED SECTION STYLES ========== */
body.landing-page .section-headline {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-text-primary);
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

body.landing-page .section-sub {
  text-align: center;
  font-size: 17px;
  color: var(--brand-text-secondary);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ========== 4. PROBLEM SECTION ========== */
body.landing-page .problem-section {
  padding: 96px 0;
}

body.landing-page .problem-section .section-headline {
  margin-bottom: 40px;
}

body.landing-page .problem-body {
  max-width: 720px;
  margin: 0 auto;
}

body.landing-page .problem-body p {
  font-size: 17px;
  color: var(--brand-text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

body.landing-page .problem-questions {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

body.landing-page .problem-questions li {
  font-size: 16px;
  font-style: italic;
  color: var(--brand-text-primary);
  padding: 12px 0 12px 24px;
  border-left: 3px solid var(--brand-accent);
  margin-bottom: 16px;
  line-height: 1.6;
}

body.landing-page .problem-punchline {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-text-primary);
  margin-top: 32px;
  text-align: center;
}

/* ========== 5. TRANSACTION vs STORY SECTION ========== */
body.landing-page .txn-story-section {
  background: var(--brand-alt-bg);
  padding: 96px 0;
}

body.landing-page .txn-story-section .section-headline {
  margin-bottom: 20px;
}

body.landing-page .txn-story-body {
  text-align: center;
  font-size: 17px;
  color: var(--brand-text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 56px;
}

body.landing-page .txn-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-align: center;
}

body.landing-page .txn-label.bad { color: var(--brand-loss); }
body.landing-page .txn-label.good { color: var(--brand-success); }

body.landing-page .txn-list-mock {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--brand-card-shadow);
  font-size: 11px;
}

body.landing-page .txn-list-header {
  display: grid;
  grid-template-columns: 72px 80px 50px 45px 55px 65px;
  background: var(--brand-surface-elevated);
  border-bottom: 1px solid var(--brand-border);
}

body.landing-page .txn-list-header span {
  padding: 8px 6px;
  font-weight: 600;
  color: var(--brand-text-secondary);
  border-right: 1px solid var(--brand-border);
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
}

body.landing-page .txn-list-row {
  display: grid;
  grid-template-columns: 72px 80px 50px 45px 55px 65px;
  border-bottom: 1px solid var(--brand-border);
}

body.landing-page .txn-list-row span {
  padding: 5px 6px;
  border-right: 1px solid var(--brand-border);
  white-space: nowrap;
  overflow: hidden;
  color: var(--brand-text-secondary);
  font-size: 10px;
  font-family: 'Inter', monospace;
}

body.landing-page .txn-list-row .loss { color: var(--brand-loss); }
body.landing-page .txn-list-row .gain { color: var(--brand-success); }

body.landing-page .txn-scroll-hint {
  background: var(--brand-surface-elevated);
  text-align: center;
  padding: 8px;
  color: var(--brand-text-muted);
  font-size: 10px;
}

@media (max-width: 768px) {
  body.landing-page .txn-list-header,
  body.landing-page .txn-list-row {
    grid-template-columns: 65px 70px 45px 40px 50px 60px;
  }
}

/* ========== DASHBOARD SHOWCASE ========== */
body.landing-page .dashboard-showcase {
  padding: 96px 0;
  background: var(--brand-body-bg);
}

body.landing-page .dashboard-showcase .section-headline {
  margin-bottom: 20px;
}

body.landing-page .dashboard-showcase-body {
  text-align: center;
  font-size: 17px;
  color: var(--brand-text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 48px;
}

body.landing-page .dashboard-showcase-frame {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  max-width: 1100px;
  margin: 0 auto;
}

body.landing-page .dashboard-showcase-frame img {
  width: 100%;
  height: auto;
  display: block;
}

body.landing-page .dashboard-showcase-note {
  font-size: 11px;
  color: var(--brand-text-muted);
  text-align: center;
  padding: 12px;
  background: var(--brand-surface-elevated);
  border-top: 1px solid var(--brand-border);
  font-style: italic;
}

/* ========== BROKERAGE STRIP + 3-UP PRODUCT GRID ========== */
body.landing-page .txn-brokerage-strip {
  max-width: 720px;
  margin: 0 auto 24px;
}

body.landing-page .txn-transition {
  text-align: center;
  margin: 24px auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

body.landing-page .txn-transition-arrow {
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(37, 99, 235, 0), var(--brand-accent));
  position: relative;
}

body.landing-page .txn-transition-arrow::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--brand-accent);
  border-bottom: 2px solid var(--brand-accent);
}

body.landing-page .txn-transition-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-success);
}

body.landing-page .txn-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}

body.landing-page .txn-product-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

body.landing-page .txn-product-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--brand-card-shadow);
  display: flex;
  flex-direction: column;
}

body.landing-page .txn-product-grid > .txn-product-card {
  height: 100%;
}

body.landing-page .txn-product-card__caption {
  padding: 14px 18px 16px;
  border-bottom: 1px solid var(--brand-border);
}

body.landing-page .txn-product-card__caption-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-accent);
  margin-bottom: 4px;
}

body.landing-page .txn-product-card__caption-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-text-primary);
  margin-bottom: 2px;
}

body.landing-page .txn-product-card__caption-body {
  font-size: 12px;
  color: var(--brand-text-secondary);
  line-height: 1.45;
}

body.landing-page .txn-product-card__image-wrap {
  background: #FFFFFF;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

body.landing-page .txn-product-card__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

body.landing-page .txn-product-card--compact .txn-product-card__image-wrap {
  padding: 8px 12px;
  align-items: flex-start;
}

body.landing-page .txn-product-card__note {
  font-size: 10px;
  color: var(--brand-text-muted);
  text-align: center;
  padding: 10px 12px;
  background: var(--brand-surface-elevated);
  border-top: 1px solid var(--brand-border);
  font-style: italic;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  body.landing-page .txn-product-grid { grid-template-columns: 1fr; }
}

/* ========== 6. FEATURES SECTIONS ========== */
body.landing-page .feature-section {
  padding: 96px 0;
}

body.landing-page .feature-section.alt {
  background: var(--brand-alt-bg);
}

body.landing-page .feature-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

body.landing-page .feature-text {
  flex: 1;
}

body.landing-page .feature-visual {
  flex: 1;
  min-width: 0;
}

body.landing-page .feature-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-text-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

body.landing-page .feature-text p {
  font-size: 17px;
  color: var(--brand-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

body.landing-page .feature-text .footnote {
  font-size: 13px;
  color: var(--brand-text-secondary);
  opacity: 0.7;
  font-style: italic;
}

body.landing-page .query-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

body.landing-page .query-pill {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 100px;
  font-size: 13px;
  color: #60A5FA;
  font-weight: 500;
}

body.landing-page .dashboard-mock {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--brand-card-shadow);
}

body.landing-page .dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}

body.landing-page .dashboard-stat {
  background: var(--brand-card-bg);
  padding: 20px;
}

body.landing-page .dashboard-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--brand-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

body.landing-page .dashboard-stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-text-primary);
}

body.landing-page .dashboard-stat-value.green { color: var(--brand-success); }
body.landing-page .dashboard-stat-value.blue { color: var(--brand-accent); }

@media (max-width: 768px) {
  body.landing-page .feature-inner {
    flex-direction: column;
    gap: 40px;
  }
  body.landing-page .feature-text h2 { font-size: 26px; }
  body.landing-page .section-headline { font-size: 28px; }
  body.landing-page .dashboard-stats { grid-template-columns: 1fr; }
}

/* ========== 7. HOW IT WORKS ========== */
body.landing-page .how-section {
  background: var(--brand-alt-bg);
  padding: 96px 0;
}

body.landing-page .how-steps {
  display: flex;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

body.landing-page .how-step {
  flex: 1;
  text-align: center;
}

body.landing-page .how-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

body.landing-page .how-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-text-primary);
  margin-bottom: 10px;
}

body.landing-page .how-step p {
  font-size: 15px;
  color: var(--brand-text-secondary);
  line-height: 1.7;
}

body.landing-page .how-connector {
  display: flex;
  align-items: center;
  padding-top: 0;
  color: var(--brand-text-muted);
  font-size: 28px;
  margin-top: -8px;
}

@media (max-width: 768px) {
  body.landing-page .how-steps { flex-direction: column; gap: 40px; }
  body.landing-page .how-connector { display: none; }
}

/* ========== 8. DATABENTO SECTION ========== */
body.landing-page .databento-section {
  padding: 96px 0;
}

body.landing-page .databento-compare {
  display: flex;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}

body.landing-page .databento-card {
  flex: 1;
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--brand-card-shadow);
}

body.landing-page .databento-card.premium {
  border-color: var(--brand-accent);
  border-width: 2px;
}

body.landing-page .databento-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--brand-border);
}

body.landing-page .databento-card-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-text-primary);
}

body.landing-page .databento-card-header .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 6px;
}

body.landing-page .tag.included { background: rgba(16, 185, 129, 0.1); color: var(--brand-success); }
body.landing-page .tag.optional { background: rgba(37, 99, 235, 0.1); color: var(--brand-accent); }

body.landing-page .databento-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--brand-text-secondary);
  font-style: italic;
  margin-top: 24px;
}

@media (max-width: 768px) {
  body.landing-page .databento-compare { flex-direction: column; }
}

/* ========== 9. FOUNDER SOCIAL PROOF ========== */
body.landing-page .founder-section {
  background: var(--brand-alt-bg);
  padding: 80px 0;
  text-align: center;
}

body.landing-page .founder-quote {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--brand-hero-text);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 20px;
}

body.landing-page .founder-attr {
  font-size: 14px;
  color: rgba(241, 245, 249, 0.5);
  font-weight: 600;
}

@media (max-width: 768px) {
  body.landing-page .founder-quote { font-size: 18px; }
}

/* ========== 10. PRICING ========== */
body.landing-page .pricing-section {
  background: var(--brand-alt-bg);
  padding: 96px 0;
}

body.landing-page .pricing-sub {
  text-align: center;
  font-size: 17px;
  color: var(--brand-text-secondary);
  max-width: 640px;
  margin: -8px auto 56px;
  line-height: 1.7;
}

body.landing-page .pricing-cards {
  display: flex;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

body.landing-page .pricing-card {
  flex: 1;
  background: var(--brand-card-bg);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--brand-border);
  box-shadow: var(--brand-card-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s;
}

body.landing-page .pricing-card.featured {
  border-color: var(--brand-accent);
  border-width: 2px;
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25), 0 0 40px rgba(37, 99, 235, 0.1);
}

body.landing-page .pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.landing-page .pricing-tier {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

body.landing-page .pricing-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--brand-text-primary);
  margin-bottom: 4px;
}

body.landing-page .pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--brand-text-secondary);
}

body.landing-page .pricing-queries {
  font-size: 15px;
  color: var(--brand-text-secondary);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--brand-border);
}

body.landing-page .pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

body.landing-page .pricing-features li {
  font-size: 14px;
  color: var(--brand-text-secondary);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.landing-page .pricing-features li::before {
  content: '\2713';
  color: var(--brand-success);
  font-weight: 700;
}

body.landing-page .btn-primary {
  display: inline-block;
  background: var(--brand-accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

body.landing-page .btn-primary:hover {
  background: var(--brand-accent-hover);
  transform: translateY(-1px);
}

body.landing-page .btn-outline {
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--brand-hero-text);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

body.landing-page .btn-outline:hover {
  background: var(--brand-accent);
  color: #fff;
}

body.landing-page .btn-solid {
  display: inline-block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  color: #fff;
  background: var(--brand-accent);
  cursor: pointer;
  transition: background 0.2s;
}

body.landing-page .btn-solid:hover {
  background: var(--brand-accent-hover);
}

body.landing-page .pricing-footer {
  text-align: center;
  margin-top: 32px;
}

body.landing-page .pricing-footer a {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-accent);
  text-decoration: none;
}

body.landing-page .pricing-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  body.landing-page .pricing-cards { flex-direction: column; }
  body.landing-page .pricing-card.featured { transform: none; }
}

/* ========== 12. FINAL CTA ========== */
body.landing-page .final-cta {
  background: var(--brand-alt-bg);
  padding: 96px 0;
  text-align: center;
}

body.landing-page .final-cta h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-hero-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

body.landing-page .final-cta-sub {
  font-size: 17px;
  color: #94A3B8;
  margin-bottom: 36px;
}

body.landing-page .final-cta-micro {
  font-size: 13px;
  color: rgba(148, 163, 184, 0.6);
  margin-top: 16px;
}

@media (max-width: 768px) {
  body.landing-page .final-cta h2 { font-size: 28px; }
}

/* ========== BROWSER FRAME MOCKUP ========== */
body.landing-page .browser-frame {
  background: var(--brand-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(37, 99, 235, 0.15);
}

body.landing-page .browser-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--brand-surface-elevated);
}

body.landing-page .browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

body.landing-page .browser-dot.red { background: #EF4444; }
body.landing-page .browser-dot.yellow { background: #F59E0B; }
body.landing-page .browser-dot.green { background: #10B981; }

/* ========== OVERLAPPING POSITIONS GRID ========== */
body.landing-page .overlapping-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  body.landing-page .overlapping-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ========== SECTION ANCHOR SCROLL OFFSET ========== */
/* Fixed nav is ~68px tall; give anchored sections breathing room. */
body.landing-page #features,
body.landing-page #how,
body.landing-page #pricing,
body.landing-page #join {
  scroll-margin-top: 80px;
}

/* tastytrade logo — inline in body copy at text size.
 * Used once in the hero (line 20 of landing.html) for the brand moment; all
 * other mentions use plain lowercase text "tastytrade" per brand styling. */
.tt-logo-inline {
  height: 1em;
  width: auto;
  vertical-align: -0.15em;
  display: inline-block;
}
