:root {
  --bg-ink: #101615;
  --bg-moss: #163228;
  --bg-sand: #efe7d9;
  --accent: #f3a742;
  --accent-dark: #ca7b14;
  --text-ink: #0f1716;
  --text-muted: rgba(15, 23, 22, 0.7);
  --card: #f6f1e6;
  --stroke: rgba(15, 23, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--text-ink);
  background: var(--bg-sand);
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(243, 167, 66, 0.35), transparent 60%),
    radial-gradient(800px 600px at 85% 0%, rgba(22, 50, 40, 0.25), transparent 60%),
    linear-gradient(180deg, #f5ecdd 0%, #f0e5d4 45%, #efe7d9 100%);
  z-index: -2;
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      45deg,
      rgba(16, 22, 21, 0.035) 0,
      rgba(16, 22, 21, 0.035) 1px,
      transparent 1px,
      transparent 8px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(16, 22, 21, 0.03) 0,
      rgba(16, 22, 21, 0.03) 1px,
      transparent 1px,
      transparent 12px
    );
  mix-blend-mode: multiply;
  opacity: 0.4;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 7vw 10px;
  position: sticky;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(239, 231, 217, 0.95) 0%,
    rgba(239, 231, 217, 0.65) 100%
  );
  backdrop-filter: blur(12px);
  z-index: 5;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 22px;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: var(--text-ink);
  font-weight: 500;
  font-size: 14px;
}

.main {
  padding: 40px 7vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: 60px 0 40px;
  animation: fadeUp 0.8s ease-out both;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4vw, 56px);
  margin: 0 0 18px;
  line-height: 1.05;
}

.accent {
  color: var(--accent-dark);
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 26px;
  color: var(--text-muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
}

.cta-primary {
  background: var(--bg-ink);
  color: #fff;
  box-shadow: 0 10px 25px rgba(16, 22, 21, 0.15);
}

.cta-outline {
  border: 1px solid var(--stroke);
  color: var(--text-ink);
}

.cta-ghost {
  border: 1px dashed rgba(16, 22, 21, 0.25);
  color: var(--text-ink);
}

.micro {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(16, 22, 21, 0.12);
  animation: floatIn 1s ease-out both;
}

.card-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(16, 22, 21, 0.08);
  font-size: 12px;
  font-weight: 600;
}

.card-title {
  font-family: "Fraunces", serif;
  font-size: 22px;
  margin: 16px 0 10px;
}

.card-body {
  font-size: 15px;
  line-height: 1.6;
}

.card-body .arrow {
  padding: 0 8px;
  font-weight: 700;
}

.card-footer {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

.section {
  padding: 60px 0 20px;
  animation: fadeUp 0.8s ease-out both;
}

.section h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 18px;
}

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

.tile {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 20px;
  min-height: 140px;
}

.tile h3 {
  margin: 0 0 10px;
}

.tile p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: 28px;
  align-items: center;
}

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

.pill-list span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(22, 50, 40, 0.12);
  font-weight: 600;
  font-size: 13px;
}

.status {
  display: flex;
  justify-content: center;
}

.status-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--stroke);
  padding: 32px;
  max-width: 560px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(16, 22, 21, 0.12);
}

.fineprint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 30px 7vw 50px;
  font-size: 13px;
  color: var(--text-muted);
}

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px;
  }

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

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

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    gap: 10px;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
