:root {
  --bg: #f3ede3;
  --paper: rgba(255, 249, 241, 0.92);
  --ink: #17120f;
  --muted: #5f5449;
  --line: rgba(83, 60, 39, 0.18);
  --line-strong: rgba(255, 245, 233, 0.18);
  --accent: #bb4f2f;
  --accent-strong: #8f341a;
  --cream: #fff6e9;
  --shadow: 0 24px 70px rgba(23, 18, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(187, 79, 47, 0.22), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(214, 185, 138, 0.18), transparent 22%),
    linear-gradient(180deg, #f7f0e3 0%, #efe1ce 100%);
}

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.hero,
.section,
.quote-block,
.footer-cta {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero {
  padding: 32px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 40%),
    linear-gradient(145deg, rgba(16, 12, 10, 0.96), rgba(48, 27, 20, 0.94));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187, 79, 47, 0.46), transparent 68%);
  pointer-events: none;
}

.hero-topline,
.cta-row,
.feature-list,
.statement-grid {
  display: flex;
}

.hero-topline {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  align-items: center;
}

.eyebrow,
.kicker,
.hero-label,
.feature-index {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

.eyebrow,
.hero-label {
  margin: 0;
  color: rgba(255, 246, 233, 0.78);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: end;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  line-height: 0.92;
}

.lede {
  max-width: 42rem;
  margin-bottom: 28px;
  color: rgba(255, 246, 233, 0.84);
  font-size: 1.18rem;
  line-height: 1.75;
}

.cta-row {
  flex-wrap: wrap;
  gap: 14px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 246, 233, 0.28);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.08);
  color: var(--cream);
  font: inherit;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
}

.lang-toggle:hover {
  background: rgba(255, 248, 238, 0.16);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff7ef;
  background: linear-gradient(135deg, var(--accent), #cf6b46);
  box-shadow: 0 18px 40px rgba(187, 79, 47, 0.28);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
}

.button-secondary {
  color: inherit;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
}

.section {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.statement-grid {
  gap: 18px;
  margin: 18px 0;
}

.statement-grid,
.feature-list {
  flex-wrap: wrap;
}

.panel,
.feature,
.proof-card {
  flex: 1 1 320px;
  border-radius: 24px;
}

.panel {
  min-height: 100%;
  padding: 28px;
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid var(--line);
}

.panel-dark {
  color: var(--cream);
  background:
    linear-gradient(160deg, rgba(18, 12, 9, 0.96), rgba(66, 35, 24, 0.92));
  border-color: rgba(255, 245, 233, 0.12);
}

.panel-dark p,
.panel-dark .kicker {
  color: rgba(255, 246, 233, 0.78);
}

.panel h3,
.section-head h2,
.footer-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.panel p,
.feature p,
.quote-block p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.section-head {
  margin-bottom: 24px;
}

.kicker,
.feature-index {
  margin-bottom: 12px;
  color: var(--accent-strong);
}

.feature-list {
  gap: 16px;
}

.feature,
.proof-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.feature h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.feature-index {
  display: inline-block;
}

.proof-card {
  align-self: stretch;
  background: rgba(255, 248, 238, 0.08);
  border: 1px solid var(--line-strong);
  color: var(--cream);
}

.proof-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: rgba(255, 246, 233, 0.72);
}

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

.proof-list li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.sublede {
  max-width: 36rem;
  margin: -8px 0 28px;
  color: rgba(255, 246, 233, 0.74);
  font-size: 1.02rem;
  line-height: 1.7;
}

.quote-block {
  margin-top: 18px;
  padding: 38px 34px;
  color: var(--cream);
  background:
    radial-gradient(circle at top right, rgba(214, 185, 138, 0.14), transparent 24%),
    linear-gradient(135deg, #281914, #7f321b);
}

.quote-block p {
  max-width: 24ch;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
}

.quote-cn {
  margin-top: 18px;
  max-width: 32ch;
  color: rgba(255, 246, 233, 0.82);
  font-size: 1.18rem;
  line-height: 1.8;
}

.footer-cta {
  margin-top: 18px;
  padding: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(23, 18, 15, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.9), rgba(250, 239, 223, 0.86));
}

.footer-cta h2 {
  max-width: 18ch;
}

@media (max-width: 860px) {
  .page {
    width: min(100% - 20px, 1180px);
    padding: 14px 0 42px;
  }

  .hero,
  .section,
  .quote-block,
  .footer-cta {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-grid,
  .statement-grid,
  .footer-cta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-topline {
    justify-content: space-between;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .quote-block p {
    max-width: none;
  }

  .footer-cta h2 {
    max-width: none;
  }
}
