.topbar {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2a44;
  background: #fff;
  --purple: #4b2e83;
  --gold: #f5c315;
  --navy: #1f2a44;
  --muted: #6e7180;
  --line: #e5e1eb;
  --soft: #f7f4fc;
}
:is(*):where(.topbar, .topbar *) {
  box-sizing: border-box;
}
.topbar {
  margin: 0;
  line-height: 1.6;
}
:is(a):where(.topbar, .topbar *) {
  color: inherit;
  text-decoration: none;
}
:is(button):where(.topbar, .topbar *),
:is(input):where(.topbar, .topbar *),
:is(textarea):where(.topbar, .topbar *),
:is(select):where(.topbar, .topbar *) {
  font: inherit;
}
:is(button):where(.topbar, .topbar *),
:is(a):where(.topbar, .topbar *),
:is(input):where(.topbar, .topbar *),
:is(select):where(.topbar, .topbar *),
:is(textarea):where(.topbar, .topbar *) {
  -webkit-tap-highlight-color: transparent;
}
:is(img):where(.topbar, .topbar *) {
  max-width: 100%;
  display: block;
}
:is(button):where(.topbar, .topbar *),
:is(a.button):where(.topbar, .topbar *) {
  cursor: pointer;
}
:is(button:disabled):where(.topbar, .topbar *) {
  opacity: 0.5;
  cursor: wait;
}
:is(a:focus-visible):where(.topbar, .topbar *),
:is(button:focus-visible):where(.topbar, .topbar *),
:is(input:focus-visible):where(.topbar, .topbar *),
:is(select:focus-visible):where(.topbar, .topbar *),
:is(textarea:focus-visible):where(.topbar, .topbar *) {
  outline: 3px solid #d4b447;
  outline-offset: 3px;
}
:is(.container):where(.topbar, .topbar *) {
  width: min(1240px, calc(100% - 80px));
  margin: auto;
}
:is(.topbar):where(.topbar, .topbar *) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4%;
  border-bottom: 1px solid var(--line);
  background: white;
}
:is(.brand img):where(.topbar, .topbar *) {
  width: 175px;
  height: 52px;
  object-fit: contain;
}
:is(.topbar nav):where(.topbar, .topbar *) {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}
:is(.button):where(.topbar, .topbar *),
:is(button):where(.topbar, .topbar *) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--purple);
  background: var(--purple);
  color: #fff;
  border-radius: 12px;
  padding: 12px 20px;
  min-height: 46px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}
