:root {
  --paper: #fffefd;
  --paper-strong: #eef9fb;
  --paper-warm: #f8f4ee;
  --ink: #24345f;
  --muted: #646879;
  --leaf: #78cfcc;
  --leaf-strong: #55bfc1;
  --leaf-dark: #243f78;
  --sun: #ffd56f;
  --sky: #bfe3f6;
  --sky-soft: #effaff;
  --peach: #ff91a8;
  --clay: #ef607f;
  --white: #ffffff;
  --line: #dcebf0;
  --brand-gradient: linear-gradient(135deg, #ffd56f 0%, #78cfcc 56%, #ff91a8 100%);
  --pause-gradient: linear-gradient(135deg, #243f78 0%, #55bfc1 100%);
  --shadow: 0 24px 70px rgba(36, 52, 95, 0.13);
  --shadow-soft: 0 16px 36px rgba(36, 52, 95, 0.08);
  --radius-lg: 24px;
  --radius-xl: 34px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 213, 111, 0.34), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(120, 207, 204, 0.25), transparent 32rem),
    radial-gradient(circle at 74% 78%, rgba(255, 145, 168, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--paper) 0%, #f7fdff 50%, var(--paper) 100%);
  font-family: "Trebuchet MS", "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.8;
  background-image:
    url("../img/brand-pattern.svg"),
    linear-gradient(rgba(36, 52, 95, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 52, 95, 0.024) 1px, transparent 1px);
  background-size: 220px 220px, 42px 42px, 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.page {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 235, 240, 0.92);
  background: rgba(255, 254, 253, 0.91);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 20px;
  background: url("../img/logo-mark.svg") center / contain no-repeat;
  box-shadow: 0 12px 26px rgba(85, 191, 193, 0.22);
  color: transparent;
  font-size: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--leaf-dark);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  color: #fffdf6;
  background: var(--pause-gradient);
  box-shadow: 0 16px 28px rgba(46, 118, 80, 0.24);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  background: linear-gradient(135deg, #20386d 0%, #45aeb0 100%);
  box-shadow: 0 20px 38px rgba(36, 63, 120, 0.24);
  transform: translateY(-2px);
}

.button.secondary {
  border: 1px solid rgba(85, 191, 193, 0.26);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.button.ghost {
  min-height: 44px;
  padding: 12px 18px;
  color: var(--leaf-dark);
  background: rgba(120, 207, 204, 0.16);
  box-shadow: none;
}

.button.wide {
  width: 100%;
}

.hero {
  position: relative;
  padding: 56px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(85, 191, 193, 0.28);
  border-radius: 999px;
  color: var(--leaf-dark);
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 900;
}

.eyebrow::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Nunito", sans-serif;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 68px;
}

h2 {
  font-size: 56px;
}

h3 {
  font-size: 24px;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 21px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}

.microcopy {
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(220, 235, 240, 0.96);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 253, 255, 0.84)),
    var(--white);
  box-shadow: var(--shadow);
}

.hero-card > img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  margin: 0 auto;
}

.hero-lead-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(220, 235, 240, 0.96);
  border-radius: 24px;
  background: rgba(255, 254, 253, 0.9);
}

.hero-form-title {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.hero-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.hero-form-row .button {
  min-height: 54px;
  padding-inline: 20px;
}

.compact-checkbox {
  font-size: 12px;
}

.compact-checkbox input {
  width: 16px;
  height: 16px;
}

.hero-card::before,
.hero-card::after {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  content: "";
}

.hero-card::before {
  right: -34px;
  bottom: 42px;
  width: 130px;
  height: 130px;
  background: rgba(255, 213, 111, 0.58);
}

.hero-card::after {
  top: -26px;
  left: -24px;
  width: 94px;
  height: 94px;
  background: rgba(120, 207, 204, 0.38);
}

.preview-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.mini-script {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(220, 235, 240, 0.96);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 213, 111, 0.2), rgba(120, 207, 204, 0.16)),
    rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.mini-script strong {
  color: var(--ink);
}

.mini-script span {
  position: relative;
  padding-left: 18px;
}

.mini-script span::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf-strong);
  content: "";
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.trust-pill {
  padding: 16px 18px;
  border: 1px solid rgba(220, 235, 240, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.conversion-strip div {
  min-height: 116px;
  padding: 20px;
  border: 1px solid rgba(220, 235, 240, 0.92);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 253, 255, 0.82)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.conversion-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Nunito", sans-serif;
  font-size: 20px;
  line-height: 1.1;
}

.conversion-strip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 82px 0;
}

.section.compact {
  padding: 54px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.soft-panel {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(220, 235, 240, 0.96);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 253, 255, 0.82)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.problem-grid,
.cards-grid,
.product-grid,
.faq-grid,
.legal-grid {
  display: grid;
  gap: 20px;
}

.problem-grid {
  grid-template-columns: repeat(5, 1fr);
}

.problem-item,
.feature-card,
.bundle-card,
.faq-card,
.legal-card,
.price-card {
  border: 1px solid rgba(220, 235, 240, 0.96);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 253, 255, 0.84)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.problem-item {
  min-height: 146px;
  padding: 22px;
  font-weight: 900;
}

.problem-item span,
.feature-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky-soft), rgba(167, 223, 174, 0.32));
  color: var(--leaf-dark);
}

.solution-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.solution-list,
.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.solution-list li,
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-weight: 700;
}

