/* ============================================================
   SECTIONS — how it works · product · reviews · CTA · footer
   ============================================================ */

.section-pad { padding: clamp(90px, 13vh, 160px) 0; }

/* divider band so charging bulls have a "ground" between sections */
.band-rule {
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--hairline) 20%, var(--hairline) 80%, transparent);
}

/* ===================== HOW IT WORKS ===================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  padding: 34px 30px 36px;
  border-radius: 20px;
  background: var(--glass);
  border: 0.5px solid var(--hairline);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.step::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(360px 200px at 100% 0%, rgba(74,222,128,0.07), transparent 70%);
  pointer-events: none;
}
.step-num {
  font-family: var(--mono);
  font-size: 13px; color: var(--accent);
  border: 0.5px solid rgba(74,222,128,0.3);
  background: var(--accent-soft);
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; font-weight: 700;
  margin-bottom: 22px;
}
.step h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 11px; }
.step p { font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.step .kbd {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; padding: 7px 11px; border-radius: 9px;
  background: rgba(255,255,255,0.05); border: 0.5px solid var(--hairline);
  font-family: var(--mono); font-size: 12px; color: var(--ink-2);
}
.step .kbd .d { width: 13px; height: 13px; border-radius: 4px; background: linear-gradient(145deg, var(--accent), var(--accent-deep)); }

@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ===================== PRODUCT SHOWCASE ===================== */
.product {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) { .product { grid-template-columns: 1fr; gap: 44px; } }

.feat-list { display: flex; flex-direction: column; gap: 22px; margin-top: 34px; }
.feat {
  display: flex; gap: 16px; align-items: flex-start;
}
.feat-ic {
  flex: none; width: 38px; height: 38px; border-radius: 11px;
  background: var(--glass-2); border: 0.5px solid var(--hairline);
  display: grid; place-items: center; color: var(--accent);
}
.feat-ic .g { width: 13px; height: 13px; }
.feat h4 { font-size: 16px; font-weight: 650; letter-spacing: -0.02em; margin-bottom: 4px; }
.feat p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ---- The recreated BullNotes panel ---- */
.panel-stage {
  position: relative;
  display: flex; justify-content: center;
}
.panel-stage::before {
  content: ""; position: absolute; inset: -10% -6%;
  background: radial-gradient(closest-side, rgba(74,222,128,0.14), transparent 72%);
  filter: blur(20px); z-index: 0;
}
/* real product screenshot, framed with a soft bottom fade */
.panel-shot {
  position: relative; z-index: 1;
  width: 384px; max-width: 100%;
  height: clamp(540px, 72vh, 780px);
  border-radius: 26px;
  overflow: hidden;
  background: #1b1b1d;
  border: 0.5px solid var(--hairline-2);
  box-shadow: 0 44px 100px -34px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}
.panel-shot img {
  width: 100%; height: auto; display: block;
}
.panel-shot::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 130px;
  background: linear-gradient(180deg, transparent, rgba(20,20,22,0.96));
  pointer-events: none;
}
.bn-panel {
  position: relative; z-index: 1;
  width: 380px; max-width: 100%;
  border-radius: 22px;
  background: rgba(18,18,20,0.86);
  border: 0.5px solid var(--hairline-2);
  backdrop-filter: blur(28px) saturate(140%);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  font-size: 13px;
}
.bn-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 17px;
  border-bottom: 0.5px solid var(--hairline);
}
.bn-brand { display: flex; align-items: center; gap: 9px; }
.bn-logo {
  width: 26px; height: 26px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}
.bn-brand-text { font-size: 15px; font-weight: 600; letter-spacing: -0.03em; }
.bn-beta {
  font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.12em;
  color: var(--ink-3); background: rgba(255,255,255,0.08);
  padding: 3px 6px; border-radius: 5px; text-transform: uppercase;
}
.bn-x { color: var(--ink-3); font-size: 16px; }

.bn-body { padding: 16px 17px 18px; }

