/* SmartStrikes marketing site */

:root {
  --bg: #0a0e17;
  --bg-raised: #10151f;
  --card: #131a29;
  --card-border: rgba(255, 255, 255, 0.07);
  --text: #e8ecf2;
  --text-dim: #97a2b4;
  --text-faint: #5b6577;
  --accent: #34d399;
  --accent-dim: #1f7a5c;
  --accent-2: #fbbf24;
  --danger: #f16565;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 14px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Background texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 400px at 15% -5%, rgba(52, 211, 153, 0.12), transparent 60%),
    radial-gradient(600px 400px at 90% 10%, rgba(251, 191, 36, 0.07), transparent 60%);
}

/* Coming-soon announcement bar */
.announce {
  background: var(--accent);
}

.announce .wrap {
  padding: 10px 24px;
  font-size: 13.5px;
  font-weight: 600;
  color: #05140d;
  text-align: center;
}

.announce a {
  color: #05140d;
  text-decoration: underline;
  font-weight: 700;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10, 14, 23, 0.75);
  border-bottom: 1px solid var(--card-border);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  color: #06150f;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-actions .btn-ghost { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  padding: 11px 20px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: #05140d;
}

.btn-primary:hover { background: #45e0ab; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--card-border);
}

.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.2); }

.btn-lg { padding: 14px 26px; font-size: 15.5px; }
.btn-block { width: 100%; }

/* Sections */
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

h1, h2, h3 { letter-spacing: -0.02em; margin: 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-dim);
  font-size: 17px;
  margin: 0;
}

/* Hero */
.hero { padding: 84px 0 40px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

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

.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
}

.hero h1 span { color: var(--accent); }

.hero-sub {
  color: var(--text-dim);
  font-size: 18px;
  margin: 22px 0 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-note {
  font-size: 13.5px;
  color: var(--text-faint);
  font-family: var(--mono);
}

/* Hero mock panel: real tranche-level example, grouped by underlying */
.mock-panel {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}

.mock-caption {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.tranche-underlying {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}

.tu-symbol {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.tu-price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dim);
}

.tu-change {
  color: var(--accent);
}

.tranche-overall {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-faint);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--card-border);
}

.tranche-overall strong {
  color: var(--accent);
  font-weight: 600;
}

.tranche-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 4px;
  font-family: var(--mono);
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tranche-row:last-child { border-bottom: none; }

.tr-left {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.tr-price {
  color: var(--text);
  font-weight: 600;
}

.tr-detail {
  color: var(--text-faint);
  font-size: 11.5px;
  white-space: nowrap;
}

.tr-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.tr-breakeven {
  color: var(--text-dim);
  font-size: 11.5px;
  white-space: nowrap;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.pillar {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(52, 211, 153, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.pillar h3 { font-size: 17px; margin-bottom: 8px; }
.pillar p { color: var(--text-dim); font-size: 14.5px; margin: 0; }

/* Feature blocks (large, alternating) */
.feature-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--card-border);
}

.feature-block:first-of-type { border-top: none; }

.feature-block.reverse { grid-template-columns: 1.05fr 0.95fr; }
.feature-block.reverse .feature-visual { order: -1; }

@media (max-width: 900px) {
  .feature-block, .feature-block.reverse {
    grid-template-columns: 1fr;
  }
  .feature-block.reverse .feature-visual { order: 0; }
}

.feature-tag {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  display: block;
}

.feature-block h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  color: var(--text-dim);
  font-size: 15px;
}

.feature-list li strong { color: var(--text); font-weight: 600; }

.feature-list .check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(52, 211, 153, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}

.feature-visual {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 220px;
}

/* CAGR gauge visual */
.gauge-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.gauge-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: 22px;
  position: relative;
}

.gauge-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.gauge-marker {
  position: absolute;
  top: -4px;
  width: 2px;
  height: 18px;
  background: var(--text);
}

.gauge-callout {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
}

/* Move-against-you widget visual */
.widget-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.badge {
  font-family: var(--mono);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.badge-warn { background: rgba(251, 191, 36, 0.15); color: var(--accent-2); }
.badge-ok { background: rgba(52, 211, 153, 0.15); color: var(--accent); }
.badge-bad { background: rgba(241, 101, 101, 0.15); color: var(--danger); }

.widget-mini .wm-text { font-size: 13.5px; color: var(--text-dim); }
.widget-mini .wm-text strong { color: var(--text); }

/* Grid of smaller feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.fcard {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
}

.fcard .ficon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.fcard h4 { font-size: 15.5px; margin: 0 0 8px; }
.fcard p { font-size: 13.8px; color: var(--text-dim); margin: 0; }

.fcard.dim { opacity: 0.92; }
.fcard .fnote {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-faint);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

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

.price-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.price-card.featured {
  border-color: rgba(52, 211, 153, 0.4);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.15), 0 30px 60px -30px rgba(52, 211, 153, 0.15);
}

.price-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: #05140d;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--mono);
}

.price-card h3 {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-amount {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 500;
}

.price-note {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 24px;
}

.price-trial {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-bottom: 22px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.price-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
}

.price-list .check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(52, 211, 153, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-foot {
  text-align: center;
  margin-top: 28px;
  color: var(--text-faint);
  font-size: 13.5px;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 4px 22px;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--text-faint);
  font-size: 20px;
  font-weight: 400;
  margin-left: 16px;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin: 0 0 18px;
  line-height: 1.6;
}

/* Final CTA */
.cta-band {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(251, 191, 36, 0.06));
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 64px 40px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 16px;
}

.cta-band p {
  color: var(--text-dim);
  font-size: 16.5px;
  margin: 0 0 30px;
}

/* Footer */
footer {
  border-top: 1px solid var(--card-border);
  padding: 48px 0 32px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand p {
  color: var(--text-faint);
  font-size: 13.5px;
  max-width: 280px;
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  gap: 56px;
}

.footer-col h5 {
  font-size: 12.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
}

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

.footer-legal {
  border-top: 1px solid var(--card-border);
  padding-top: 24px;
  color: var(--text-faint);
  font-size: 12.5px;
  line-height: 1.7;
}

.footer-legal p { margin: 0 0 8px; }

.prerelease-note {
  font-size: 11.5px;
  opacity: 0.7;
  font-style: italic;
}

/* Legal documents (Terms, Privacy) */
.legal-header {
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--card-border);
}

.legal-header h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 10px;
}

.legal-updated {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-faint);
}

.legal-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.legal-notice {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.7;
}

.legal-notice strong { color: var(--accent-2); }

.legal-summary {
  background: rgba(52, 211, 153, 0.07);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 14.5px;
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.7;
}

.legal-intro {
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-section {
  margin-top: 40px;
}

.legal-section h2 {
  font-size: 20px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--card-border);
}

.legal-clause {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dim);
}

.legal-clause .num {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  padding-top: 3px;
}

.legal-clause strong { color: var(--text); }

.legal-final {
  margin-top: 48px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
}

.legal-address {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 8px;
}
