:root {
  --navy: #233d59;
  --navy-deep: #1d334c;
  --teal: #278995;
  --teal-bright: #5ac7cf;
  --ink: #24384d;
  --muted: #61707d;
  --line: #d5e4e5;
  --paper: #ffffff;
  --soft: #f4f8f8;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(940px, calc(100% - 40px)); }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 12px; top: 12px; z-index: 100; background: #fff; padding: 10px 14px; border-radius: 8px; }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  min-height: 650px;
  display: flex;
  align-items: center;
  text-align: center;
}
.hero-inner { position: relative; z-index: 1; padding: 72px 0 86px; }
.logo { width: 250px; height: auto; display: block; margin: 0 auto 24px; border-radius: 15px; }
.hero .logo { box-shadow: 0 12px 26px rgba(0,0,0,.13); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-bright);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
  font-size: .92rem;
}
.eyebrow.dark { color: var(--teal); }
.hero h1 { margin: 0 auto; max-width: 850px; font-size: clamp(2.25rem, 5vw, 4.7rem); line-height: 1.04; letter-spacing: -.035em; }
.hero h1 span { color: #fff; }
.hero .lead { max-width: 700px; margin: 24px auto 30px; font-size: clamp(1.05rem, 2vw, 1.35rem); color: #e3ecf1; }
.hero-orb { position: absolute; border-radius: 50%; background: rgba(39,137,149,.21); }
.hero-orb-1 { width: 350px; height: 350px; right: -120px; top: -90px; }
.hero-orb-2 { width: 210px; height: 210px; left: -110px; bottom: -95px; }

.button { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 10px; padding: 13px 20px; font-weight: 800; transition: transform .18s ease, opacity .18s ease; }
.button:hover { transform: translateY(-1px); opacity: .94; }
.button-primary { background: var(--teal); color: #fff; }
.button-light { background: #fff; color: var(--navy); }
.button-outline { border: 2px solid rgba(255,255,255,.65); color: #fff; }

.section { padding: 78px 0; }
.section-light { background: #fff; }
.section-muted { background: var(--soft); }
.section-heading { text-align: center; max-width: 820px; margin: 0 auto 42px; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.03em; line-height: 1.08; }
.section-heading p { margin: 10px 0 0; color: var(--teal); font-size: 1.08rem; }
.subhead { text-align: center; margin: 0; font-size: 1.8rem; }
.subline { text-align: center; color: var(--teal); margin: 5px 0 30px; }

.reasons { border-top: 2px solid var(--line); }
.reason { display: grid; grid-template-columns: 62px 1fr; gap: 10px; padding: 24px 0; border-bottom: 1px solid #e7eeee; }
.number { color: var(--teal); font-size: 2rem; font-weight: 900; line-height: 1; }
.reason h3, .card h3, .benefits h3 { margin: 0 0 4px; text-transform: uppercase; color: var(--teal); letter-spacing: .025em; font-size: 1.05rem; }
.reason p, .card p, .benefits p { margin: 0; font-size: 1.04rem; }
.statement { margin-top: 32px; background: var(--teal); color: #fff; padding: 25px 30px; border-radius: 11px; text-align: center; font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 700; }
.band { background: var(--teal); color: #fff; text-align: center; padding: 15px 0; text-transform: uppercase; letter-spacing: .08em; }

.profiles { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 25px; box-shadow: 0 6px 18px rgba(35,61,89,.035); }
.card h3 { font-size: 1.04rem; }

.benefits { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; text-align: center; border-top: 2px solid var(--line); padding-top: 30px; }
.centered { margin: 0 auto 10px; }
.benefits h3 { min-height: 2.5em; }

.join-box { margin: 58px auto 0; max-width: 860px; padding: 42px; border-radius: 14px; background: var(--navy); color: #fff; text-align: center; }
.join-box h2 { margin: 4px 0 8px; font-size: clamp(1.9rem, 4vw, 3rem); }
.join-box p { margin: 8px 0; color: #dbe5eb; }
.email { display: inline-block; color: var(--teal-bright); font-size: 1.25rem; font-weight: 800; margin: 5px 0 22px; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.join-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.footer { background: var(--navy-deep); color: #dce6eb; padding: 25px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .96rem; }
.footer a { color: var(--teal-bright); }

@media (max-width: 720px) {
  .container, .narrow { width: min(100% - 28px, var(--max)); }
  .hero { min-height: auto; }
  .hero-inner { padding: 54px 0 64px; }
  .logo { width: 210px; }
  .hero h1 br { display: none; }
  .section { padding: 58px 0; }
  .profiles, .benefits { grid-template-columns: 1fr; }
  .reason { grid-template-columns: 44px 1fr; }
  .benefits h3 { min-height: auto; }
  .join-box { padding: 32px 20px; }
  .footer-inner { justify-content: center; text-align: center; }
}
