:root {
  --ink: #0b1426;
  --ink-2: #1b2743;
  --paper: #faf8f3;
  --paper-2: #f3efe4;
  --card: #ffffff;
  --gold: #c9a55c;
  --gold-deep: #a8843e;
  --muted: #5a6478;
  --line: rgba(11, 20, 38, 0.1);
  --line-strong: rgba(11, 20, 38, 0.18);
  --success: #1d6d57;
  --shadow: 0 20px 50px -30px rgba(11, 20, 38, 0.28);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(201, 165, 92, 0.12), transparent 30%),
    linear-gradient(180deg, #fbf9f4 0%, #f3eee2 100%);
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(250, 248, 243, 0.9);
  border-bottom: 1px solid rgba(11, 20, 38, 0.08);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.05rem;
}

.brand__sub {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 20px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  box-shadow: var(--shadow);
}

.btn--secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line-strong);
}

.hero {
  padding: 72px 0 48px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero__content,
.hero__panel,
.section-card,
.timeline,
.cta-band,
.footer-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 20, 38, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: clamp(28px, 5vw, 54px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(201, 165, 92, 0.12);
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 12ch;
}

.hero__lede,
.section-copy p,
.card-copy,
.footer-copy,
li {
  color: var(--muted);
  font-size: 1rem;
}

.hero__lede {
  max-width: 62ch;
  margin: 22px 0 28px;
}

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

.hero__panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(11, 20, 38, 0.98), rgba(22, 34, 59, 0.95));
  color: #fff;
}

.hero__panel h2 {
  font-size: 1.45rem;
}

.hero__panel p,
.hero__panel li,
.hero__panel a {
  color: rgba(255, 255, 255, 0.8);
}

.hero__panel ul,
.detail-list,
.check-list,
.link-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero__panel li,
.detail-list li,
.check-list li,
.link-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}

.hero__panel li::before,
.detail-list li::before,
.check-list li::before,
.link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

.hero__meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

main section {
  padding: 0 0 26px;
}

.section-card,
.timeline,
.cta-band,
.footer-card {
  padding: clamp(24px, 4vw, 38px);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  max-width: 16ch;
}

.kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.feature-card,
.stat-card,
.mini-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(250, 248, 243, 0.85);
  padding: 22px;
}

.feature-card h3,
.stat-card h3,
.mini-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.span-4 {
  grid-column: span 4;
}

.span-6 {
  grid-column: span 6;
}

.span-8 {
  grid-column: span 8;
}

.span-12 {
  grid-column: span 12;
}

.check-list li {
  margin-bottom: 10px;
}

.note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(29, 109, 87, 0.08);
  color: var(--success);
  font-weight: 700;
  font-size: 0.88rem;
}

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

.timeline-step {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: rgba(243, 239, 228, 0.95);
  border: 1px solid var(--line);
}

.timeline-step strong {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  background:
    linear-gradient(135deg, rgba(11, 20, 38, 0.98), rgba(27, 39, 67, 0.94));
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0;
  max-width: 58ch;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-band .btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-card {
  margin: 8px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 22px;
}

.footer-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.footer-copy {
  margin: 0;
}

.small {
  font-size: 0.92rem;
  color: var(--muted);
}

.muted-link {
  color: var(--gold-deep);
  font-weight: 700;
}

.muted-link:hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero__grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .header-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 10px 16px;
  }

  .span-4,
  .span-6,
  .span-8 {
    grid-column: span 12;
  }

  .hero {
    padding-top: 42px;
  }

  .hero__actions,
  .cta-band__actions {
    width: 100%;
  }

  .hero__actions .btn,
  .cta-band__actions .btn {
    width: 100%;
  }
}
