/* Public-site usability and brand refinement. */
:root {
  --navy: #071629;
  --navy-soft: #0d2139;
  --gold: #c8a24c;
  --gold-light: #e4c978;
  --surface: #f4f6f9;
  --line: #d9e0e8;
  --ink: #101828;
  --muted: #667085;
}

body {
  font-family: Manrope, Arial, sans-serif;
}

.brand-mark,
.hero h1,
.section h2,
.hero-panel-top strong,
.credibility-strip strong,
.service-grid h3,
.process-track h3,
.fee-grid article > strong,
.about-grid strong,
.portal-card h3,
.contact-card h3 {
  font-family: Manrope, Arial, sans-serif;
}

.hero h1,
.section h2 {
  font-weight: 750;
  letter-spacing: -.045em;
}

.hero-panel-top strong,
.credibility-strip strong,
.service-grid h3,
.process-track h3,
.about-grid strong,
.portal-card h3,
.contact-card h3 {
  font-weight: 700;
  letter-spacing: -.025em;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 11px 16px;
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--gold);
  text-decoration: none;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 0 13px;
  align-items: center;
  gap: 10px;
  border: 1px solid #c7a65b;
  background: #fff;
  color: var(--navy);
  font: 800 12px/1 Manrope, Arial, sans-serif;
  cursor: pointer;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: .2s ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-icon::before { top: -6px; }
