:root {
  --bg: #f5ede2;
  --paper: rgba(255, 250, 243, 0.84);
  --ink: #171311;
  --muted: #625954;
  --line: rgba(23, 19, 17, 0.1);
  --accent: #bb5a2b;
  --accent-2: #86401d;
  --logo-blue: #1e90ff;
  --shadow: 0 20px 60px rgba(61, 43, 31, 0.12);
  --radius: 26px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(187, 90, 43, 0.13), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(72, 100, 118, 0.14), transparent 24%),
    linear-gradient(180deg, #f5ede2, #f8f3eb 35%, #f1e5d6);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 19, 17, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 19, 17, 0.02) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  z-index: -1;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  color: #544b46;
  font: 500 0.72rem "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(187, 90, 43, 0.14);
}

.btn,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn {
  background: linear-gradient(135deg, var(--accent), #ce7a43);
  color: #fff8f1;
  box-shadow: 0 14px 30px rgba(187, 90, 43, 0.24);
}

.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.72);
}

.btn:hover,
.ghost:hover { transform: translateY(-2px); }

header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(245, 237, 226, 0.8);
  border-bottom: 1px solid rgba(23, 19, 17, 0.05);
}

.topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font: 700 1rem "Space Grotesk", sans-serif;
}

.brand-logo {
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
}

.brand-logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-text {
  letter-spacing: -0.03em;
}

.brand-text span { color: var(--logo-blue); }

.top-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #524944;
  font-weight: 700;
}

main { padding: 2rem 0 3rem; }

.hero,
.panel,
.cta-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.hero-copy h1 {
  margin: 1rem 0 0.9rem;
  font: 700 clamp(2.2rem, 5vw, 4.4rem) / 0.96 "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}

.hero-copy p,
.content p,
.faq-card p,
.panel li,
.stat p {
  color: var(--muted);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid var(--line);
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual img {
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-badge strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Space Grotesk", sans-serif;
}

.grid,
.faq-grid,
.related-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid { grid-template-columns: repeat(3, 1fr); }
.related-grid { grid-template-columns: repeat(3, 1fr); }

.panel,
.faq-card,
.related-card,
.stat {
  padding: 1.3rem;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel h2,
.faq h2,
.related h2 {
  margin: 0 0 0.9rem;
  font: 700 clamp(1.8rem, 4vw, 2.8rem) / 1 "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.panel h3,
.faq-card h3,
.related-card h3,
.stat h3 {
  margin: 0 0 0.5rem;
  font: 700 1.15rem "Space Grotesk", sans-serif;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1rem;
  margin-top: 1rem;
}

.panel ul {
  margin: 0;
  padding-left: 1.2rem;
}

.panel li + li {
  margin-top: 0.6rem;
}

.cta-panel {
  margin-top: 1rem;
  padding: 1.4rem;
}

.cta-panel h2 {
  margin: 0 0 0.5rem;
  font: 700 1.7rem "Space Grotesk", sans-serif;
}

.muted-link {
  color: var(--accent-2);
  font-weight: 800;
}

.muted-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

footer {
  padding: 0 0 2.6rem;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: #544b46;
  font-size: 0.94rem;
}

@media (max-width: 960px) {
  .hero,
  .split,
  .grid,
  .faq-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .topbar,
  .foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-links {
    flex-wrap: wrap;
  }
}
