:root {
  --navy: #0d253d;
  --navy-deep: #081b2d;
  --green: #3d5c3a;
  --green-dark: #1a3117;
  --field: #698a5b;
  --gold: #eba520;
  --teal: #188493;
  --cream: #f6f4ed;
  --cream-2: #eeece3;
  --white: #ffffff;
  --ink: #18262d;
  --muted: #65747a;
  --line: #d9ddd7;
  --max: 1260px;
  --shadow: 0 26px 70px rgba(13, 37, 61, .10);
}

* { box-sizing: border-box; }
html { text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  position: relative;
}
.page::before,
.page::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}
.page::before {
  width: 360px;
  height: 360px;
  top: 90px;
  right: -245px;
  border: 52px solid rgba(61, 92, 58, .08);
}
.page::after {
  width: 250px;
  height: 250px;
  left: -180px;
  bottom: 65px;
  background: rgba(235, 165, 32, .08);
}

.topline {
  background: var(--navy);
  color: #fff;
  border-bottom: 4px solid var(--gold);
}
.topline-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.topline-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.82);
}
.topline-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(235,165,32,.14);
}

.main {
  width: 100%;
  display: grid;
  place-items: center;
  padding: clamp(30px, 5vh, 64px) 20px;
}

.launch-card {
  width: min(100%, var(--max));
  min-height: min(690px, calc(100svh - 160px));
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.brand-column {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 72px);
  background: #fbfcfa;
  border-right: 1px solid var(--line);
}
.brand-column::before {
  content: "";
  position: absolute;
  width: 12px;
  top: 0;
  bottom: 0;
  left: 0;
  background: var(--green-dark);
}
.brand-logo {
  width: min(100%, 510px);
  height: auto;
  margin: 0 auto;
}
.brand-rule {
  width: min(100%, 360px);
  margin: 42px 0 22px;
  display: grid;
  grid-template-columns: 1.4fr .7fr .45fr;
  gap: 8px;
}
.brand-rule span { height: 4px; border-radius: 999px; }
.brand-rule span:nth-child(1) { background: var(--green); }
.brand-rule span:nth-child(2) { background: var(--gold); }
.brand-rule span:nth-child(3) { background: var(--teal); }
.brand-region {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.message-column {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--cream);
}
.message-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: clamp(44px, 5vw, 76px) clamp(42px, 6vw, 82px) 150px;
}
.launch-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #b8c6b6;
  border-radius: 999px;
  background: #f4f8f1;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.launch-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(61,92,58,.11);
}
.eyebrow {
  margin: 28px 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .96;
  letter-spacing: -.05em;
  font-weight: 700;
}
h1 em {
  color: var(--green-dark);
  font-style: normal;
}
.intro {
  max-width: 690px;
  margin: 26px 0 0;
  color: #4d6067;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
}
.focus-line {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.focus-line b { color: var(--gold); }
.closing {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #cfd5ce;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.closing-mark {
  width: 7px;
  height: 44px;
  border-radius: 999px;
  background: var(--gold);
  flex: 0 0 auto;
}
.closing strong { color: var(--navy); font-size: 16px; }
.closing p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }

.regional-art {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  overflow: hidden;
  pointer-events: none;
}
.regional-art svg {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 170px;
  preserve-aspect-ratio: none;
}
.sun {
  position: absolute;
  right: 54px;
  bottom: 70px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gold);
}
.field-back { fill: var(--field); }
.field-front { fill: var(--green-dark); }
.water { fill: var(--teal); }
.tree-trunk, .tree-limb { fill: var(--navy); }
.tree-canopy { fill: var(--green-dark); }
.moss path {
  fill: none;
  stroke: var(--green-dark);
  stroke-width: 4;
  stroke-linecap: round;
}

.footer { color: var(--muted); }
.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 54px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: env(safe-area-inset-bottom);
}
.footer p { margin: 0; font-size: 10px; font-weight: 800; letter-spacing: .10em; text-transform: uppercase; }
.footer p:first-child { color: var(--green-dark); }

@media (max-width: 980px) {
  .main { padding: 24px 16px; }
  .launch-card {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 26px;
  }
  .brand-column {
    padding: 34px 36px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .brand-column::before { width: 100%; height: 7px; right: 0; bottom: auto; }
  .brand-logo { width: min(100%, 440px); margin: 0; }
  .brand-rule { margin: 24px 0 14px; }
  .message-inner { padding: 38px 36px 145px; }
  .regional-art { height: 145px; }
  .regional-art svg { height: 145px; }
}

@media (max-width: 640px) {
  .topline-inner {
    width: min(calc(100% - 28px), var(--max));
    min-height: 46px;
    font-size: 9px;
  }
  .topline-inner > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .topline-status { white-space: nowrap; }
  .main { padding: 14px 12px 18px; }
  .launch-card { border-radius: 20px; }
  .brand-column { padding: 28px 24px 22px; }
  .brand-logo { width: 100%; }
  .brand-rule { width: 72%; margin: 20px 0 12px; }
  .brand-region { font-size: 12px; }
  .message-inner { padding: 30px 24px 126px; }
  .launch-badge { min-height: 31px; padding: 0 12px; font-size: 9px; }
  .eyebrow { margin-top: 24px; font-size: 10px; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  .intro { margin-top: 20px; font-size: 15px; }
  .focus-line { margin-top: 22px; gap: 8px 10px; font-size: 10px; }
  .closing { margin-top: 24px; padding-top: 20px; }
  .closing strong { font-size: 14px; }
  .regional-art, .regional-art svg { height: 122px; }
  .sun { right: 28px; bottom: 50px; width: 58px; height: 58px; }
  .footer-inner {
    min-height: 64px;
    width: calc(100% - 28px);
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    text-align: center;
  }
  .footer p { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
