:root {
  --app-width: 430px;
  --ink: #24313b;
  --muted: #4f5f69;
  --paper: #fffdf8;
  --mint: #d9f6eb;
  --blue: #b9e5ff;
  --yellow: #ffe481;
  --coral: #ff8f7b;
  --green: #8ccf81;
  --line: rgba(36, 49, 59, 0.12);
  --shadow: 0 22px 70px rgba(42, 56, 62, 0.14);
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #d9f6eb;
  font-family: var(--font-sans);
  line-height: 1.5;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

p a {
  color: #2b7a62;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100%, var(--app-width));
  margin: 0 auto;
  padding: 14px;
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

main,
.footer {
  width: min(100%, var(--app-width));
  margin: 0 auto;
  background: var(--paper);
}

.brand,
.nav,
.hero-proof,
.hero-actions,
.fit-badges {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(255, 143, 123, 0.32);
}

.nav {
  display: none;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a:hover,
.nav-cta:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 16px;
  color: #1d3c32;
  background: var(--mint);
  border-radius: 999px;
  font-weight: 700;
}

.section-shell {
  width: calc(100% - 28px);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  min-height: auto;
  padding: 28px 0 34px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: #2b7a62;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-lede p {
  margin: 0;
}

.hero-lede p + p {
  margin-top: 14px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: #ffffff;
  background: #f2705d;
  box-shadow: 0 14px 28px rgba(242, 112, 93, 0.28);
}

.button.secondary {
  color: #27463e;
  background: #ffffff;
  border-color: var(--line);
}

.button.large {
  width: 100%;
}

.hero-proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span,
.fit-badges span {
  padding: 9px 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-media {
  order: -1;
  overflow: hidden;
  border: 7px solid #ffffff;
  border-radius: 20px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.bundle,
.preview,
.benefits,
.fit,
.pricing,
.faq {
  padding: 52px 0;
}

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

.feature-grid,
.benefit-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card,
.benefit-list,
.price-card,
details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(36, 49, 59, 0.07);
}

.feature-card {
  min-height: 220px;
  padding: 24px;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 800;
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--blue);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--mint);
}

.feature-card p,
.benefit-list li,
.fit-copy p,
.price-note,
.microcopy,
details p {
  color: var(--muted);
}

.preview-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #e9fbf3, #fff6cf 52%, #ffe4df);
  border-radius: 8px;
}

.preview-video-block h3 {
  margin-bottom: 12px;
  text-align: center;
}

.preview-video-frame {
  position: relative;
  overflow: hidden;
  justify-self: center;
  width: min(100%, 320px);
  background: #ffffff;
  border: 7px solid #ffffff;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(36, 49, 59, 0.11);
}

.preview-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #111111;
  object-fit: cover;
}

.video-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.46);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.preview-assets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.preview-sheet {
  overflow: hidden;
  min-height: 150px;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(36, 49, 59, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(36, 49, 59, 0.11);
}

.preview-asset-teaser {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  height: auto;
  object-fit: contain;
  border-bottom: 1px solid rgba(36, 49, 59, 0.1);
}

.preview-sheet span {
  display: inline-block;
  margin: 18px 18px 10px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-sheet strong {
  display: block;
  margin: 0 18px 20px;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.18;
}

.sheet-work {
  border-top: 10px solid var(--blue);
}

.sheet-print {
  border-top: 10px solid var(--green);
}

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

.benefit-list {
  padding: 26px;
}

.benefit-list ul {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.fit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.fit-badges {
  flex-wrap: wrap;
  gap: 10px;
}

.pricing {
  display: grid;
  place-items: center;
}

.price-card {
  width: min(560px, 100%);
  padding: 28px;
  text-align: center;
}

.price-card h2 {
  color: #f2705d;
  font-size: 3.25rem;
}

.checkout-form {
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.checkout-form iframe {
  display: block;
  min-height: 640px;
}

.microcopy {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin-bottom: 0;
}

.final-cta {
  margin-top: 34px;
  background: #263b35;
}

.final-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 42px 0;
  color: #ffffff;
  text-align: center;
}

.final-inner h2 {
  max-width: 660px;
  font-size: 2rem;
}

.footer-visual {
  width: min(100%, 300px);
  height: auto;
  background: #fffdf8;
  border: 7px solid #fffdf8;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.footer {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding: 24px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 540px) {
  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  h1 {
    font-size: 2.25rem;
  }
}
