:root {
  --bg: #f4efe6;
  --surface: #fffdf8;
  --surface-muted: #efe6d8;
  --surface-strong: #1d2a2f;
  --surface-accent: #d9e5e3;
  --text: #162126;
  --text-muted: #556067;
  --text-soft: #6f7a81;
  --border: rgba(22, 33, 38, 0.12);
  --border-strong: rgba(22, 33, 38, 0.24);
  --brand: #0d5c63;
  --brand-dark: #093f44;
  --brand-soft: #d9ecea;
  --ok: #1f6b4f;
  --warn: #8a5a14;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 24px 60px rgba(13, 19, 23, 0.12);
  --shadow-md: 0 10px 28px rgba(13, 19, 23, 0.08);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(13, 92, 99, 0.08), transparent 32%),
    linear-gradient(180deg, #faf6ef 0%, var(--bg) 45%, #f8f2e8 100%);
  line-height: 1.65;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--brand-dark);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: "Syne", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, #78a3a0 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-subtitle {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

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

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  margin-left: 8px;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.button {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(13, 92, 99, 0.18);
}

.button:hover {
  background: var(--brand-dark);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--border);
  color: var(--text);
}

.button-secondary:hover {
  background: #fff;
  border-color: var(--border-strong);
}

.button-ghost {
  color: var(--brand);
  border-color: rgba(13, 92, 99, 0.18);
  background: rgba(217, 236, 234, 0.45);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217, 236, 234, 0.75);
  color: var(--brand-dark);
  border: 1px solid rgba(13, 92, 99, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero,
.page-hero {
  padding: 72px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: start;
}

.hero-copy h1,
.page-hero h1,
h2,
h3,
h4 {
  font-family: "Syne", "Segoe UI", sans-serif;
  color: var(--text);
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin: 18px 0 18px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.3vw, 3.7rem);
  margin: 16px 0 14px;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.micro-card,
.card,
.stat-card,
.panel,
.checklist,
.faq-item,
.timeline-card,
.resource-card,
.legal-card,
.contact-card,
.tier-card {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.micro-card {
  padding: 18px;
}

.micro-card strong,
.card strong,
.stat-card strong,
.timeline-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 6px;
}

.micro-card span,
.card p,
.stat-card p,
.timeline-card p,
.faq-item p,
.resource-card p,
.legal-card p,
.contact-card p,
.tier-card p,
.page-hero p,
.section-copy p,
li,
dd {
  color: var(--text-muted);
}

.hero-panel {
  padding: 26px;
  background: linear-gradient(180deg, rgba(29, 42, 47, 0.98) 0%, rgba(16, 26, 31, 0.96) 100%);
  color: #ecf0f1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-panel h2,
.hero-panel h3,
.hero-panel strong,
.hero-panel li,
.hero-panel p {
  color: #ecf0f1;
}

.panel-label {
  display: inline-block;
  color: #b7cbc9;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

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

.hero-list,
.check-list,
.footer-links ul,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-list li,
.check-list li,
.plain-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}

.hero-list li::before,
.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #7cc7ba;
}

.section {
  padding: 34px 0 66px;
}

.section-header {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  max-width: 760px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

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

.grid-2,
.grid-3,
.grid-4,
.roles-grid,
.faq-grid,
.tiers-grid,
.resources-grid,
.contact-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

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

.grid-3,
.roles-grid,
.faq-grid,
.tiers-grid,
.resources-grid,
.contact-grid,
.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.stat-card,
.faq-item,
.timeline-card,
.resource-card,
.legal-card,
.contact-card,
.tier-card {
  padding: 24px;
}

.card h3,
.faq-item h3,
.resource-card h3,
.legal-card h3,
.contact-card h3,
.tier-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.card .kicker,
.tier-kicker,
.resource-tag,
.legal-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: var(--brand-dark);
}

.checklist {
  padding: 24px;
}

.checklist h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-step {
  font-family: "Syne", "Segoe UI", sans-serif;
  font-size: 1.6rem;
  color: var(--brand);
}

.band {
  background: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(22, 33, 38, 0.08);
  border-bottom: 1px solid rgba(22, 33, 38, 0.08);
}

.quote-band {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(217, 229, 227, 0.78) 0%, rgba(255, 253, 248, 0.88) 100%);
  border: 1px solid rgba(13, 92, 99, 0.12);
}

.quote-band p {
  margin: 0;
  font-size: 1.05rem;
}

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

.stat-card {
  min-height: 160px;
}

.stat-value {
  display: block;
  margin-bottom: 10px;
  font-family: "Syne", "Segoe UI", sans-serif;
  font-size: 2rem;
  color: var(--brand);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

th {
  background: rgba(217, 236, 234, 0.72);
  color: var(--text);
  font-size: 0.9rem;
}

td {
  color: var(--text-muted);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(13, 92, 99, 0.18);
  border-color: rgba(13, 92, 99, 0.38);
}

.note {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.site-footer {
  padding: 54px 0 32px;
  background: #182227;
  color: rgba(244, 239, 230, 0.88);
  margin-top: 36px;
}

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

.site-footer .brand,
.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(244, 239, 230, 0.88);
}

.site-footer .brand-subtitle {
  color: rgba(244, 239, 230, 0.64);
}

.footer-links h4 {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
}

.muted {
  color: var(--text-soft);
}

@media (max-width: 1080px) {
  .hero-grid,
  .grid-4,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .roles-grid,
  .faq-grid,
  .tiers-grid,
  .resources-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

  .nav-cta {
    margin-left: 0;
  }

  .hero,
  .page-hero,
  .section {
    padding-top: 44px;
  }

  .hero-grid,
  .hero-note,
  .grid-2,
  .grid-3,
  .grid-4,
  .roles-grid,
  .faq-grid,
  .tiers-grid,
  .resources-grid,
  .contact-grid,
  .stats-grid,
  .footer-grid,
  .timeline-card {
    grid-template-columns: 1fr;
  }

  .timeline-card {
    gap: 10px;
  }

  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }
}
