:root {
  --bg: #080705;
  --panel: #11100c;
  --panel-2: #17140f;
  --cream: #f7f1e7;
  --muted: rgba(247, 241, 231, 0.68);
  --soft: rgba(247, 241, 231, 0.12);
  --gold: #c9a84c;
  --gold-2: #ead58c;
  --green: #3ddc84;
  --red: #ff6b5f;
  --line: rgba(201, 168, 76, 0.24);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 168, 76, 0.16), transparent 28rem),
    radial-gradient(circle at 78% 8%, rgba(61, 220, 132, 0.08), transparent 24rem),
    linear-gradient(180deg, #080705 0%, #0c0a07 46%, #080705 100%);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.55;
}

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

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #120f08;
  font: inherit;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(201, 168, 76, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(201, 168, 76, 0.24);
}

.button.secondary {
  background: transparent;
  color: var(--cream);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 74px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span,
h2 span {
  color: var(--gold-2);
  font-style: italic;
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  max-width: 660px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-item {
  padding: 16px;
  background: rgba(17, 16, 12, 0.86);
}

.proof-value {
  display: block;
  color: var(--cream);
  font-size: 24px;
  font-weight: 850;
}

.proof-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.system-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(23, 20, 15, 0.96), rgba(8, 7, 5, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234, 213, 140, 0.14), transparent 34%);
  pointer-events: none;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(61, 220, 132, 0.72);
}

.screen-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

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

.metric,
.flow-step {
  border: 1px solid rgba(247, 241, 231, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 14px;
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-2);
  font-size: 28px;
  line-height: 1;
}

.metric span,
.flow-step span {
  color: var(--muted);
  font-size: 13px;
}

.flow {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.flow-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.flow-step b {
  color: var(--cream);
  font-size: 14px;
}

.pill {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(61, 220, 132, 0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

section {
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(247, 241, 231, 0.1);
  border-radius: 8px;
  background: rgba(17, 16, 12, 0.82);
  padding: 22px;
}

.card-label {
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.15;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.pain {
  border-color: rgba(255, 107, 95, 0.3);
  background: rgba(255, 107, 95, 0.055);
}

.method-card {
  min-height: 230px;
}

.step-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-2);
  font-weight: 900;
}

.offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.offer-main {
  border: 1px solid var(--gold);
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.14), rgba(17, 16, 12, 0.9));
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.case-box {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 16, 12, 0.86);
}

.case-metrics {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.case-metric {
  padding: 24px;
  background: var(--panel);
}

.case-metric strong {
  display: block;
  color: var(--gold-2);
  font-size: 34px;
  line-height: 1;
}

.case-metric span {
  color: var(--muted);
  font-size: 13px;
}

.case-copy {
  padding: 34px;
}

blockquote {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.25;
}

.quote-note {
  margin-top: 18px;
  color: var(--muted);
}

.fit-grid {
  align-items: start;
}

.fit-card {
  min-height: 100%;
}

.not-for {
  opacity: 0.86;
}

.not-for .feature-list li::before {
  content: "×";
  color: var(--red);
}

.cta-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.18), transparent 28rem),
    rgba(17, 16, 12, 0.62);
}

.mid-cta {
  padding: 46px 0;
  background: rgba(201, 168, 76, 0.08);
}

.mid-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 7, 5, 0.72);
  padding: 26px;
}

.mid-cta-box h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 44px);
}

.mid-cta-box p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 44px;
  align-items: start;
}

.whatsapp-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 7, 5, 0.82);
  padding: 26px;
  box-shadow: var(--shadow);
}

.whatsapp-panel h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.15;
}

.whatsapp-panel p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .offer,
  .case-box,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .mid-cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .hero,
  section {
    padding: 54px 0;
  }

  .mid-cta {
    padding: 32px 0;
  }

  .hero-grid,
  .cta-grid {
    gap: 30px;
  }

  .proof-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  blockquote {
    font-size: 23px;
  }
}
