:root {
  --bg: #050607;
  --panel: #0d1114;
  --panel-soft: #12181d;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7fbff;
  --muted: #a8b3bd;
  --gold: #f5b937;
  --gold-soft: #ffd76b;
  --green: #00e676;
  --green-soft: #58ff9a;
  --cyan: #35d4ff;
  --blue: #4a8bff;
  --danger: #ff445f;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(4, 6, 7, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.02rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  background: var(--gold);
  color: #070707;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.header-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 800;
}

.header-cta,
.primary-action {
  background: var(--gold);
  color: #08090a;
}

.header-cta:hover,
.primary-action:hover {
  background: var(--gold-soft);
}

.secondary-action {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.secondary-action:hover {
  border-color: var(--green);
  color: var(--green-soft);
}

.hero {
  position: relative;
  min-height: 88vh;
  padding: 120px clamp(18px, 4vw, 54px) 34px;
  display: grid;
  align-content: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.34) 44%, rgba(0, 0, 0, 0.12)),
    url("assets/bull_market_background.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, var(--bg), rgba(5, 6, 7, 0));
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 72px clamp(18px, 4vw, 54px) 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding-bottom: 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.hero-copy,
.section-heading p,
.command-copy p,
.pricing-card p,
.demo-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 4px;
  padding: 0 14px;
  border: 1px solid rgba(245, 185, 55, 0.55);
  background: rgba(245, 185, 55, 0.12);
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.hero-stats div {
  min-height: 96px;
  padding: 20px;
  background: rgba(7, 10, 12, 0.82);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 1.08rem;
}

.hero-stats span {
  color: var(--muted);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px clamp(18px, 4vw, 28px);
}

.section-tight {
  padding-top: 64px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card,
.flow-step,
.pricing-card,
.demo-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.feature-card {
  min-height: 260px;
  padding: 24px;
  border-top-width: 4px;
}

.green-card {
  border-top-color: var(--green);
}

.gold-card {
  border-top-color: var(--gold);
}

.blue-card {
  border-top-color: var(--blue);
}

.cyan-card {
  border-top-color: var(--cyan);
}

.feature-kicker {
  display: block;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card p,
.flow-step p {
  color: var(--muted);
  line-height: 1.5;
}

.seo-section {
  padding-top: 44px;
  padding-bottom: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.keyword-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.keyword-grid article {
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(245, 185, 55, 0.28);
  background: rgba(245, 185, 55, 0.055);
}

.keyword-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 1.08rem;
}

.keyword-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.command-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: center;
}

.workflow-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.flow-step {
  min-height: 170px;
  padding: 22px;
}

.flow-step span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-soft);
  font-weight: 900;
}

.flow-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.catalyst-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.buzz-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.buzz-panel span {
  padding: 13px 16px;
  border: 1px solid rgba(0, 230, 118, 0.35);
  background: rgba(0, 230, 118, 0.08);
  color: var(--green-soft);
  font-weight: 900;
}

.pricing-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: stretch;
}

.pricing-card,
.demo-card {
  padding: 34px;
}

.pricing-card {
  border-color: rgba(245, 185, 55, 0.62);
}

.pricing-card h2 {
  color: var(--gold-soft);
}

.checkout-action {
  margin-top: 4px;
}

.demo-card .secondary-action {
  margin-top: 14px;
}

.contact-email {
  display: block;
  margin: 14px 0 0;
  color: var(--gold-soft);
  font-size: 1.12rem;
  font-weight: 900;
}

.contact-email:hover {
  color: var(--green-soft);
}

.launch-form {
  margin-top: 18px;
}

.launch-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 900;
}

.launch-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.launch-input-row input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.launch-input-row input:focus {
  outline: 2px solid rgba(245, 185, 55, 0.5);
  outline-offset: 2px;
  border-color: var(--gold);
}

.launch-input-row button {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  background: var(--gold);
  color: #08090a;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.launch-input-row button:hover {
  background: var(--gold-soft);
}

.launch-input-row button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.form-status.success {
  color: var(--green-soft);
}

.form-status.error {
  color: var(--danger);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span:first-child {
  color: var(--text);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    gap: 14px;
  }

  .nav-links {
    display: none;
  }

  .feature-grid,
  .command-section,
  .pricing-section,
  .keyword-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 210px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 96px 16px 22px;
    background-position: center;
  }

  .hero-shade {
    inset: 70px 14px 14px;
  }

  .hero-content {
    padding-bottom: 28px;
  }

  .hero-stats,
  .workflow-board {
    grid-template-columns: 1fr;
  }

  .launch-input-row {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 82px;
  }

  .section {
    padding: 56px 16px;
  }

  .site-footer {
    display: block;
  }

  .site-footer span {
    display: block;
    margin-bottom: 8px;
  }
}
