:root {
  --bg: #f7f0e7;
  --bg-deep: #eadfcd;
  --surface: rgba(255, 249, 240, 0.78);
  --surface-strong: rgba(255, 246, 235, 0.96);
  --text: #16212c;
  --muted: #5d6873;
  --border: rgba(22, 33, 44, 0.12);
  --accent: #cf6f3d;
  --accent-deep: #9a4e28;
  --accent-soft: rgba(207, 111, 61, 0.12);
  --shadow: 0 22px 60px rgba(32, 29, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(247, 240, 231, 0.88), rgba(250, 246, 239, 0.96)),
    linear-gradient(135deg, #f7f0e7 0%, #fbf8f2 42%, #e9decb 100%);
  overflow-x: hidden;
}

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

.ambient {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.7;
}

.ambient-one {
  top: -80px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: rgba(207, 111, 61, 0.15);
}

.ambient-two {
  left: -80px;
  bottom: 10vh;
  width: 240px;
  height: 240px;
  background: rgba(54, 85, 111, 0.12);
}

.page-shell {
  position: relative;
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 60px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 26px;
}

.brand,
h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.04em;
}

.brand {
  font-size: 30px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav a {
  font-weight: 600;
  color: #334150;
}

.hero,
.statement-band,
.feature-card,
.panel,
.outcome-card,
.faq-strip,
.contact-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.hero-card {
  padding: 34px;
}

.hero-copy {
  border-radius: 34px;
}

.hero-card {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(26, 40, 53, 0.92), rgba(40, 56, 70, 0.9));
  color: #f7f2eb;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card .eyebrow,
.panel-accent .eyebrow {
  color: rgba(255, 243, 232, 0.86);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

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

.hero-text {
  max-width: 58ch;
  font-size: 18px;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff9f2;
}

.button-primary:hover {
  background: var(--accent-deep);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  color: #2c3946;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-trust div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(22, 33, 44, 0.08);
}

.hero-trust strong {
  display: block;
  margin-bottom: 6px;
}

.hero-trust span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-card p,
.hero-card strong {
  color: rgba(247, 242, 235, 0.82);
}

.metric-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.metric-item {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 248, 239, 0.14);
}

.metric-item span {
  display: inline-block;
  margin-bottom: 8px;
  color: #f7ba8d;
  font-size: 28px;
  font-weight: 800;
  font-family: "Syne", sans-serif;
}

.metric-item p {
  margin: 0;
}

.statement-band {
  margin-top: 22px;
  padding: 24px 28px;
  border-radius: 24px;
}

.statement-band p {
  margin: 0;
  font-size: 18px;
}

.section-block,
.faq-strip {
  margin-top: 34px;
}

.section-intro {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.section-intro.compact {
  margin-bottom: 0;
}

.card-grid,
.outcome-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.outcome-card {
  border-radius: 24px;
  padding: 26px;
}

.split-showcase {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.panel {
  border-radius: 30px;
  padding: 30px;
}

.panel-accent {
  background: linear-gradient(135deg, rgba(207, 111, 61, 0.96), rgba(143, 66, 36, 0.95));
}

.panel-accent h2,
.panel-accent p,
.panel-accent strong {
  color: #fff6ee;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.feature-list li + li {
  margin-top: 8px;
}

.outcome-grid {
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-strip {
  border-radius: 30px;
  padding: 30px;
}

.faq-grid {
  margin-top: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid article {
  padding: 0 4px;
}

.contact-strip {
  margin-top: 34px;
  border-radius: 30px;
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact-strip p {
  margin: 10px 0 0;
}

@media (max-width: 980px) {
  .hero,
  .split-showcase,
  .card-grid,
  .outcome-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-strip,
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .hero-card,
  .feature-card,
  .panel,
  .outcome-card,
  .faq-strip,
  .contact-strip {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 20px, 1140px);
  }

  .site-nav {
    gap: 12px 16px;
  }

  h1 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
