:root {
  --bg: #f4f6ef;
  --panel: #fbfcf8;
  --text: #1d2433;
  --muted: #4f5868;
  --line: #d9dfcf;
  --accent: #b96f2a;
  --accent-2: #1b6f7a;
  --shadow: 0 20px 40px rgba(18, 24, 33, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 5%, #f8e7d8 0%, transparent 28%), var(--bg);
  color: var(--text);
}

.background-glow {
  position: fixed;
  top: -120px;
  right: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(27, 111, 122, 0.2) 0%, rgba(27, 111, 122, 0) 72%);
  pointer-events: none;
  z-index: 0;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

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

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 20px 56px;
}

.hero {
  border: 1px solid var(--line);
  background: linear-gradient(140deg, #fbfcf8 0%, #f1f4eb 100%);
  border-radius: 28px;
  padding: 56px;
  box-shadow: var(--shadow);
  animation: reveal 0.7s ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  max-width: 17ch;
}

.hero-copy {
  max-width: 65ch;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(185, 111, 42, 0.3);
}

.button-ghost {
  color: var(--accent-2);
  border-color: rgba(27, 111, 122, 0.25);
  background: rgba(255, 255, 255, 0.6);
}

.panel {
  margin-top: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  animation: reveal 0.8s ease both;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
}

h3 {
  margin-top: 0;
  font-size: 1.12rem;
}

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

.steps {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  border: 1px solid #d2dac4;
  border-radius: 999px;
  padding: 8px 12px;
  background: #f7f9f2;
  color: #324159;
  font-size: 0.9rem;
}

.section-copy {
  margin-top: 0;
}

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

.card {
  background: #fff;
  border: 1px solid #dee5d4;
  border-radius: 16px;
  padding: 18px;
}

.founder p {
  margin: 0;
  max-width: 70ch;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid #d9e0cf;
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
}

summary {
  cursor: pointer;
  color: #2c3b54;
  font-weight: 700;
}

details p {
  margin: 10px 0 4px;
}

.site-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 40px;
  color: var(--muted);
}

.disclosure {
  color: #1f4f56;
  font-weight: 700;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero {
    padding: 32px 22px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  main {
    padding-top: 18px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .panel {
    padding: 20px;
  }

  .button {
    width: 100%;
  }
}
