:root {
  --bg: #f4ecdf;
  --bg-strong: #fff7ee;
  --ink: #112028;
  --muted: #55656b;
  --surface: rgba(255, 249, 240, 0.82);
  --surface-strong: rgba(255, 252, 247, 0.95);
  --surface-tint: rgba(255, 239, 220, 0.72);
  --dark: #112931;
  --dark-soft: #1e3941;
  --accent: #d96e3a;
  --accent-soft: #f3b37a;
  --teal: #1c7a74;
  --gold: #f1c76b;
  --edge: rgba(17, 32, 40, 0.08);
  --shadow: 0 28px 60px rgba(44, 31, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 110, 58, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(28, 122, 116, 0.12), transparent 22%),
    linear-gradient(180deg, #fff9f2, var(--bg));
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(22px);
  z-index: -1;
}

body::before {
  width: 18rem;
  height: 18rem;
  top: 6%;
  right: -7rem;
  background: rgba(241, 199, 107, 0.24);
}

body::after {
  width: 16rem;
  height: 16rem;
  left: -4rem;
  bottom: 14%;
  background: rgba(28, 122, 116, 0.14);
}

a {
  color: inherit;
}

.site-header,
.hero,
.section,
.logo-band {
  width: min(1140px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand-block {
  display: grid;
  gap: 0.2rem;
}

.eyebrow,
.section-label,
.panel-label,
.offer-kicker,
.price-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9e4323;
}

.brand {
  font-family: "Book Antiqua", "Palatino Linotype", serif;
  font-size: 1.22rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.78rem 0.96rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(28, 122, 116, 0.08);
  color: var(--ink);
}

.nav-cta {
  background: var(--dark);
  color: #fff7ee !important;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 1.25rem;
  margin-top: 1.35rem;
}

.hero-copy,
.hero-panel,
.section,
.logo-band {
  border: 1px solid var(--edge);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-copy,
.section {
  padding: clamp(1.5rem, 4vw, 2.35rem);
  background:
    linear-gradient(145deg, rgba(255, 249, 241, 0.98), rgba(246, 251, 248, 0.78)),
    var(--surface-strong);
}

.hero-panel {
  padding: 1rem;
  color: #fff7ee;
  background:
    linear-gradient(180deg, rgba(17, 41, 49, 0.98), rgba(30, 57, 65, 0.98)),
    var(--dark);
}

.hero h1,
.section h2,
.panel-card h2,
.offer-card h3,
.problem-card h3,
.process-card h3,
.faq-card h3,
.system-card h3,
.check-card h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 0.55rem;
  max-width: 11ch;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  line-height: 0.9;
}

.section h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 0.95;
}

.lead,
.section-head p,
.problem-card p,
.process-card p,
.faq-card p,
.offer-card li,
.price-card p,
.system-card p,
.check-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.section-head {
  max-width: 840px;
}

.section-head-dark p,
.section-dark .problem-card p,
.section-dark .section-label {
  color: rgba(255, 247, 238, 0.78);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 3.3rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  color: #fff8f1;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}

.button-secondary {
  color: var(--teal);
  border-color: rgba(28, 122, 116, 0.14);
  background: rgba(28, 122, 116, 0.09);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(241, 199, 107, 0.22), rgba(17, 32, 40, 0.04));
}

.panel-card {
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 252, 247, 0.08);
}

.panel-card-dark {
  min-height: 100%;
}

.panel-card h2 {
  max-width: 11ch;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.02;
}

.metric-row,
.panel-grid,
.offer-grid,
.fit-grid,
.system-grid,
.process-grid,
.pricing-grid,
.faq-grid,
.check-grid {
  display: grid;
  gap: 1rem;
}

.metric-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.metric-row span,
.template-strip span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-row span {
  color: rgba(255, 247, 238, 0.72);
}

.metric-row strong,
.panel-card strong,
.price-card strong,
.template-strip strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.03em;
}

.panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.logo-band {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 250, 243, 0.74);
}

.logo-band span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  margin-top: 1.25rem;
}

.section-dark {
  color: #fff7ee;
  background:
    linear-gradient(180deg, rgba(17, 41, 49, 0.98), rgba(30, 57, 65, 0.98)),
    var(--dark);
}

.section-tint {
  background:
    linear-gradient(140deg, rgba(241, 199, 107, 0.16), rgba(28, 122, 116, 0.08)),
    var(--surface-tint);
}

.offer-grid,
.pricing-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.system-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
}

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

.offer-card,
.problem-card,
.process-card,
.price-card,
.faq-card,
.system-card,
.check-card {
  padding: 1.28rem;
  border: 1px solid var(--edge);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.78);
}

.offer-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.offer-card-accent,
.price-card-featured {
  background:
    linear-gradient(145deg, rgba(217, 110, 58, 0.12), rgba(255, 252, 247, 0.92)),
    rgba(255, 252, 247, 0.78);
}

.problem-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 252, 247, 0.08);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card span {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9e4323;
}

.template-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(17, 32, 40, 0.08);
  border-radius: 26px;
  background: rgba(255, 248, 239, 0.72);
}

.template-strip div {
  padding: 0.45rem 0.2rem;
}

.template-strip span {
  color: #9e4323;
}

.cta-section {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  background:
    linear-gradient(145deg, rgba(241, 199, 107, 0.22), rgba(28, 122, 116, 0.08)),
    var(--surface-strong);
}

.cta-copy {
  max-width: 38rem;
}

@media (max-width: 1040px) {
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero,
  .offer-grid,
  .fit-grid,
  .system-grid,
  .process-grid,
  .pricing-grid,
  .faq-grid,
  .check-grid,
  .panel-grid,
  .template-strip,
  .cta-section {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: start;
    border-radius: 28px;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a,
  .button {
    width: 100%;
  }

  .hero h1 {
    max-width: none;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }
}
