:root {
  --green-dark: #0a5b44;
  --green: #0b7a57;
  --green-bright: #0f8f62;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --bg: #ffffff;
  --hero: #d5d5d5;
  --line: #dcdcdc;
  --link: #0b7a57;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.fdic-bar {
  background: var(--green-dark);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.fdic-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}

.fdic {
  font-weight: 800;
  letter-spacing: 1px;
}

.fdic-text {
  font-style: italic;
}

.nav-wrap {
  background: linear-gradient(180deg, #3e8d3a 0%, var(--green) 35%, #0a7050 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 16px;
}

.nav-left {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-link {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

.brand {
  color: #fff;
  font-size: 50px;
  letter-spacing: -1px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  white-space: nowrap;
}

.brand-mt {
  font-weight: 700;
}

.brand-bank {
  font-weight: 300;
  font-size: 0.86em;
  opacity: 0.92;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.login {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--green-dark);
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.login:hover {
  text-decoration: none;
  filter: brightness(0.98);
}

.login-lock {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 3px;
  position: relative;
  display: inline-block;
}

.login-lock::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 12px;
  height: 10px;
  transform: translateX(-50%);
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.login-chev {
  font-size: 22px;
  margin-top: -1px;
}

.nav-icons {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  color: #fff;
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.nav-icon:hover {
  text-decoration: underline;
}

.nav-ico {
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.nav-txt {
  font-size: 13px;
  opacity: 0.95;
}

/* Hero */
.hero {
  background: var(--hero);
  min-height: 620px;
  display: flex;
  align-items: flex-start;
}

.hero-inner {
  padding: 170px 0 110px;
}

.hero-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.hero-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.hero-cta-wrap {
  flex: 0 0 auto;
  padding-top: 68px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 26px;
  min-width: 260px;
  background: var(--green);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.0);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
  text-decoration: none;
  white-space: nowrap;
}

.hero-cta:hover {
  text-decoration: none;
  filter: brightness(0.95);
}

.hero-cta:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.hero-title {
  margin: 0;
  color: var(--green);
  font-size: 84px;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.6;
  color: #2b2b2b;
  max-width: 900px;
}

/* Footer top area */
.footer-top {
  background: #fff;
  padding: 78px 0 64px;
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.7fr;
  gap: 28px;
  align-items: start;
}

.footer-lead-title {
  margin: 0;
  color: var(--green);
  font-size: 58px;
  font-weight: 300;
  letter-spacing: -0.4px;
}

.footer-lead-text {
  margin: 18px 0 0;
  color: #2a2a2a;
  font-size: 18px;
  line-height: 1.55;
  max-width: 520px;
}

.footer-col {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.footer-head {
  margin: 4px 0 16px;
  font-size: 18px;
  letter-spacing: 0.8px;
  font-weight: 800;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.row-link {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--link);
  font-size: 18px;
}

.row-ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}

.row-ico--plus {
  background: #1d7a60;
}

.list--plain .plain {
  color: var(--link);
  font-size: 18px;
}

.plain--lock {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mini-lock {
  width: 14px;
  height: 14px;
  border: 2px solid var(--green);
  border-radius: 3px;
  position: relative;
  display: inline-block;
}

.mini-lock::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 10px;
  height: 8px;
  transform: translateX(-50%);
  border: 2px solid var(--green);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.footer-col--social {
  border-left: 0;
  padding-left: 0;
}

.mini-search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 16px;
}

.mini-search-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}

.mini-search-line {
  height: 2px;
  background: var(--line);
  flex: 1;
}

.social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  text-decoration: none;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-btn svg path {
  vector-effect: non-scaling-stroke;
}

.social-btn:hover {
  text-decoration: none;
  filter: brightness(0.95);
}

/* Footer bottom */
.site-footer {
  padding: 22px 0 44px;
  border-top: 1px solid var(--line);
}

.site-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
}

.legal-left {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #222;
}

.home {
  font-weight: 700;
  padding: 6px 10px;
  border: 2px solid #222;
  border-radius: 4px;
  line-height: 1;
}

.dot {
  opacity: 0.6;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  text-align: right;
  color: #222;
}

.legal-links a {
  color: #222;
  text-decoration: underline;
}

.sep {
  opacity: 0.65;
}

.site-footer-bottom {
  margin-top: 54px;
}

.disc-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 500;
}

.disc-text {
  margin: 0;
  max-width: 1050px;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1050px) {
  .brand {
    font-size: 40px;
  }

  .nav-link {
    font-size: 18px;
  }

  .hero-title {
    font-size: 64px;
  }

  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col--social {
    border-left: 1px solid var(--line);
    padding-left: 22px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1240px, calc(100% - 28px));
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav-left {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    width: 100%;
  }

  .nav-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 420px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero-cta-wrap {
    padding-top: 0;
  }

  .footer-top-inner {
    grid-template-columns: 1fr;
  }

  .footer-col {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 18px;
  }

  .site-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-links {
    justify-content: flex-start;
    text-align: left;
  }
}

