:root {
  --bg: #08090C;
  --ink: #F7F8FA;
  --muted: #9CA3AF;
  --dim: #6B7280;
  --line: rgba(255, 255, 255, 0.08);
  --line-bright: rgba(255, 255, 255, 0.16);
  --card: #0E1015;
  --card-hover: #141720;
  --violet: #8B5CF6;
  --violet-lt: #A78BFA;
  --blue: #3B82F6;
  --blue-lt: #60A5FA;
  --green: #34D399;
  --gold: #E7B94E;
  --pink: #EC4899;
  --pink-lt: #F9A8D4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

[id] {
  scroll-margin-top: 92px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.num {
  font-variant-numeric: tabular-nums;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #6D28D9, #3B82F6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 11px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: #8B5CF6;
  color: #fff;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
  background: #7C4EF3;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--line-bright);
}

.nav-cta {
  padding: 8px 18px;
  font-size: 14px;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 54px 22px 76px;
  background: radial-gradient(800px 420px at 50% -60px, rgba(109, 40, 217, 0.25), transparent 70%);
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #DDD6FE;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero-badge .sparkle {
  color: var(--violet-lt);
}

.hero h1 {
  font-size: clamp(38px, 6.4vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 .grad {
  background: linear-gradient(120deg, #fff 15%, #C4B5FD 60%, #7DD3FC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 34px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  padding: 9px 20px 9px 15px;
  color: #fff;
  min-height: 56px;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.store-badge:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: #0C0D12;
  transform: translateY(-2px);
}

.badge-logo {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.2;
}

.badge-top {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.badge-bottom {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.store-badge.is-soon {
  opacity: 0.55;
  cursor: default;
}

.store-badge.is-soon:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: #000;
  transform: none;
}

.trust-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--dim);
  font-size: 13.5px;
  font-weight: 500;
  margin-top: 26px;
}

.trust-row b {
  color: var(--ink);
  font-weight: 700;
}

/* ===== INTERACTIVE TERMINAL DEMO WIDGET ===== */
.demo-container {
  max-width: 960px;
  margin: 40px auto 0;
  background: rgba(14, 16, 21, 0.9);
  border: 1px solid var(--line-bright);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(139, 92, 246, 0.15);
  text-align: left;
  backdrop-filter: blur(16px);
}

.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.demo-tab {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.demo-tab.active {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.demo-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 10px;
  width: 280px;
}

.demo-search input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
  width: 100%;
  outline: none;
  font-family: inherit;
}

.demo-quick-tickers {
  display: flex;
  gap: 6px;
}

.ticker-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--violet-lt);
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.ticker-btn:hover, .ticker-btn.active {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  color: #fff;
}

.demo-panel {
  display: none;
}

.demo-panel.active {
  display: block;
  animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Demo Report Card */
.report-card-demo {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .report-card-demo {
    grid-template-columns: 1fr;
  }
}

.report-main {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.report-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.ticker-title {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
}

.bull-bear-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.bull-side {
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.2);
  padding: 12px;
  border-radius: 10px;
}

.bear-side {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 12px;
  border-radius: 10px;
}

.side-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.bull-side .side-title { color: var(--green); }
.bear-side .side-title { color: #F87171; }

.side-text {
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.4;
}

/* DCF Calculator Demo */
.dcf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dcf-input-group {
  margin-bottom: 12px;
}

.dcf-input-group label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.dcf-input-group input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 13.5px;
  outline: none;
}

.dcf-output {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.dcf-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  margin: 6px 0;
}

/* 13F Table Demo */
.table-demo {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.table-demo th {
  text-align: left;
  padding: 8px 12px;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  font-size: 11.5px;
  text-transform: uppercase;
}

.table-demo td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.badge-action {
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 800;
}

.badge-buy { background: rgba(52, 211, 153, 0.15); color: var(--green); }
.badge-add { background: rgba(59, 130, 246, 0.15); color: var(--blue-lt); }

/* ===== SECTIONS ===== */
.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 76px 22px;
}

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--violet-lt);
  margin-bottom: 12px;
}

.h2 {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.lede {
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
}

.center {
  text-align: center;
}

.center .lede {
  margin-left: auto;
  margin-right: auto;
}

/* ===== STORY ===== */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 40px;
}

.old-way {
  display: grid;
  gap: 10px;
}

.old-tab {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border-radius: 13px;
  background: rgba(248, 113, 113, 0.05);
  border: 1px solid rgba(248, 113, 113, 0.15);
  color: #FCA5A5;
  font-size: 14px;
  font-weight: 600;
}

.old-tab .x {
  opacity: .8;
  font-size: 12px;
}

.new-way {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nw-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.nw-head-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #6D28D9, #3B82F6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nw-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .4px;
  color: #08090C;
  background: var(--green);
  padding: 3px 9px;
  border-radius: 99px;
}

.nw-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: #D1D5DB;
}

.nw-item:last-child {
  border-bottom: 0;
}

.nw-item .c {
  color: var(--green);
  font-weight: 800;
}

/* ===== FEATURES ===== */
.group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  margin: 48px 0 18px;
}

