:root {
  --bg: #083a37;
  --bg-soft: #0b605a;
  --bg-deep: #062c29;
  --surface: #ffffff;
  --surface-soft: #f5faf8;
  --surface-tint: #ebf6f2;
  --text: #102127;
  --muted: #5b6970;
  --line: #dbe7e2;
  --brand: #0b605a;
  --brand-dark: #084944;
  --brand-soft: #d9efe8;
  --accent: #ef7d32;
  --shadow: 0 20px 50px rgba(8, 43, 40, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(11,96,90,0.06), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(8, 73, 68, 0.08);
}
.nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}
.brand-badge {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand) 68%, var(--accent));
  box-shadow: 0 14px 30px rgba(11, 96, 90, 0.2);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--muted);
  font-size: 14px;
}
.nav-links a:hover { color: var(--brand); }

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.25s ease;
}
.button {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 16px 30px rgba(11, 96, 90, 0.16);
}
.button-secondary {
  color: var(--brand-dark);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(8, 73, 68, 0.14);
}
.button-ghost {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 34px;
  background:
    linear-gradient(rgba(8,73,68,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,73,68,0.05) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(11,96,90,0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(239,125,50,0.08), transparent 24%),
    linear-gradient(180deg, #fcfffe 0%, #f2f9f6 100%);
  background-size: 24px 24px, 24px 24px, auto, auto, auto;
}
.hero-grid,
.editorial-grid,
.feature-layout,
.panel-grid,
.story-grid,
.blog-preview-layout,
.faq-grid,
.blog-hero-wrap,
.blog-index-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.hero-copy { padding-top: 4px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(239,125,50,0.1);
  color: #b45309;
  border: 1px solid rgba(239,125,50,0.12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 16px 0 12px;
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.hero p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
}
.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.actions > a {
  width: 100%;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(8,73,68,0.1);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
}
.hero-stage {
  display: grid;
  gap: 14px;
}
.stage-panel,
.stage-note,
.stage-quote,
.editorial-box,
.feature-card,
.panel,
.story-card,
.blog-feature,
.blog-side-card,
.faq-card,
.article-card,
.note-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(8,73,68,0.1);
  box-shadow: var(--shadow);
}
.stage-panel,
.editorial-box,
.feature-card,
.panel,
.story-card,
.blog-feature,
.blog-side-card,
.faq-card,
.article-card,
.note-card {
  padding: 22px;
  border-radius: 26px;
}
.stage-panel {
  position: relative;
  overflow: hidden;
}
.stage-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.stage-note {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, var(--surface-tint));
}
.stage-quote {
  padding: 18px;
  border-radius: 22px;
  background: rgba(8, 73, 68, 0.96);
  color: rgba(255,255,255,0.92);
}
.stage-kicker,
.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 800;
}
.stage-list,
.feature-bullets,
.panel ul,
.article-card ul,
.faq-card ul {
  padding-left: 18px;
}
.stage-list li + li,
.feature-bullets li + li,
.panel li + li,
.faq-card li + li { margin-top: 8px; }
.stage-note strong,
.stage-quote strong,
.feature-card strong,
.story-card strong,
.blog-feature strong,
.faq-card strong { display: block; }
.stage-quote strong { color: #fff; }
.stage-note p,
.stage-quote p,
.editorial-box p,
.feature-card p,
.panel p,
.story-card p,
.blog-feature p,
.blog-side-card p,
.faq-card p,
.note-card p,
.article-card p,
.article-card li,
li {
  color: var(--muted);
}

.section {
  padding: 38px 0 8px;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}
.section-heading h2 {
  margin: 8px 0 10px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
}
.editorial-box h3,
.blog-feature h3 {
  margin: 8px 0 12px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.editorial-points,
.feature-stack,
.blog-side,
.blog-side-stack {
  display: grid;
  gap: 16px;
}
.editorial-point {
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(8,73,68,0.08);
}
.panel.highlight {
  background: linear-gradient(180deg, var(--brand-dark), var(--brand));
  color: rgba(255,255,255,0.92);
}
.panel.highlight p,
.panel.highlight li,
.panel.highlight h3,
.panel.highlight .section-kicker {
  color: inherit;
}
.panel.highlight .section-kicker { color: rgba(255,255,255,0.7); }
.read-more {
  color: var(--brand);
  font-weight: 700;
}

.cta {
  padding: 42px 0 64px;
}
.cta-box {
  padding: 24px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(239,125,50,0.22), transparent 24%),
    linear-gradient(135deg, var(--bg-deep), var(--bg-soft) 65%, #11786f 100%);
  box-shadow: 0 30px 60px rgba(8, 43, 40, 0.18);
}
.cta-box h2 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.cta-box p {
  color: rgba(255,255,255,0.82);
}
.footer {
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.blog-hero {
  padding: 54px 0 24px;
  background:
    linear-gradient(rgba(8,73,68,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,73,68,0.05) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
  background-size: 24px 24px, 24px 24px, auto;
}

.article {
  padding: 36px 0 64px;
  background: linear-gradient(180deg, #f8fcfb 0%, #ffffff 100%);
}
.article-shell {
  width: min(900px, calc(100% - 24px));
  margin: 0 auto;
}
.article-card h1 {
  margin: 12px 0 14px;
  font-size: 32px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.article-card h2 {
  margin-top: 28px;
  font-size: 22px;
  line-height: 1.15;
  color: var(--brand-dark);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.note {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--brand-soft);
  border: 1px dashed rgba(8,73,68,0.24);
  color: var(--brand-dark);
}

@media (min-width: 721px) {
  .container,
  .article-shell {
    width: min(1180px, calc(100% - 40px));
  }
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .nav-links {
    align-items: center;
    gap: 18px;
  }
  .hero {
    padding: 74px 0 48px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero p {
    font-size: 18px;
    max-width: 640px;
  }
  .actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .actions > a {
    width: auto;
  }
  .hero-meta {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stage-panel,
  .editorial-box,
  .feature-card,
  .panel,
  .story-card,
  .blog-feature,
  .blog-side-card,
  .faq-card,
  .article-card,
  .note-card {
    padding: 28px;
    border-radius: 30px;
  }
  .section {
    padding: 52px 0 12px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .cta-box h2 {
    font-size: 44px;
  }
  .article-card h1 {
    font-size: 48px;
  }
  .article-card h2 {
    font-size: 24px;
  }
}

@media (min-width: 981px) {
  .container,
  .article-shell {
    width: min(1180px, calc(100% - 48px));
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 32px;
    align-items: start;
  }
  .hero-stage {
    position: relative;
    display: block;
    min-height: 520px;
  }
  .stage-panel {
    padding: 30px;
    border-radius: 34px;
  }
  .stage-note {
    position: absolute;
    right: 0;
    bottom: 28px;
    width: 72%;
    z-index: 3;
  }
  .stage-quote {
    position: absolute;
    left: 0;
    bottom: 150px;
    width: 56%;
    z-index: 4;
  }
  .editorial-grid,
  .feature-layout,
  .panel-grid,
  .blog-preview-layout,
  .blog-hero-wrap,
  .blog-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
  }
  .story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .story-card:nth-child(2) { transform: translateY(18px); }
  .story-card:nth-child(3) { transform: translateY(-6px); }
}
