:root {
  color-scheme: light;
  --ink: #111116;
  --muted: #62616a;
  --line: rgba(17, 17, 22, 0.12);
  --panel: #ffffff;
  --soft: #ffffff;
  --rose: #f4b6cf;
  --rose-strong: #be3f76;
  --grey: #ebeef3;
  --charcoal: #111116;
  --shadow: 0 20px 48px rgba(17, 17, 22, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: #ffffff;
}

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

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--charcoal);
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(190, 63, 118, 0.22);
  border-radius: 999px;
  color: var(--rose-strong);
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: end;
  padding: clamp(38px, 7vw, 78px) 0 36px;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.62;
}

.lead {
  max-width: 760px;
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
}

.status-card,
.panel,
.guide-card,
.upsell-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.status-card {
  padding: 22px;
}

.cover-card {
  padding: 14px;
}

.product-cover-thumb,
.guide-card-cover {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--charcoal);
}

.product-cover-thumb {
  margin-bottom: 14px;
}

.status-card strong,
.status-card span {
  display: block;
}

.status-card strong {
  margin-bottom: 7px;
}

.section {
  padding: 28px 0;
}

.panel {
  padding: clamp(22px, 4vw, 36px);
}

.download-row,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-wrap: balance;
}

.button:focus-visible {
  outline: 3px solid rgba(190, 63, 118, 0.28);
  outline-offset: 3px;
}

.button.primary {
  color: #ffffff;
  border-color: var(--charcoal);
  background: var(--charcoal);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
}

.button.rose {
  color: var(--ink);
  border-color: rgba(190, 63, 118, 0.3);
  background: var(--rose);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.guide-card,
.upsell-card {
  padding: 22px;
  box-shadow: none;
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-card .pill,
.guide-card h2,
.guide-card p {
  margin-bottom: 0;
}

.guide-card h2 {
  font-size: 2.05rem;
  line-height: 1.05;
}

.guide-card .action-row {
  margin-top: auto;
}

.featured-guide {
  display: grid;
  gap: 14px;
}

.featured-guide .pill,
.featured-guide h2,
.featured-guide p,
.featured-guide .action-row {
  margin-top: 0;
}

.guide-card ul {
  margin: 12px 0 0;
  padding-left: 19px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(190, 63, 118, 0.18);
  border-color: rgba(190, 63, 118, 0.42);
}

.lead-form .check-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.lead-form .check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.lead-form button {
  grid-column: 1 / -1;
  width: fit-content;
}

.upsell-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.note {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 4px solid var(--rose);
  background: var(--soft);
}

.footer {
  padding: 32px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .shell {
    width: min(1080px, calc(100% - 24px));
  }

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

  .hero {
    gap: 18px;
    padding: 30px 0 24px;
  }

  h1 {
    font-size: clamp(2.08rem, 11vw, 2.85rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
    line-height: 1.06;
  }

  .guide-card h2 {
    font-size: 1.6rem;
    line-height: 1.08;
  }

  .lead {
    font-size: 1rem;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-card,
  .panel,
  .guide-card,
  .upsell-card {
    padding: 18px;
  }

  .button,
  .download-row a,
  .action-row a,
  .lead-form button {
    width: 100%;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }
}
