:root {
  color-scheme: light;
  --bg: #f3efe8;
  --bg-accent: #e9e0d1;
  --surface: rgba(255, 251, 245, 0.82);
  --surface-strong: #fffaf1;
  --surface-contrast: #fcf5e6;
  --surface-muted: rgba(250, 241, 225, 0.64);
  --text: #1f1b16;
  --text-soft: #5f5548;
  --text-muted: #7a6b59;
  --border: rgba(72, 51, 28, 0.14);
  --border-strong: rgba(72, 51, 28, 0.24);
  --accent: #ab4b15;
  --accent-strong: #8f380d;
  --accent-soft: rgba(171, 75, 21, 0.12);
  --accent-soft-strong: rgba(171, 75, 21, 0.2);
  --shadow-sm: 0 12px 24px rgba(55, 36, 18, 0.08);
  --shadow-md: 0 22px 50px rgba(55, 36, 18, 0.12);
  --shadow-focus: 0 0 0 4px rgba(171, 75, 21, 0.16);
  --radius-sm: 0.85rem;
  --radius-md: 1.2rem;
  --radius-lg: 1.75rem;
  --radius-pill: 999px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 5rem;
  --space-10: 6rem;
  --container-max: 72rem;
  --reading-max: 41rem;
  --measure-wide: 60rem;
  --font-body: 'Aptos', 'Segoe UI', 'Trebuchet MS', sans-serif;
  --font-heading: 'Bahnschrift', 'Aptos Display', 'Segoe UI', sans-serif;
  --step--1: clamp(0.95rem, 0.91rem + 0.2vw, 1rem);
  --step-0: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.08rem + 0.6vw, 1.45rem);
  --step-2: clamp(1.55rem, 1.28rem + 1vw, 2rem);
  --step-3: clamp(2.15rem, 1.75rem + 1.9vw, 3.2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 40%),
    linear-gradient(180deg, #fbf7f0 0%, var(--bg) 45%, #efe6d7 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: rgba(171, 75, 21, 0.45);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    text-decoration-color 160ms ease;
}

a:hover {
  color: var(--accent-strong);
  text-decoration-color: currentColor;
}

a:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

details {
  width: 100%;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

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

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

h1 {
  font-size: var(--step-3);
  max-width: 11ch;
}

h2 {
  font-size: var(--step-2);
  max-width: 16ch;
}

h3 {
  font-size: var(--step-1);
}

p {
  max-width: var(--reading-max);
  color: var(--text-soft);
  overflow-wrap: anywhere;
}

.page-main {
  position: relative;
}

.section {
  position: relative;
  padding-block: clamp(3.5rem, 10vw, var(--space-8));
  scroll-margin-top: clamp(1.25rem, 7vw, 2.75rem);
}

.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}

.section-header {
  display: grid;
  gap: var(--space-4);
  margin-bottom: clamp(1.5rem, 4vw, var(--space-6));
}

.section-intro {
  max-width: var(--measure-wide);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
}

.cards-grid {
  display: grid;
  gap: var(--space-4);
}

.section-header > *,
.cards-grid > *,
.faq-list > *,
.hero-copy,
.cta-group,
.proof-chips,
.proof-items,
.cta-panel {
  min-width: 0;
}

.info-card {
  position: relative;
  display: grid;
  gap: var(--space-3);
  min-height: 100%;
  padding: clamp(1.3rem, 1.1rem + 0.6vw, 1.8rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), var(--surface));
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.info-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.3rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: linear-gradient(90deg, rgba(171, 75, 21, 0.7), rgba(171, 75, 21, 0));
}

.info-card p {
  max-width: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  width: 100%;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent) 0%, #cf6420 100%);
  color: #fff8ef;
  font-family: var(--font-heading);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(143, 56, 13, 0.22);
}

.button:hover {
  color: #fff8ef;
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(143, 56, 13, 0.28);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 12px 28px rgba(143, 56, 13, 0.22);
}

.button:focus-visible {
  outline: none;
  box-shadow:
    0 18px 35px rgba(143, 56, 13, 0.22),
    var(--shadow-focus);
}

.button-secondary {
  border-color: var(--border-strong);
  background: rgba(255, 248, 237, 0.7);
  color: var(--text);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--accent-strong);
  border-color: rgba(171, 75, 21, 0.34);
  background: rgba(255, 248, 237, 0.92);
  box-shadow: var(--shadow-sm);
}

.button-secondary:focus-visible {
  box-shadow: var(--shadow-focus);
}

.cta-group {
  display: grid;
  gap: var(--space-3);
}

.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.proof-items {
  display: grid;
  gap: var(--space-3);
}

