:root {
  --ink: #13252a;
  --ink-soft: #4e5f62;
  --paper: #ffffff;
  --paper-soft: #f5f8f7;
  --line: #dce6e3;
  --teal: #1d777b;
  --teal-deep: #10565a;
  --teal-soft: #dff1ef;
  --aqua: #74c6c8;
  --purple: #67507b;
  --shadow: 0 18px 45px rgba(17, 53, 57, 0.09);
  --radius: 24px;
  --shell: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content-shell,
.nav-shell {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(19, 37, 42, 0.07);
  backdrop-filter: blur(16px);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand-mark img {
  width: 116px;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 620;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--teal);
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
}

.nav-cta:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center 48%;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 32, 34, 0.80) 0%, rgba(7, 32, 34, 0.64) 42%, rgba(7, 32, 34, 0.26) 72%, rgba(7, 32, 34, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 32, 34, 0.12), rgba(7, 32, 34, 0.12));
}

.hero-content {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
  padding: 76px 0;
  color: white;
}

.hero-content > * {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: #c9eeee;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.1rem, 6.6vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-copy {
  margin: 28px 0 0;
  max-width: 670px;
  color: rgba(255,255,255,0.91);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: white;
  color: var(--teal-deep);
}

.button-primary:hover {
  background: #edf9f8;
}

.button-ghost {
  border-color: rgba(255,255,255,0.48);
  color: white;
  background: rgba(255,255,255,0.06);
}

.button-ghost:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.11);
}

.section {
  padding: 110px 0;
}

.about-section {
  background: var(--paper);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(360px, 0.78fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.copy-column h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.copy-column p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

.lead {
  font-size: 1.14rem;
  line-height: 1.68;
}

.family-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.family-card img {
  width: 100%;
  aspect-ratio: 0.89;
  object-fit: cover;
  object-position: center;
}

.family-card figcaption {
  padding: 16px 20px 18px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.brands-section {
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-top: 20px;
}

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

.brand-card {
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 265px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 10px 32px rgba(17, 53, 57, 0.04);
}

.brand-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: 235px 1fr;
  min-height: 315px;
}

.brand-logo-wrap {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 165px;
  padding: 20px;
  border-radius: 17px;
  background: #fff;
}

.brand-logo-wrap img {
  width: 100%;
  max-width: 190px;
  max-height: 155px;
  object-fit: contain;
}

.brand-card-featured .brand-logo-wrap img {
  max-width: 220px;
  max-height: 210px;
}

.brand-logo-wrap-ipro {
  background:
    radial-gradient(circle at 78% 22%, rgba(116, 198, 200, 0.24), transparent 34%),
    linear-gradient(145deg, #eef8f6, #f7f3fa);
}

.ipro-mark {
  display: grid;
  place-items: center;
  gap: 2px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(29, 119, 123, 0.18);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(17, 53, 57, 0.08);
  transform: rotate(-2deg);
}

.ipro-word {
  color: var(--teal-deep);
  font-size: 2.2rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.06em;
}

.ipro-word::first-letter {
  color: var(--purple);
}

.ipro-tag {
  max-width: 88px;
  color: var(--ink-soft);
  font-size: 0.55rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.brand-label {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-card h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.brand-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--teal-deep);
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.partner-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(116,198,200,0.18), transparent 32%),
    radial-gradient(circle at 18% 90%, rgba(103,80,123,0.18), transparent 30%),
    #123d42;
  color: white;
}

.partner-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  top: -250px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}

.section-heading-light .eyebrow {
  color: #a8e0df;
}

.section-heading-light h2 {
  color: white;
}

.section-heading-light p:not(.eyebrow) {
  color: rgba(255,255,255,0.72);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.path-card {
  position: relative;
  min-height: 285px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.path-number {
  display: inline-block;
  margin-bottom: 40px;
  color: #a8e0df;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.path-card h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.path-card p {
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-size: 0.95rem;
}

.partner-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 26px;
  padding: 26px 30px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
}

.partner-note p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.button-light {
  flex: 0 0 auto;
  background: white;
  color: var(--teal-deep);
}

.contact-section {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(50px, 8vw, 105px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.contact-topics {
  display: grid;
  gap: 9px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-topics li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 620;
}

.contact-topics li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}

.privacy-note {
  margin-top: 32px;
  font-size: 0.84rem;
}

.form-panel {
  overflow: hidden;
  min-height: 610px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.form-placeholder {
  min-height: 610px;
  display: grid;
  place-items: center;
  padding: 42px;
  text-align: center;
}

.form-placeholder > div {
  max-width: 430px;
}

.form-placeholder h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
}

.form-placeholder p:not(.eyebrow) {
  color: var(--ink-soft);
}

code {
  padding: 2px 6px;
  border-radius: 5px;
  background: #e4ecea;
  font-size: 0.9em;
}

.ms-form {
  width: 100%;
  min-height: 880px;
  border: 0;
  background: white;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.footer-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo img {
  width: 92px;
  height: 54px;
  object-fit: contain;
}

.footer-inner p {
  margin: 0 auto 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.footer-inner > a:last-child {
  color: var(--teal-deep);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  :root {
    --header-height: 74px;
  }

  .brand-mark img {
    width: 104px;
    height: 52px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(17,53,57,0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 8px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: 610px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7,32,34,0.84), rgba(7,32,34,0.46));
  }

  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .family-card {
    max-width: 620px;
  }

  .brand-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .brand-card,
  .brand-card-featured {
    grid-column: auto;
    grid-template-columns: 170px 1fr;
    min-height: 250px;
  }

  .contact-copy {
    position: static;
  }

  .partner-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .content-shell,
  .nav-shell,
  .hero-content {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: 610px;
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7,32,34,0.88), rgba(7,32,34,0.54));
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .brand-card,
  .brand-card-featured {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .brand-logo-wrap {
    min-height: 150px;
  }

  .path-card {
    min-height: auto;
  }

  .path-number {
    margin-bottom: 26px;
  }

  .form-panel,
  .form-placeholder {
    min-height: 530px;
  }

  .form-placeholder {
    padding: 28px;
  }

  .footer-inner {
    min-height: 150px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .footer-inner p {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


.form-placeholder[hidden],
.ms-form[hidden] {
  display: none !important;
}
