:root {
  --navy-950: #081722;
  --navy-900: #102231;
  --navy-800: #173447;
  --ivory-100: #f7f3ec;
  --ivory-200: #eee8dd;
  --gold-500: #c79a3b;
  --gold-400: #d7b35f;
  --teal-700: #176b67;
  --teal-600: #1f7d77;
  --charcoal: #263238;
  --stone: #6f746f;
  --border: #ddd7cd;
  --white: #fff;
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --shadow-sm: 0 12px 40px rgba(8, 23, 34, .08);
  --shadow-lg: 0 24px 70px rgba(8, 23, 34, .18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --transition: 180ms ease;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory-100);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.offcanvas-open { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}

h1 { font-size: clamp(2.75rem, 5.5vw, 5.2rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.1rem); }

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1100;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  transform: translateY(-200%);
  border-radius: .4rem;
  color: var(--white);
  background: var(--navy-900);
}

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

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.utility-bar {
  position: relative;
  z-index: 1031;
  padding: .45rem 0;
  color: rgba(255, 255, 255, .82);
  background: var(--navy-950);
  font-size: .78rem;
  letter-spacing: .015em;
}

.utility-bar p { display: flex; align-items: center; gap: .5rem; }
.utility-bar i { color: var(--gold-400); }
.utility-bar a { color: var(--white); font-weight: 600; text-decoration: none; }
.utility-bar a i { margin-left: .35rem; transition: transform var(--transition); }
.utility-bar a:hover i { transform: translateX(3px); }

.site-header {
  position: absolute;
  z-index: 1030;
  top: 46px;
  right: 0;
  left: 0;
  transition: top var(--transition), transform var(--transition);
}

.site-header.is-sticky {
  position: fixed;
  top: 10px;
}

.navbar { padding: 0; }

.nav-shell {
  display: flex;
  width: 100%;
  min-height: 78px;
  align-items: center;
  padding: .55rem .65rem .55rem 1rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 16px;
  background: rgba(247, 243, 236, .95);
  box-shadow: 0 18px 50px rgba(8, 23, 34, .16);
  backdrop-filter: blur(18px);
  transition: min-height var(--transition), box-shadow var(--transition), border-radius var(--transition);
}

.site-header.is-sticky .nav-shell {
  min-height: 68px;
  border-color: rgba(221, 215, 205, .9);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(8, 23, 34, .13);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: .75rem;
  margin: 0;
  color: var(--navy-900);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(16, 34, 49, .18);
  border-radius: 50%;
  color: var(--ivory-100);
  background: var(--navy-900);
  font-family: var(--font-heading);
  font-size: .98rem;
  font-weight: 500;
  letter-spacing: -.05em;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .04);
}

.brand-lockup { display: flex; flex-direction: column; gap: .22rem; }

.brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
}

.brand-name span { margin-left: .05rem; color: var(--gold-500); font-family: var(--font-body); font-size: .58em; font-weight: 700; letter-spacing: 0; }

.brand-tagline {
  color: var(--stone);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
}

.navbar-collapse { min-width: 0; }

.navbar-nav { gap: 0; }

.navbar .nav-link {
  position: relative;
  padding: .75rem .64rem !important;
  color: #4d585d;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
}

