:root {
  --bg: #0e0e0e;
  --panel: #161616;
  --border: #272727;
  --text: #f2ede6;
  --muted: #a09890;
  --orange: #ff8a00;
  --orange-hover: #ff9f2d;
  --ok: #65d28f;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--orange);
  text-decoration: none;
}

/* --- nav --- */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px;
}

.logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav-cta {
  padding: 8px 18px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  transition: background 0.15s, color 0.15s;
}

.nav-cta:hover {
  background: var(--orange);
  color: #111;
}

/* --- hero --- */

.hero {
  padding: 80px 24px 100px;
}

.hero-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 4px 14px;
  border: 1px solid #2e2210;
  border-radius: 999px;
  background: #1a1408;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.accent {
  color: var(--orange);
}

.sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.cta-button {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: background 0.15s, transform 0.1s;
}

.cta-button:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.fine-print {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}

/* --- how it works --- */

.how {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

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

h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  text-align: center;
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.steps li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a1408;
  border: 1px solid #2e2210;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.steps strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.steps p {
  font-size: 15px;
  color: var(--muted);
}

/* --- honest section --- */

.honest {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  background: var(--panel);
}

.honest-inner {
  max-width: 720px;
  margin: 0 auto;
}

.honest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 540px) {
  .honest-grid {
    grid-template-columns: 1fr;
  }
}

.honest-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.honest-card.is {
  background: #0f1a10;
  border-color: #1a3020;
}

.honest-card.not {
  background: #1a1210;
  border-color: #2e1e16;
}

.honest-card h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.honest-card.is h3 {
  color: var(--ok);
}

.honest-card.not h3 {
  color: var(--muted);
}

.honest-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.honest-card ul li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.honest-card.is ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-size: 12px;
}

.honest-card.not ul li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #666;
}

/* --- bottom cta --- */

.cta-bottom {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-inner {
  max-width: 480px;
  margin: 0 auto;
}

.cta-inner p {
  margin: 16px 0 32px;
  color: var(--muted);
}

/* --- footer --- */

.footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

.footer a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--border);
}
