:root {
  --primary: #ff6b4a;
  --primary-dark: #e85a3a;
  --secondary: #00a699;
  --accent: #0d6efd;
  --gradient: linear-gradient(135deg, #ff6b4a 0%, #ffb347 35%, #4ecdc4 65%, #00a699 100%);
  --text: #222222;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --bg-subtle: #fafafa;
  --bg-cream: #fff9f8;
  --border: #ececec;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 14px 36px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a {
  color: inherit;
}

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

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.logo span {
  font-size: 21px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

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

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  color: #fff !important;
  background: var(--primary);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
}

.hero {
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(255, 107, 74, 0.12), transparent 30%),
              radial-gradient(circle at top right, rgba(0, 166, 153, 0.1), transparent 28%),
              var(--bg-cream);
  padding: 68px 0 56px;
}

.breadcrumb {
  font-size: 13px;
  color: #8b8b8b;
  margin-bottom: 14px;
}

.breadcrumb a {
  color: #6d6d6d;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 107, 74, 0.1);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 760px;
}

.hero .sublead {
  margin-top: 14px;
  max-width: 760px;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 107, 74, 0.08);
  color: var(--primary-dark);
  border-color: rgba(255, 107, 74, 0.25);
}

.btn-ghost {
  color: var(--text);
  background: #fff;
  border-color: var(--border);
}

.main {
  padding: 56px 0 72px;
}

.section {
  margin-bottom: 48px;
}

.section h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.section p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 16px;
}

.section p:last-child {
  margin-bottom: 0;
}

.stat-grid,
.grid {
  display: grid;
  gap: 18px;
}

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

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

.card,
.stat-card,
.callout,
.download-card,
.source-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.card,
.source-card {
  padding: 20px;
}

.stat-card {
  padding: 22px;
}

.stat-card .value {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.stat-card .label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-card .detail {
  color: var(--muted);
  font-size: 14px;
}

.checklist,
.bullet-list {
  padding-left: 20px;
  color: var(--muted);
}

.checklist li,
.bullet-list li {
  margin: 10px 0;
}

.note {
  border-left: 4px solid var(--secondary);
  background: rgba(0, 166, 153, 0.06);
  padding: 18px 20px;
  border-radius: 0 16px 16px 0;
  color: var(--text);
}

.note strong {
  color: var(--text);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

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

.data-table th {
  background: var(--bg-subtle);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.chart {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.chart-row + .chart-row {
  margin-top: 14px;
}

.chart-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.chart-track {
  height: 14px;
  border-radius: 999px;
  background: #f1f1f1;
  overflow: hidden;
}

.chart-bar {
  height: 100%;
  border-radius: 999px;
  background: var(--gradient);
}

.sources-list {
  display: grid;
  gap: 14px;
}

.source-card a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.source-card a:hover {
  text-decoration: underline;
}

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

.download-card {
  padding: 20px;
}

.download-card p {
  font-size: 14px;
  margin-bottom: 14px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.inline-links a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.inline-links a:hover {
  text-decoration: underline;
}

.cta {
  border-radius: 24px;
  background: var(--gradient);
  color: #fff;
  padding: 36px 26px;
}

.cta h2 {
  margin-bottom: 8px;
}

.cta p {
  color: rgba(255, 255, 255, 0.92);
}

.footer {
  background: #222;
  color: rgba(255, 255, 255, 0.76);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .grid.two,
  .grid.three,
  .stat-grid.two,
  .stat-grid.three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .container {
    width: min(1120px, calc(100% - 32px));
  }

  .hero {
    padding: 54px 0 44px;
  }
}
