:root {
  --ink: #000000;
  --panel: #0a0a0a;
  --panel-2: #111111;
  --muted: #a6a6a6;
  --line: rgba(255, 255, 255, 0.18);
  --gold: #ffbf00;
  --orange: #ff981f;
  --white: #ffffff;
  --glow: 0 0 80px rgba(255, 191, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--white);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(0, 0, 0, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.brand {
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  width: 46px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

i[data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.funnel-section {
  padding: clamp(72px, 10vw, 126px) clamp(18px, 5vw, 72px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 191, 0, 0.18), transparent 28%),
    linear-gradient(180deg, #000 0%, #050505 100%);
}

.hero-glow {
  position: absolute;
  top: 18%;
  left: 50%;
  width: min(720px, 82vw);
  height: min(720px, 82vw);
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 191, 0, 0.18), transparent 62%);
  filter: blur(18px);
}

.hero-content,
.section-heading,
.apply-copy,
.form {
  position: relative;
}

.hero-content {
  width: min(860px, 100%);
  padding-top: 54px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7.4vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
}

.hero-copy,
.section-heading p,
.apply-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 0;
}

.hero-proof span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--line);
}

.microcopy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.centered {
  width: min(790px, 100%);
  margin: 0 auto;
  text-align: center;
}

.section-heading p {
  margin: 18px auto 0;
  max-width: 690px;
}

.criteria-grid,
.results-grid {
  width: min(1120px, 100%);
  margin: 46px auto 0;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.criteria-grid article,
.result-slot,
.form {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.criteria-grid article {
  min-height: 230px;
  padding: 24px;
}

.criteria-grid i {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 44px;
}

.criteria-grid p,
.method-list p {
  color: var(--muted);
  line-height: 1.65;
}

.proof {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 191, 0, 0.12), transparent 28%),
    var(--ink);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.result-slot {
  min-height: 310px;
  padding: 18px;
  box-shadow: var(--glow);
}

.result-slot.featured {
  grid-row: span 2;
  min-height: 634px;
}

.slot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.slot-top strong {
  color: var(--gold);
}

.proof-card {
  min-height: 248px;
  height: calc(100% - 48px);
  display: grid;
  gap: 22px;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 191, 0, 0.045)),
    var(--panel);
}

.proof-card.monthly {
  align-content: stretch;
}

.proof-card.compact {
  align-content: start;
}

.proof-total {
  display: grid;
  gap: 8px;
}

.proof-total span,
.proof-row span,
.proof-breakdown span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.proof-total strong {
  color: #2f77ff;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.proof-breakdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof-breakdown.stacked {
  grid-template-columns: 1fr;
  gap: 0;
}

.proof-breakdown p,
.proof-row {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-breakdown p {
  display: grid;
}

.proof-breakdown.stacked p {
  display: flex;
}

.proof-breakdown strong,
.proof-row strong {
  color: var(--white);
  font-size: 1.2rem;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  align-items: end;
  gap: 8px;
  min-height: 210px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background-image: linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 100% 52px;
}

.bar-chart span {
  height: var(--h);
  min-height: 18px;
  border-radius: 5px 5px 0 0;
  background: #2f77ff;
}

.line-visual {
  position: relative;
  min-height: 130px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 191, 0, 0.06), rgba(47, 119, 255, 0.04));
  background-size: 100% 42px, 100% 100%;
}

.line-visual span {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 28%;
  height: 58px;
  border-top: 5px solid #2f77ff;
  border-right: 5px solid #b05a33;
  border-radius: 68% 32% 56% 44%;
  transform: skewY(-9deg);
  box-shadow: 0 -16px 0 rgba(176, 90, 51, 0.26);
}

.proof-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.6;
}

.method-list {
  width: min(900px, 100%);
  margin: 46px auto 0;
  border-top: 1px solid var(--line);
}

.method-list article {
  display: grid;
  grid-template-columns: 70px minmax(140px, 0.45fr) minmax(220px, 1fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.method-list span {
  color: var(--gold);
  font-weight: 800;
}

.method-list p {
  margin: 0;
}

.apply {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.apply-copy p {
  margin: 22px 0 0;
}

.form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px;
  color: var(--white);
  background: var(--panel);
  font: inherit;
}

select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.62);
  background: #000;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .criteria-grid,
  .results-grid,
  .apply {
    grid-template-columns: 1fr;
  }

  .result-slot.featured {
    min-height: 360px;
  }

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

  .method-list p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .header-cta {
    display: none;
  }

  .hero-content {
    padding-top: 36px;
  }

  h1 {
    font-size: 2.85rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .criteria-grid article {
    min-height: auto;
  }

  .criteria-grid i {
    margin-bottom: 28px;
  }

  .footer {
    display: grid;
  }
}
