:root {
  --bg: #eef1f4;
  --surface: #fffdf9;
  --surface-soft: #f6f3ee;
  --ink: #101923;
  --muted: #526274;
  --line: #cfd7de;
  --navy: #0e1721;
  --accent: #e7a09e;
  --accent-hover: #d98583;
  --signal: #286a7a;
  --focus: #1f6feb;
  --max: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(207, 215, 222, 0.8);
  background: rgba(238, 241, 244, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(100%, 1340px);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--navy);
  font-weight: 800;
}

.brand-name {
  font-size: 17px;
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:hover {
  background: rgba(255, 253, 249, 0.86);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 72px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: #b6c1ca;
}

.btn-primary {
  background: var(--accent);
  border-color: #c98280;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.btn-text {
  border-color: transparent;
  background: transparent;
  color: var(--signal);
}

.hero {
  min-height: auto;
  display: grid;
  align-items: start;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(238, 241, 244, 0.98) 0%, rgba(238, 241, 244, 0.92) 50%, rgba(238, 241, 244, 0.72) 100%),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1900&q=84") center / cover;
}

.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) 24px 38px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 8.6vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #334252;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.3;
  font-weight: 500;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin: 18px 0 0;
  color: #405164;
  font-weight: 800;
}

.hero-strip {
  width: min(100%, var(--max));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-stat {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(207, 215, 222, 0.92);
  border-radius: 8px 8px 0 0;
  background: rgba(255, 253, 249, 0.9);
}

.hero-stat strong {
  display: block;
  color: var(--signal);
  font-size: 34px;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.26;
}

.market-strip {
  padding: 14px 24px 0;
}

.market-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.market-card {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.market-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.95;
}

.market-card span {
  display: block;
  max-width: 270px;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.3;
}

.market-card em {
  display: block;
  margin-top: 10px;
  color: var(--signal);
  font-style: normal;
  font-weight: 900;
}

.section {
  padding: 82px 24px 0;
}

.section.compact {
  padding-top: 36px;
}

.section.alt {
  margin-top: 82px;
  padding-bottom: 82px;
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.52fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 24px;
}

.section-header h2,
.section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.42;
  font-weight: 500;
}

.section-note {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.panel,
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.trustiq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
  gap: 16px;
}

.trustiq-panel {
  padding: 30px;
  background: var(--navy);
  color: #fff;
}

.trustiq-panel h2 {
  max-width: 650px;
}

.trustiq-panel p {
  max-width: 680px;
  color: #d4dee8;
  font-size: 18px;
  line-height: 1.46;
  font-weight: 500;
}

.aria-guide {
  padding: 22px;
}

.agent-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.agent-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.agent-kicker {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.profile-option {
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
}

.profile-option span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.profile-option.is-selected {
  border-color: #c98280;
  background: #f7dddd;
}

.recommendation {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.recommendation strong {
  display: block;
  font-size: 19px;
}

.recommendation p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}

.program-grid,
.pricing-grid,
.partner-grid,
.background-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.background-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-card,
.pricing-card,
.partner-card,
.opportunity-card {
  min-height: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program-card.dark,
.pricing-card.dark,
.opportunity-card.dark {
  background: var(--navy);
  color: #fff;
}

.program-card.dark p,
.pricing-card.dark p,
.pricing-card.dark li,
.opportunity-card.dark p {
  color: #d5dee7;
}

.program-card h3,
.pricing-card h3,
.partner-card h3,
.opportunity-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
}

.program-card p,
.pricing-card p,
.partner-card p,
.opportunity-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.44;
}

.path-meta,
.price {
  color: var(--signal);
  font-weight: 800;
}

.price {
  margin-top: 18px;
  font-size: 42px;
  line-height: 1;
}

.pricing-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

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

.team-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
}

.team-copy {
  padding: 30px;
  background: var(--navy);
  color: #fff;
}

.team-copy p {
  color: #d5dee7;
  font-size: 18px;
  line-height: 1.46;
  font-weight: 500;
}

.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mini-card {
  padding: 22px;
}

.mini-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.42;
}

.enrollment {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.52fr);
  gap: 16px;
  align-items: stretch;
}

.price-panel {
  padding: 30px;
}

.price-panel .price {
  font-size: clamp(54px, 7vw, 84px);
}

.price span {
  font-size: 0.28em;
  color: var(--muted);
}

.was-price {
  display: inline-block;
  margin-right: 14px;
  color: #7f8a94;
  font-size: 0.44em;
  text-decoration: line-through;
  vertical-align: middle;
}

.price-panel p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.42;
  font-weight: 500;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.feature-list div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
  color: #324453;
  font-weight: 700;
}

.form-card {
  padding: 24px;
}

.field {
  margin-bottom: 14px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #405164;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
  color: var(--ink);
  padding: 0 12px;
}

textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.form-card .btn {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 600;
}

.partner-form {
  display: none;
  margin-top: 18px;
}

.partner-form.is-open {
  display: block;
}

.success-state {
  padding: 42px 12px;
  text-align: center;
}

.success-state strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
}

.success-state span {
  display: block;
  max-width: 420px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
}

.site-footer {
  margin-top: 82px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.7);
}

.footer-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--signal);
  font-weight: 800;
}

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

@media (max-width: 1060px) {
  .nav-shell {
    min-height: auto;
    padding: 14px 18px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu {
    display: none;
    flex: 0 0 100%;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .nav-menu.is-open {
    display: grid;
    gap: 12px;
  }

  .nav-links,
  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .nav-links a,
  .nav-actions .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-strip,
  .market-grid,
  .section-header,
  .trustiq-layout,
  .team-layout,
  .enrollment {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .pricing-grid,
  .partner-grid,
  .background-grid,
  .opportunity-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(238, 241, 244, 0.98), rgba(238, 241, 244, 0.93) 58%, rgba(238, 241, 244, 0.86)),
      url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1100&q=82") center / cover;
  }

  .hero-inner {
    padding: 44px 18px 0;
  }

  h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.96;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions .btn,
  .action-row .btn {
    width: 100%;
  }

  .hero-strip,
  .profile-grid,
  .team-cards,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-radius: 8px;
  }

  .section,
  .section.alt {
    padding: 58px 18px 0;
  }

  .section.alt {
    margin-top: 58px;
    padding-bottom: 58px;
  }

  .section-header h2,
  .section h2 {
    font-size: 36px;
  }

  .footer-shell {
    display: grid;
  }
}

@media (max-width: 430px) {
  .nav-shell {
    padding: 14px 12px;
  }

  .brand-name {
    font-size: 14px;
  }

  .nav-links,
  .nav-actions {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(38px, 11vw, 46px);
  }

  .section,
  .section.alt {
    padding-left: 12px;
    padding-right: 12px;
  }
}