/* video widget */
.bn-video {
  display: flex; gap: 11px; align-items: center;
  padding: 10px; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 0.5px solid var(--hairline);
  margin-bottom: 14px;
}
.bn-thumb {
  width: 64px; height: 40px; border-radius: 8px; flex: none;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 7px, rgba(255,255,255,0.02) 7px 14px),
    #14181f;
  border: 0.5px solid var(--hairline);
  position: relative; overflow: hidden;
}
.bn-thumb::after {
  content: "▶"; position: absolute; inset: 0; display: grid; place-items: center;
  color: rgba(255,255,255,0.5); font-size: 11px;
}
.bn-vmeta { min-width: 0; }
.bn-vtitle { font-size: 12.5px; font-weight: 600; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bn-vchan { font-size: 10.5px; color: var(--ink-3); margin-top: 3px; font-family: var(--mono); }

/* sentiment gauge */
.bn-gauge {
  display: flex; flex-direction: column; align-items: center;
  padding: 6px 0 12px;
  border-radius: 14px;
  background: rgba(74,222,128,0.04);
  border: 0.5px solid rgba(74,222,128,0.14);
  margin-bottom: 14px;
}
.bn-gauge svg { width: 190px; height: 116px; overflow: visible; }
.bn-needle { transform-origin: 95px 100px; transform: rotate(-90deg); }
.bn-gauge-score {
  font-family: var(--mono); font-size: 28px; font-weight: 800;
  color: var(--accent); letter-spacing: -0.04em; margin-top: -30px;
}
.bn-gauge-label {
  font-size: 11px; color: var(--ink-3); text-transform: uppercase;
  letter-spacing: 0.16em; font-family: var(--mono); margin-top: 2px;
}

.bn-sect-label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-4); margin: 4px 0 11px;
}
.bn-sect-label::after { content: ""; flex: 1; height: 0.5px; background: var(--hairline); }

