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

:root {
  --ink: #0f0e0c;
  --ink2: #3a3830;
  --ink3: #7a7568;
  --bg: #faf8f4;
  --bg2: #f2ede5;
  --bg3: #e8e0d0;
  --accent: #c8440a;
  --accent2: #e8650a;
  --green: #1a6b3a;
  --green-bg: #edf6f0;
  --blue: #1a4a8a;
  --blue-bg: #edf2fb;
  --amber: #7a4a08;
  --amber-bg: #fdf3e0;
  --red: #8a1a1a;
  --red-bg: #fdf0f0;
  --border: rgba(15,14,12,0.12);
  --radius: 10px;
  --shadow: 0 2px 12px rgba(15,14,12,0.08);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 15px;
}

.hero {
  background: var(--ink);
  color: var(--bg);
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(200,68,10,0.06) 40px,
    rgba(200,68,10,0.06) 41px
  );
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 1rem;
  position: relative;
}

.hero h1 span { color: var(--accent2); }

.hero-sub {
  font-size: 1rem;
  color: rgba(250,248,244,0.65);
  max-width: 520px;
  margin: 0 auto 2rem;
  position: relative;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent2);
  display: block;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(250,248,244,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.toc-wrap {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.toc {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.toc-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 14px;
  transition: all 0.15s;
}

.toc-link:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.section:last-child { border-bottom: none; }

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.section-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: #fdf0ea;
  border: 1px solid #f5c4a0;
  border-radius: 6px;
  padding: 3px 10px;
  white-space: nowrap;
  margin-top: 6px;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.8rem 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

p { margin-bottom: 1rem; color: var(--ink2); }

strong { color: var(--ink); font-weight: 500; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  display: block;
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.card-body {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.5;
  margin: 0;
}

.highlight-box {
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  margin: 1.5rem 0;
  border-left: 3px solid;
}

.highlight-box.green { background: var(--green-bg); border-color: var(--green); }
.highlight-box.blue { background: var(--blue-bg); border-color: var(--blue); }
.highlight-box.amber { background: var(--amber-bg); border-color: var(--amber); }
.highlight-box.red { background: var(--red-bg); border-color: var(--red); }

.highlight-box p { color: var(--ink2); margin-bottom: 0; font-size: 14px; }
.highlight-box strong { color: var(--ink); }

.hb-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  display: block;
}

.green .hb-label { color: var(--green); }
.blue .hb-label { color: var(--blue); }
.amber .hb-label { color: var(--amber); }
.red .hb-label { color: var(--red); }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 14px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.price-table th {
  background: var(--ink);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left;
}

.price-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink2);
  vertical-align: top;
}

.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--bg2); }

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 9px;
  border-radius: 20px;
}

.badge.green { background: var(--green-bg); color: var(--green); }
.badge.amber { background: var(--amber-bg); color: var(--amber); }
.badge.blue { background: var(--blue-bg); color: var(--blue); }
.badge.red { background: var(--red-bg); color: var(--red); }

.week-timeline {
  margin: 1.5rem 0;
  position: relative;
  padding-left: 2.5rem;
}

.week-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.week-item {
  position: relative;
  margin-bottom: 1.5rem;
}

.week-dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.week-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.week-title {
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
  font-size: 15px;
}

.week-actions {
  list-style: none;
  margin: 0;
  padding: 0;
}

.week-actions li {
  font-size: 13px;
  color: var(--ink3);
  padding: 2px 0 2px 1rem;
  position: relative;
}

.week-actions li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.tool-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.tool-free {
  font-size: 10px;
  font-weight: 700;
  background: var(--green-bg);
  color: var(--green);
  padding: 1px 6px;
  border-radius: 10px;
  white-space: nowrap;
  margin-top: 2px;
}

.tool-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.tool-use {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 2px;
}

.checklist {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.checklist li {
  padding: 5px 0 5px 1.6rem;
  position: relative;
  font-size: 14px;
  color: var(--ink2);
  border-bottom: 1px solid var(--border);
}

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

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.product-page {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15,14,12,0.1);
  margin: 1.5rem 0;
}

.pp-header {
  background: var(--ink);
  color: var(--bg);
  padding: 2rem;
  position: relative;
}

.pp-preview {
  background: var(--bg2);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.pp-mockup {
  width: 240px;
  height: 140px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(15,14,12,0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pp-nav { background: var(--ink); height: 20px; display: flex; align-items: center; padding: 0 8px; gap: 4px; }
.pp-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.3); }

.pp-content { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 5px; }
.pp-line { height: 5px; border-radius: 3px; background: var(--bg3); }

.pp-body { padding: 1.5rem 2rem; }

.pp-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.pp-tagline { font-size: 13px; color: rgba(250,248,244,0.6); }

.pp-price {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent2);
  margin: 0.8rem 0 0.2rem;
}

.pp-price-note { font-size: 12px; color: rgba(250,248,244,0.5); }

.pp-features { list-style: none; margin: 1rem 0; padding: 0; }
.pp-features li { font-size: 13.5px; color: var(--ink2); padding: 5px 0 5px 1.4rem; position: relative; }
.pp-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.pp-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

.pp-meta { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
.pp-meta-item { font-size: 12px; color: var(--ink3); }
.pp-meta-item strong { color: var(--ink2); font-weight: 500; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.2rem 0;
}

.funnel {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.funnel-step {
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.funnel-step-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }
.funnel-step-text { font-size: 14px; font-weight: 500; }
.funnel-arrow { color: var(--ink3); font-size: 14px; }

.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
}

.risk-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  border-top: 3px solid var(--red);
}

.risk-title {
  font-weight: 500;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 0.3rem;
}

.risk-fix {
  font-size: 12.5px;
  color: var(--ink3);
  margin: 0.5rem 0 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.risk-fix strong { color: var(--green); font-weight: 600; }

footer {
  text-align: center;
  padding: 2rem;
  font-size: 12px;
  color: var(--ink3);
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .two-col { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  main { padding: 2rem 1rem 4rem; }
  .price-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
