/* ═══════════════════════════════════════════════════
   TRADEPULSE — CONCEPT A: DARK PREMIUM TERMINAL
   Design Direction: Bloomberg Terminal × Apple Dark Mode
   ═══════════════════════════════════════════════════ */

/* ========== DESIGN TOKENS ========== */
:root {
  /* Core palette */
  --tp-bg:          #06060b;
  --tp-bg-elevated: #0d0d14;
  --tp-bg-card:     #111119;
  --tp-bg-card-hover:#16161f;
  --tp-bg-subtle:   #1a1a25;
  --tp-border:      rgba(255,255,255,0.06);
  --tp-border-bright:rgba(255,255,255,0.1);

  /* Accent — amber/orange fintech */
  --tp-accent:      #ff6b00;
  --tp-accent-light:#ff9d4d;
  --tp-accent-dim:  rgba(255,107,0,0.15);
  --tp-accent-glow: rgba(255,107,0,0.25);
  --tp-gradient:    linear-gradient(135deg, #ff6b00 0%, #ff9d4d 100%);

  /* Text */
  --tp-text:        #e8e8ef;
  --tp-text-muted:  #8888a0;
  --tp-text-dim:    #555568;

  /* Typography */
  --tp-font:        'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --tp-font-mono:   'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --tp-section-py:  7rem;

  /* Radius */
  --tp-radius:      12px;
  --tp-radius-lg:   20px;
  --tp-radius-sm:   8px;

  /* Shadows */
  --tp-shadow:      0 8px 32px rgba(0,0,0,0.4);
  --tp-shadow-lg:   0 20px 60px rgba(0,0,0,0.5);
  --tp-glow:        0 0 60px rgba(255,107,0,0.12);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--tp-font);
  background-color: var(--tp-bg);
  color: var(--tp-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--tp-accent);
  color: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ========== UTILITY ========== */
.tp-gradient-text {
  background: var(--tp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== CINEMATIC SECTION FADE ========== */
.tp-section-fade {
  position: relative;
}

.tp-section-fade::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(6,6,11,0.9));
  pointer-events: none;
  z-index: 1;
}

/* ========== PREMIUM SECTION DIVIDER ========== */
.tp-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  margin: 5.5rem 0;
}

/* ========== NAVBAR ========== */
.tp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  background: transparent;
}

.tp-nav.scrolled {
  background: rgba(6,6,11,0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--tp-border);
  padding: 0.65rem 0;
}

.tp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.tp-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.tp-nav__brand img {
  height: 38px;
  width: auto;
}

.tp-nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--tp-gradient);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tp-font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.tp-nav__logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.tp-nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.tp-nav__links a {
  display: block;
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tp-text-muted);
  border-radius: var(--tp-radius-sm);
  transition: all 0.25s;
}

.tp-nav__links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.tp-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ========== BUTTONS ========== */
.tp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--tp-font);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--tp-radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  white-space: nowrap;
}

.tp-btn--primary {
  background: var(--tp-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,0,0.25);
}

.tp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.35);
  color: #fff;
}

.tp-btn--ghost {
  background: transparent;
  color: var(--tp-text-muted);
  border: 1px solid var(--tp-border);
}

.tp-btn--ghost:hover {
  color: #fff;
  border-color: var(--tp-border-bright);
  background: rgba(255,255,255,0.03);
}

.tp-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.tp-btn--outline:hover {
  border-color: var(--tp-accent);
  background: var(--tp-accent-dim);
  color: #fff;
}

.tp-btn--lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: var(--tp-radius);
}

.tp-btn i { font-size: 0.8em; transition: transform 0.3s; }
.tp-btn:hover i { transform: translateX(3px); }

/* ========== HAMBURGER ========== */
.tp-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.tp-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tp-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== MOBILE MENU ========== */
.tp-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 300px;
  background: var(--tp-bg-elevated);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid var(--tp-border);
}

.tp-mobile-menu.active { right: 0; }

.tp-mobile-menu__inner { padding: 2rem; }

.tp-mobile-menu__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--tp-text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.tp-mobile-menu__links {
  list-style: none;
  padding: 3rem 0 2rem;
  margin: 0;
}

.tp-mobile-menu__links li { margin-bottom: 0.25rem; }

.tp-mobile-menu__links a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--tp-text-muted);
  border-radius: var(--tp-radius-sm);
  transition: all 0.25s;
}

.tp-mobile-menu__links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.tp-mobile-menu__cta { padding-top: 1rem; }

.tp-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.tp-mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ========== HERO ========== */
.tp-hero {
  position: relative;
  padding: 8.2rem 0 4rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.tp-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 100%);
}

