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

:root {
  --bg: #F7F2E9;
  --bg-alt: #EFE8DA;
  --white: #FFFFFF;
  --text: #231F1A;
  --text-light: #5C564E;
  --gold: #D9A62E;
  --gold-dark: #C4911F;
  --gold-soft: rgba(217, 166, 46, 0.14);
  --line: rgba(35, 31, 26, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 2px 16px rgba(35, 31, 26, 0.06);
  --shadow-lg: 0 14px 36px rgba(35, 31, 26, 0.12);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.narrow {
  width: min(760px, 100%);
}

section {
  padding: 56px 0;
}

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

h1 {
  font-size: 2.2rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
}

h2 {
  font-size: 1.5rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-align: center;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.04rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 6px;
}

.topbar {
  background: #1f1b16;
  color: #fff;
  font-size: 0.84rem;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar a {
  font-weight: 700;
}

.badge,
.offer-badge {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-dark);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero {
  padding: 54px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.hero-copy {
  order: 1;
}

.hero-visual {
  order: 2;
}

.subtitle {
  margin-top: 12px;
  margin-bottom: 22px;
  color: var(--text-light);
  font-size: 1rem;
}

.pain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}

.pain-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  color: var(--text-light);
  font-size: 0.95rem;
}

.hero-offer {
  display: grid;
  gap: 14px;
}

.price-kicker,
.offer-price-kicker {
  color: var(--text-light);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.price,
.offer-price {
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.microcopy {
  color: var(--text-light);
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 16px 22px;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 10px 26px rgba(217, 166, 46, 0.26);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--gold-dark);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  color: var(--text-light);
  font-size: 0.88rem;
}

.cover-shell {
  width: min(100%, 320px);
  margin: 0 auto;
  padding: 10px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.52));
  box-shadow: var(--shadow-lg);
}

.cover-image {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 0.71 / 1;
  object-fit: cover;
  background: linear-gradient(180deg, #efe8da, #e6dcc9);
}

.mobile-proof-stack {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.floating-note {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(217, 166, 46, 0.24);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.note-tag {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-note p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.45;
}

.floating-note strong {
  color: var(--text);
}

.truth {
  padding: 26px 0;
}

.truth-card,
.objection-card,
.offer-card,
.chat-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.truth-card,
.objection-card {
  padding: 30px 20px;
  border-left: 4px solid var(--gold);
  text-align: center;
}

.truth-card p {
  font-size: 1.1rem;
  line-height: 1.5;
}

.truth-card strong {
  color: var(--gold-dark);
}

.proof,
.benefits,
.audience {
  background: var(--bg-alt);
}

.proof-grid,
.contents-grid,
.benefits-grid,
.audience-list,
.offer-stack {
  display: grid;
  gap: 14px;
}

.proof-card,
.content-card,
.benefit-card,
.audience-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
}

.proof-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 12px;
}

.proof-card p,
.content-card p,
.benefit-card p,
.audience-item p,
.objection-card p,
.offer-text,
.offer-risk,
.fine-print,
.chat-note,
.offer-item span {
  color: var(--text-light);
}

.icon {
  display: inline-block;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.example {
  text-align: center;
}

.chat-card {
  padding: 24px 18px;
  margin-bottom: 14px;
  text-align: left;
}

.chat-bubble {
  padding: 14px 16px;
  border-radius: 12px;
}

.chat-bubble + .chat-bubble {
  margin-top: 12px;
}

.chat-bubble.client {
  background: var(--bg);
}

.chat-bubble.response {
  background: var(--gold-soft);
  border: 1px solid rgba(217, 166, 46, 0.22);
}

.chat-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
}

.audience-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
}

.objection-card p {
  font-size: 0.98rem;
}

.offer-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(217, 166, 46, 0.18);
}

.offer-badge {
  margin-bottom: 14px;
}

.offer-text {
  margin-bottom: 18px;
}

.offer-item {
  background: var(--bg);
  border-radius: 12px;
  padding: 14px 14px;
  text-align: left;
}

.offer-item strong {
  display: block;
  margin-bottom: 2px;
}

.urgency {
  background: var(--gold-soft);
  border: 1px solid rgba(217, 166, 46, 0.30);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 18px 0 16px;
}

.offer-risk {
  margin: 0 0 20px;
  font-size: 0.92rem;
}

.fine-print {
  margin-top: 12px;
  font-size: 0.8rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  text-align: center;
}

.footer p {
  color: var(--text-light);
  font-size: 0.78rem;
}

@media (min-width: 768px) {
  .container {
    width: min(1120px, calc(100% - 48px));
  }

  section {
    padding: 78px 0;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 28px;
  }

  .hero {
    padding: 82px 0 68px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 44px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .btn {
    width: fit-content;
    padding: 18px 34px;
    font-size: 0.96rem;
  }

  .cover-shell {
    width: 100%;
    max-width: 390px;
  }

  .hero-visual {
    position: relative;
  }

  .mobile-proof-stack {
    margin-top: 0;
    display: block;
  }

  .floating-note {
    position: absolute;
    max-width: 220px;
  }

  .note-left {
    left: -8px;
    bottom: 34px;
  }

  .note-right {
    right: 0;
    top: 38px;
  }

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

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

  .offer-card,
  .truth-card,
  .objection-card {
    padding: 42px 28px;
  }

  .chat-card {
    padding: 32px 28px;
  }

  .btn-cta {
    width: 100%;
    max-width: 420px;
  }
}
