:root {
  --bg: #f1ebdf;
  --bg-accent: #e6d0b2;
  --panel: rgba(255, 251, 245, 0.94);
  --panel-strong: #fffaf0;
  --panel-tint: rgba(255, 244, 228, 0.9);
  --text: #1d1b18;
  --muted: #645c54;
  --border: rgba(50, 40, 31, 0.12);
  --accent: #af4f2f;
  --accent-deep: #6d2716;
  --accent-soft: rgba(175, 79, 47, 0.12);
  --shadow: 0 24px 60px rgba(67, 38, 18, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(175, 79, 47, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(33, 107, 85, 0.1), transparent 26%),
    linear-gradient(180deg, #f7f2e8 0%, #ecdfcf 100%);
}

a {
  color: inherit;
}

code {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92em;
  overflow-wrap: anywhere;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.4rem 0 4rem;
}

.page-shell--narrow {
  width: min(900px, calc(100% - 2rem));
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(240, 227, 208, 0.9)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -28% auto;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(175, 79, 47, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  align-items: end;
}

.hero-copy-block,
.hero-proof,
.spotlight > * {
  min-width: 0;
}

.hero--compact {
  padding-bottom: 2.4rem;
}

.eyebrow,
.panel-label {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.hero h1,
.panel h2 {
  margin: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 8.5ch;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-copy,
.panel-copy,
.detail-list dd,
.feature-list li,
.step-list li {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.02rem;
}

.hero-copy {
  max-width: 58ch;
  margin: 1.2rem 0 0;
}

.hero-note {
  margin: 0.85rem 0 0;
  font-size: 0.94rem;
  color: var(--accent-deep);
  font-weight: 600;
}

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

.hero-proof {
  padding: 1.35rem;
  border: 1px solid rgba(109, 39, 22, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(248, 236, 217, 0.92)),
    var(--panel-tint);
  box-shadow: 0 14px 34px rgba(67, 38, 18, 0.08);
}

.hero-proof-address {
  margin: 0;
  font-size: clamp(1.5rem, 2.7vw, 2.45rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.hero-proof-copy {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-proof-stats {
  display: grid;
  gap: 0.75rem;
  margin: 1.15rem 0 0;
}

.hero-proof-stats div {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.95);
  border: 1px solid rgba(109, 39, 22, 0.08);
}

.hero-proof-stats dt {
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-deep);
}

.hero-proof-stats dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-action {
  background: var(--accent);
  color: #fff7ef;
  box-shadow: 0 10px 26px rgba(109, 39, 22, 0.18);
}

.secondary-action {
  border-color: var(--border);
  background: rgba(255, 250, 240, 0.8);
}

.primary-action:hover,
.secondary-action:hover,
.text-link:hover {
  transform: translateY(-1px);
}

main {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.panel {
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.spotlight {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.95fr);
  align-items: center;
}

.spotlight h2 {
  font-size: clamp(1.6rem, 4vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.stat-grid,
.two-column,
.status-layout {
  display: grid;
  gap: 1rem;
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-grid div,
.detail-list div {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.92);
}

.stat-grid dt,
.detail-list dt {
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
}

.stat-grid dd,
.detail-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

.step-list,
.feature-list {
  margin: 0;
  padding-left: 1.15rem;
}

.status-banner {
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(175, 79, 47, 0.08), rgba(33, 107, 85, 0.1)),
    var(--panel);
}

.text-link {
  font-weight: 700;
  color: var(--accent-deep);
  text-decoration: none;
}

.status-layout {
  margin-top: 1rem;
}

[data-copy][data-copied="true"] {
  background: #216b55;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
    padding-top: 1rem;
  }

  .hero,
  .panel {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .hero-layout,
  .spotlight,
  .two-column,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .hero-proof {
    padding: 1.1rem;
  }
}