.tp-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.tp-hero__glow--1 {
  width: 600px;
  height: 600px;
  background: rgba(255,107,0,0.08);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.tp-hero__glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(255,157,77,0.05);
  bottom: 10%;
  right: -100px;
}

.tp-hero__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.tp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem 0.4rem 0.7rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--tp-accent-light);
  background: var(--tp-accent-dim);
  border: 1px solid rgba(255,107,0,0.2);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.tp-hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--tp-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.tp-hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: #fff;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.tp-hero__title-accent {
  background: var(--tp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tp-hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(255,255,255,0.72);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  font-weight: 400;
}

.tp-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.tp-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.tp-hero__stat { text-align: center; }

.tp-hero__stat-value {
  display: block;
  font-family: var(--tp-font-mono);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.tp-hero__stat-label {
  font-size: 0.78rem;
  color: var(--tp-text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tp-hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--tp-border);
}

/* Hero Preview */
.tp-hero__preview {
  margin-top: 4rem;
  position: relative;
}

.tp-hero__preview-frame {
  background: var(--tp-bg-card);
  border: 1px solid var(--tp-border-bright);
  border-radius: var(--tp-radius-lg);
  overflow: hidden;
  box-shadow: var(--tp-shadow-lg);
}

.tp-hero__preview-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  background: var(--tp-bg-subtle);
  border-bottom: 1px solid var(--tp-border);
}

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

.tp-hero__preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tp-bg-card);
  border: 1px solid var(--tp-border-bright);
}

