:root {
  --bg-primary: #ede0cf;
  --bg-secondary: #e8d9c4;
  --accent: #e8563a;
  --accent-hover: #c94528;
  --text-primary: #1a1a18;
  --text-secondary: #6b6460;
  --text-muted: #9b908a;
  --white: #fdfaf6;
  --border: rgba(26, 26, 24, 0.12);
  --dark: #191815;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Lora", serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

main {
  overflow: clip;
}

.container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-lg {
  padding: clamp(6rem, 10vw, 9rem) 0;
}

.bg-secondary {
  background: var(--bg-secondary);
}

.bg-accent {
  background: var(--accent);
  color: var(--white);
}

.bg-dark {
  background: var(--dark);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.2rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1.15rem;
  font-family: "Playfair Display", serif;
  line-height: 1.06;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 3.65rem);
}

h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.95rem);
}

p {
  color: var(--text-secondary);
  margin: 0 0 1.15rem;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

.accent-italic {
  color: var(--accent);
  font-style: italic;
  text-decoration: underline wavy var(--accent);
  text-underline-offset: 0.18em;
}

.two-col {
  display: grid;
  gap: 2rem;
}

.three-col {
  display: grid;
  gap: 1.25rem;
}

.four-col {
  display: grid;
  gap: 1.25rem;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 8.8rem 0 3.8rem;
}

.hero-visual {
  width: min(510px, 96%);
  margin-left: auto;
  animation: float-butterfly 4s ease-in-out infinite;
  opacity: 0.94;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  margin-top: 1.2rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
}

.icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0.8rem;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.9rem, 6.4vw, 4.5rem);
  line-height: 0.96;
}

.stat-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline {
  border-left: 1px solid var(--border);
  margin-left: 0.2rem;
  padding-left: 1.3rem;
  display: grid;
  gap: 1.4rem;
}

.timeline-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.faq-item {
  border: 1px solid var(--border);
  padding: 1rem 1.15rem;
  background: var(--bg-secondary);
}

.faq-item summary {
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.faq-item p {
  margin-top: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.bar-row {
  display: grid;
  grid-template-columns: 100px 1fr 50px;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.5rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.bar {
  height: 12px;
  background: rgba(232, 86, 58, 0.2);
  position: relative;
}

.bar > span {
  position: absolute;
  inset: 0;
  background: var(--accent);
}

@keyframes float-butterfly {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .three-col {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.45rem;
  }

  .four-col {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
}

@media (min-width: 1280px) {
  .two-col {
    gap: 4rem;
  }
}