.navbar .nav-link::after {
  position: absolute;
  bottom: .34rem;
  left: 50%;
  width: 4px;
  height: 4px;
  content: "";
  transform: translateX(-50%) scale(0);
  border-radius: 50%;
  background: var(--gold-500);
  transition: transform var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus { color: var(--navy-900); }
.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after { transform: translateX(-50%) scale(1); }

.nav-actions {
  flex: 0 0 auto;
  gap: .7rem;
  padding-left: .7rem;
  border-left: 1px solid var(--border);
}

.nav-account {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .25rem;
  color: var(--navy-900);
  font-size: .73rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-account-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--white);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.nav-account:hover .nav-account-icon { border-color: var(--teal-700); color: var(--white); background: var(--teal-700); }

.nav-primary {
  min-height: 48px;
  padding: .7rem 1rem;
  border: 1px solid var(--navy-900);
  color: var(--white);
  background: var(--navy-900);
  box-shadow: none;
  white-space: nowrap;
}

.nav-primary:hover,
.nav-primary:focus { border-color: var(--teal-700); color: var(--white); background: var(--teal-700); }
.nav-primary i { color: var(--gold-400); font-size: .72rem; }

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 700;
  transition: transform var(--transition), color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn-brand {
  border: 1px solid var(--gold-500);
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: 0 8px 24px rgba(199, 154, 59, .18);
}

.btn-brand:hover,
.btn-brand:focus { border-color: var(--gold-400); color: var(--navy-950); background: var(--gold-400); }

.btn-outline-brand {
  border: 1px solid rgba(255, 255, 255, .42);
  color: var(--white);
  background: transparent;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus { border-color: var(--white); color: var(--navy-900); background: var(--white); }
.btn-light-outline { border: 1px solid rgba(255, 255, 255, .56); color: var(--white); background: rgba(255, 255, 255, .04); }
.btn-light-outline:hover,
.btn-light-outline:focus { border-color: var(--white); color: var(--navy-900); background: var(--white); }
.btn-teal { border: 1px solid var(--teal-700); color: var(--white); background: var(--teal-700); }
.btn-teal:hover,
.btn-teal:focus { border-color: var(--teal-600); color: var(--white); background: var(--teal-600); }
.btn-lg { min-height: 54px; padding: .8rem 1.4rem; font-size: .95rem; }

.navbar-toggler {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: none !important;
}

.navbar-toggler span { display: block; width: 18px; height: 1.5px; background: var(--navy-900); }

.offcanvas { max-width: min(92vw, 410px); background: var(--ivory-100); }
.offcanvas-header { padding: 1.35rem; border-bottom: 1px solid var(--border); }
.offcanvas .navbar-brand { color: var(--navy-900); }
.offcanvas .btn-close { width: 42px; height: 42px; padding: 0; border: 1px solid var(--border); border-radius: 50%; background-size: .7rem; opacity: 1; }
.offcanvas-body { padding: 1.65rem 1.35rem 1.35rem; }
.mobile-nav-label { margin-bottom: .4rem; color: var(--stone); font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.mobile-links .nav-link { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; border-bottom: 1px solid var(--border); color: var(--navy-900); font-family: var(--font-heading); font-size: 1.45rem; font-weight: 500; }
.mobile-links .nav-link i { color: var(--gold-500); font-size: .72rem; transition: transform var(--transition); }
.mobile-links .nav-link:hover i { transform: translateX(4px); }
.mobile-nav-actions { padding: 1.25rem; border: 1px solid var(--border); border-radius: 14px; background: var(--white); }
.mobile-nav-actions p { margin-bottom: .75rem; color: var(--stone); font-size: .73rem; font-weight: 600; }
.mobile-nav-actions .btn { width: 100%; }
.mobile-join-link { display: flex; align-items: center; justify-content: center; gap: .55rem; margin-top: 1rem; color: var(--navy-900); font-size: .8rem; font-weight: 700; text-decoration: none; }

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-media,
.hero-overlay { position: absolute; inset: 0; }
.hero-media {
  background-image: url("../images/hero/hospitality-talent-hero-v2.jpg");
  background-position: center 44%;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 23, 34, .95) 0%, rgba(8, 23, 34, .88) 25%, rgba(8, 23, 34, .52) 48%, rgba(8, 23, 34, .08) 76%),
    linear-gradient(0deg, rgba(8, 23, 34, .4) 0%, transparent 34%);
}

.hero-content { position: relative; z-index: 2; }
.min-vh-hero { min-height: 680px; padding-top: 48px; padding-bottom: 54px; }

.hero-copy {
  max-width: 560px;
  padding-left: 1.65rem;
  border-left: 1px solid rgba(215, 179, 95, .7);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
  color: var(--teal-700);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span { display: inline-block; width: 28px; height: 1px; background: currentColor; }
.light-eyebrow { color: var(--gold-400); }
.hero h1 {
  max-width: 540px;
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: clamp(2.45rem, 4.3vw, 4rem);
  line-height: 1.03;
}

.hero-lead {
  max-width: 500px;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(.98rem, 1.35vw, 1.08rem);
  line-height: 1.6;
}

.hero-actions { margin-bottom: 0; }
.hero-actions .btn-lg { min-height: 50px; padding: .72rem 1.2rem; font-size: .88rem; }

.trust-strip {
  position: relative;
  z-index: 5;
  background: var(--ivory-100);
}

.trust-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(8, 23, 34, .11);
}

.trust-panel::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold-500), rgba(199, 154, 59, .12));
}

.trust-item {
  display: flex;
  min-width: 0;
  min-height: 146px;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem;
  border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: 0; }

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid #e4ddd2;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--ivory-100);
  font-size: .94rem;
}

.trust-count {
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 500;
}

