/* ═══════════════════════════════════════════════════
   home.css  —  Finsight Core home page styles
   Loaded only on the home page via home.html
   ═══════════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: calc(var(--offset) + 56px) 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 55% 45%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 55% 45%, black, transparent 80%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  right: -8%;
  top: 12%;
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: radial-gradient(circle, rgba(79, 255, 176, 0.06) 0%, rgba(79, 255, 176, 0.02) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb2 {
  position: absolute;
  right: 7%;
  top: 18%;
  width: clamp(200px, 28vw, 380px);
  height: clamp(200px, 28vw, 380px);
  border: 1px solid rgba(79, 255, 176, 0.07);
  border-radius: 50%;
  pointer-events: none;
  animation: orbRotate 22s linear infinite;
}

.hero-orb2::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--signal);
}

@keyframes orbRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-left  { position: relative; z-index: 1; }
.hero-right { position: relative; z-index: 1; }

/* Hero eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(79, 255, 176, 0.06);
  border: 1px solid rgba(79, 255, 176, 0.20);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 28px;
  animation: heroUp 0.8s ease both;
}

.eyebrow-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  animation: pip 2s ease infinite;
}

@keyframes pip {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Hero heading */
.hero-h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 14px;
  animation: heroUp 0.8s 0.1s ease both;
}

.hero-h1 em  { font-style: italic; color: var(--signal); }
.hero-h1 .dim { color: rgba(200, 214, 255, 0.4); display: block; }

/* Hero subtext */
.hero-sub {
  font-size: 16px;
  color: rgba(200, 214, 255, 0.65);
  line-height: 1.8;
  max-width: 460px;
  font-weight: 400;
  margin-bottom: 40px;
  animation: heroUp 0.8s 0.2s ease both;
}

/* Hero CTA buttons */
.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: heroUp 0.8s 0.3s ease both;
}

.btn-hero-main {
  padding: 13px 30px;
  border-radius: 10px;
  border: none;
  background: var(--signal);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-hero-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 255, 176, 0.25);
}

