:root {
  --ink: #151719;
  --muted: #5e6671;
  --paper: #f7f3ea;
  --surface: #ffffff;
  --line: #d9d2c4;
  --green: #0b7a4b;
  --green-soft: #dff3e7;
  --amber: #d89521;
  --red: #b33f38;
  --teal: #0d5c63;
  --dark: #101417;
  --shadow: 0 24px 70px rgba(21, 23, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(247, 243, 234, 0.88);
  border-bottom: 1px solid rgba(217, 210, 196, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--green);
}

.header-cta,
.primary-button,
.secondary-button,
.price-card a,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta,
.primary-button,
.lead-form button,
.price-card.featured a {
  color: #fff;
  background: var(--green);
}

.header-cta:hover,
.primary-button:hover,
.lead-form button:hover,
.price-card.featured a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(11, 122, 75, 0.22);
}

.secondary-button,
.price-card a {
  color: var(--green);
  background: transparent;
  border-color: rgba(11, 122, 75, 0.35);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 64px) 38px;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0;
}

.hero-text,
.section p,
.lead-section p,
.risk-section p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: #27443a;
  background: var(--green-soft);
  border: 1px solid rgba(11, 122, 75, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.terminal-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 570px;
  margin-left: auto;
  color: #f5f7f4;
  background:
    linear-gradient(135deg, rgba(13, 92, 99, 0.22), transparent 34%),
    linear-gradient(180deg, #171d1f, #0f1315);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
}

.terminal-top span:nth-child(2) {
  background: var(--amber);
}

.terminal-top span:nth-child(3) {
  background: #2bbf74;
}

.terminal-top strong {
  margin-left: auto;
  color: #b6c4c0;
  font-size: 13px;
}

.market-board {
  padding: 18px;
}

.board-row {
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 0.55fr 0.5fr;
  gap: 12px;
  align-items: center;
  min-height: 46px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
}

.board-row span {
  min-width: 0;
}

.board-head {
  min-height: 34px;
  color: #8ea09a;
  font-weight: 800;
  text-transform: uppercase;
}

.board-row.active {
  color: #eafff3;
  background: rgba(11, 122, 75, 0.3);
  border: 1px solid rgba(44, 191, 116, 0.35);
  border-radius: 8px;
}

.board-row.muted {
  color: #8ea09a;
}

.chart-box {
  position: relative;
  height: 220px;
  margin: 0 18px 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 44px, 70px 100%;
}

.candle {
  position: absolute;
  bottom: 38px;
  width: 22px;
  background: #2bbf74;
  border-radius: 4px;
}

.candle::before {
  position: absolute;
  left: 10px;
  top: -24px;
  width: 2px;
  height: calc(100% + 46px);
  background: inherit;
  content: "";
}

.c1 {
  left: 54px;
  height: 64px;
}

.c2 {
  left: 112px;
  height: 96px;
}

.c3 {
  left: 170px;
  height: 70px;
  background: #d95c54;
}

.c4 {
  left: 228px;
  height: 112px;
}

.c5 {
  left: 286px;
  height: 140px;
}

.trend-line {
  position: absolute;
  left: 42px;
  right: 56px;
  bottom: 74px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), #2bbf74);
  border-radius: 999px;
  transform: rotate(-12deg);
  transform-origin: left center;
}

.target-line,
.stop-line {
  position: absolute;
  right: 16px;
  left: 16px;
  display: flex;
  justify-content: flex-end;
  height: 1px;
  color: #cbd8d4;
  border-top: 1px dashed currentColor;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.target-line {
  top: 52px;
  color: #2bbf74;
}

.stop-line {
  bottom: 44px;
  color: #d95c54;
}

.alert-preview {
  display: grid;
  gap: 4px;
  margin: 0 18px 18px;
  padding: 14px;
  color: #eafff3;
  background: rgba(11, 122, 75, 0.22);
  border: 1px solid rgba(44, 191, 116, 0.22);
  border-radius: 8px;
}

.alert-preview span {
  color: #aebdb8;
  font-size: 13px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 64px);
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stats-band div {
  min-height: 120px;
  padding: 24px;
  background: var(--surface);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  margin-bottom: 6px;
  font-size: 30px;
}

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

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 4vw, 64px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.method-list {
  display: grid;
  gap: 14px;
}

.method-list article,
.flow-grid article,
.price-card,
.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.method-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 18px;
  padding: 22px;
}

.method-list article span {
  grid-row: span 2;
  color: var(--amber);
  font-size: 26px;
  font-weight: 900;
}

.method-list article p,
.flow-grid article p,
.price-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-flow {
  background: #ece5d8;
}

.product-flow h2,
.section-heading h2 {
  max-width: 760px;
}

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

.flow-grid article {
  min-height: 210px;
  padding: 22px;
}

.flow-grid strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
}

.price-card.featured {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
  box-shadow: var(--shadow);
}

.price-card.featured p,
.price-card.featured li {
  color: #cbd4cf;
}

.plan-name {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured .plan-name {
  color: #78dba9;
}

.price-card strong {
  display: block;
  margin: 18px 0 12px;
  font-size: 44px;
}

.price-card small {
  color: var(--muted);
  font-size: 16px;
}

.featured small {
  color: #aebdb8;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding-left: 18px;
  color: var(--muted);
}

.price-card a {
  margin-top: auto;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.72fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
  color: #fff;
  background: var(--teal);
}

.lead-section .eyebrow,
.lead-section p {
  color: #d1eee7;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.lead-form input:focus {
  border-color: var(--green);
  outline: 3px solid rgba(11, 122, 75, 0.14);
}

.consent-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.consent-check input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

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

.risk-section {
  padding: clamp(50px, 7vw, 90px) clamp(18px, 4vw, 64px);
  color: #fff;
  background: var(--dark);
}

.risk-section h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.risk-section p {
  max-width: 980px;
  color: #cbd4cf;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 4vw, 64px);
  color: #53605b;
  background: #fffaf0;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero,
  .split,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .terminal-visual {
    max-width: none;
    margin-left: 0;
  }

  .stats-band,
  .flow-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-text,
  .section p,
  .lead-section p,
  .risk-section p {
    font-size: 16px;
  }

  .hero-actions a,
  .lead-form button {
    width: 100%;
  }

  .board-row {
    grid-template-columns: 0.8fr 1.2fr 0.55fr;
  }

  .board-row span:nth-child(4) {
    display: none;
  }

  .chart-box {
    height: 180px;
  }

  .stats-band,
  .flow-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    min-height: 96px;
  }

  .method-list article {
    grid-template-columns: 1fr;
  }

  .method-list article span {
    grid-row: auto;
    margin-bottom: 8px;
  }

  .price-card {
    min-height: auto;
  }
}