.trust-label {
  display: block;
  margin-bottom: .23rem;
  color: var(--gold-500);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.trust-item strong {
  display: block;
  color: var(--navy-900);
  font-size: .9rem;
  line-height: 1.35;
}

.trust-item p {
  margin: .24rem 0 0;
  color: var(--stone);
  font-size: .7rem;
  line-height: 1.45;
}

.connection-section {
  padding: 108px 0 34px;
  background: var(--ivory-100);
}

.connection-heading { margin-bottom: 3rem; }
.connection-heading h2 { max-width: 660px; margin-bottom: 0; }
.connection-heading p { max-width: 520px; margin: 0 0 .35rem auto; color: var(--stone); font-size: 1rem; }

.connection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.issue-card {
  position: relative;
  min-height: 350px;
  padding: clamp(1.6rem, 3vw, 2.7rem);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.issue-card::after {
  position: absolute;
  right: -48px;
  bottom: -58px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(23, 107, 103, .1);
  border-radius: 50%;
}

.talent-issue { background: #f0f6f4; }
.talent-issue::after { border-color: rgba(199, 154, 59, .18); }

.issue-card-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 3.4rem; }
.issue-index { color: var(--gold-500); font-family: var(--font-heading); font-size: .9rem; font-weight: 500; }
.issue-audience { display: inline-flex; align-items: center; gap: .5rem; color: var(--stone); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.issue-audience i { color: var(--teal-700); }
.issue-card h3 { max-width: 500px; margin-bottom: 1rem; font-size: clamp(1.65rem, 2.5vw, 2.35rem); }
.issue-card > p { max-width: 520px; margin-bottom: 1.5rem; color: var(--stone); font-size: .9rem; }
.issue-tags { position: absolute; z-index: 1; bottom: 2rem; left: clamp(1.6rem, 3vw, 2.7rem); display: flex; flex-wrap: wrap; gap: .45rem; padding-right: 1.5rem; }
.issue-tags span { padding: .36rem .64rem; border: 1px solid var(--border); border-radius: 999px; color: #596166; background: rgba(255, 255, 255, .72); font-size: .65rem; font-weight: 600; }

.connection-bridge {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(230px, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 106px;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.bridge-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--gold-400); }
.bridge-copy { display: flex; flex-direction: column; gap: .16rem; }
.bridge-copy span { color: var(--gold-400); font-size: .61rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.bridge-copy strong { font-family: var(--font-heading); font-size: 1.14rem; font-weight: 500; }
.match-factors { display: flex; align-items: center; justify-content: flex-end; gap: .65rem; color: rgba(255, 255, 255, .74); font-size: .68rem; font-weight: 600; }
.match-factors i { color: var(--gold-500); font-size: .22rem; }

.solutions-section { padding: 108px 0; background: var(--white); }
.solutions-intro { position: sticky; top: 112px; max-width: 360px; }
.solutions-intro h2 { margin-bottom: 1.3rem; }
.solutions-intro > p:not(.eyebrow) { margin-bottom: 1.7rem; color: var(--stone); font-size: .94rem; }
.solutions-cta { display: inline-flex; align-items: center; gap: .6rem; padding-bottom: .35rem; border-bottom: 1px solid var(--gold-500); color: var(--navy-900); font-size: .78rem; font-weight: 700; text-decoration: none; }
.solutions-cta i { color: var(--gold-500); transition: transform var(--transition); }
.solutions-cta:hover i { transform: translateX(4px); }

.solutions-list { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }

.solution-row {
  display: grid;
  grid-template-columns: 34px 48px minmax(140px, 180px) minmax(180px, 1fr) 42px;
  min-height: 126px;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.solution-row:last-child { border-bottom: 0; }
.solution-row:hover { background: var(--ivory-100); }
.solution-number { color: var(--gold-500); font-family: var(--font-heading); font-size: .78rem; font-weight: 500; }
.solution-icon { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid #e5ded3; border-radius: 50%; color: var(--teal-700); background: var(--ivory-100); font-size: .92rem; }
.solution-title h3 { margin: 0 0 .2rem; font-size: 1.32rem; }
.solution-title span { color: var(--gold-500); font-size: .61rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.solution-row > p { margin: 0; color: var(--stone); font-size: .78rem; line-height: 1.55; }
.solution-link { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--navy-900); font-size: .7rem; text-decoration: none; transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition); }
.solution-link:hover { transform: translateX(3px); border-color: var(--navy-900); color: var(--white); background: var(--navy-900); }

.business-journey {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background: var(--navy-900);
}

.business-journey::before {
  position: absolute;
  top: -280px;
  left: -220px;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid rgba(215, 179, 95, .09);
  border-radius: 50%;
}

.business-journey .container { position: relative; z-index: 1; }
.business-copy { max-width: 570px; }
.business-copy h2 { max-width: 560px; margin-bottom: 1.3rem; color: var(--white); }
.business-intro { max-width: 540px; margin-bottom: 2.5rem; color: rgba(255, 255, 255, .65); font-size: .95rem; }

.business-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 1.3rem;
  margin-bottom: 2.5rem;
}

.business-steps article { padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .15); }
.business-steps article > span { display: block; margin-bottom: .55rem; color: var(--gold-400); font-family: var(--font-heading); font-size: .72rem; font-weight: 500; }
.business-steps h3 { margin-bottom: .4rem; color: var(--white); font-family: var(--font-body); font-size: .88rem; font-weight: 700; letter-spacing: 0; }
.business-steps p { max-width: 220px; margin: 0; color: rgba(255, 255, 255, .5); font-size: .7rem; line-height: 1.5; }

.requirement-card {
  max-width: 570px;
  margin-left: auto;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: var(--radius-md);
  background: var(--ivory-100);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .25);
}

.requirement-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.requirement-kicker { display: block; color: var(--navy-900); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.requirement-header p { margin: .15rem 0 0; color: var(--stone); font-size: .68rem; }
.example-badge { padding: .3rem .55rem; border: 1px solid rgba(199, 154, 59, .35); border-radius: 999px; color: #87651d; background: rgba(199, 154, 59, .08); font-size: .57rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.requirement-title { display: flex; align-items: center; gap: 1rem; padding: 1.5rem 0; }
.requirement-icon { display: grid; width: 52px; height: 52px; flex: 0 0 52px; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal-700); }
.requirement-title h3 { margin: 0 0 .22rem; font-size: clamp(1.45rem, 2.5vw, 1.9rem); }
.requirement-title p { margin: 0; color: var(--stone); font-size: .74rem; }

.requirement-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 0 1.4rem; border: 1px solid var(--border); border-radius: 12px; background: var(--white); }
.requirement-details div { padding: .85rem 1rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.requirement-details div:nth-child(2n) { border-right: 0; }
.requirement-details div:nth-last-child(-n+2) { border-bottom: 0; }
.requirement-details dt { margin-bottom: .16rem; color: var(--stone); font-size: .57rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.requirement-details dd { margin: 0; color: var(--navy-900); font-size: .74rem; font-weight: 700; }

.requirement-match { padding-bottom: 1.4rem; }
.requirement-match > span { display: block; margin-bottom: .6rem; color: var(--stone); font-size: .59rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.requirement-match > div { display: flex; flex-wrap: wrap; gap: .4rem; }
.requirement-match > div span { padding: .34rem .6rem; border-radius: 999px; color: var(--teal-700); background: #e3efec; font-size: .61rem; font-weight: 700; }

.requirement-flow { display: flex; align-items: center; justify-content: space-between; gap: .45rem; padding: .8rem 1rem; border-radius: 10px; color: rgba(255, 255, 255, .76); background: var(--navy-900); font-size: .62rem; font-weight: 700; }
.requirement-flow i { color: var(--gold-400); font-size: .46rem; }

.professional-journey { padding: 112px 0; background: #f0f6f4; }
.professional-copy { max-width: 580px; margin-left: auto; }
.professional-copy h2 { max-width: 570px; margin-bottom: 1.25rem; }
.professional-intro { max-width: 550px; margin-bottom: 2.1rem; color: var(--stone); font-size: .94rem; }

.professional-steps { margin-bottom: 2rem; border-top: 1px solid rgba(23, 107, 103, .2); }
.professional-steps article { display: grid; grid-template-columns: 38px 1fr; gap: .8rem; padding: .9rem 0; border-bottom: 1px solid rgba(23, 107, 103, .16); }
.professional-steps article > span { padding-top: .08rem; color: var(--teal-700); font-family: var(--font-heading); font-size: .72rem; font-weight: 500; }
.professional-steps h3 { margin: 0 0 .2rem; font-family: var(--font-body); font-size: .84rem; font-weight: 700; letter-spacing: 0; }
.professional-steps p { margin: 0; color: var(--stone); font-size: .69rem; line-height: 1.45; }

.professional-flow { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin-top: 1.2rem; color: var(--stone); font-size: .59rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.professional-flow i { color: var(--gold-500); font-size: .42rem; }

.profile-card {
  max-width: 570px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(23, 107, 103, .18);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(8, 23, 34, .12);
}

.profile-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.profile-kicker { display: block; color: var(--navy-900); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.profile-card-header p { margin: .15rem 0 0; color: var(--stone); font-size: .68rem; }
.availability-badge { display: inline-flex; align-items: center; gap: .42rem; padding: .3rem .55rem; border: 1px solid rgba(35, 122, 87, .25); border-radius: 999px; color: #237a57; background: rgba(35, 122, 87, .07); font-size: .57rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.availability-badge i { font-size: .38rem; }

.profile-summary { display: flex; align-items: center; gap: 1rem; padding: 1.5rem 0; }
.profile-avatar { display: grid; width: 58px; height: 58px; flex: 0 0 58px; place-items: center; border-radius: 50%; color: var(--white); background: var(--navy-900); font-size: 1.05rem; box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .06); }
.profile-summary h3 { margin: 0 0 .25rem; font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.profile-summary p { margin: 0; color: var(--stone); font-size: .7rem; }
.profile-summary p i { margin-right: .3rem; color: var(--gold-500); }

.profile-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 0 1.35rem; border: 1px solid var(--border); border-radius: 12px; background: var(--ivory-100); }
.profile-details div { padding: .82rem 1rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.profile-details div:nth-child(2n) { border-right: 0; }
.profile-details div:nth-last-child(-n+2) { border-bottom: 0; }
.profile-details dt { margin-bottom: .14rem; color: var(--stone); font-size: .56rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.profile-details dd { margin: 0; color: var(--navy-900); font-size: .72rem; font-weight: 700; }

.profile-skills { padding-bottom: 1.35rem; }
.profile-skills > span { display: block; margin-bottom: .6rem; color: var(--stone); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.profile-skills > div { display: flex; flex-wrap: wrap; gap: .4rem; }
.profile-skills > div span { padding: .34rem .58rem; border-radius: 999px; color: var(--teal-700); background: #e3efec; font-size: .6rem; font-weight: 700; }

.profile-status { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .75rem; padding: .85rem 1rem; border-radius: 11px; color: var(--white); background: var(--teal-700); }
.profile-status-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: var(--teal-700); background: var(--white); }
.profile-status > div:nth-child(2) { display: flex; flex-direction: column; }
.profile-status span { color: rgba(255, 255, 255, .66); font-size: .56rem; font-weight: 600; }
.profile-status strong { font-size: .72rem; }
.profile-status > i { color: var(--gold-400); font-size: .66rem; }

.roles-section { padding: 112px 0; background: var(--white); }
.roles-heading { margin-bottom: 3rem; }
.roles-heading h2 { max-width: 720px; margin-bottom: 0; }
.roles-heading > div:last-child p { max-width: 520px; margin: 0 0 .35rem auto; color: var(--stone); font-size: .94rem; }

.roles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.role-card { min-height: 290px; padding: 1.7rem; border: 1px solid var(--border); border-radius: 14px; background: var(--ivory-100); transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.role-card:hover { transform: translateY(-4px); border-color: rgba(23, 107, 103, .32); box-shadow: var(--shadow-sm); }
.role-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.6rem; }
.role-card-top > span { color: var(--gold-500); font-family: var(--font-heading); font-size: .72rem; font-weight: 500; }
.role-icon { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--teal-700); background: var(--white); font-size: .9rem; }
.role-card h3 { margin-bottom: 1rem; font-size: 1.45rem; }
.role-card ul { display: grid; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.role-card li { position: relative; padding-left: .9rem; color: var(--stone); font-size: .74rem; }
.role-card li::before { position: absolute; top: .72em; left: 0; width: 3px; height: 3px; content: ""; border-radius: 50%; background: var(--gold-500); }
.specialist-role { color: var(--white); border-color: var(--navy-900); background: var(--navy-900); }
.specialist-role h3 { color: var(--white); }
.specialist-role li { color: rgba(255, 255, 255, .62); }
.specialist-role .role-icon { border-color: rgba(255, 255, 255, .15); color: var(--gold-400); background: rgba(255, 255, 255, .06); }

.roles-footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 1.4rem; padding: 1.2rem 1.4rem; border: 1px solid var(--border); border-radius: 12px; }
.roles-footer p { margin: 0; color: var(--stone); font-size: .76rem; }
.roles-footer p strong { color: var(--navy-900); }
.roles-footer > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .75rem 1.3rem; }
.roles-footer a { display: inline-flex; align-items: center; gap: .45rem; color: var(--navy-900); font-size: .69rem; font-weight: 700; text-decoration: none; }
.roles-footer a i { color: var(--gold-500); transition: transform var(--transition); }
.roles-footer a:hover i { transform: translateX(3px); }

.why-section { padding: 112px 0; background: var(--ivory-100); }
.why-intro { position: sticky; top: 112px; max-width: 470px; }
.why-intro h2 { margin-bottom: 1.3rem; }
.why-intro > p:not(.eyebrow) { max-width: 440px; margin-bottom: 2rem; color: var(--stone); font-size: .93rem; }
.why-principle { display: flex; align-items: flex-start; gap: .8rem; max-width: 390px; padding: 1rem 1.1rem; border-left: 2px solid var(--gold-500); background: rgba(255, 255, 255, .58); }
.why-principle i { margin-top: .15rem; color: var(--gold-500); font-size: .75rem; }
.why-principle p { margin: 0; color: var(--navy-900); font-family: var(--font-heading); font-size: 1rem; font-weight: 500; line-height: 1.4; }

.why-list { border-top: 1px solid var(--border); }
.why-item { display: grid; grid-template-columns: 32px 48px 1fr; align-items: start; gap: 1rem; padding: 1.55rem 1rem; border-bottom: 1px solid var(--border); transition: background var(--transition), padding var(--transition); }
.why-item:hover { padding-right: 1.3rem; padding-left: 1.3rem; background: rgba(255, 255, 255, .58); }
.why-number { padding-top: .65rem; color: var(--gold-500); font-family: var(--font-heading); font-size: .7rem; font-weight: 500; }
.why-icon { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--teal-700); background: var(--white); font-size: .85rem; }
.why-item h3 { margin: 0 0 .35rem; font-size: 1.25rem; }
.why-item p { max-width: 560px; margin: 0; color: var(--stone); font-size: .76rem; line-height: 1.55; }
.managed-item { margin-top: 1rem; border: 1px solid rgba(23, 107, 103, .16); border-radius: 12px; background: #e7f1ef; }
.managed-item:hover { background: #deece9; }
.managed-item .why-icon { border-color: rgba(23, 107, 103, .18); color: var(--white); background: var(--teal-700); }

.verification-section { padding: 112px 0; background: var(--white); }
.verification-shell { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.55fr); overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.verification-summary { position: relative; padding: clamp(2rem, 4vw, 3.4rem); overflow: hidden; color: var(--white); background: var(--navy-900); }
.verification-summary::after { position: absolute; right: -85px; bottom: -100px; width: 250px; height: 250px; content: ""; border: 1px solid rgba(215, 179, 95, .13); border-radius: 50%; }
.verification-shield { display: grid; width: 54px; height: 54px; margin-bottom: 3.5rem; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--gold-400); font-size: 1rem; }
.verification-summary > span { display: block; margin-bottom: .6rem; color: var(--gold-400); font-size: .62rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.verification-summary h2 { max-width: 380px; margin-bottom: 1.1rem; color: var(--white); font-size: clamp(2rem, 3.4vw, 3rem); }
.verification-summary p { max-width: 400px; margin-bottom: 2rem; color: rgba(255, 255, 255, .64); font-size: .82rem; }
.verification-summary small { position: relative; z-index: 1; display: block; max-width: 330px; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .45); font-size: .62rem; }

.verification-content { display: flex; flex-direction: column; background: var(--ivory-100); }
.verification-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); flex: 1; }
.verification-steps article { min-height: 210px; padding: 1.7rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, .56); }
.verification-steps article:nth-child(2n) { border-right: 0; }
.verification-steps article:nth-last-child(-n+2) { border-bottom: 0; }
.verification-step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.2rem; }
.verification-step-top span { color: var(--gold-500); font-family: var(--font-heading); font-size: .7rem; font-weight: 500; }
.verification-step-top i { color: var(--teal-700); font-size: .9rem; }
.verification-steps h3 { margin-bottom: .55rem; font-family: var(--font-body); font-size: .9rem; font-weight: 700; letter-spacing: 0; }
.verification-steps p { max-width: 270px; margin: 0; color: var(--stone); font-size: .7rem; line-height: 1.5; }

.reputation-roadmap { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1rem; padding: 1.2rem 1.5rem; border-top: 1px solid var(--border); background: var(--white); }
.reputation-roadmap > span { padding: .34rem .58rem; border-radius: 999px; color: #87651d; background: rgba(199, 154, 59, .12); font-size: .55rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.reputation-roadmap p { margin: 0; color: var(--stone); font-size: .68rem; line-height: 1.5; }
.reputation-roadmap strong { color: var(--navy-900); }

.coverage-section { padding: 112px 0; background: var(--ivory-100); }
.coverage-heading { margin-bottom: 3rem; }
.coverage-heading h2 { max-width: 720px; margin-bottom: 0; }
.coverage-heading > div:last-child p { max-width: 510px; margin: 0 0 .35rem auto; color: var(--stone); font-size: .93rem; }

.coverage-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.coverage-card { min-height: 430px; padding: clamp(1.5rem, 2.7vw, 2.2rem); border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); }
.launch-market { color: var(--white); border-color: var(--navy-900); background: var(--navy-900); box-shadow: var(--shadow-lg); }
.coverage-card-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 3.2rem; }
.phase-number { color: var(--gold-500); font-family: var(--font-heading); font-size: .78rem; font-weight: 500; }
.launch-market .phase-number { color: var(--gold-400); }
.phase-status { padding: .32rem .56rem; border: 1px solid rgba(215, 179, 95, .28); border-radius: 999px; color: var(--gold-400); background: rgba(215, 179, 95, .08); font-size: .55rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.future-status { border-color: var(--border); color: var(--stone); background: var(--ivory-100); }
.market-icon { display: grid; width: 50px; height: 50px; margin-bottom: 2rem; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--teal-700); background: var(--ivory-100); }
.launch-market .market-icon { border-color: rgba(255, 255, 255, .14); color: var(--gold-400); background: rgba(255, 255, 255, .06); }
.coverage-card h3 { margin-bottom: 1rem; font-size: clamp(1.65rem, 2.5vw, 2.15rem); }
.launch-market h3 { color: var(--white); }
.coverage-card > p { min-height: 74px; margin-bottom: 1.4rem; color: var(--stone); font-size: .78rem; line-height: 1.6; }
.launch-market > p { color: rgba(255, 255, 255, .58); }
.coverage-card ul { display: grid; gap: .5rem; margin: 0; padding: 1.1rem 0 0; border-top: 1px solid var(--border); list-style: none; }
.launch-market ul { border-color: rgba(255, 255, 255, .14); }
.coverage-card li { position: relative; padding-left: 1rem; color: var(--stone); font-size: .68rem; }
.launch-market li { color: rgba(255, 255, 255, .66); }
.coverage-card li::before { position: absolute; top: .68em; left: 0; width: 4px; height: 4px; content: ""; border-radius: 50%; background: var(--gold-500); }

.coverage-principle { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; padding: 1rem 1.3rem; border: 1px solid var(--border); border-radius: 12px; background: rgba(255, 255, 255, .65); }
.coverage-principle-icon { display: grid; width: 40px; height: 40px; flex: 0 0 40px; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal-700); font-size: .75rem; }
.coverage-principle > div:last-child { display: flex; flex-direction: column; }
.coverage-principle span { color: var(--gold-500); font-size: .55rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.coverage-principle strong { color: var(--navy-900); font-size: .75rem; }

.enterprise-section { padding: 112px 0; background: var(--white); }
.enterprise-shell { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); overflow: hidden; border-radius: var(--radius-md); background: var(--ivory-100); box-shadow: 0 24px 70px rgba(8, 23, 34, .08); }
.enterprise-intro { display: flex; align-items: flex-start; flex-direction: column; padding: clamp(2rem, 4.8vw, 4.5rem); color: var(--white); background: var(--navy-900); }
.enterprise-intro h2 { max-width: 520px; margin-bottom: 1.25rem; color: var(--white); font-size: clamp(2.25rem, 4vw, 3.6rem); }
.enterprise-intro > p:not(.eyebrow) { max-width: 470px; margin-bottom: 2.5rem; color: rgba(255, 255, 255, .6); font-size: .9rem; line-height: 1.75; }
.enterprise-fit { width: 100%; margin: auto 0 2.3rem; padding-top: 1.3rem; border-top: 1px solid rgba(255, 255, 255, .14); }
.enterprise-fit > span { display: block; margin-bottom: .85rem; color: var(--gold-400); font-size: .55rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.enterprise-fit > div { display: flex; flex-wrap: wrap; gap: .55rem; }
.enterprise-fit strong { padding: .45rem .7rem; border: 1px solid rgba(255, 255, 255, .13); border-radius: 999px; color: rgba(255, 255, 255, .76); font-size: .59rem; font-weight: 600; }

.enterprise-capabilities { padding: clamp(1rem, 3vw, 2rem) clamp(1.25rem, 3.5vw, 3rem); }
.enterprise-capability { display: grid; grid-template-columns: 28px 48px minmax(0, 1fr); align-items: center; gap: 1rem; min-height: 126px; padding: 1.15rem 0; border-bottom: 1px solid var(--border); }
.enterprise-capability:last-child { border-bottom: 0; }
.capability-number { align-self: start; padding-top: .35rem; color: var(--gold-500); font-family: var(--font-heading); font-size: .65rem; font-weight: 500; }
.capability-icon { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--teal-700); background: var(--white); font-size: .78rem; }
.enterprise-capability h3 { margin: 0 0 .45rem; color: var(--navy-900); font-size: clamp(1.12rem, 1.8vw, 1.4rem); }
.enterprise-capability p { max-width: 480px; margin: 0; color: var(--stone); font-size: .7rem; line-height: 1.6; }

.faq-section { padding: 112px 0; background: var(--ivory-100); }
.faq-intro { position: sticky; top: 120px; max-width: 350px; }
.faq-intro h2 { margin-bottom: 1.25rem; font-size: clamp(2.2rem, 3.8vw, 3.4rem); }
.faq-intro > p:not(.eyebrow) { margin-bottom: 1.6rem; color: var(--stone); font-size: .86rem; line-height: 1.7; }
.faq-intro a { display: inline-flex; align-items: center; gap: .55rem; padding-bottom: .35rem; border-bottom: 1px solid var(--gold-500); color: var(--navy-900); font-size: .7rem; font-weight: 700; text-decoration: none; }
.faq-intro a i { font-size: .6rem; transition: transform var(--transition); }
.faq-intro a:hover i { transform: translateX(3px); }

.faq-accordion { border-top: 1px solid var(--border); }
.faq-accordion .accordion-item { border: 0; border-bottom: 1px solid var(--border); border-radius: 0; background: transparent; }
.faq-accordion .accordion-button { gap: 1.15rem; padding: 1.55rem .25rem; color: var(--navy-900); background: transparent; box-shadow: none; font-family: var(--font-heading); font-size: clamp(1.05rem, 1.7vw, 1.3rem); font-weight: 500; line-height: 1.35; }
.faq-accordion .accordion-button > span { flex: 0 0 26px; color: var(--gold-500); font-family: var(--font-body); font-size: .58rem; font-weight: 700; }
.faq-accordion .accordion-button::after { width: 34px; height: 34px; margin-left: auto; border: 1px solid var(--border); border-radius: 50%; background-image: none; content: "+"; color: var(--teal-700); font-family: var(--font-body); font-size: 1.15rem; font-weight: 400; line-height: 31px; text-align: center; transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition); }
.faq-accordion .accordion-button:not(.collapsed)::after { transform: rotate(45deg); border-color: var(--teal-700); color: var(--white); background: var(--teal-700); }
.faq-accordion .accordion-button:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }
.faq-accordion .accordion-body { max-width: 700px; padding: 0 4.2rem 1.6rem 3.65rem; color: var(--stone); font-size: .78rem; line-height: 1.75; }

.closing-cta { padding: 0 0 112px; background: var(--ivory-100); }
.closing-cta-shell { position: relative; padding: clamp(2rem, 5vw, 4.5rem); overflow: hidden; border-radius: var(--radius-md); color: var(--white); background: var(--navy-900); box-shadow: var(--shadow-lg); }
.closing-cta-shell::before { position: absolute; top: -180px; right: -120px; width: 420px; height: 420px; content: ""; border: 1px solid rgba(215, 179, 95, .14); border-radius: 50%; box-shadow: 0 0 0 54px rgba(215, 179, 95, .035), 0 0 0 108px rgba(215, 179, 95, .025); pointer-events: none; }
.closing-cta-heading { position: relative; max-width: 780px; margin: 0 auto 3rem; text-align: center; }
.closing-cta-heading .eyebrow { justify-content: center; }
.closing-cta-heading h2 { margin-bottom: 1rem; color: var(--white); font-size: clamp(2.4rem, 5vw, 4.4rem); }
.closing-cta-heading > p:last-child { margin: 0; color: rgba(255, 255, 255, .57); font-size: .86rem; }
.closing-cta-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.closing-action { display: flex; align-items: flex-start; flex-direction: column; min-height: 370px; padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid rgba(255, 255, 255, .14); border-radius: 14px; background: rgba(255, 255, 255, .045); }
.business-action { border-color: rgba(215, 179, 95, .26); background: linear-gradient(145deg, rgba(215, 179, 95, .11), rgba(255, 255, 255, .035)); }
.closing-action-top { display: flex; width: 100%; align-items: center; justify-content: space-between; margin-bottom: 3.2rem; color: var(--gold-400); }
.closing-action-top span { font-size: .57rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.closing-action-top i { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255, 255, 255, .15); border-radius: 50%; color: var(--white); font-size: .72rem; }
.closing-action h3 { max-width: 480px; margin-bottom: 1rem; color: var(--white); font-size: clamp(1.65rem, 2.8vw, 2.25rem); }
.closing-action > p { max-width: 470px; margin-bottom: 2rem; color: rgba(255, 255, 255, .58); font-size: .76rem; line-height: 1.7; }
.closing-action .btn { width: 100%; margin-top: auto; }

.site-footer { padding: 88px 0 28px; color: rgba(255, 255, 255, .62); background: var(--navy-950); }
.footer-main { align-items: flex-start; }
.footer-brand { margin-bottom: 1.25rem; color: var(--white); }
.footer-brand .brand-mark { border-color: rgba(255, 255, 255, .2); color: var(--navy-950); background: var(--gold-400); }
.footer-brand .brand-tagline { color: rgba(255, 255, 255, .48); }
.footer-copy { max-width: 450px; margin: 0 0 1.7rem; font-size: .78rem; line-height: 1.75; }
.footer-status { display: grid; grid-template-columns: 8px auto; align-items: center; gap: .15rem .6rem; width: fit-content; padding: .8rem 1rem; border: 1px solid rgba(255, 255, 255, .1); border-radius: 10px; background: rgba(255, 255, 255, .035); }
.footer-status > span { grid-row: 1 / 3; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(215, 179, 95, .1); }
.footer-status strong { color: var(--white); font-size: .65rem; }
.footer-status small { color: rgba(255, 255, 255, .42); font-size: .55rem; }
.footer-nav { display: flex; align-items: flex-start; flex-direction: column; gap: .8rem; }
.footer-nav h2 { margin: 0 0 .55rem; color: var(--gold-400); font-family: var(--font-body); font-size: .57rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-nav a { color: rgba(255, 255, 255, .72); font-size: .7rem; font-weight: 600; text-decoration: none; transition: color var(--transition), transform var(--transition); }
.footer-nav a:hover { transform: translateX(3px); color: var(--white); }
.footer-markets { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 4.2rem; padding: 1.25rem 0; border-top: 1px solid rgba(255, 255, 255, .11); border-bottom: 1px solid rgba(255, 255, 255, .11); }
.footer-markets > div { display: flex; align-items: center; gap: .8rem; }
.footer-markets i { color: var(--gold-400); font-size: .75rem; }
.footer-markets span { color: rgba(255, 255, 255, .42); font-size: .57rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-markets strong { padding: .35rem .55rem; border-radius: 999px; color: var(--white); background: rgba(255, 255, 255, .07); font-size: .6rem; }
.footer-markets p { margin: 0; color: rgba(255, 255, 255, .4); font-size: .61rem; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 2rem; padding-top: 1.5rem; font-size: .6rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { display: inline-flex; align-items: center; gap: .45rem; color: rgba(255, 255, 255, .72); font-weight: 700; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-400); }

@media (max-width: 1199.98px) {
  .solution-row { grid-template-columns: 30px 44px minmax(130px, 155px) minmax(160px, 1fr) 38px; gap: .8rem; }
}

@media (max-width: 991.98px) {
  .site-header { top: 46px; }
  .hero { min-height: 660px; }
  .hero-media { background-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(8, 23, 34, .94) 0%, rgba(8, 23, 34, .82) 50%, rgba(8, 23, 34, .28) 100%); }
  .min-vh-hero { min-height: 660px; }
  .trust-panel { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(2),
  .trust-item:nth-child(4) { border-right: 0; }
  .connection-heading p { margin-left: 0; }
  .connection-bridge { grid-template-columns: auto 1fr; }
  .match-factors { grid-column: 2; justify-content: flex-start; flex-wrap: wrap; }
  .solutions-intro { position: static; max-width: 680px; margin-bottom: .5rem; }
  .business-journey { padding: 92px 0; }
  .business-copy { max-width: 720px; }
  .requirement-card { max-width: 720px; margin-left: 0; }
  .profile-card { max-width: 720px; }
  .professional-copy { max-width: 720px; margin-left: 0; }
  .roles-heading > div:last-child p { margin-left: 0; }
  .roles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .roles-footer { align-items: flex-start; flex-direction: column; }
  .roles-footer > div { justify-content: flex-start; }
  .why-intro { position: static; max-width: 720px; }
  .verification-shell { grid-template-columns: 1fr; }
  .verification-shield { margin-bottom: 2.2rem; }
  .coverage-heading > div:last-child p { margin-left: 0; }
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-card { min-height: auto; }
  .coverage-card > p { min-height: 0; }
  .enterprise-shell { grid-template-columns: 1fr; }
  .enterprise-intro { min-height: 600px; }
  .faq-intro { position: static; max-width: 620px; }
  .closing-cta-grid { grid-template-columns: 1fr; }
  .closing-action { min-height: 340px; }
  .footer-markets { align-items: flex-start; flex-direction: column; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom p:nth-child(2) { grid-column: 1; grid-row: 2; }
  .footer-bottom a { grid-column: 2; grid-row: 1 / 3; }
}

@media (max-width: 767.98px) {
  .utility-bar a { display: none; }
  .utility-bar .container { justify-content: center !important; }
  .site-header { top: 44px; }
  .nav-shell { min-height: 68px; padding: .45rem .5rem .45rem .65rem; border-radius: 14px; }
  .site-header.is-sticky { top: 8px; }
  .site-header.is-sticky .nav-shell { min-height: 64px; }
  .brand-name { font-size: .92rem; }
  .brand-tagline { font-size: .48rem; }
  .brand-mark { width: 40px; height: 40px; }
  .hero { min-height: 650px; }
  .hero-media { background-position: 67% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(8, 23, 34, .94) 0%, rgba(8, 23, 34, .83) 68%, rgba(8, 23, 34, .62) 100%); }
  .min-vh-hero { min-height: 650px; padding-top: 48px; padding-bottom: 48px; }
  .hero-copy { max-width: 520px; padding-left: 1.2rem; }
  .hero h1 { max-width: 480px; }
  .solutions-section,
  .professional-journey,
  .roles-section,
  .why-section,
  .verification-section,
  .coverage-section,
  .enterprise-section,
  .faq-section { padding: 76px 0; }
  .connection-section { padding: 76px 0 12px; }
  .connection-heading { margin-bottom: 2.25rem; }
  .connection-grid { grid-template-columns: 1fr; }
  .issue-card { min-height: 330px; }
  .connection-bridge { grid-column: auto; }
  .solution-row { grid-template-columns: 28px 42px minmax(0, 1fr) 38px; min-height: 142px; gap: .75rem; padding: 1rem; }
  .solution-number { grid-column: 1; grid-row: 1; }
  .solution-icon { grid-column: 2; grid-row: 1; width: 42px; height: 42px; }
  .solution-title { grid-column: 3; grid-row: 1; }
  .solution-row > p { grid-column: 3 / -1; grid-row: 2; }
  .solution-link { grid-column: 4; grid-row: 1; }
  .business-journey { padding: 76px 0; }
  .closing-cta { padding-bottom: 76px; }
  .site-footer { padding-top: 64px; }
}

@media (max-width: 575.98px) {
  .container { --bs-gutter-x: 2rem; }
  .site-header .brand-tagline { display: none; }
  .site-header .brand-lockup { gap: 0; }
  .site-header .brand-name { font-size: .88rem; }
  .hero-actions .btn { width: 100%; }
  .trust-panel { grid-template-columns: 1fr; margin-top: -24px; }
  .trust-item { min-height: 112px; padding: 1rem 1.15rem; border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(3) { border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: 0; }
  .issue-card { min-height: 350px; }
  .issue-card-top { margin-bottom: 2.6rem; }
  .connection-bridge { grid-template-columns: auto 1fr; padding: 1.15rem; }
  .match-factors { grid-column: 1 / -1; padding-top: .25rem; }
  .business-steps { grid-template-columns: 1fr; gap: 1.15rem; }
  .business-steps p { max-width: 100%; }
  .requirement-card { padding: 1.25rem; }
  .requirement-flow { flex-wrap: wrap; justify-content: center; }
  .profile-card { padding: 1.25rem; }
  .professional-flow { line-height: 1.7; }
  .roles-grid { grid-template-columns: 1fr; }
  .role-card { min-height: 250px; padding: 1.4rem; }
  .role-card-top { margin-bottom: 1.9rem; }
  .roles-footer { padding: 1.1rem; }
  .roles-footer > div { flex-direction: column; }
  .why-item { grid-template-columns: 26px 42px 1fr; gap: .7rem; padding: 1.25rem .35rem; }
  .why-item:hover { padding-right: .35rem; padding-left: .35rem; }
  .why-icon { width: 40px; height: 40px; }
  .managed-item { padding-right: .8rem; padding-left: .8rem; }
  .managed-item:hover { padding-right: .8rem; padding-left: .8rem; }
  .verification-steps { grid-template-columns: 1fr; }
  .verification-steps article { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--border); }
  .verification-steps article:nth-child(3) { border-bottom: 1px solid var(--border); }
  .verification-steps article:last-child { border-bottom: 0; }
  .verification-step-top { margin-bottom: 1.5rem; }
  .reputation-roadmap { grid-template-columns: 1fr; }
  .reputation-roadmap > span { justify-self: start; }
  .coverage-card { padding: 1.4rem; }
  .coverage-card-top { margin-bottom: 2.2rem; }
  .coverage-principle { align-items: flex-start; }
  .enterprise-intro { min-height: auto; padding: 2rem 1.4rem; }
  .enterprise-intro > p:not(.eyebrow) { margin-bottom: 2rem; }
  .enterprise-fit { margin-top: 1rem; }
  .enterprise-intro .btn { width: 100%; }
  .enterprise-capabilities { padding: .6rem 1.4rem; }
  .enterprise-capability { grid-template-columns: 24px 42px minmax(0, 1fr); gap: .7rem; min-height: 132px; }
  .capability-icon { width: 42px; height: 42px; }
  .faq-accordion .accordion-button { gap: .7rem; padding: 1.3rem .1rem; }
  .faq-accordion .accordion-button > span { flex-basis: 22px; }
  .faq-accordion .accordion-button::after { width: 30px; height: 30px; flex: 0 0 30px; font-size: 1rem; line-height: 27px; }
  .faq-accordion .accordion-body { padding: 0 2.3rem 1.4rem 2.9rem; }
  .closing-cta-heading { margin-bottom: 2.25rem; text-align: left; }
  .closing-cta-heading .eyebrow { justify-content: flex-start; }
  .closing-action { min-height: 330px; padding: 1.4rem; }
  .closing-action-top { margin-bottom: 2.3rem; }
  .footer-markets > div { flex-wrap: wrap; }
  .footer-markets span { width: calc(100% - 1.6rem); }
  .footer-bottom { grid-template-columns: 1fr; gap: .65rem; }
  .footer-bottom p:nth-child(2),
  .footer-bottom a { grid-column: 1; grid-row: auto; }
  .footer-bottom a { margin-top: .55rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
