* {
  box-sizing: border-box;
}

:root {
  --bg: #fbfaf7;
  --text: #1f2933;
  --muted: #5d6875;
  --line: #e6e0d8;
  --soft: #f1ede6;
  --accent: #254c5a;
  --accent-dark: #193640;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
}

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

.narrow {
  max-width: 780px;
}

.site-header {
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text);
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--text);
}

.hero {
  padding: 86px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

h1, h2, h3 {
  line-height: 1.18;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.2rem;
}

.subtitle {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--accent);
  font-weight: 750;
  margin: 0 0 22px;
}

.lead {
  font-size: 1.18rem;
  color: var(--muted);
}

.price-strip {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.05);
}

.price-strip span {
  color: var(--muted);
  font-weight: 700;
}

.price-strip strong {
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.price-strip em {
  color: var(--muted);
  font-style: normal;
  font-weight: 650;
  font-size: 0.92rem;
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
}

.primary {
  background: var(--accent);
  color: white;
}

.primary:hover {
  background: var(--accent-dark);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: white;
}

.ghost {
  color: var(--accent-dark);
  background: transparent;
  border: 1px solid transparent;
}

.full {
  width: 100%;
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.muted {
  background: var(--soft);
}

.problem {
  background: #ffffff;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.06);
}

.launch-card {
  align-self: stretch;
}

.price-large {
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 850;
  color: var(--accent-dark);
  margin: 18px 0 10px;
}

.card-actions {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.text-link {
  font-weight: 750;
  text-align: center;
}

.clean-list {
  margin: 0;
  padding-left: 1.15rem;
}

.clean-list li {
  margin: 0 0 10px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.compact-steps .step {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  font-weight: 800;
  margin-bottom: 16px;
}

.step h3 {
  margin-bottom: 0;
}

.discreet,
.small {
  color: var(--muted);
  font-size: 0.95rem;
}

.discreet {
  margin-top: 26px;
}

.author {
  background: #ffffff;
}

.contact {
  background: var(--accent-dark);
  color: white;
}

.contact a {
  color: white;
}

.contact p {
  color: rgba(255, 255, 255, 0.88);
}

.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 20px;
}

.contact-button {
  background: white;
  color: var(--accent-dark) !important;
}

.contact-button.outline {
  background: transparent;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-mail {
  font-size: 1.35rem;
  font-weight: 800;
}

.site-footer {
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .price-strip {
    border-radius: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

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

  .steps {
    grid-template-columns: 1fr;
  }

  nav {
    gap: 12px;
  }

  nav a {
    font-size: 0.9rem;
  }

  .actions,
  .contact-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

.book-preview {
  background: #ffffff;
}

.quote-card blockquote {
  margin: 0 0 18px;
  padding: 0 0 0 18px;
  border-left: 4px solid var(--accent);
  color: var(--text);
}

.quote-card blockquote:last-child {
  margin-bottom: 0;
}

.quote-card blockquote p {
  margin: 0;
  font-size: 1.03rem;
}
