:root {
  color-scheme: light;
  --bg: #f6efe6;
  --bg-deep: #efe2cf;
  --ink: #1c1a16;
  --muted: #5f564a;
  --accent: #e07a3f;
  --accent-deep: #b24d23;
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.92);
  --stroke: rgba(28, 26, 22, 0.12);
  --shadow: 0 25px 60px rgba(28, 26, 22, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, #fff7ee 0%, var(--bg) 45%, var(--bg-deep) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 40px;
  overflow-x: hidden;
}

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

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.65;
  z-index: 0;
}

.orb-a {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(224, 122, 63, 0.55), rgba(224, 122, 63, 0));
  top: -60px;
  left: -40px;
}

.orb-b {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(66, 92, 81, 0.35), rgba(66, 92, 81, 0));
  bottom: -120px;
  right: -80px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(28, 26, 22, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 26, 22, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.7), transparent 65%);
  z-index: 0;
}

.site-header {
  z-index: 1;
  width: min(1100px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 6px 26px;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
}

.lang-btn.is-active {
  background: var(--ink);
  color: #fff;
}

.hero {
  z-index: 1;
  max-width: 900px;
  text-align: center;
  margin-bottom: 36px;
  animation: rise 0.8s ease-out;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero-copy {
  margin: 0 auto 16px;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ghost {
  border: 1px solid var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.section-header {
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  font-family: "Fraunces", serif;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card {
  background: var(--card-strong);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--stroke);
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.guide,
.insights,
.policy-callout {
  z-index: 1;
  width: min(1100px, 100%);
  margin: 24px 0 36px;
}

.panel {
  z-index: 1;
  width: min(1100px, 100%);
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  animation: rise 0.9s ease-out;
}

.question {
  background: var(--card-strong);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--stroke);
}

.q-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.question h2 {
  font-size: 1.1rem;
  margin: 0 0 16px;
}

.options {
  display: grid;
  gap: 10px;
}

.option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.option input {
  accent-color: var(--accent);
}

.option:hover {
  border-color: rgba(28, 26, 22, 0.2);
  background: rgba(224, 122, 63, 0.08);
}

.cta {
  margin-top: 18px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  box-shadow: 0 14px 24px rgba(224, 122, 63, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 30px rgba(224, 122, 63, 0.35);
}

.results {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.result-header {
  background: #14110d;
  color: #fff;
  border-radius: 20px;
  padding: 18px 20px;
}

.result-title {
  margin: 0 0 6px;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.result-list {
  display: grid;
  gap: 14px;
}

.idea-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.idea-card h4 {
  margin: 0;
  font-size: 1.05rem;
}

.idea-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.idea-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.tag {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(224, 122, 63, 0.12);
  color: var(--accent-deep);
}

.next-steps {
  background: var(--card-strong);
  border-radius: 18px;
  border: 1px dashed rgba(28, 26, 22, 0.2);
  padding: 16px 18px;
}

.next-steps h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.next-steps ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

.policy-callout {
  background: var(--card-strong);
  border-radius: 20px;
  border: 1px solid var(--stroke);
  padding: 24px;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  font-weight: 600;
}

.policy-links a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(28, 26, 22, 0.2);
}

.policy-page {
  z-index: 1;
  width: min(900px, 100%);
  background: var(--card);
  border-radius: 24px;
  border: 1px solid var(--stroke);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.policy-page h1 {
  margin-top: 0;
  font-family: "Fraunces", serif;
}

.policy-page h2 {
  margin: 24px 0 12px;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
  line-height: 1.6;
}

.policy-page ul {
  padding-left: 20px;
}

.footer {
  z-index: 1;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  body {
    padding: 24px 16px 32px;
  }

  .panel {
    padding: 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