.btn-hero-ghost {
  padding: 13px 26px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-hero-ghost:hover { border-color: var(--line2); color: var(--signal); }

/* Hero proof stats */
.hero-proof {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  animation: heroUp 0.8s 0.4s ease both;
}

.proof-item { padding: 0 28px 0 0; }
.proof-item:first-child { padding-left: 0; }

.proof-sep {
  width: 1px;
  background: var(--line);
  align-self: stretch;
  margin-right: 28px;
}

.proof-val {
  font-family: 'DM Mono', monospace;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -1px;
}

.proof-val span { color: var(--signal); }

.proof-lbl {
  font-size: 11px;
  color: rgba(200, 214, 255, 0.5);
  margin-top: 2px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── SIGNAL PANEL ── */
.panel {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.panel-bar {
  background: var(--ink3);
  border-bottom: 1px solid var(--line);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-dots { display: flex; gap: 5px; }

.panel-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.panel-title {
  font-size: 11px;
  color: rgba(200, 214, 255, 0.5);
  font-family: 'DM Mono', monospace;
  margin-left: 4px;
}

.panel-live {
  margin-left: auto;
  background: rgba(79, 255, 176, 0.08);
  border: 1px solid var(--line2);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 9px;
  font-weight: 700;
  color: var(--signal);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.panel-live-dot {
  width: 5px;
  height: 5px;
  background: var(--signal);
  border-radius: 50%;
  animation: pip 1.5s infinite;
}

.panel-body { padding: 14px; }

/* Signal cards */
.sig-card {
  background: var(--ink3);
  border: 1px solid var(--line);
  border-left-width: 3px;
  border-radius: 10px;
  padding: 13px;
  margin-bottom: 10px;
}

.sig-card.buy   { border-left-color: var(--signal); }
.sig-card.sell  { border-left-color: var(--rose); }
.sig-card.watch { border-left-color: var(--amber); }

.sig-card-row1 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.sig-ticker {
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  font-family: 'DM Mono', monospace;
  flex: 1;
}

.sig-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.badge-buy   { background: rgba(79,  255, 176, 0.12); color: var(--signal); }
.badge-sell  { background: rgba(255, 107, 107, 0.12); color: var(--rose); }
.badge-watch { background: rgba(255, 184,  77, 0.12); color: var(--amber); }

.sig-confidence {
  font-size: 10px;
  color: rgba(200, 214, 255, 0.5);
  font-family: 'DM Mono', monospace;
}

.sig-conf-bar {
  height: 3px;
  background: var(--ink4);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}

.sig-conf-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.8s ease;
}

.fill-buy   { background: var(--signal); }
.fill-sell  { background: var(--rose); }
.fill-amber { background: var(--amber); }

.sig-reasoning {
  font-size: 11px;
  color: rgba(200, 214, 255, 0.55);
  line-height: 1.55;
}

.sig-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.sig-price { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--white); }
.sig-time  { font-size: 10px; color: rgba(200, 214, 255, 0.35); }

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink2);
}

.stat-cell {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.stat-cell:last-child { border-right: none; }

.stat-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 255, 176, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-cell:hover::before { opacity: 1; }

.stat-n {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-n span { color: var(--signal); }

.stat-l {
  font-size: 11px;
  color: rgba(200, 214, 255, 0.45);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ── MARQUEE SEPARATOR ── */
.marquee-sep {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  background: var(--ghost2);
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: tickSlide 32s linear infinite;
}

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(200, 214, 255, 0.3);
  border-right: 1px solid var(--line);
}

.mq-item span { color: var(--signal); font-size: 13px; }

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--ink2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.how-steps { display: flex; flex-direction: column; }

.how-step {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.how-step:first-child { padding-top: 0; }
.how-step:last-child  { border-bottom: none; }

.step-n {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--ink3);
  border: 1px solid var(--line);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(200, 214, 255, 0.5);
  margin-top: 2px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.how-step:hover .step-n {
  border-color: var(--line2);
  color: var(--signal);
  background: rgba(79, 255, 176, 0.06);
}

.step-h { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 7px; }
.step-p { font-size: 13px; color: rgba(200, 214, 255, 0.55); line-height: 1.7; }

/* AI Engine visualization */
.ai-vis {
  background: var(--ink3);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: calc(var(--offset) + 20px);
}

.ai-vis-bar {
  background: var(--ink4);
  border-bottom: 1px solid var(--line);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-vis-title {
  font-size: 11px;
  color: rgba(200, 214, 255, 0.5);
  font-family: 'DM Mono', monospace;
  flex: 1;
}

.ai-vis-body { padding: 18px; }

.ai-layer { margin-bottom: 14px; }

.ai-layer-label {
  font-size: 10px;
  color: rgba(200, 214, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ai-pills { display: flex; flex-wrap: wrap; gap: 6px; }

.ai-pill {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  background: var(--ink4);
  border: 1px solid var(--line);
  color: rgba(200, 214, 255, 0.6);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.ai-pill.active {
  background: rgba(79, 255, 176, 0.08);
  border-color: var(--line2);
  color: var(--signal);
}

.ai-divider { height: 1px; background: var(--line); margin: 12px 0; }

.ai-output {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.ai-score-wrap { flex: 1; }

.ai-score-label {
  font-size: 10px;
  color: rgba(200, 214, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ai-score-bar { height: 5px; background: var(--ink4); border-radius: 3px; overflow: hidden; }
.ai-score-fill { height: 100%; border-radius: 3px; background: var(--signal); width: 84%; }

.ai-score-val {
  font-family: 'DM Mono', monospace;
  font-size: 22px;
  font-weight: 500;
  color: var(--signal);
}

/* ── SIGNAL TYPES / FEATURES ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.f-card {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.f-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(79, 255, 176, 0.04), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}

.f-card:hover { border-color: rgba(79, 255, 176, 0.18); transform: translateY(-3px); }
.f-card:hover::before { opacity: 1; }
.f-card.span2 { grid-column: span 2; }

.f-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  background: var(--ink3);
  border: 1px solid var(--line);
}

.f-h { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; letter-spacing: -0.2px; }
.f-p { font-size: 13px; color: rgba(200, 214, 255, 0.55); line-height: 1.72; }

.f-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--signal);
  font-weight: 600;
  margin-top: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}

.f-card:hover .f-link { opacity: 1; transform: none; }

.conf-row { display: flex; align-items: center; gap: 10px; margin-top: 8px; }

.conf-label {
  font-size: 10px;
  color: rgba(200, 214, 255, 0.45);
  width: 90px;
  flex-shrink: 0;
}

.conf-bar  { flex: 1; height: 4px; background: var(--ink4); border-radius: 2px; overflow: hidden; }
.conf-fill { height: 100%; border-radius: 2px; }

/* ── ACCURACY DASHBOARD ── */
.acc-section { background: var(--ink2); border-top: 1px solid var(--line); }

.acc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}

.acc-screen {
  background: var(--ink3);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.acc-bar {
  background: var(--ink4);
  border-bottom: 1px solid var(--line);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.acc-bar-title { font-size: 11px; color: rgba(200, 214, 255, 0.5); font-family: 'DM Mono', monospace; flex: 1; }
.acc-body { padding: 16px; }

.pred-row {
  display: grid;
  grid-template-columns: 70px 1fr 56px 68px 64px;
  gap: 8px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(200, 214, 255, 0.04);
  font-size: 12px;
}

.pred-row.hdr {
  font-size: 10px;
  font-weight: 600;
  color: rgba(200, 214, 255, 0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.pred-ticker { font-family: 'DM Mono', monospace; font-weight: 500; color: var(--white); }
.pred-name   { color: rgba(200, 214, 255, 0.6); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pred-dir    { font-weight: 700; font-size: 11px; }
.dir-up      { color: var(--signal); }
.dir-down    { color: var(--rose); }
.pred-conf-val { font-family: 'DM Mono', monospace; color: var(--ice); }

.pred-outcome {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 3px 7px;
  border-radius: 4px;
  text-align: center;
}

.out-correct { background: rgba(79,  255, 176, 0.10); color: var(--signal); }
.out-wrong   { background: rgba(255, 107, 107, 0.10); color: var(--rose); }
.out-pending { background: rgba(200, 214, 255, 0.05); color: rgba(200, 214, 255, 0.4); }

.acc-ring-wrap  { text-align: center; margin-top: 28px; }
.acc-ring-label { font-size: 11px; color: rgba(200, 214, 255, 0.45); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }

.acc-facts { display: flex; flex-direction: column; gap: 18px; }

.acc-fact { display: flex; align-items: flex-start; gap: 14px; }

.acc-fact-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(79, 255, 176, 0.06);
  border: 1px solid var(--line2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.acc-fact-h { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.acc-fact-p { font-size: 13px; color: rgba(200, 214, 255, 0.55); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.t-card {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  transition: border-color 0.3s, transform 0.3s;
}

.t-card:hover { border-color: rgba(79, 255, 176, 0.15); transform: translateY(-3px); }

.t-stars { color: var(--amber); font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }

.t-open {
  font-family: 'Instrument Serif', serif;
  font-size: 34px;
  color: rgba(79, 255, 176, 0.25);
  line-height: 0.7;
  margin-bottom: 10px;
}

.t-text { font-size: 14px; color: var(--paper); line-height: 1.78; font-style: italic; margin-bottom: 18px; opacity: 0.85; }

.t-user { display: flex; align-items: center; gap: 12px; }

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.t-name { font-size: 13px; font-weight: 600; color: var(--white); }
.t-role { font-size: 11px; color: rgba(200, 214, 255, 0.45); margin-top: 2px; }
.t-gain { font-size: 12px; color: var(--signal); margin-top: 4px; font-weight: 600; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.price-card {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.price-card.hot {
  background: linear-gradient(155deg, rgba(79, 255, 176, 0.05), var(--ink2));
  border-color: rgba(79, 255, 176, 0.3);
}

.price-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--signal);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.price-plan { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(200, 214, 255, 0.5); margin-bottom: 14px; }

.price-amount {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}

.price-amount sup { font-size: 22px; vertical-align: super; letter-spacing: 0; }
.price-amount sub { font-size: 15px; font-weight: 400; color: rgba(200, 214, 255, 0.45); letter-spacing: 0; font-family: 'Space Grotesk', sans-serif; }

.price-desc { font-size: 13px; color: rgba(200, 214, 255, 0.5); margin: 12px 0 22px; line-height: 1.65; }
.price-div  { height: 1px; background: var(--line); margin-bottom: 22px; }

.price-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }

.price-feat { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--paper); }
.price-feat.off { color: rgba(200, 214, 255, 0.3); }

.check { width: 18px; height: 18px; border-radius: 50%; background: rgba(79,  255, 176, 0.10); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--signal); flex-shrink: 0; }
.cross { width: 18px; height: 18px; border-radius: 50%; background: rgba(255, 255, 255, 0.03); display: flex; align-items: center; justify-content: center; font-size: 10px; color: rgba(200, 214, 255, 0.25); flex-shrink: 0; }

.btn-plan-line { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid var(--line); background: transparent; color: var(--paper); font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'Space Grotesk', sans-serif; transition: border-color 0.2s, color 0.2s; }
.btn-plan-line:hover { border-color: var(--line2); color: var(--signal); }

.btn-plan-hot { width: 100%; padding: 12px; border-radius: 10px; border: none; background: var(--signal); color: var(--ink); font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Space Grotesk', sans-serif; transition: background 0.2s, transform 0.2s; }
.btn-plan-hot:hover { background: var(--signal3); transform: translateY(-1px); }

/* ── CTA SECTION ── */
.cta-section { padding: 96px 5%; position: relative; overflow: hidden; text-align: center; }

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(79, 255, 176, 0.05), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  background: var(--ink2);
  border: 1px solid rgba(79, 255, 176, 0.18);
  border-radius: 24px;
  padding: clamp(36px, 6vw, 64px) clamp(24px, 6vw, 56px);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 255, 176, 0.5), transparent);
}

.cta-eye { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--signal); margin-bottom: 18px; }

.cta-h {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.cta-h em { font-style: italic; color: var(--signal); }

.cta-sub { font-size: 15px; color: rgba(200, 214, 255, 0.6); line-height: 1.7; margin-bottom: 36px; max-width: 420px; margin-left: auto; margin-right: auto; }

.cta-row { display: flex; gap: 10px; max-width: 400px; margin: 0 auto 16px; }

.cta-input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  background: var(--ink3);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.cta-input:focus { border-color: var(--line2); }
.cta-input::placeholder { color: rgba(200, 214, 255, 0.35); }

.btn-cta-main { padding: 12px 22px; border-radius: 10px; border: none; background: var(--signal); color: var(--ink); font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Space Grotesk', sans-serif; white-space: nowrap; transition: background 0.2s, transform 0.2s; }
.btn-cta-main:hover { background: var(--signal3); transform: translateY(-1px); }

.cta-fine { font-size: 12px; color: rgba(200, 214, 255, 0.4); }
.cta-fine span { color: var(--signal); }

/* ══════════════════════════════════════════
   HOME RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════ */

/* Tablet / small desktop */
@media (max-width: 1100px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .f-card.span2 { grid-column: 1 / -1; }
  .how-grid  { grid-template-columns: 1fr; gap: 40px; }
  .ai-vis    { position: static; }
  .acc-grid  { grid-template-columns: 1fr; gap: 40px; }
  .acc-screen { order: -1; }
}

@media (max-width: 960px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid var(--line); }
  .testi-grid   { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--offset) + 40px);
    padding-bottom: 64px;
    min-height: auto;
  }

  .hero-orb,
  .hero-orb2 { display: none; }

  .hero-h1  { font-size: clamp(36px, 9vw, 52px); letter-spacing: -1.5px; }
  .hero-sub { font-size: 15px; max-width: 100%; }

  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-hero-main,
  .btn-hero-ghost { width: 100%; justify-content: center; }

  .proof-item { padding: 0 20px 0 0; }
  .proof-sep  { margin-right: 20px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 24px 16px; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .stat-cell:nth-child(4) { border-top: 1px solid var(--line); }

  .feat-grid    { grid-template-columns: 1fr; }
  .f-card.span2 { grid-column: 1; }

  .pred-row { grid-template-columns: 60px 1fr 52px 60px; }
  .pred-row > *:nth-child(5) { display: none; }

  .testi-grid   { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .cta-row { flex-direction: column; }
  .btn-cta-main { width: 100%; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-eyebrow { font-size: 10px; }
  .hero-btns    { margin-bottom: 36px; }
  .proof-item   { padding-right: 16px; }
  .proof-sep    { margin-right: 16px; }
  .proof-val    { font-size: 20px; }
  .panel-title  { display: none; }
  .sig-reasoning { display: none; }

  .pred-row { grid-template-columns: 52px 1fr 44px; gap: 6px; }
  .pred-row > *:nth-child(4),
  .pred-row > *:nth-child(5) { display: none; }

  .acc-ring-wrap { display: none; }
  .price-amount  { font-size: 40px; }
}