:root {
  color-scheme: light;
  --ink: #112033;
  --muted: #61748a;
  --line: rgba(17, 32, 51, 0.12);
  --line-strong: rgba(17, 32, 51, 0.22);
  --panel: rgba(255, 252, 247, 0.92);
  --panel-alt: rgba(244, 237, 226, 0.86);
  --accent: #0e5f54;
  --accent-strong: #0a3f39;
  --highlight: #b98546;
  --bg: radial-gradient(circle at top, rgba(185, 133, 70, 0.18), transparent 26%),
    linear-gradient(180deg, #f4eee5 0%, #e5ecf3 40%, #dfe6ee 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Aptos", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  position: relative;
}

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

.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 28px;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 38%),
    radial-gradient(circle at right top, rgba(14, 95, 84, 0.12), transparent 28%);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  padding-top: 32px;
}

.brand-block {
  max-width: 700px;
}

.brand-block h1,
.hero h2,
.card h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.03em;
}

.brand-block h1 {
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  line-height: 0.98;
}

.brand-copy {
  margin: 14px 0 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 600;
}

.site-nav a,
.footer-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.button-link:hover,
.search button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

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

.search {
  display: flex;
  gap: 12px;
}

.site-main {
  padding-top: 8px;
  padding-bottom: 28px;
}

.launch-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(185, 133, 70, 0.28);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 248, 236, 0.92), rgba(247, 240, 225, 0.82));
  box-shadow: 0 10px 28px rgba(17, 32, 51, 0.06);
}

.launch-banner-copy p:last-child {
  margin: 0;
  color: var(--ink);
}

.search-panel {
  align-items: end;
  padding: 18px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 36px rgba(17, 32, 51, 0.08);
}

.search-panel > div {
  flex: 1;
}

.search-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.search input,
.search button {
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.search input {
  flex: 1;
  background: rgba(255, 255, 255, 0.82);
}

.search button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: white;
  cursor: pointer;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.status-strip {
  margin-top: 8px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 18px 44px rgba(17, 32, 51, 0.08);
  backdrop-filter: blur(14px);
}

.card h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, 0.9fr);
  gap: 24px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.98) 0%, rgba(245, 239, 230, 0.84) 100%);
}

.hero-lead {
  max-width: 60ch;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--muted);
}

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

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(17, 32, 51, 0.96), rgba(22, 39, 61, 0.92));
  color: #eef6ff;
}

.status-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: rgba(238, 246, 255, 0.72);
}

.status-badge {
  display: inline-flex;
  margin: 10px 0 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(185, 133, 70, 0.18);
  color: #ffe5bf;
  border: 1px solid rgba(255, 229, 191, 0.16);
  font-weight: 700;
}

.status-note {
  margin: 0 0 18px;
  color: rgba(238, 246, 255, 0.78);
  line-height: 1.6;
}

.hero-metrics {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-metrics div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics dt {
  color: rgba(238, 246, 255, 0.72);
}

.hero-metrics dd {
  margin: 0;
  font-weight: 700;
}

.stat-card {
  background: rgba(255, 255, 255, 0.72);
}

.stat-label {
  margin: 0 0 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.stat-value {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
}

.stage-inline {
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  line-height: 1.3;
}

.compact-hash {
  font-size: 0.88rem;
}

.split-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bullet-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullet-list li + li {
  margin-top: 10px;
}

.pill-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.86rem;
}

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

.download-grid {
  align-items: stretch;
}

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

.resource-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.asset-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.asset-actions {
  margin-top: auto;
  padding-top: 8px;
}

.audience-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.audience-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 239, 230, 0.72));
}

.callout-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(234, 241, 248, 0.74));
}

.callout-card .button-link {
  margin-top: 12px;
}

.resource-card p {
  margin-top: 0;
}

.resource-title {
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 14px;
}

.flat-steps {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.flat-steps li + li {
  margin-top: 10px;
}

.details {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px 16px;
}

.details dt {
  font-weight: 700;
}

.details dd {
  margin: 0;
}

.hash {
  word-break: break-all;
  font-family: Consolas, "Courier New", monospace;
}

.mono {
  word-break: break-word;
  font-family: Consolas, "Courier New", monospace;
}

.muted,
small {
  color: var(--muted);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  overflow: hidden;
}

th,
td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 32px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .site-header,
  .search,
  .launch-banner,
  .details,
  .hero-card,
  .site-footer,
  .section-heading {
    display: block;
  }

  .site-nav,
  .hero-actions,
  .footer-links {
    margin-top: 16px;
  }

  .search button {
    margin-top: 10px;
    width: 100%;
  }

  .details dd {
    margin-bottom: 12px;
  }
}
