@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Oswald:wght@400;600;700&display=swap');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  color: #1f1f1f;
  background: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 10pt;
  line-height: 1.12;
}
a { color: inherit; }

.hero {
  position: relative;
  height: 195px;
  width: 100%;
  overflow: hidden;
  background-image: url('/assets/citi-field.jpg');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(28, 31, 25, 0.50);
}
.hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0 13px;
  color: white;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 29px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero h1::after {
  content: "";
  position: absolute;
  height: 7px;
  left: -37px;
  right: -37px;
  bottom: 0;
  background: #ff5252;
}

main { width: 100%; }
.main-grid {
  width: min(752px, calc(100% - 32px));
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 25% 50% 25%;
  align-items: start;
}
.column { padding: 0 8px; min-width: 0; }
.copy-column { text-align: justify; }
.copy-column h2,
.signup-title,
.prospect-universe h2 {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 10pt;
  font-weight: 700;
  line-height: .9;
  margin: 0 0 3px;
}
.copy-column h2:not(:first-child) { margin-top: 11px; }
.copy-column p {
  margin: 0 0 3px;
  line-height: .9;
}
.heading-link { text-decoration: none; }
.heading-link:hover { text-decoration: underline; }
.center-column { text-align: center; }
.center-intro {
  margin: 0 auto 15px;
  max-width: 325px;
  line-height: 1.05;
}
.signup-title {
  font-size: 12pt;
  line-height: 1.2;
  margin: 0 0 8px;
}
.signup-copy {
  margin: 0 auto 10px;
  max-width: 340px;
  line-height: 1.15;
}
.signup-form {
  display: block;
  width: 100%;
  height: 1157px;
  border: 0;
  background: transparent;
}

.prospect-universe {
  width: min(752px, calc(100% - 32px));
  margin: 20px auto 0;
  text-align: center;
}
.prospect-universe h2 {
  font-size: 12pt;
  line-height: 1.2;
  margin-bottom: 15px;
}
.prospect-universe p {
  width: 92%;
  margin: 0 auto 44px;
  line-height: 1.5;
  text-align: center;
}
.prospect-universe img {
  display: block;
  width: 71%;
  height: auto;
  margin: 0 auto;
}

/* Dedicated compliance pages: intentionally simple and boring. */
.policy-page {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.5;
  font-size: 16px;
}
.policy-nav {
  border-bottom: 1px solid #ddd;
  padding: 14px 20px;
}
.policy-nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.policy-nav strong { font-size: 16px; }
.policy-nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.policy-nav a { color: #0645ad; text-decoration: none; }
.policy-nav a:hover { text-decoration: underline; }
.policy-main {
  max-width: 820px;
  margin: 36px auto 60px;
  padding: 0 20px;
}
.policy-main h1 { font-size: 32px; margin: 0 0 4px; }
.policy-main h2 { font-size: 20px; margin: 28px 0 8px; }
.policy-main p { margin: 0 0 14px; }
.effective { color: #555; margin-bottom: 28px; }
.policy-footer {
  max-width: 820px;
  margin: 0 auto 36px;
  padding: 20px;
  border-top: 1px solid #ddd;
  font-size: 14px;
}
.policy-footer a { color: #0645ad; }

@media (max-width: 760px) {
  .hero { height: 180px; }
  .hero h1 { font-size: clamp(22px, 7vw, 32px); white-space: normal; text-align: center; }
  .hero h1::after { left: 5%; right: 5%; }
  .main-grid {
    width: min(94%, 560px);
    display: flex;
    flex-direction: column;
    margin-top: 18px;
  }
  .column { width: 100%; padding: 0; }
  .left-column { order: 1; }
  .center-column { order: 2; margin-top: 24px; }
  .right-column { order: 3; margin-top: 24px; }
  .copy-column p { line-height: 1.25; }
  .copy-column h2 { line-height: 1.15; }
  .signup-form { height: 1220px; }
  .prospect-universe { width: min(94%, 650px); margin-top: 28px; }
  .prospect-universe p { width: 100%; margin-bottom: 24px; }
  .prospect-universe img { width: 100%; }
  .policy-nav-inner { align-items: flex-start; flex-direction: column; }
}

.home-footer {
  text-align: center;
  font-size: 12px;
  margin: 34px 0 24px;
  color: #666;
}
.home-footer a { color: #444; text-decoration: underline; }
.home-footer span { margin: 0 8px; color: #999; }