.tp-hero__preview-dots span:first-child { background: #ff5f57; border-color: #ff5f57; }
.tp-hero__preview-dots span:nth-child(2) { background: #febc2e; border-color: #febc2e; }
.tp-hero__preview-dots span:nth-child(3) { background: #28c840; border-color: #28c840; }

.tp-hero__preview-url {
  font-family: var(--tp-font-mono);
  font-size: 0.72rem;
  color: var(--tp-text-dim);
  background: var(--tp-bg-card);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  flex: 1;
  max-width: 300px;
}

.tp-hero__preview-screen { background: var(--tp-bg); }
.tp-hero__preview-screen img { width: 100%; display: block; }

.tp-hero__preview-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 120px;
  background: var(--tp-accent);
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
}

/* ========== TICKER ========== */
.tp-ticker {
  padding: 1rem 0;
  border-top: 1px solid var(--tp-border);
  border-bottom: 1px solid var(--tp-border);
  background: var(--tp-bg-elevated);
  overflow: hidden;
}

.tp-ticker__track { overflow: hidden; }

.tp-ticker__content {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}

.tp-ticker__item {
  font-family: var(--tp-font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--tp-text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SECTION HEADER ========== */
.tp-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tp-section-header__tag {
  display: inline-block;
  font-family: var(--tp-font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-accent);
  background: var(--tp-accent-dim);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255,107,0,0.15);
  margin-bottom: 1.5rem;
}

.tp-section-header__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #fff;
}

.tp-section-header__desc {
  font-size: 1.1rem;
  color: var(--tp-text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== FEATURES SECTION ========== */
.tp-features {
  padding: var(--tp-section-py) 0;
  position: relative;
}

.tp-feature-card {
  background: var(--tp-bg-card);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.45);
}

.tp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tp-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.tp-feature-card:hover {
  border-color: rgba(255,107,0,0.25);
  background: rgba(255,255,255,0.04);
  transform: translateY(-6px);
  box-shadow: 0 0 70px rgba(255,107,0,0.10), 0 18px 50px rgba(0,0,0,0.6);
}

.tp-feature-card:hover::before { opacity: 1; }

.tp-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--tp-radius);
  background: var(--tp-accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--tp-accent);
}

.tp-feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.tp-feature-card__desc {
  font-size: 0.92rem;
  color: var(--tp-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.tp-feature-card__tag {
  font-family: var(--tp-font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--tp-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  background: var(--tp-accent-dim);
  border-radius: 100px;
  display: inline-block;
}

/* ========== ANALYTICS GRID ========== */
.tp-analytics {
  padding: var(--tp-section-py) 0;
  background: var(--tp-bg-elevated);
  border-top: 1px solid var(--tp-border);
  border-bottom: 1px solid var(--tp-border);
}

.tp-analytics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tp-analytics__card {
  background: var(--tp-bg-card);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

.tp-analytics__card:hover {
  border-color: rgba(255,107,0,0.2);
  transform: translateY(-3px);
  box-shadow: var(--tp-glow);
}

.tp-analytics__card-icon {
  font-size: 1.5rem;
  color: var(--tp-accent);
  margin-bottom: 0.75rem;
}

.tp-analytics__card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.tp-analytics__card p {
  font-size: 0.78rem;
  color: var(--tp-text-dim);
  line-height: 1.5;
}

/* ========== INTELLIGENCE ========== */
.tp-intelligence {
  padding: var(--tp-section-py) 0;
}

.tp-intelligence__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 1rem 0 1.25rem;
  color: #fff;
}

.tp-intelligence__desc {
  font-size: 1.05rem;
  color: var(--tp-text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.tp-intelligence__features { display: flex; flex-direction: column; gap: 1.5rem; }

.tp-intelligence__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.tp-intelligence__feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--tp-accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--tp-accent);
  margin-top: 2px;
}

.tp-intelligence__feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.tp-intelligence__feature p {
  font-size: 0.85rem;
  color: var(--tp-text-muted);
  line-height: 1.5;
}

/* Intelligence Visual Card */
.tp-intelligence__visual { position: relative; }

.tp-intelligence__card {
  background: var(--tp-bg-card);
  border: 1px solid var(--tp-border-bright);
  border-radius: var(--tp-radius-lg);
  overflow: hidden;
  box-shadow: var(--tp-shadow-lg);
}

.tp-intelligence__card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--tp-bg-subtle);
  border-bottom: 1px solid var(--tp-border);
  font-family: var(--tp-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--tp-text-muted);
}

.tp-intelligence__card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.tp-intelligence__card-dot--green {
  background: #28c840;
  box-shadow: 0 0 6px rgba(40,200,64,0.5);
}

.tp-intelligence__card-body { padding: 1.5rem; }

.tp-intelligence__metric { margin-bottom: 1.25rem; }

.tp-intelligence__metric-label {
  font-size: 0.72rem;
  color: var(--tp-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.tp-intelligence__metric-value {
  font-family: var(--tp-font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  float: right;
  margin-top: -1.2rem;
}

.tp-intelligence__metric-bar {
  height: 4px;
  background: var(--tp-bg-subtle);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.4rem;
}

.tp-intelligence__metric-fill {
  height: 100%;
  background: var(--tp-gradient);
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(.4,0,.2,1);
}

.tp-intelligence__metric-fill--high { background: linear-gradient(90deg, #28c840, #5bdf70); }
.tp-intelligence__metric-fill--data { background: linear-gradient(90deg, #3b82f6, #60a5fa); }

.tp-intelligence__code {
  background: var(--tp-bg);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

.tp-intelligence__code code {
  font-family: var(--tp-font-mono);
  font-size: 0.75rem;
  line-height: 1.8;
}

.code-comment { color: var(--tp-text-dim); }
.code-key { color: var(--tp-text-muted); }
.code-str { color: #5bdf70; }
.code-num { color: var(--tp-accent-light); }

/* ========== COVERAGE ========== */
.tp-coverage {
  padding: var(--tp-section-py) 0;
  background: var(--tp-bg-elevated);
  border-top: 1px solid var(--tp-border);
}

.tp-coverage__card {
  background: var(--tp-bg-card);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius-lg);
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s;
  position: relative;
}

.tp-coverage__card:hover {
  border-color: rgba(255,107,0,0.15);
  transform: translateY(-4px);
}

.tp-coverage__card--highlighted {
  border-color: rgba(255,107,0,0.25);
  background: linear-gradient(180deg, rgba(255,107,0,0.05) 0%, var(--tp-bg-card) 100%);
}

.tp-coverage__card-number {
  font-family: var(--tp-font-mono);
  font-size: 3rem;
  font-weight: 800;
  color: var(--tp-bg-subtle);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.tp-coverage__card--highlighted .tp-coverage__card-number {
  background: var(--tp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
}

.tp-coverage__card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.tp-coverage__card-desc {
  font-size: 0.95rem;
  color: var(--tp-text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.tp-coverage__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tp-coverage__card-list li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--tp-text-muted);
  border-bottom: 1px solid var(--tp-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tp-coverage__card-list li:last-child { border-bottom: none; }

.tp-coverage__card-list li::before {
  content: '→';
  color: var(--tp-accent);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ========== COMPARISON ========== */
.tp-comparison {
  padding: var(--tp-section-py) 0;
  border-top: 1px solid var(--tp-border);
}

.tp-comparison__table-wrap {
  background: var(--tp-bg-card);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius-lg);
  overflow: hidden;
}

.tp-comparison__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.tp-comparison__table th,
.tp-comparison__table td {
  padding: 0.7rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--tp-border);
}

.tp-comparison__table th {
  font-weight: 600;
  color: var(--tp-text-muted);
  background: var(--tp-bg-subtle);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tp-comparison__feature-col,
.tp-comparison__table td:first-child {
  text-align: left;
  white-space: normal;
  color: var(--tp-text);
}

.tp-comparison__tp-col {
  background: rgba(255,107,0,0.08) !important;
  color: var(--tp-accent-light) !important;
}

.tp-comparison__group td {
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tp-text-dim);
  background: var(--tp-bg);
  padding: 0.6rem 1rem;
}

.tp-y { color: var(--tp-accent) !important; font-weight: 700; }
.tp-p { color: #c56f14 !important; font-weight: 600; }
.tp-n { color: var(--tp-text-dim) !important; }

.tp-comparison__table td:nth-child(2) {
  background: rgba(255,107,0,0.03);
}

.tp-comparison__table tbody tr:hover td { background: rgba(255,255,255,0.015); }
.tp-comparison__table tbody tr:hover td:nth-child(2) { background: rgba(255,107,0,0.06); }

.tp-comparison__disclaimer {
  padding: 1rem 1.5rem;
  font-size: 0.72rem;
  color: var(--tp-text-dim);
  line-height: 1.5;
}

/* ========== PROOF / STATS BAR ========== */
.tp-proof {
  padding: 4rem 0;
  background: var(--tp-bg-elevated);
  border-top: 1px solid var(--tp-border);
  border-bottom: 1px solid var(--tp-border);
}

.tp-proof__grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.tp-proof__item { text-align: center; }

.tp-proof__number {
  font-family: var(--tp-font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.tp-proof__label {
  font-size: 0.78rem;
  color: var(--tp-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ========== CTA ========== */
.tp-cta {
  padding: var(--tp-section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tp-cta__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,107,0,0.06);
  border-radius: 50%;
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.tp-cta__title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #fff;
}

.tp-cta__desc {
  font-size: 1.1rem;
  color: var(--tp-text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.tp-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--tp-border);
  background: var(--tp-bg);
}

.tp-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.tp-footer__brand img {
  height: 36px;
  width: auto;
  opacity: 0.8;
}

.tp-footer__about {
  font-size: 0.88rem;
  color: var(--tp-text-dim);
  line-height: 1.65;
  max-width: 320px;
}

.tp-footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-text-muted);
  margin-bottom: 1.25rem;
}

.tp-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tp-footer__list li { margin-bottom: 0.6rem; }

.tp-footer__list a {
  font-size: 0.88rem;
  color: var(--tp-text-dim);
  transition: color 0.25s;
}

.tp-footer__list a:hover { color: var(--tp-accent-light); }

.tp-footer__divider {
  height: 1px;
  background: var(--tp-border);
  margin: 2rem 0;
}

.tp-footer__bottom { text-align: center; }

.tp-footer__legal {
  font-size: 0.72rem;
  color: var(--tp-text-dim);
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.tp-footer__copy {
  font-size: 0.72rem;
  color: var(--tp-text-dim);
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */

@media (max-width: 991.98px) {
  :root { --tp-section-py: 5rem; }

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

  .tp-hero__stats { gap: 1.25rem; }
  .tp-hero__stat-divider { height: 30px; }
}

@media (max-width: 767.98px) {
  :root { --tp-section-py: 4rem; }

  .tp-hero { padding: 8rem 0 3rem; min-height: auto; }
  .tp-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .tp-hero__subtitle { font-size: 0.95rem; }

  .tp-hero__actions { flex-direction: column; align-items: center; }
  .tp-hero__actions .tp-btn { width: 100%; max-width: 320px; justify-content: center; }

  .tp-hero__stats { flex-direction: column; gap: 1.25rem; }
  .tp-hero__stat-divider { width: 40px; height: 1px; }

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

  .tp-proof__grid { gap: 2rem; }
  .tp-proof__number { font-size: 2rem; }

  .tp-nav__actions .tp-btn--primary { display: none; }
}

@media (max-width: 575.98px) {
  .tp-analytics__grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .tp-analytics__card { padding: 1.25rem; }
  .tp-analytics__card h3 { font-size: 0.82rem; }

  .tp-feature-card { padding: 1.5rem; }
  .tp-coverage__card { padding: 1.75rem; }

  .tp-comparison__table { font-size: 0.75rem; }
  .tp-comparison__table th, .tp-comparison__table td { padding: 0.5rem 0.6rem; }

  .tp-proof__grid { flex-direction: column; align-items: center; }
}
