:root {
  --blue: #003b82;
  --blue-dark: #06285a;
  --green: #188345;
  --green-dark: #0f6535;
  --cream: #fbf8ef;
  --white: #ffffff;
  --ink: #102033;
  --muted: #526173;
  --line: rgba(0, 59, 130, 0.14);
  --shadow: 0 24px 70px rgba(6, 40, 90, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(24, 131, 69, 0.14), transparent 28rem),
    radial-gradient(circle at 85% 8%, rgba(0, 59, 130, 0.12), transparent 30rem),
    var(--cream);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(251, 248, 239, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--blue-dark); font-family: "League Spartan", sans-serif; font-weight: 900; font-size: 1.2rem; text-transform: uppercase; letter-spacing: .04em; }
.brand img { width: 46px; height: 46px; object-fit: contain; border-radius: 999px; }
nav { display: flex; gap: clamp(.75rem, 2vw, 1.5rem); }
nav a { color: var(--blue-dark); text-decoration: none; font-weight: 700; font-size: .95rem; }
nav a:hover { color: var(--green); }

.hero {
  min-height: calc(100vh - 79px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 6vw, 6rem);
}

.eyebrow, .section-label {
  margin: 0 0 1rem;
  color: var(--green);
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3 { font-family: "League Spartan", sans-serif; line-height: .95; margin: 0; color: var(--blue-dark); }
h1 { font-size: clamp(4rem, 11vw, 9rem); text-transform: uppercase; letter-spacing: -.05em; }
h2 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -.04em; }
h3 { font-size: 1.6rem; }

.subtitle { margin: .5rem 0 1.25rem; font-family: "League Spartan", sans-serif; font-size: clamp(1.7rem, 4vw, 3rem); font-weight: 800; color: var(--green); text-transform: uppercase; }
.hero-text { max-width: 650px; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 1.25rem; border-radius: 999px; text-decoration: none; font-weight: 900; }
.primary { background: var(--blue); color: white; box-shadow: var(--shadow); }
.secondary { background: white; color: var(--blue); border: 2px solid var(--line); }
.button:hover { transform: translateY(-2px); }

.hero-logo { display: grid; place-items: center; }
.hero-logo img { width: min(100%, 520px); border-radius: 999px; filter: drop-shadow(0 30px 45px rgba(6, 40, 90, 0.22)); }

.section { padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 6vw, 6rem); }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.card, .value-card { background: rgba(255,255,255,.82); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.text-card { padding: clamp(1.5rem, 4vw, 3rem); font-size: 1.15rem; line-height: 1.8; color: var(--muted); }
.text-card strong { color: var(--blue-dark); }
.centered { text-align: center; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.value-card { padding: 1.5rem; min-height: 220px; }
.value-card span { font-size: 2.2rem; display: inline-block; margin-bottom: 1rem; }
.value-card p { color: var(--muted); line-height: 1.6; }

.coming-soon { margin: clamp(1rem, 4vw, 4rem); border-radius: 40px; text-align: center; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: white; box-shadow: var(--shadow); }
.coming-soon h2, .coming-soon p { color: white; }
.coming-soon p { max-width: 720px; margin: 1rem auto 0; font-size: 1.2rem; line-height: 1.7; }
.badge { display: inline-block; margin-bottom: 1rem; padding: .55rem .9rem; border: 2px solid rgba(255,255,255,.45); border-radius: 999px; font-family: "League Spartan", sans-serif; font-weight: 900; letter-spacing: .12em; }
.connect-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.connect-links a { background: white; color: var(--blue); text-decoration: none; font-weight: 900; padding: 1rem 1.25rem; border-radius: 999px; border: 1px solid var(--line); box-shadow: 0 12px 35px rgba(6, 40, 90, 0.1); }

footer { text-align: center; padding: 2rem 1rem; color: var(--muted); border-top: 1px solid var(--line); }
footer p { margin: .35rem 0; }

@media (max-width: 860px) {
  .site-header { position: static; align-items: flex-start; }
  nav { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; text-align: center; }
  .hero-copy { order: 2; }
  .hero-logo { order: 1; }
  .hero-text, .hero-actions { margin-left: auto; margin-right: auto; justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
}
