:root {
  color-scheme: light;
  --paper: #f5f0e8;
  --surface: #fffaf1;
  --surface-strong: #ffffff;
  --ink: #17202a;
  --muted: #5c6570;
  --line: #d8cfc1;
  --teal: #0d736e;
  --teal-deep: #084c4b;
  --coral: #d15a42;
  --gold: #b77a18;
  --mist: #dbe8ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-nav {
  position: fixed;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(245, 240, 232, 0.86);
  border-bottom: 1px solid rgba(216, 207, 193, 0.74);
  backdrop-filter: blur(16px);
}

.site-brand,
.site-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-brand {
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 950;
}

.site-brand img {
  width: 46px;
  border-radius: 22%;
}

.site-brand span span {
  color: var(--teal);
}

.site-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.site-links .button-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--teal);
  color: white;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 112px clamp(18px, 4vw, 58px) 64px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 32, 42, 0.83), rgba(23, 32, 42, 0.52) 42%, rgba(23, 32, 42, 0.18)),
    url("./assets/body-shop-progress.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.78;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 0 0 26px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
}

.primary-action {
  background: var(--teal);
  color: white;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.content-band {
  padding: 56px clamp(18px, 4vw, 58px);
}

.content-band.alt {
  background: var(--surface);
}

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

.section-heading h2,
.page-hero h1 {
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.page-hero p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.feature-grid,
.proof-grid,
.trust-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature,
.proof,
.price-plan {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.feature h3,
.proof h3,
.price-plan h2 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.feature p,
.proof p,
.price-plan p,
.price-plan li {
  color: var(--muted);
  line-height: 1.48;
}

.page-hero {
  padding: 132px clamp(18px, 4vw, 58px) 42px;
  background:
    linear-gradient(135deg, rgba(13, 115, 110, 0.12), transparent 28rem),
    var(--surface);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 18px 0 2px;
  color: var(--teal-deep);
}

.price strong {
  font-size: 2.6rem;
  line-height: 1;
}

.price-plan ul {
  margin: 18px 0;
  padding-left: 20px;
}

.price-plan .primary-action {
  width: 100%;
  justify-content: center;
}

.policy-panel {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.policy-panel h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

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

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

.policy-grid article {
  border: 1px solid rgba(13, 115, 110, 0.14);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface);
}

.policy-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.48;
}

.policy-page {
  display: grid;
  max-width: 980px;
  gap: 16px;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.74);
}

.policy-card.featured {
  display: grid;
  gap: 12px;
  align-items: start;
}

.policy-card.notice {
  border-color: rgba(183, 122, 24, 0.28);
  background: rgba(183, 122, 24, 0.08);
}

.policy-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.policy-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.58;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: var(--surface-strong);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-nav,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 86vh;
  }

  .feature-grid,
  .proof-grid,
  .trust-grid,
  .policy-grid,
  .policy-grid.three-up,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