:is(.button.secondary):where(.topbar, .topbar *),
:is(button.secondary):where(.topbar, .topbar *) {
  background: #fff;
  color: var(--purple);
  border-color: #d6cde5;
}
:is(.button.gold):where(.topbar, .topbar *),
:is(button.gold):where(.topbar, .topbar *) {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
:is(.button.danger):where(.topbar, .topbar *),
:is(button.danger):where(.topbar, .topbar *) {
  color: #9c2424;
  background: #fff3f3;
  border-color: #efc7c7;
}
:is(.eyebrow):where(.topbar, .topbar *) {
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
:is(h1):where(.topbar, .topbar *),
:is(h2):where(.topbar, .topbar *),
:is(h3):where(.topbar, .topbar *) {
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}
:is(h1):where(.topbar, .topbar *) {
  font-size: clamp(40px, 5vw, 68px);
  max-width: 850px;
}
:is(h2):where(.topbar, .topbar *) {
  font-size: clamp(30px, 3.3vw, 44px);
}
:is(h3):where(.topbar, .topbar *) {
  font-size: 20px;
  letter-spacing: -0.025em;
}
:is(.lead):where(.topbar, .topbar *) {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 760px;
}
:is(.hero):where(.topbar, .topbar *) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 640px;
  padding-block: 65px;
}
:is(.hero h1):where(.topbar, .topbar *) {
  max-width: 580px;
}
:is(.hero .lead):where(.topbar, .topbar *) {
  max-width: 510px;
}
:is(.actions):where(.topbar, .topbar *) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
:is(.smallproof):where(.topbar, .topbar *) {
  font-size: 12px;
  margin-top: 32px;
}
:is(.gold-dot):where(.topbar, .topbar *) {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 6px;
}
:is(.chips):where(.topbar, .topbar *) {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
:is(.chips span):where(.topbar, .topbar *),
:is(.badge):where(.topbar, .topbar *) {
  display: inline-block;
  background: var(--soft);
  border: 1px solid #e6def0;
  padding: 5px 9px;
  border-radius: 7px;
  font-size: 11px;
  color: var(--purple);
  font-weight: 700;
}
:is(.chips.large span):where(.topbar, .topbar *) {
  padding: 14px 22px;
  font-size: 16px;
  background: #fff;
}
:is(.hero-visual):where(.topbar, .topbar *) {
  position: relative;
  height: 490px;
  isolation: isolate;
}
:is(.gold-orbit):where(.topbar, .topbar *) {
  position: absolute;
  inset: 60px 20px 40px;
  border-radius: 50%;
  background: #f5f0fc;
  border: 1px solid #e9e0f2;
  z-index: -1;
}
:is(.gold-orbit:after):where(.topbar, .topbar *) {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: var(--gold);
  right: -10px;
  top: 12px;
}
:is(.portrait):where(.topbar, .topbar *) {
  position: absolute;
  width: 36%;
  height: 300px;
  border-radius: 80px 80px 18px 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px #33215224;
  border: 5px solid white;
}
:is(.portrait img):where(.topbar, .topbar *) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
:is(.portrait > div):where(.topbar, .topbar *) {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 35px 12px 12px;
  background: linear-gradient(transparent, #191122bf);
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
}
:is(.portrait small):where(.topbar, .topbar *) {
  display: block;
  margin-top: 5px;
  font-size: 10px;
}
:is(.portrait-0):where(.topbar, .topbar *) {
  left: 1%;
  top: 70px;
  transform: rotate(-9deg);
}
:is(.portrait-1):where(.topbar, .topbar *) {
  left: 33%;
  top: 20px;
  z-index: 2;
}
:is(.portrait-2):where(.topbar, .topbar *) {
  right: -1%;
  top: 90px;
  transform: rotate(9deg);
}
:is(.visual-note):where(.topbar, .topbar *) {
  position: absolute;
  bottom: 25px;
  left: 15%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 15px 40px #33215212;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 15px;
}
:is(.visual-note span):where(.topbar, .topbar *) {
  color: var(--purple);
  font-size: 30px;
  float: left;
  margin-right: 16px;
}
:is(.ribbon):where(.topbar, .topbar *) {
  display: flex;
  justify-content: center;
  gap: 7%;
  padding: 21px 10px;
  background: var(--purple);
  color: white;
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 700;
}
:is(.ribbon i):where(.topbar, .topbar *) {
  color: var(--gold);
  font-style: normal;
}
:is(.section):where(.topbar, .topbar *) {
  padding-block: 70px;
}
:is(.section-heading):where(.topbar, .topbar *) {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
:is(.section-heading h2):where(.topbar, .topbar *) {
  margin-bottom: 0;
}
:is(.text-link):where(.topbar, .topbar *) {
  color: var(--purple);
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
  padding-block: 8px;
}
:is(.cards):where(.topbar, .topbar *) {
  display: grid;
  gap: 22px;
}
:is(.four):where(.topbar, .topbar *) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
:is(.three):where(.topbar, .topbar *) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
:is(.two):where(.topbar, .topbar *) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
:is(.profile-card):where(.topbar, .topbar *),
:is(.business-card):where(.topbar, .topbar *),
:is(.card):where(.topbar, .topbar *) {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
:is(.profile-photo):where(.topbar, .topbar *) {
  height: 275px;
  width: 100%;
  object-fit: cover;
}
:is(.card-body):where(.topbar, .topbar *) {
  padding: 22px;
}
:is(.card-body h3):where(.topbar, .topbar *) {
  margin: 0;
}
:is(.muted):where(.topbar, .topbar *) {
  color: var(--muted);
  font-size: 14px;
}
:is(.soft):where(.topbar, .topbar *) {
  background: var(--soft);
}
:is(.business-card):where(.topbar, .topbar *) {
  padding: 24px;
}
:is(.business-logo):where(.topbar, .topbar *) {
  height: 95px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
:is(.business-logo img):where(.topbar, .topbar *) {
  max-height: 95px;
  max-width: 150px;
  object-fit: contain;
}
:is(.steps):where(.topbar, .topbar *) {
  margin-top: 35px;
}
:is(.steps article):where(.topbar, .topbar *) {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
:is(.steps p):where(.topbar, .topbar *) {
  font-size: 14px;
  color: var(--muted);
}
:is(.step-number):where(.topbar, .topbar *) {
  display: block;
  color: var(--purple);
  font-size: 14px;
  margin-bottom: 30px;
}
:is(.cta):where(.topbar, .topbar *) {
  background: var(--purple);
  color: #fff;
  border-radius: 24px;
  padding: 50px;
}
:is(.cta .eyebrow):where(.topbar, .topbar *) {
  color: var(--gold);
}
:is(.cta p):where(.topbar, .topbar *) {
  max-width: 620px;
}
:is(.cta .button):where(.topbar, .topbar *) {
  margin-top: 15px;
}
:is(footer):where(.topbar, .topbar *) {
  background: #1f2a44;
  color: #e5e1ef;
  padding: 50px 0 20px;
  font-size: 13px;
}
:is(.footer-grid):where(.topbar, .topbar *) {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 45px;
}
:is(.footer-grid h3):where(.topbar, .topbar *) {
  font-size: 14px;
  letter-spacing: 0;
}
:is(.footer-grid a):where(.topbar, .topbar *) {
  display: block;
  margin: 9px 0;
}
:is(.footer-grid p):where(.topbar, .topbar *) {
  max-width: 340px;
  color: #b8becd;
}
:is(.footer-logo):where(.topbar, .topbar *) {
  width: 190px;
  height: 75px;
  object-fit: contain;
}
:is(.footer-bottom):where(.topbar, .topbar *) {
  border-top: 1px solid #ffffff26;
  margin-top: 35px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}
:is(.marketing):where(.topbar, .topbar *) {
  min-height: 60vh;
}
:is(.marketing .card):where(.topbar, .topbar *) {
  padding: 28px;
}
:is(.legal):where(.topbar, .topbar *) {
  max-width: 880px;
}
:is(.legal h1):where(.topbar, .topbar *) {
  font-size: 48px;
  margin-bottom: 40px;
}
:is(.legal h2):where(.topbar, .topbar *) {
  font-size: 25px;
  letter-spacing: -0.02em;
  margin-top: 35px;
}
:is(.legal p):where(.topbar, .topbar *),
:is(.legal li):where(.topbar, .topbar *) {
  font-size: 15px;
  color: #44495a;
}
:is(.legal a):where(.topbar, .topbar *) {
  color: var(--purple);
  text-decoration: underline;
  overflow-wrap: anywhere;
}
:is(.content-image):where(.topbar, .topbar *) {
  max-height: 500px;
  object-fit: contain;
}
:is(.empty):where(.topbar, .topbar *) {
  padding: 32px;
  border: 1px dashed #d5cbe2;
  border-radius: 16px;
  color: var(--muted);
  background: #faf8fd;
}
:is(.error):where(.topbar, .topbar *) {
  padding: 14px 18px;
  border: 1px solid #efbcbc;
  background: #fff2f2;
  color: #8a2020;
  border-radius: 10px;
  margin: 15px 0;
}
:is(.success):where(.topbar, .topbar *) {
  padding: 14px 18px;
  background: #edf7f1;
  border: 1px solid #c6dfd0;
  color: #235d3a;
  border-radius: 10px;
}
:is(.notice):where(.topbar, .topbar *) {
  background: #fff8dc;
  color: #66501a;
  border: 1px solid #ecdfac;
  padding: 15px 18px;
  border-radius: 12px;
  font-size: 14px;
}
:is(label):where(.topbar, .topbar *) {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
}
:is(input):where(.topbar, .topbar *),
:is(textarea):where(.topbar, .topbar *),
:is(select):where(.topbar, .topbar *) {
  display: block;
  width: 100%;
  border: 1px solid #d6d1df;
  border-radius: 9px;
  padding: 12px;
  background: white;
  color: var(--navy);
  font-weight: 400;
  margin-top: 6px;
  min-width: 0;
}
:is(textarea):where(.topbar, .topbar *) {
  min-height: 100px;
  resize: vertical;
}
:is(input[type="checkbox"]):where(.topbar, .topbar *) {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
:is(fieldset):where(.topbar, .topbar *) {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px;
  margin: 0 0 18px;
}
:is(legend):where(.topbar, .topbar *) {
  font-size: 13px;
  font-weight: 700;
  padding: 0 6px;
}
:is(.check-grid):where(.topbar, .topbar *) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
:is(.check-grid label):where(.topbar, .topbar *) {
  font-weight: 400;
  margin: 0;
}
:is(.field-row):where(.topbar, .topbar *) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
:is(.card):where(.topbar, .topbar *) {
  padding: 24px;
}
:is(.stack):where(.topbar, .topbar *) {
  display: grid;
  gap: 20px;
}
:is(small):where(.topbar, .topbar *) {
  font-size: 12px;
}
:is(.break):where(.topbar, .topbar *) {
  overflow-wrap: anywhere;
}
@media (max-width: 1000px) {
  :is(.topbar nav):where(.topbar, .topbar *) {
    gap: 16px;
  }
  :is(.topbar nav > a:not(.button)):where(.topbar, .topbar *) {
    display: none;
  }
  :is(.hero):where(.topbar, .topbar *) {
    gap: 20px;
  }
  :is(.four):where(.topbar, .topbar *) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  :is(.footer-grid):where(.topbar, .topbar *) {
    grid-template-columns: 2fr 1fr;
  }
  :is(.portrait):where(.topbar, .topbar *) {
    height: 270px;
  }
  :is(.hero-visual):where(.topbar, .topbar *) {
    height: 410px;
  }
  :is(.hero):where(.topbar, .topbar *) {
    min-height: auto;
  }
  :is(.container):where(.topbar, .topbar *) {
    width: calc(100% - 48px);
  }
}
@media (max-width: 640px) {
  :is(.container):where(.topbar, .topbar *) {
    width: calc(100% - 32px);
  }
  :is(.topbar):where(.topbar, .topbar *) {
    padding: 12px 16px;
    gap: 10px;
  }
  :is(.brand img):where(.topbar, .topbar *) {
    width: 120px;
    height: 38px;
  }
  :is(.topbar nav):where(.topbar, .topbar *) {
    gap: 8px;
  }
  :is(.topbar nav > .button:last-child):where(.topbar, .topbar *) {
    display: none;
  }
  :is(.hero):where(.topbar, .topbar *) {
    grid-template-columns: 1fr;
    padding-block: 38px;
  }
  :is(.hero h1):where(.topbar, .topbar *) {
    font-size: 44px;
    max-width: 450px;
  }
  :is(.hero .lead):where(.topbar, .topbar *) {
    font-size: 16px;
  }
  :is(.hero-visual):where(.topbar, .topbar *) {
    height: 350px;
    margin-top: 10px;
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }
  :is(.portrait):where(.topbar, .topbar *) {
    height: 235px;
  }
  :is(.portrait-0):where(.topbar, .topbar *) {
    top: 45px;
  }
  :is(.portrait-1):where(.topbar, .topbar *) {
    top: 5px;
  }
  :is(.portrait-2):where(.topbar, .topbar *) {
    top: 55px;
  }
  :is(.visual-note):where(.topbar, .topbar *) {
    bottom: 0;
    font-size: 12px;
    left: 12%;
    padding: 12px 16px;
  }
  :is(.ribbon):where(.topbar, .topbar *) {
    gap: 5%;
    font-size: 8px;
    letter-spacing: 0.08em;
    padding: 16px 5px;
  }
  :is(.section):where(.topbar, .topbar *) {
    padding-block: 42px;
  }
  :is(.section-heading):where(.topbar, .topbar *) {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  :is(.four):where(.topbar, .topbar *),
  :is(.three):where(.topbar, .topbar *),
  :is(.two):where(.topbar, .topbar *) {
    grid-template-columns: 1fr;
  }
  :is(.profile-photo):where(.topbar, .topbar *) {
    height: 340px;
  }
  :is(.cards):where(.topbar, .topbar *) {
    gap: 18px;
  }
  :is(.business-card):where(.topbar, .topbar *) {
    display: grid;
    grid-template-columns: 90px 1fr;
    column-gap: 20px;
  }
  :is(.business-logo):where(.topbar, .topbar *) {
    grid-row: span 3;
    height: 95px;
    margin: 0;
  }
  :is(.business-logo img):where(.topbar, .topbar *) {
    max-width: 90px;
  }
  :is(.business-card h3):where(.topbar, .topbar *),
  :is(.business-card p):where(.topbar, .topbar *) {
    margin: 0;
  }
  :is(.steps):where(.topbar, .topbar *) {
    grid-template-columns: 1fr 1fr;
  }
  :is(.step-number):where(.topbar, .topbar *) {
    margin-bottom: 16px;
  }
  :is(.cta):where(.topbar, .topbar *) {
    padding: 28px;
  }
  :is(.footer-grid):where(.topbar, .topbar *) {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  :is(.footer-grid > div:first-child):where(.topbar, .topbar *) {
    grid-column: 1/-1;
  }
  :is(.footer-bottom):where(.topbar, .topbar *) {
    display: block;
  }
  :is(.footer-bottom span):where(.topbar, .topbar *) {
    display: block;
    margin-top: 8px;
  }
  :is(.field-row):where(.topbar, .topbar *),
  :is(.check-grid):where(.topbar, .topbar *) {
    grid-template-columns: 1fr;
  }
  :is(.legal h1):where(.topbar, .topbar *) {
    font-size: 36px;
  }
  :is(h2):where(.topbar, .topbar *) {
    font-size: 32px;
  }
}

:is(.cta-brand):where(.topbar, .topbar *) {
  float: right;
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  margin: 0 0 20px 30px;
}
:is(.marketing > .content-image):where(.topbar, .topbar *) {
  max-width: 280px;
  margin-top: 35px;
}
@media (max-width: 640px) {
  :is(.cta-brand):where(.topbar, .topbar *) {
    width: 70px;
    height: 70px;
    margin-left: 15px;
  }
}

:is(.hero-visual):where(.topbar, .topbar *) {
  overflow: clip;
}
:is(.cta):where(.topbar, .topbar *) {
  display: flow-root;
}