.solution-list li::before,
.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--leaf-dark);
  content: "✓";
  font-size: 14px;
  font-weight: 900;
}

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

.feature-card {
  padding: 26px;
}

.faq-card {
  padding: 26px;
}

.faq-card h3 {
  font-size: 22px;
  line-height: 1.12;
}

.feature-card p,
.bundle-card p,
.faq-card p,
.price-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  min-height: 178px;
  padding: 62px 20px 20px;
  border: 1px solid rgba(220, 235, 240, 0.96);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-weight: 800;
}

.step::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 13px;
  background: var(--brand-gradient);
  color: var(--ink);
  counter-increment: step;
  content: counter(step);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field span,
.checkbox {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(116, 111, 103, 0.2);
  border-radius: 17px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus {
  border-color: var(--leaf-strong);
  box-shadow: 0 0 0 4px rgba(98, 191, 123, 0.16);
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--leaf-strong);
}

.form-error {
  padding: 12px 14px;
  border-radius: 16px;
  color: #7b2a18;
  background: #fff0e9;
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -100vw;
  visibility: hidden;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.price-card {
  padding: 32px;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 215, 111, 0.38), transparent 10rem),
    radial-gradient(circle at 12% 90%, rgba(167, 223, 174, 0.24), transparent 9rem),
    rgba(255, 255, 255, 0.88);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 18px 0;
}

.price strong {
  color: var(--leaf-dark);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Nunito", sans-serif;
  font-size: 64px;
  line-height: 1;
}

.price s {
  color: var(--muted);
  font-size: 24px;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tariff-card h3 {
  font-size: 34px;
}

.tariff-card .check-list {
  margin: 4px 0 0;
}

.tariff-card .section-actions,
.preorder-form {
  margin-top: auto;
}

.tariff-card-featured {
  border-color: rgba(85, 191, 193, 0.45);
}

.tariff-card-soon {
  border-style: dashed;
  opacity: 0.78;
}

.soon-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fffdf6;
  background: #ef607f;
  font-size: 13px;
  font-weight: 900;
}

.muted-price strong,
.muted-price span {
  color: var(--muted);
}

.muted-price span {
  font-size: 18px;
  font-weight: 900;
}

.muted-list li::before {
  background: rgba(100, 104, 121, 0.16);
  color: var(--muted);
}

.preorder-form {
  padding-top: 6px;
}

.preorder-success {
  max-width: 760px;
  margin: 0 auto 22px;
  color: #24576f;
  background: rgba(120, 207, 204, 0.18);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(168, 221, 243, 0.36);
  color: #24576f;
  font-size: 14px;
  font-weight: 900;
}

.bundle-card {
  padding: 26px;
}

.product-grid {
  grid-template-columns: repeat(5, 1fr);
}

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

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

.legal-card {
  padding: 24px;
}

.legal-card h3 {
  font-size: 20px;
}

.notice {
  padding: 20px 22px;
  border: 1px solid rgba(46, 118, 80, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(167, 223, 174, 0.22), rgba(255, 215, 111, 0.16)),
    rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(234, 223, 201, 0.86);
  background:
    url("../img/brand-pattern.svg") right bottom / 220px 220px repeat,
    rgba(239, 250, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a {
  text-decoration: none;
}

.footer-note {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(45, 42, 38, 0.34);
  backdrop-filter: blur(10px);
}

.modal[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(100%, 640px);
  max-height: min(92vh, 760px);
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(45, 42, 38, 0.08);
  cursor: pointer;
  font-size: 22px;
}

.modal-open {
  overflow: hidden;
}

.simple-page {
  padding: 72px 0;
}

.simple-content {
  max-width: 900px;
}

.simple-content h1 {
  font-size: 68px;
}

.simple-content h2 {
  margin-top: 34px;
  font-size: 30px;
}

.simple-content p,
.simple-content li {
  color: var(--muted);
}

.simple-content ul,
.simple-content ol {
  padding-left: 22px;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.mobile-sticky-cta,
.checkout-sticky {
  position: fixed;
  z-index: 30;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(100% - 32px, 720px);
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(220, 235, 240, 0.9);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.92);
  box-shadow: 0 18px 44px rgba(61, 50, 34, 0.16);
  backdrop-filter: blur(16px);
}

.checkout-sticky span {
  padding-left: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.checkout-sticky .button {
  min-height: 46px;
  padding: 12px 18px;
}

.sample-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sample-strip img {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 980px) {
  h1,
  .simple-content h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 46px;
  }

  .lead {
    font-size: 19px;
  }

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

  .problem-grid,
  .steps,
  .product-grid,
  .tariff-grid,
  .conversion-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav a {
    display: none;
  }
}

@media (max-width: 720px) {
  h1,
  .simple-content h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 17px;
  }

  .price strong {
    font-size: 48px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

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

  .section {
    padding: 58px 0;
  }

  .trust-row,
  .cards-grid,
  .problem-grid,
  .steps,
  .faq-grid,
  .legal-grid,
  .product-grid,
  .tariff-grid,
  .conversion-strip,
  .sample-strip,
  .form-grid,
  .download-card,
  .hero-form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav .button {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .soft-panel {
    border-radius: 28px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .checkout-sticky {
    display: flex;
  }

  .mobile-sticky-cta .button,
  .checkout-sticky .button {
    width: 100%;
  }

  .checkout-sticky {
    border-radius: 24px;
  }

  .checkout-sticky span {
    display: none;
  }

  body {
    padding-bottom: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