/* ticker card */
.bn-card {
  padding: 13px; border-radius: 13px;
  background: rgba(255,255,255,0.04); border: 0.5px solid var(--hairline);
  margin-bottom: 9px;
}
.bn-card-top { display: flex; align-items: center; gap: 11px; }
.bn-avatar {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  font-family: var(--mono); font-weight: 800; font-size: 12px; color: #fff;
  letter-spacing: -0.02em;
}
.bn-avatar.bullish { background: linear-gradient(145deg, #22c55e, #15803d); border: 0.5px solid rgba(74,222,128,0.4); }
.bn-avatar.hold    { background: linear-gradient(145deg, #d4a017, #92610a); border: 0.5px solid rgba(212,160,23,0.4); }
.bn-avatar.bearish { background: linear-gradient(145deg, #ef4444, #991b1b); border: 0.5px solid rgba(248,81,73,0.4); }
.bn-card-id { flex: 1; min-width: 0; }
.bn-card-sym { font-size: 13.5px; font-weight: 700; letter-spacing: -0.02em; display: flex; align-items: center; gap: 6px; }
.bn-card-sym .top { font-size: 9px; color: var(--accent); font-weight: 600; }
.bn-card-co { font-size: 11px; color: var(--ink-3); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bn-signal {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  padding: 4px 9px; border-radius: 6px; letter-spacing: 0.04em;
}
.bn-signal.buy  { background: rgba(74,222,128,0.15); color: var(--buy); border: 0.5px solid rgba(74,222,128,0.3); }
.bn-signal.hold { background: rgba(210,153,34,0.15); color: var(--hold); border: 0.5px solid rgba(210,153,34,0.3); }
.bn-signal.sell { background: rgba(248,81,73,0.15);  color: var(--sell); border: 0.5px solid rgba(248,81,73,0.3); }
.bn-card-sum { font-size: 11.5px; color: var(--ink-2); line-height: 1.55; margin-top: 11px; }
.bn-meter { height: 4px; border-radius: 3px; background: rgba(255,255,255,0.07); margin-top: 11px; overflow: hidden; }
.bn-meter i { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent-2), var(--accent)); }
.bn-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 9px; font-family: var(--mono); font-size: 9.5px; color: var(--ink-4);
}

/* live-demo link (replaces the old demo slot) */
.demo-cta { margin-top: 34px; display: flex; justify-content: center; }
.demo-link {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 15px 22px 15px 16px;
  border-radius: 16px;
  background: var(--glass);
  border: 0.5px solid var(--hairline-2);
  backdrop-filter: blur(12px);
  transition: transform 0.16s ease, border-color 0.2s ease, background 0.2s ease;
}
.demo-link:hover {
  transform: translateY(-2px);
  border-color: rgba(74,222,128,0.4);
  background: rgba(255,255,255,0.06);
}
.demo-link .x-mark {
  flex: none; width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: #0a0a0a; color: #fff;
  border: 0.5px solid var(--hairline-2);
  font-size: 18px; line-height: 1;
}
.demo-link-text { font-size: 16px; color: var(--ink); letter-spacing: -0.01em; }
.demo-link-text b { color: var(--accent); font-weight: 600; }
.demo-arrow {
  font-family: var(--mono); color: var(--accent); font-size: 17px;
  transition: transform 0.2s ease;
}
.demo-link:hover .demo-arrow { transform: translateX(4px); }

/* ===================== REVIEWS ===================== */
.rating-row {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 26px;
}
.stars { display: flex; gap: 3px; color: var(--accent); font-size: 19px; }
.rating-num { font-family: var(--mono); font-size: 15px; color: var(--ink-2); }
.rating-num b { color: var(--ink); }
.store-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px; border-radius: 11px;
  background: var(--glass-2); border: 0.5px solid var(--hairline);
  font-size: 13px; color: var(--ink-2);
}

.reviews {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 980px) { .reviews { grid-template-columns: 1fr; } }
.review {
  padding: 26px 24px;
  border-radius: 18px;
  background: var(--glass);
  border: 0.5px solid var(--hairline);
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column; gap: 16px;
}
.review .stars { font-size: 14px; }
.review p { font-size: 15px; line-height: 1.6; color: var(--ink); letter-spacing: -0.01em; }
.review .who { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.review .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(145deg, #2a2f38, #14181f);
  border: 0.5px solid var(--hairline);
  display: grid; place-items: center; font-weight: 700; font-size: 14px; color: var(--ink-2);
}
.review .nm { font-size: 13.5px; font-weight: 600; }
.review .meta { font-size: 11.5px; color: var(--ink-3); font-family: var(--mono); margin-top: 1px; }
.review-note {
  font-family: var(--mono); font-size: 11.5px; color: var(--ink-4);
  text-align: center; margin-top: 30px; letter-spacing: 0.04em;
}

/* ===================== FINAL CTA ===================== */
.cta-band { position: relative; overflow: hidden; }
.cta-box {
  position: relative;
  border-radius: 28px;
  padding: clamp(48px, 8vw, 88px) clamp(32px, 6vw, 80px);
  background:
    radial-gradient(700px 380px at 80% 0%, rgba(74,222,128,0.16), transparent 65%),
    linear-gradient(180deg, rgba(18,18,20,0.9), rgba(10,12,16,0.92));
  border: 0.5px solid var(--hairline-2);
  overflow: hidden;
}
.cta-box h2 {
  font-size: clamp(38px, 6vw, 78px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 0.92; text-wrap: balance;
}
.cta-box h2 .em { color: var(--accent); }
.cta-box p { font-size: clamp(16px, 1.6vw, 20px); color: var(--ink-2); margin-top: 20px; max-width: 480px; line-height: 1.55; }
.cta-box .hero-cta { margin-top: 36px; }

/* mini charging bull inside CTA */
.cta-bull {
  position: absolute; inset: auto -2% -6% auto;
  width: clamp(220px, 30vw, 420px); height: auto;
  z-index: 0; opacity: 0.4;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.5));
}

/* ===================== FOOTER ===================== */
.footer { border-top: 0.5px solid var(--hairline); padding: 54px 0 46px; }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 280px; }
.footer-brand p { font-size: 13.5px; color: var(--ink-3); line-height: 1.6; margin-top: 14px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--ink-2); margin-bottom: 11px; transition: color 0.16s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  margin-top: 48px; padding-top: 26px; border-top: 0.5px solid var(--hairline);
  font-family: var(--mono); font-size: 11.5px; color: var(--ink-4);
}

@media (max-width: 820px) {
  .bn-panel { width: 100%; }
}
