:root {
  --ink: #102033;
  --navy: #0a294a;
  --navy-2: #0d365f;
  --blue: #0f5f9d;
  --blue-bright: #1d7cc0;
  --red: #d84737;
  --red-dark: #aa2f26;
  --cream: #f4efe5;
  --paper: #faf8f3;
  --white: #ffffff;
  --muted: #647184;
  --line: #d9e0e8;
  --green: #2d7c5b;
  --gold: #d6b76d;
}

* { 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(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: var(--blue); }
a:hover { color: var(--navy); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(16,32,51,.10);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--ink);
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1px solid rgba(16,32,51,.08);
}
nav { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
nav a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 800;
  color: #2c4560;
}
nav a:hover { color: var(--red); }

.home-main { overflow: hidden; }
.hero-showcase {
  position: relative;
  min-height: 650px;
  margin: 0;
  padding: 86px max(24px, calc((100vw - 1180px)/2));
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    radial-gradient(circle at 85% 22%, rgba(255,255,255,.09) 0 2px, transparent 3px),
    radial-gradient(circle at 15% 75%, rgba(255,255,255,.06) 0 1px, transparent 2px),
    linear-gradient(125deg, #071d36 0%, #0a3156 52%, #0e4878 100%);
  color: white;
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(330px,.75fr);
  gap: 70px;
  align-items: center;
}
.hero-showcase::before,
.hero-showcase::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255,255,255,.06);
  border-radius: 50%;
}
.hero-showcase::before { width: 440px; height: 440px; right: -185px; top: -140px; }
.hero-showcase::after { width: 310px; height: 310px; left: -130px; bottom: -170px; }
.hero-content { position: relative; z-index: 3; max-width: 740px; }
.eyebrow, .section-kicker, .mini-label {
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow { color: #9ed2f4; margin-bottom: 22px; }
.hero-showcase h1 {
  margin: 0;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 800;
}
.hero-showcase h1 span { color: #f1c86d; }
.hero-copy {
  margin: 28px 0 0;
  max-width: 720px;
  font-size: 1.17rem;
  line-height: 1.72;
  color: rgba(255,255,255,.84);
}
.hero-actions { display: flex; gap: 20px; align-items: center; margin-top: 30px; flex-wrap: wrap; }
.button {
  display: inline-block;
  border-radius: 7px;
  padding: 13px 18px;
  text-decoration: none;
  font-weight: 900;
  background: var(--blue);
  color: white;
  box-shadow: 0 6px 18px rgba(10,41,74,.16);
}
.button:hover { color: white; background: var(--navy); }
.button-light { background: #f3efe5; color: var(--navy); }
.button-light:hover { background: white; color: var(--red); }
.text-link { color: white; text-decoration: none; font-weight: 850; }
.text-link:hover { color: #f1c86d; }
.hero-fineprint { margin-top: 18px; color: rgba(255,255,255,.58); font-size: .84rem; font-weight: 700; }

.phone-card {
  position: relative;
  z-index: 4;
  width: min(100%, 390px);
  justify-self: end;
  border-radius: 32px;
  padding: 11px;
  background: #07131f;
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 38px 80px rgba(0,0,0,.34), 0 0 0 6px rgba(255,255,255,.03);
  transform: rotate(2deg);
}
.phone-top {
  padding: 14px 14px 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: .68rem;
  letter-spacing: .13em;
  font-weight: 900;
  color: rgba(255,255,255,.72);
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #5edf95; box-shadow: 0 0 14px rgba(94,223,149,.8); }
.signal { text-align: right; }
.phone-screen {
  min-height: 410px;
  border-radius: 23px;
  padding: 30px 20px;
  background: linear-gradient(180deg, #eef4fa, #dfeaf4);
  color: var(--ink);
}
.phone-time { text-align: center; color: #78889a; font-size: .67rem; letter-spacing: .1em; font-weight: 900; margin-bottom: 24px; }
.message-bubble {
  position: relative;
  max-width: 92%;
  margin-left: auto;
  border-radius: 19px 19px 4px 19px;
  padding: 18px;
  background: #1886db;
  color: white;
  line-height: 1.48;
  font-size: .94rem;
  box-shadow: 0 10px 20px rgba(24,134,219,.22);
}
.message-meta { margin-top: 10px; text-align: right; color: #8191a1; font-size: .72rem; }

.hero-field { position: absolute; inset: 0; pointer-events: none; overflow: hidden; opacity: .14; }
.diamond { position: absolute; width: 260px; height: 260px; border: 2px solid white; transform: rotate(45deg); }
.diamond-one { right: 80px; bottom: -145px; }
.diamond-two { left: 43%; top: -205px; width: 360px; height: 360px; }
.base { position: absolute; width: 22px; height: 22px; background: white; transform: rotate(45deg); }
.base-one { right: 205px; bottom: 120px; }
.base-two { right: 80px; bottom: -7px; }
.base-three { right: 330px; bottom: -7px; }
.home-plate { position: absolute; right: 196px; bottom: -157px; width: 40px; height: 40px; background: white; transform: rotate(45deg); }

.ticker {
  margin: 0;
  padding: 0 max(24px, calc((100vw - 1180px)/2));
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--red);
  color: white;
}
.ticker > div { padding: 18px 28px; display: flex; gap: 12px; align-items: baseline; border-right: 1px solid rgba(255,255,255,.22); }
.ticker > div:last-child { border-right: 0; }
.ticker strong { font-size: .73rem; letter-spacing: .15em; }
.ticker span { color: rgba(255,255,255,.86); font-size: .89rem; }

.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 94px 24px;
}
.section-kicker { color: var(--red); margin-bottom: 17px; }
.light-kicker { color: #f1c86d; }
.section-heading-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.content-section h2, .dark-band h2, .signup-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.5vw, 4.45rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.section-heading-row > p, .universe-copy > p {
  margin: 7px 0 0;
  font-size: 1.05rem;
  color: #4f6073;
  line-height: 1.78;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}
.step-card {
  min-height: 280px;
  border: 1px solid var(--line);
  background: white;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 22px double rgba(216,71,55,.05);
  border-radius: 50%;
  right: -50px;
  bottom: -55px;
}
.featured-step { background: var(--navy); color: white; border-color: var(--navy); }
.featured-step p { color: rgba(255,255,255,.72) !important; }
.step-number { font: 900 .78rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .14em; color: var(--red); }
.featured-step .step-number { color: #f1c86d; }
.step-card h3 { margin: 64px 0 10px; font-size: 1.35rem; }
.step-card p { margin: 0; color: #617083; }

.dark-band {
  background: #081a2d;
  color: white;
  margin: 0;
  padding: 84px max(24px, calc((100vw - 1180px)/2));
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.dark-band-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.quote-card {
  justify-self: end;
  width: min(100%, 470px);
  padding: 30px 34px;
  border: 1px solid rgba(255,255,255,.13);
  border-left: 5px solid var(--red);
  background: rgba(255,255,255,.045);
}
.quote-mark { font: 700 3.4rem/1 Georgia, serif; color: #f1c86d; }
.quote-card p { margin: 2px 0 12px; font-size: 1.26rem; line-height: 1.45; }
.quote-card span { color: rgba(255,255,255,.48); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }

.consent-section { padding-top: 78px; padding-bottom: 78px; }
.consent-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 60px; align-items: center; }
.consent-grid > div > p { color: #516174; font-size: 1.02rem; }
.compliance-card {
  padding: 28px;
  border: 1px solid #cddfd7;
  background: #edf7f2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.shield {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 900;
}
.compliance-card p { margin: 3px 0 0; color: #234737; }

.signup-section {
  margin: 0;
  padding: 88px max(24px, calc((100vw - 1180px)/2));
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(125deg, #0d3b63, #0a294a);
  color: white;
}
.signup-inner { display: grid; grid-template-columns: .75fr 1.25fr; gap: 64px; align-items: start; }
.signup-copy { position: sticky; top: 100px; }
.signup-copy > p { color: rgba(255,255,255,.76); }
.signup-copy a:not(.button) { color: #f4cf78; }
.signup-legal { font-size: .78rem; line-height: 1.65; margin-top: 22px; }
.form-panel { background: white; color: var(--ink); border-radius: 16px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,.24); }
.form-panel-top { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.form-panel-top > div { display: grid; gap: 3px; }
.mini-label { color: var(--muted); font-size: .62rem; }
.live-pill { background: #e7f7ee; color: #1b7349; padding: 5px 8px; border-radius: 999px; font-size: .66rem; font-weight: 900; letter-spacing: .08em; }
.form-wrap { overflow: hidden; border-radius: 0; border: 0; }
.form-wrap iframe { display: block; width: 100%; min-height: 1000px; border: 0; background: white; }
.form-panel .small { padding: 0 22px 20px; margin: 0; }
.small { font-size: .86rem; color: var(--muted); }

.universe-section { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.scout-board {
  background: #f1eadc;
  border: 1px solid #d5c7ab;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(53,46,31,.10);
  transform: rotate(-1deg);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.board-header, .board-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; }
.board-header { padding: 0 8px 12px; font-size: .69rem; font-weight: 900; letter-spacing: .14em; color: #746a59; border-bottom: 2px solid #b9aa8f; }
.board-row { padding: 14px 8px; border-bottom: 1px solid #d8ccb8; font-size: .86rem; }
.board-row:last-child { border-bottom: 0; }
.board-row b { color: #3f6552; font-size: .7rem; letter-spacing: .09em; }
.board-row.active { background: #fff8e9; margin: 0 -10px; padding-left: 18px; padding-right: 18px; border-left: 4px solid var(--red); }
.board-row.active b { color: var(--red); }

.home-footer { background: #071827; color: rgba(255,255,255,.68); border: 0; padding: 34px 24px 44px; }
.footer-home-inner { max-width: 1180px; display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; }
.footer-home-inner strong { color: white; }
.footer-home-inner p { margin: 4px 0 0; }
.home-footer .footer-links { margin: 0; }
.home-footer a { color: rgba(255,255,255,.70); text-decoration: none; }
.home-footer a:hover { color: white; }

/* Generic legal pages intentionally remain restrained and highly crawlable. */
.policy { background: #f5f7fa; }
.policy main { max-width: 900px; margin: 0 auto; padding: 46px 24px 72px; }
.policy .card { background: white; border: 1px solid var(--line); padding: 34px; box-shadow: 0 12px 32px rgba(20,38,63,.06); }
.policy h1 { font-family: Georgia, "Times New Roman", serif; font-size: 2.7rem; line-height: 1.05; margin: 0 0 8px; letter-spacing: -.035em; }
.policy h2 { margin-top: 34px; font-size: 1.42rem; }
.policy .effective { color: var(--muted); margin-bottom: 28px; }
.policy footer { border-top: 1px solid var(--line); background: white; padding: 24px; }
.policy .footer-inner { max-width: 900px; margin: 0 auto; color: var(--muted); font-size: .9rem; }
.footer-links { display: flex; gap: 15px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .hero-showcase { grid-template-columns: 1fr; min-height: auto; gap: 50px; padding-top: 66px; padding-bottom: 66px; }
  .phone-card { justify-self: start; width: min(100%, 430px); transform: none; }
  .section-heading-row, .dark-band-inner, .consent-grid, .signup-inner, .universe-section { grid-template-columns: 1fr; gap: 38px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .step-card h3 { margin-top: 28px; }
  .signup-copy { position: static; }
  .quote-card { justify-self: start; }
  .ticker { grid-template-columns: 1fr; }
  .ticker > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .ticker > div:last-child { border-bottom: 0; }
}

@media (max-width: 700px) {
  .header-inner { align-items: flex-start; flex-direction: column; gap: 9px; padding: 11px 18px; }
  nav { gap: 12px 16px; }
  nav a { font-size: .78rem; }
  .hero-showcase { padding-left: 20px; padding-right: 20px; }
  .hero-showcase h1 { font-size: clamp(3rem, 14vw, 5.4rem); }
  .content-section { padding: 68px 20px; }
  .dark-band, .signup-section { padding-left: 20px; padding-right: 20px; }
  .content-section h2, .dark-band h2, .signup-section h2 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
  .phone-screen { min-height: 330px; }
  .form-wrap iframe { min-height: 1100px; }
  .policy main { padding: 28px 16px 54px; }
  .policy .card { padding: 24px 20px; }
  .footer-home-inner { flex-direction: column; }
}
