:root {
  color-scheme: light;
  --ink: #151719;
  --muted: #5a616b;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --line: #d8d2c4;
  --green: #197c62;
  --blue: #285ea8;
  --amber: #b86620;
  --coral: #b84a3a;
  --shadow: 0 20px 60px rgba(24, 25, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 245, 239, 0.93);
  border-bottom: 1px solid rgba(21, 23, 25, 0.12);
  backdrop-filter: blur(14px);
}

.brand-link {
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

nav a,
.text-link {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: clamp(52px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background-image: url("/assets/forecast-console.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 245, 239, 0.72);
}

.hero-copy {
  position: relative;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(3.25rem, 8vw, 7.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 760px;
  color: #2a2e31;
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.55;
}

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

.primary-action,
.secondary-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

.primary-action {
  background: var(--ink);
  color: #fff;
}

.secondary-action {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border: 1px solid rgba(21, 23, 25, 0.16);
}

.status-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-band > div {
  min-height: 92px;
  padding: 20px clamp(18px, 4vw, 44px);
  background: var(--surface);
}

.label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section.muted {
  background: #ece8dc;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.text-grid,
.plan-grid,
.access-grid {
  display: grid;
  gap: 16px;
}

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

.text-grid p,
.access-grid article {
  padding-top: 18px;
  border-top: 2px solid rgba(25, 124, 98, 0.35);
  color: var(--muted);
  line-height: 1.65;
}

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

.plan-card {
  min-height: 250px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid rgba(21, 23, 25, 0.12);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(24, 25, 26, 0.06);
}

.plan-card.featured {
  border-color: rgba(40, 94, 168, 0.45);
  box-shadow: var(--shadow);
}

.plan-card h3,
.access-grid h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.price {
  color: var(--blue);
  font-size: 1.65rem;
  font-weight: 850;
}

.plan-card p:not(.price),
.access-grid p,
.notice,
.document p,
.site-footer p {
  color: var(--muted);
  line-height: 1.62;
}

.notice {
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(184, 102, 32, 0.12);
  border: 1px solid rgba(184, 102, 32, 0.24);
  border-radius: 8px;
  font-weight: 650;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.document,
.simple-page {
  max-width: 920px;
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.document section {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.simple-page h1,
.document h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

@media (max-width: 980px) {
  .status-band,
  .text-grid,
  .plan-grid,
  .access-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 68vh;
  }
}

@media (max-width: 640px) {
  .site-bar,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-band,
  .text-grid,
  .plan-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.6rem);
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }
}