.proof-chips li,
.proof-items li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 2.5rem;
  padding-inline: 0.95rem;
  border: 1px solid rgba(171, 75, 21, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 251, 245, 0.76);
  color: var(--text);
  font-size: var(--step--1);
  font-weight: 600;
  line-height: 1.3;
}

.proof-chips li::before,
.proof-items li::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e18e51);
  box-shadow: 0 0 0 0.2rem rgba(171, 75, 21, 0.1);
}

.section-hero {
  padding-top: clamp(3.5rem, 12vw, 7.5rem);
  padding-bottom: clamp(2.75rem, 9vw, var(--space-7));
}

.section-hero::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: min(44rem, 100%);
  background:
    radial-gradient(circle at 15% 20%, rgba(171, 75, 21, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(255, 220, 178, 0.6), transparent 26%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  display: grid;
  gap: clamp(1rem, 4vw, var(--space-5));
  max-width: var(--measure-wide);
  padding: clamp(1.3rem, 4vw, 2.25rem);
  border: 1px solid rgba(171, 75, 21, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(255, 248, 237, 0.72));
  box-shadow: var(--shadow-md);
}

.hero-intro {
  font-size: clamp(1rem, 0.97rem + 0.35vw, 1.2rem);
}

.section-proof-strip {
  padding-top: 0;
  padding-bottom: clamp(2.75rem, 8vw, var(--space-7));
}

.section-proof-strip .container {
  padding: 1.1rem;
  border: 1px solid rgba(171, 75, 21, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.92), rgba(247, 239, 228, 0.9)),
    linear-gradient(90deg, rgba(171, 75, 21, 0.05), transparent);
  box-shadow: var(--shadow-sm);
}

.proof-items li {
  flex: none;
  justify-content: flex-start;
  background: rgba(255, 250, 244, 0.88);
}

.section-access .info-card {
  border-color: rgba(171, 75, 21, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.86), rgba(248, 240, 229, 0.94));
}

.faq-list {
  display: grid;
  gap: clamp(0.9rem, 3vw, var(--space-4));
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 242, 0.76);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 1rem 3.25rem 1rem 1rem;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(1.02rem, 0.98rem + 0.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid rgba(171, 75, 21, 0.18);
  border-radius: 50%;
  background: rgba(171, 75, 21, 0.08);
  color: var(--accent-strong);
  font-size: 1.15rem;
  line-height: 1.5rem;
  text-align: center;
  transform: translateY(-50%);
}

.faq-item summary:hover {
  color: var(--accent-strong);
}

.faq-item[open] {
  border-color: rgba(171, 75, 21, 0.24);
  background: rgba(255, 248, 237, 0.96);
  box-shadow: var(--shadow-md);
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(171, 75, 21, 0.14);
}

.faq-item[open] summary::after {
  content: '−';
  background: rgba(171, 75, 21, 0.14);
}

.faq-answer {
  padding: 0 var(--space-4) var(--space-4);
}

.faq-answer p {
  max-width: var(--measure-wide);
}

.section-final-cta {
  padding-top: clamp(2.75rem, 8vw, var(--space-7));
  padding-bottom: clamp(5rem, 9vw, 7.25rem);
}

.cta-panel {
  display: grid;
  gap: var(--space-4);
  justify-items: start;
  padding: clamp(1.8rem, 2vw, 2.5rem);
  border: 1px solid rgba(171, 75, 21, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.94), rgba(242, 228, 210, 0.96));
  box-shadow: var(--shadow-md);
}

.cta-panel p {
  max-width: 34rem;
}

@media (min-width: 48rem) {
  .section {
    padding-block: clamp(4.5rem, 8vw, var(--space-9));
    scroll-margin-top: 2.5rem;
  }

  .container {
    width: min(100% - 2.5rem, var(--container-max));
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-5);
  }

  .section-proof-strip .container {
    padding: 1.35rem;
  }

  .cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .cta-group .button {
    width: auto;
  }

  .proof-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-items li {
    justify-content: center;
  }

  .faq-item summary {
    padding: 1.2rem 3.7rem 1.2rem 1.2rem;
  }

  .faq-answer {
    padding: 0 var(--space-5) var(--space-5);
  }

  .cta-panel {
    justify-items: stretch;
  }

  .cta-panel .button {
    width: fit-content;
  }
}

@media (min-width: 72rem) {
  .section-hero {
    padding-top: 7.5rem;
  }

  .section {
    padding-block: var(--space-9);
    scroll-margin-top: 4rem;
  }

  .container {
    width: min(100% - 3rem, var(--container-max));
  }

  .section-header {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: end;
    column-gap: var(--space-6);
  }

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

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

  .hero-copy {
    max-width: 42rem;
    padding: 2.5rem;
  }
}