.group-dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--card-hover);
  transform: translateY(-2px);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 13px;
}

.card h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 6px;
  padding-right: 64px;
}

.card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

.tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

.tag-stocks { background: rgba(59, 130, 246, 0.14); color: #7DA9F9; }
.tag-crypto { background: rgba(16, 185, 129, 0.14); color: #5EE9B5; }
.tag-social { background: rgba(236, 72, 153, 0.14); color: #F9A8D4; }
.tag-all { background: rgba(139, 92, 246, 0.14); color: #C4B5FD; }

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  transition: all 0.2s ease;
}

.step:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.step-num {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--violet-lt);
  letter-spacing: .1em;
}

.step h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 7px 0 6px;
}

.step p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ===== STATS ===== */
.stats-band {
  border-radius: 20px;
  padding: 42px 28px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.09), rgba(59, 130, 246, 0.06));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-size: clamp(34px, 4.6vw, 50px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(120deg, #fff, #A78BFA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  margin-top: 9px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.price-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.price-card.popular {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.06);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.15);
}

.pop-badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  padding: 4px 11px;
  border-radius: 0 15px 0 11px;
}

.price-name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.price-amt {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-amt span {
  font-size: 14px;
  font-weight: 600;
  color: var(--dim);
}

.price-feats {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 8px;
  flex-grow: 1;
}

.price-feats li {
  font-size: 13px;
  color: #B6BCC6;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.45;
}

.price-feats .c {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

.price-note {
  text-align: center;
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--dim);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.tcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  transition: all 0.2s ease;
}

.tcard:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.tcard p {
  font-size: 14px;
  color: #D1D5DB;
  line-height: 1.6;
  margin-bottom: 15px;
}

.tstars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.tuser {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tavatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}

.tname {
  font-size: 13.5px;
  font-weight: 700;
}

.thandle {
  font-size: 12px;
  color: var(--dim);
}

/* ===== FINAL CTA ===== */
.final {
  max-width: 1080px;
  margin: 0 auto 72px;
  padding: 60px 24px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.16), rgba(29, 78, 216, 0.1));
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.final h2 {
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 14px;
}

.final p {
  color: #C7CDD6;
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 26px;
}

/* ===== ABOUT ===== */
.about {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 22px 72px;
}

.about h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
}

.about h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 26px 0 9px;
}

.about p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 13px;
  line-height: 1.75;
}

.about a {
  color: var(--violet-lt);
}

.about a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 44px 22px 34px;
  background: #06070A;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 11px;
}

.foot-tag {
  font-size: 13px;
  color: var(--dim);
  max-width: 250px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--dim);
  padding: 4px 0;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--ink);
}

.foot-bottom {
  max-width: 1080px;
  margin: 32px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: var(--dim);
}

/* Modal Popup */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--card);
  border: 1px solid var(--line-bright);
  border-radius: 18px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
}

.modal-close:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .story {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .grid, .tgrid, .footer-inner {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 58px 18px;
  }
  .hero {
    padding: 32px 18px 56px;
  }
  .final {
    margin: 0 14px 60px;
    padding: 48px 20px;
  }
  .demo-search {
    width: 100%;
  }
}
