*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #faf7f2;
  --amber: #d4800a;
  --gold: #f0a830;
  --grey-mid: #e5e0d8;
  --grey-text: #6b6b6b;
  --grey-light: #f2ede6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--off-white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  background: rgba(250, 247, 242, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-mid);
}

.wordmark {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--black);
  text-decoration: none;
}

.wordmark span {
  font-style: normal;
  color: var(--amber);
}

.nav-cta {
  background-color: var(--black);
  color: var(--off-white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover {
  background-color: #2a2a2a;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 32px 80px;
  max-width: 800px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(34px, 7.5vw, 78px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2.5px;
  color: var(--black);
  margin-bottom: 28px;
}

.accent-word {
  position: relative;
  display: inline-block;
  color: var(--amber);
}

.accent-word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  border-radius: 2px;
}

.hero-sub {
  font-size: 19px;
  font-weight: 400;
  color: var(--grey-text);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.hero-proof-nudge {
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof-nudge::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--amber);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background-color: var(--amber);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.1s;
}

.btn-primary:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}

.btn-ghost {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: none;
}

.btn-ghost:hover {
  color: var(--black);
}

/* ── PROOF STRIP ── */
#proof {
  background-color: var(--black);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.proof-text {
  font-size: 14px;
  font-weight: 500;
  color: #aaa;
}

.proof-text a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

/* ── THE PROBLEM ── */
#problem {
  padding: 96px 32px;
  max-width: 960px;
  margin: 0 auto;
}

#problem h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 40px;
  max-width: 960px;
}

.problem-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--grey-mid);
  border-radius: 16px;
  overflow: hidden;
}

.problem-col {
  padding: 36px 32px;
}

.problem-col.before {
  border-right: 1px solid var(--grey-mid);
  background-color: var(--white);
}

.problem-col.after {
  background-color: var(--black);
}

.problem-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.problem-col.before .problem-col-label {
  color: var(--grey-text);
}
.problem-col.after .problem-col-label {
  color: var(--gold);
}

.problem-col h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.problem-col.before h3 {
  color: var(--black);
}
.problem-col.after h3 {
  color: var(--off-white);
}

.problem-col p {
  font-size: 15px;
  line-height: 1.75;
}

.problem-col.before p {
  color: var(--grey-text);
}
.problem-col.after p {
  color: #888;
}

/* ── HOW IT WORKS ── */
#how {
  background-color: var(--black);
  padding: 96px 32px;
}

.how-inner {
  max-width: 960px;
  margin: 0 auto;
}

#how .section-label {
  color: var(--gold);
}

#how h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 56px;
  line-height: 1.15;
  color: var(--off-white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #2e2a22;
  border-radius: 16px;
  overflow: hidden;
}

.step {
  padding: 36px 32px;
  background: #111009;
  border-right: 1px solid #2e2a22;
}

.step:last-child {
  border-right: none;
}

/* #252018 */
.step-num {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 20px;
}

.step-accent {
  width: 28px;
  height: 3px;
  background: var(--amber);
  margin-bottom: 16px;
  border-radius: 2px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  color: var(--off-white);
}

.step p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}

/* ── WHAT YOU GET ── */
#what {
  padding: 96px 32px;
}

.what-inner {
  max-width: 960px;
  margin: 0 auto;
}

#what h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
  line-height: 1.15;
  color: var(--black);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 16px;
  padding: 28px 24px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}

.feature h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.feature p {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.6;
}

/* ── HONEST SECTION ── */
#honest {
  background-color: var(--black);
  padding: 80px 32px;
}

.honest-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

#honest .section-label {
  color: var(--gold);
}

.honest-left h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--off-white);
  margin-top: 12px;
}

.honest-right {
  padding-top: 4px;
}

.honest-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #1e1e1e;
}

.honest-item:last-child {
  border-bottom: none;
}

.honest-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.honest-check.yes {
  background-color: var(--amber);
  color: var(--white);
}

.honest-check.later {
  background-color: #2a2520;
  color: #888;
  font-size: 14px;
}

.honest-item-text strong {
  display: block;
  font-weight: 700;
  color: var(--off-white);
  font-size: 14px;
  margin-bottom: 3px;
}

.honest-item-text span {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

/* ── PRICING ── */
#pricing {
  background-color: var(--grey-light);
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  padding: 96px 32px;
  text-align: center;
}

#pricing h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--black);
}

.price-sub {
  font-size: 16px;
  color: var(--grey-text);
  margin-bottom: 48px;
}

.price-card {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 24px;
  padding: 48px 56px;
  max-width: 400px;
  width: 100%;
}

.price-amount {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}

.price-period {
  font-size: 15px;
  color: var(--grey-text);
  margin-bottom: 36px;
}

.price-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.price-includes li {
  font-size: 15px;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-includes li:last-child {
  border-bottom: none;
}

.check {
  color: var(--amber);
  font-weight: 700;
  font-size: 16px;
}

.btn-primary-amber {
  display: block;
  background-color: var(--amber);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}

.btn-primary-amber:hover {
  background-color: var(--gold);
  color: var(--black);
}

/* ── WHY WE BUILT IT ── */
#why {
  padding: 96px 32px;
  max-width: 800px;
  margin: 0 auto;
}

#why h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 32px;
}

#why p {
  font-size: 17px;
  color: var(--grey-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

#why p:last-of-type {
  margin-bottom: 0;
}

#why .why-close {
  color: var(--black);
  font-weight: 600;
}

/* ── CTA ── */
#cta {
  padding: 96px 32px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

#cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

#cta p {
  font-size: 16px;
  color: var(--grey-text);
  margin-bottom: 36px;
  line-height: 1.7;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--amber);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.1s;
}

.whatsapp-btn:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background-color: var(--black);
  border-top: 1px solid #1e1e1e;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer .wordmark {
  font-size: 22px;
  font-style: italic;
  color: var(--off-white);
}

footer .wordmark span {
  color: var(--amber);
}

footer p {
  font-size: 13px;
  color: #666;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav {
    padding: 16px 20px;
  }

  #hero {
    padding: 100px 20px 64px;
  }

  .problem-columns {
    grid-template-columns: 1fr;
  }
  .problem-col.before {
    border-right: none;
    border-bottom: 1px solid var(--grey-mid);
  }

  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: none;
    border-bottom: 1px solid #2e2a22;
  }
  .step:last-child {
    border-bottom: none;
  }

  .honest-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .price-card {
    padding: 36px 24px;
  }

  #problem,
  #what,
  #why,
  #pricing,
  #cta {
    padding: 72px 20px;
  }
  #how {
    padding: 72px 20px;
  }
  #honest {
    padding: 72px 20px;
  }
  footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.subdomain-highlight {
  color: var(--gold);
  font-style: normal;
}