.menu-toggle-icon::after { top: 6px; }
.menu-open .menu-toggle-icon { background: transparent; }
.menu-open .menu-toggle-icon::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-toggle-icon::after { top: 0; transform: rotate(-45deg); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.contact-assurance {
  margin-top: 32px;
  padding: 22px;
  border-left: 3px solid #c19a47;
  background: #f3f5f8;
  display: grid;
  gap: 8px;
  color: #475467;
  font-size: 13px;
}

.contact-assurance strong {
  color: #0a1628;
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-card {
  padding: 34px;
}

.contact-card > p {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #e2e8f0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .02em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #42536a;
  border-radius: 0;
  background: #fff;
  color: #111827;
  font: 500 13px/1.4 Manrope, Arial, sans-serif;
}

.contact-form input,
.contact-form select {
  min-height: 44px;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a94a3;
}

.contact-form .consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #bfc9d6;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.55;
}

.contact-form .consent-check input {
  width: 17px;
  height: 17px;
  min-height: 0;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: #c19a47;
}

.consent-check a { color: #e3c57d; }

.contact-button {
  min-height: 48px;
  border: 0;
  font: 850 12px/1 Manrope, Arial, sans-serif;
  cursor: pointer;
}

.contact-email {
  margin: 17px 0 0;
  font-size: 13px;
  text-align: center;
}

.form-alert {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid;
  font-size: 12px;
  line-height: 1.55;
}

.form-alert.success {
  border-color: #54b88a;
  background: #e9fbf2;
  color: #135b3c;
}

.form-alert.error {
  border-color: #df897f;
  background: #fff0ee;
  color: #8b2f25;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.legal-page { background: var(--surface); }
.legal-header { position: static; }

.legal-header .legal-home-link {
  color: #344054;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.legal-main {
  width: min(880px, calc(100% - 40px));
  margin: 58px auto 76px;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid #dce2e9;
  background: #fff;
  box-shadow: 0 24px 65px rgba(15, 23, 42, .08);
}

.legal-main .eyebrow { margin-bottom: 12px; }

.legal-main h1 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.legal-main .legal-updated {
  margin-bottom: 34px;
  color: #7b8797;
  font-size: 12px;
}

.legal-main h2 {
  margin: 34px 0 10px;
  color: var(--navy-soft);
  font-size: 21px;
  line-height: 1.3;
}

.legal-main p,
.legal-main li {
  color: #536174;
  font-size: 14px;
  line-height: 1.8;
}

.legal-main a {
  color: #8a6624;
  font-weight: 700;
}

.legal-main .legal-callout {
  padding: 17px 19px;
  border-left: 3px solid #c19a47;
  background: #f5f7fa;
  color: #344054;
}

@media (min-width: 1101px) {
  .process-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    border-left: 0;
  }

  .process-track article {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 12px;
    min-height: 164px;
    padding: 20px;
    border: 1px solid #dfe4ea;
    background: #f8f9fb;
  }

  .process-track article::before { display: none; }
  .process-track h3 { margin-bottom: 7px; font-size: 18px; }
  .process-track p { font-size: 13px; line-height: 1.55; }
  .process-track b { padding-top: 3px; }
}

@media (max-width: 1100px) {
  .site-header {
    padding-left: 22px;
    padding-right: 22px;
  }

  .menu-toggle { display: inline-flex; }

  .site-header nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    padding: 12px;
    border: 1px solid #d7dee7;
    background: #fff;
    box-shadow: 0 22px 45px rgba(15, 23, 42, .18);
    align-items: stretch;
    gap: 2px;
  }

  .site-header.menu-open nav {
    display: flex;
    flex-direction: column;
  }

  .site-header nav a,
  .site-header nav a:not(.login-link) {
    display: block;
    padding: 12px 13px;
  }

  .site-header .login-link {
    margin-top: 5px;
    text-align: center;
  }

  .contact { gap: 40px; }
}

@media (max-width: 700px) {
  .site-header {
    height: 66px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .brand-copy strong { font-size: 19px; }

  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 0 12px;
  }

  .menu-toggle-label { display: none; }

  .site-header nav {
    left: 10px;
    right: 10px;
    padding: 8px;
  }

  .site-header nav a,
  .site-header nav a:not(.login-link) {
    min-height: 44px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
  }

  .site-header .login-link {
    margin-top: 3px;
    justify-content: center;
  }

  .hero-inner {
    padding: 46px 18px 44px;
    gap: 30px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-copy > p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 10px;
    margin: 26px 0 22px;
  }

  .primary,
  .secondary,
  .contact-button {
    min-height: 46px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-trust {
    gap: 7px;
    font-size: 12px;
  }

  .hero-panel { padding: 20px; }
  .hero-panel-top { padding-bottom: 15px; }
  .hero-panel-top strong { font-size: 22px; }
  .hero-stage { padding: 15px 0; }
  .hero-stage strong { font-size: 14px; }
  .hero-stage small { font-size: 12px; }

  .credibility-strip div {
    padding: 18px;
    grid-template-columns: 31px 1fr;
    column-gap: 10px;
  }

  .credibility-strip strong { font-size: 16px; }
  .credibility-strip small { font-size: 12px; }

  .section {
    padding: 58px 18px;
    scroll-margin-top: 76px;
  }

  .section h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .split-heading,
  .industries,
  .process,
  .about,
  .portal-section,
  .contact {
    gap: 28px;
  }

  .split-heading p,
  .industries-copy p,
  .process-heading p,
  .about-copy p,
  .portal-copy p,
  .contact-copy p {
    font-size: 15px;
    line-height: 1.65;
  }

  .industries-copy p,
  .process-heading p {
    margin: 18px 0;
  }

  .service-grid {
    gap: 12px;
    margin-top: 30px;
  }

  .service-grid article {
    min-height: 0;
    padding: 22px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .service-grid h3 {
    margin: 18px 0 9px;
    font-size: 21px;
  }

  .service-grid p {
    font-size: 13px;
    line-height: 1.6;
  }

  .service-grid a { padding-top: 18px; }

  .industry-grid { gap: 10px; }

  .industry-grid article {
    min-height: 72px;
    padding: 16px;
    gap: 12px;
  }

  .industry-grid strong {
    font-size: 13px;
    line-height: 1.45;
  }

  .process-track article {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 0 0 24px 18px;
  }

  .process-track h3 { font-size: 19px; }
  .process-track p { font-size: 13px; line-height: 1.55; }

  .fee-grid { margin-top: 30px; }
  .fee-grid article { padding: 24px; }
  .fee-grid article > strong { margin-top: 20px; font-size: 43px; }

  .featured-fee .fee-badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 18px;
  }

  .about-grid { gap: 12px; }
  .about-grid article { min-height: 0; padding: 20px; }
  .about-grid strong { margin: 16px 0 7px; font-size: 19px; }

  .portal-points { margin-top: 20px; }
  .portal-card { padding: 24px 20px; }
  .portal-card h3 { font-size: 25px; }

  .contact-assurance { margin-top: 22px; padding: 17px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 25px 20px; }

  .legal-header .brand-copy small { display: flex; }
  .legal-main { margin-top: 30px; margin-bottom: 45px; }
  .footer-links { row-gap: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .section h2 { font-size: 31px; }
  .contact-card h3,
  .portal-card h3 { font-size: 23px; }
}
