.contact-page {
  --contact-blue: #507bd7;
  --contact-muted: #a4adb4;
  --contact-line: rgba(255, 255, 255, .15);
  background: #080d0f;
  color: #f3f4f5;
  font-family: var(--sf-pro, -apple-system, BlinkMacSystemFont, "SF Pro", system-ui, sans-serif);
}
.contact-page * { box-sizing: border-box; }
.contact-page [hidden] { display: none !important; }
.contact-page a { color: inherit; }
.contact-page button, .contact-page input, .contact-page textarea, .contact-page select { font: inherit; }
.contact-page a:focus-visible, .contact-page button:focus-visible, .contact-page input:focus-visible,
.contact-page textarea:focus-visible, .contact-page select:focus-visible { outline: 2px solid #8eb4ff; outline-offset: 6px; }
.contact-page h1, .contact-page h2, .contact-page p { margin: 0; }
.contact-page h1, .contact-page h2 { font-weight: 300; letter-spacing: -.045em; }
.contact-page section { scroll-margin-top: 105px; }
.contact-intro, .contact-conversation, .contact-final-note {
  width: min(1440px, 100%);
  margin: auto;
  padding-inline: clamp(24px, 6vw, 100px);
}
.contact-eyebrow { display: flex; align-items: center; gap: 11px; color: var(--contact-muted); font-size: 12px; line-height: 1.5; letter-spacing: .045em; }
.contact-eyebrow > span { width: 7px; height: 7px; border-radius: 50%; background: #638eef; box-shadow: 0 0 22px #507bd799; }
.contact-intro { padding-top: clamp(110px, 13vw, 185px); padding-bottom: 90px; }
.contact-intro h1 { font-size: clamp(76px, 11.6vw, 166px); line-height: .95; margin: 38px 0 48px; }
.contact-intro h1 em { font-style: normal; color: #6992e8; }
.contact-intro-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.contact-intro-bottom p { font-size: clamp(16px, 1.5vw, 21px); color: var(--contact-muted); font-weight: 300; line-height: 1.5; }
.contact-text-link { text-decoration: none; display: inline-flex; gap: 24px; align-items: center; line-height: 1.5; font-size: 14px; }
.contact-text-link > span { font-size: 24px; transition: transform .3s; }
.contact-text-link:hover > span { transform: translate(3px, -3px); }
.contact-conversation {
  border-top: 1px solid var(--contact-line);
  padding-top: 90px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(45px, 10vw, 150px);
}
.contact-conversation-copy {
  min-width: 0;
  align-self: start;
  padding: clamp(24px, 3.5vw, 50px);
  background: rgba(39, 75, 155, .1);
  background: color-mix(in srgb, var(--blue, #274b9b) 10%, transparent);
  border: 1px solid rgba(39, 75, 155, .3);
  border-radius: 0;
}
.contact-conversation-copy h2 { font-size: clamp(48px, 5.7vw, 80px); line-height: 1.05; margin: 29px 0; }
.contact-conversation-copy > p:not(.contact-eyebrow) { color: var(--contact-muted); font-size: 18px; line-height: 1.65; max-width: 360px; font-weight: 300; }
.contact-direct { display: flex; flex-direction: column; gap: 14px; margin: 45px 0; }
.contact-direct > span { font-size: 12px; color: var(--contact-muted); margin-bottom: 2px; }
.contact-direct > a { font-size: clamp(14px, 1.5vw, 20px); text-decoration: none; overflow-wrap: anywhere; }
.contact-direct > a span { margin-left: 10px; color: #6992e8; }
.contact-quiz-link {
  width: 100%;
  min-height: 88px;
  padding: 21px 22px;
  background: var(--blue, #274b9b);
  border: 1px solid #3c60aa;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  text-decoration: none;
  align-items: center;
  color: #fff !important;
  transition: background .2s, border-color .2s, transform .2s;
}
.contact-quiz-link-copy { min-width: 0; }
.contact-quiz-link-copy > span { display: block; font-size: 12px; line-height: 1.5; color: #dbe5fc; }
.contact-quiz-link strong { display: block; margin-top: 7px; font-size: 17px; line-height: 1.35; font-weight: 400; color: #fff; }
.contact-quiz-link-arrow { font-size: 28px; line-height: 1; flex-shrink: 0; transition: transform .2s; }
.contact-quiz-link:hover { background: #315aad; border-color: #6c91dc; }
.contact-quiz-link:hover .contact-quiz-link-arrow { transform: translate(3px, -3px); }
.contact-quiz-link:focus-visible { background: #315aad; border-color: #b8d2ff; }
.contact-quiz-link:active { transform: translateY(1px); }
.contact-form { min-width: 0; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-field { display: flex; flex-direction: column; min-width: 0; margin-bottom: 30px; }
.contact-field label { font-size: 13px; line-height: 1.5; margin-bottom: 12px; color: #d4d9dd; }
.contact-field label span { color: var(--contact-muted); }
.contact-field input, .contact-field select, .contact-field textarea {
  width: 100%; min-height: 45px;
  color: #f3f4f5; background: transparent;
  border: 0; border-bottom: 1px solid #475057; border-radius: 0;
  padding: 4px 0 14px; font-size: 16px; line-height: 1.6;
  transition: border-color .2s;
}
.contact-field input::placeholder, .contact-field textarea::placeholder { color: #828e97; opacity: 1; }
.contact-field textarea { resize: vertical; min-height: 123px; }
.contact-field select { padding-right: 20px; }
.contact-field select option { background: #10171c; color: #f3f4f5; }
.contact-field input:hover, .contact-field textarea:hover, .contact-field select:hover { border-color: #92a4b1; }
.contact-form[aria-busy="true"] { cursor: wait; }
.contact-field :disabled { opacity: .65; }
.contact-mode-note { font-size: 12px; line-height: 1.7; color: var(--contact-muted); margin: 21px 0 !important; }
.contact-primary {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  width: 100%; border: 1px solid #3c60aa; border-radius: 3px;
  background: #274b9b; color: white !important; text-decoration: none;
  padding: 21px 24px; cursor: pointer; font-size: 15px; line-height: 1.5;
  transition: background .2s, transform .2s;
}
.contact-primary:hover { background: #315aad; }
.contact-primary:active { transform: translateY(1px); }
.contact-primary:disabled { opacity: .55; cursor: wait; }
.contact-primary > span[aria-hidden] { font-size: 24px; line-height: 1; }
.contact-required { color: #87939d; font-size: 11px; margin-top: 14px !important; line-height: 1.6; }
.contact-form-status:not(:empty) { padding: 18px 0; color: #cfdbef; font-size: 14px; line-height: 1.7; }
.contact-form-status a { text-decoration: underline; }
.contact-mail-actions { padding-top: 14px; }
.contact-mail-actions > p { font-size: 12px; line-height: 1.7; color: var(--contact-muted); margin-top: 16px; }
.contact-secondary { background: transparent; color: #e5ebf3; border: 1px solid #576778; border-radius: 3px; padding: 12px 15px; display: inline-flex; align-items: center; gap: 20px; text-decoration: none; font-size: 13px; cursor: pointer; margin: 0 8px 9px 0; }
.contact-copy-fallback { background: #151f26; color: #fff; border: 1px solid #718195; width: 100%; min-height: 160px; margin-top: 15px; padding: 12px; font-size: 12px; line-height: 1.5; }
.contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.contact-final-note { padding-top: 70px; padding-bottom: 90px; border-top: 1px solid var(--contact-line); }
.contact-final-note > span { display: block; font-size: 59px; color: #7295df; margin-bottom: 28px; font-weight: 300; }
.contact-final-note > p { font-size: clamp(32px, 4.9vw, 64px); font-weight: 300; letter-spacing: -.045em; line-height: 1.1; margin-bottom: 30px; }
.contact-final-note .contact-text-link { color: #a5b4c2; font-size: 13px; }
@media (max-width: 1000px) {
  .contact-conversation { gap: 50px; grid-template-columns: .85fr 1fr; }
  .contact-form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 760px) {
  .contact-intro { padding-top: 80px; padding-bottom: 65px; }
  .contact-intro h1 { font-size: clamp(70px, 14.7vw, 112px); margin: 29px 0 37px; }
  .contact-intro-bottom { align-items: flex-start; flex-direction: column; gap: 25px; }
  .contact-conversation { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 75px; gap: 48px; }
  .contact-conversation-copy h2 { font-size: 57px; }
  .contact-conversation-copy > p:not(.contact-eyebrow) { max-width: 500px; }
  .contact-direct { margin: 30px 0; }
  .contact-form-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-final-note { padding-top: 55px; padding-bottom: 65px; }
  .contact-final-note > p { font-size: clamp(34px, 7vw, 52px); }
  .contact-final-note .contact-text-link { font-size: 12px; gap: 14px; }
}
@media (max-width: 420px) {
  .contact-form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-page .contact-eyebrow { font-size: 10px; }
  .contact-intro h1 { font-size: 17vw; }
  .contact-conversation-copy h2 { font-size: 50px; }
  .contact-direct > a { font-size: 16px; }
  .contact-intro-bottom p { font-size: 15px; }
  .contact-quiz-link { padding: 18px; gap: 12px; }
  .contact-quiz-link strong { font-size: 16px; }
  .contact-quiz-link-arrow { font-size: 25px; }
}
@media (prefers-reduced-motion: reduce) {
  .contact-page * { scroll-behavior: auto !important; transition: none !important; }
}
