@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --ink: #07111f;
  --ink-soft: #12233a;
  --blue: #155eef;
  --blue-bright: #3978ff;
  --paper: #f7f9fc;
  --white: #fff;
  --muted: #5d6878;
  --line: rgba(7, 17, 31, 0.11);
  --dark-line: rgba(255, 255, 255, 0.14);
  --display: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
  --shell: 1240px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
svg {
  display: block;
}
::selection {
  color: var(--white);
  background: var(--blue);
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
}
.skip-link:focus {
  top: 16px;
}
.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;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -0.045em;
  line-height: 1.02;
}
h1 {
  font-size: clamp(3.5rem, 8vw, 7.8rem);
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}
h3 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}
p {
  margin: 0;
  color: var(--muted);
}
.kicker {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker--light {
  color: #8fb5ff;
}
.hero-copy {
  max-width: 720px;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
}
.section {
  padding: 112px 0;
}
.section--white {
  background: var(--white);
}
.section--dark {
  color: var(--white);
  background: var(--ink);
}
.section--dark p {
  color: #abb6c6;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  align-items: end;
  gap: 56px;
  margin-bottom: 56px;
}
.section-heading h2 {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(7, 17, 31, 0.05);
}
.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  width: clamp(168px, 15vw, 205px);
  height: auto;
}
.brand--light {
  color: var(--white);
}
.brand--light .brand-logo {
  width: min(220px, 100%);
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}
.primary-nav a {
  position: relative;
  padding: 29px 0;
  color: #354154;
  font-size: 0.84rem;
  font-weight: 700;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
}
.menu-button > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 72px;
  background: var(--paper);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.home-hero__inner {
  position: relative;
}
.home-hero h1 {
  max-width: 1120px;
  margin-bottom: 34px;
}
.home-hero h1 span {
  color: var(--blue);
}
.path-section {
  padding: 0 0 112px;
}
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.path-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(30px, 4vw, 54px);
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease;
}
.path-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 52px 52px;
}
.path-card > * {
  position: relative;
}
.path-card--families {
  background: linear-gradient(145deg, #0f2c52, #155eef);
}
.path-card--partners {
  background: linear-gradient(145deg, #07111f, #172d49);
}
.path-card__number {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--display);
  font-size: 0.84rem;
}
.path-card__label {
  margin: 74px 0 22px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.path-card strong {
  max-width: 510px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.path-card__copy {
  max-width: 490px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
}
.path-card__action {
  margin-top: auto;
  padding-top: 44px;
  font-weight: 700;
}
.path-card__action span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.2s ease;
}
.path-card:hover .path-card__action span {
  transform: translate(3px, -3px);
}

.meet-strip {
  padding: 112px 0;
  background: var(--white);
}
.meet-strip__grid,
.story-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}
.executive-photo {
  position: relative;
  min-height: 600px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(155deg, #172b46, #07111f 70%);
  box-shadow: var(--shadow);
}
.executive-photo img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.meet-strip__copy h2 {
  max-width: 680px;
  margin-bottom: 26px;
}
.meet-strip__copy > p:not(.kicker) {
  max-width: 650px;
  font-size: 1.1rem;
}
.credibility-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 42px 0;
  padding: 28px 0;
  border-block: 1px solid var(--line);
}
.credibility-line span {
  color: var(--muted);
  font-size: 0.77rem;
}
.credibility-line strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.15rem;
}
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--blue);
  font-weight: 700;
}
.text-link span {
  transition: transform 0.2s ease;
}
.text-link:hover span {
  transform: translateX(4px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 126px 0 104px;
  color: var(--white);
  background: var(--ink);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -40%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(255, 255, 255, 0.025),
    0 0 0 200px rgba(255, 255, 255, 0.018);
}
.page-hero--blue {
  background: #0c3ba4;
}
.page-hero .shell {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(3.4rem, 7vw, 7rem);
}
.page-hero .hero-copy {
  margin-top: 30px;
  color: #b9c5d5;
}
.page-hero--blue .hero-copy {
  color: #d9e6ff;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}
.center-actions {
  justify-content: center;
}
.spaced-copy {
  margin-top: 18px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(21, 94, 239, 0.24);
}
.button--light {
  color: var(--ink);
  background: var(--white);
}
.button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}
.button--dark {
  color: var(--white);
  background: var(--ink);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.offer-card {
  min-height: 280px;
  padding: 34px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offer-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  color: var(--blue);
  border: 1px solid rgba(21, 94, 239, 0.25);
  border-radius: 4px;
  font-family: var(--display);
  font-weight: 700;
}
.offer-card h3 {
  margin-bottom: 14px;
}
.offer-card p {
  font-size: 0.92rem;
}
.trust-band {
  padding: 44px 0;
  background: #edf2f9;
  border-block: 1px solid var(--line);
}
.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-band__grid span {
  padding: 8px 26px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 0.76rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.trust-band__grid span:last-child {
  border: 0;
}
.trust-band__grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0;
  text-transform: none;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--dark-line);
}
.system-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 34px 28px 34px 0;
  border-bottom: 1px solid var(--dark-line);
}
.system-item:nth-child(odd) {
  border-right: 1px solid var(--dark-line);
}
.system-item:nth-child(even) {
  padding-left: 28px;
}
.system-item__number {
  color: #719eff;
  font-family: var(--display);
  font-size: 0.8rem;
}
.system-item h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1.35rem;
}
.system-item p {
  font-size: 0.9rem;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
}
.timeline article {
  padding: 30px;
  border-left: 1px solid var(--line);
  counter-increment: steps;
}
.timeline article:last-child {
  border-right: 1px solid var(--line);
}
.timeline article::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 54px;
  color: var(--blue);
  font-family: var(--display);
}
.timeline h3 {
  margin-bottom: 12px;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.45;
}
.quote-card footer {
  margin-top: auto;
  padding-top: 32px;
  color: var(--muted);
  font-size: 0.8rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.video-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  overflow: hidden;
  position: relative;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--ink);
}
.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 17, 31, 0.18), transparent 55%);
}
.video-card::after {
  content: "▶";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}
.video-card > * {
  position: relative;
}
.video-card span {
  margin-bottom: 8px;
  color: #9bb9f7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.video-card h3 {
  color: var(--white);
}
.video-card p {
  max-width: 510px;
  margin-top: 10px;
  color: #c1cbd9;
}
.video-card--1 {
  background: linear-gradient(130deg, #153767, #07111f);
}
.video-card--2 {
  background: linear-gradient(130deg, #0d58d0, #0a2350);
}
.video-card--3 {
  background: linear-gradient(130deg, #26384e, #07111f);
}
.video-card--4 {
  background: linear-gradient(130deg, #134ca6, #111e30);
}
.video-card--5 {
  background: linear-gradient(130deg, #172a47, #0c3ba4);
}
.video-card--youtube {
  background-image: url("https://i.ytimg.com/vi/wOqdSjBrQas/maxresdefault.jpg");
  background-position: center;
  background-size: cover;
}
.video-card--lessons {
  background-image: url("https://i.ytimg.com/vi/_LwwoVtR5HI/maxresdefault.jpg");
  background-position: center;
  background-size: cover;
}
.video-card--podcast {
  background-image: url("https://i.ytimg.com/vi/Pj1vAlPUrqc/maxresdefault.jpg");
  background-position: center;
  background-size: cover;
}
.video-card--agent-success {
  background-image: url("https://i.ytimg.com/vi/1EgmuetseKk/maxresdefault.jpg");
  background-position: center;
  background-size: cover;
}
.video-card--education {
  background-image: url("https://i.ytimg.com/vi/RfnyAQNFXJ8/maxresdefault.jpg");
  background-position: center;
  background-size: cover;
}
.video-card--testimonials {
  background-image: url("https://i.ytimg.com/vi/Xeowhg-QHqQ/hqdefault.jpg");
  background-position: center;
  background-size: cover;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(48px, 8vw, 110px);
}
.form-layout__aside h2 {
  margin-bottom: 24px;
}
.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.contact-details span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.contact-details strong {
  display: block;
  margin-top: 3px;
  font-size: 1rem;
}
.form {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-size: 0.8rem;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: 0;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.1);
}
.form-note {
  font-size: 0.74rem;
}

.ghl-form-shell {
  min-width: 0;
  padding: clamp(16px, 2vw, 24px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.ghl-form-frame {
  display: block;
  width: 100%;
  min-height: 780px;
  border: 0;
}

.licensing-section {
  color: var(--white);
  background: linear-gradient(135deg, #0c3ba4 0%, #07111f 72%);
}
.licensing-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}
.licensing-card h2 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--white);
}
.licensing-card p {
  max-width: 720px;
  color: #c9d5e7;
}
.licensing-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.licensing-list li {
  position: relative;
  padding-left: 22px;
  color: #edf3ff;
}
.licensing-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #719eff;
  border-radius: 50%;
}
.licensing-card__action {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}
.licensing-card__action > span {
  font-family: var(--display);
  font-size: 1.35rem;
}
.licensing-card__action small {
  color: #aebed4;
  line-height: 1.6;
}
.ghl-form-frame--licensing {
  min-height: 780px;
  background: var(--white);
  border-radius: 8px;
}

.cta-band {
  padding: 84px 0;
  color: var(--white);
  background: var(--blue);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 {
  max-width: 800px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.site-footer {
  padding: 68px 0 24px;
  color: var(--white);
  background: #040a12;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 60px;
  align-items: start;
}
.footer-top p {
  margin-top: 20px;
  color: #8793a3;
  font-size: 0.84rem;
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 34px;
}
.footer-nav a {
  color: #c1c8d2;
  font-size: 0.84rem;
}
.social-links {
  display: flex;
  gap: 8px;
}
.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #bdc6d3;
  border: 1px solid var(--dark-line);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 60px;
  padding-top: 22px;
  color: #697586;
  border-top: 1px solid var(--dark-line);
  font-size: 0.72rem;
}
.footer-bottom span:last-child {
  display: flex;
  gap: 24px;
}

.legal {
  max-width: 840px;
}
.legal h2 {
  margin: 54px 0 16px;
  font-size: 1.8rem;
}
.legal p + p {
  margin-top: 16px;
}
.status-page {
  min-height: 66vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.status-page h1 {
  font-size: clamp(4rem, 12vw, 9rem);
}
.status-page p {
  max-width: 610px;
  margin: 22px auto 0;
}

.js .reveal {
  opacity: 1;
  transform: translateY(22px);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.js .reveal.is-visible {
  transform: none;
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 36px, var(--shell));
  }
  .menu-button {
    display: block;
    z-index: 2;
  }
  .menu-button[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .primary-nav {
    position: fixed;
    inset: 82px 0 auto;
    min-height: calc(100vh - 82px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 28px 24px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }
  .primary-nav.is-open {
    transform: none;
  }
  .primary-nav a {
    width: 100%;
    padding: 18px 0;
    font-family: var(--display);
    font-size: 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav a::after {
    display: none;
  }
  .path-grid,
  .meet-strip__grid,
  .story-grid,
  .section-heading,
  .form-layout,
  .licensing-card {
    grid-template-columns: 1fr;
  }
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-band__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
  }
  .system-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .system-item,
  .system-item:nth-child(odd),
  .system-item:nth-child(even) {
    padding: 28px 0;
    border-right: 0;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .social-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }
  .section {
    padding: 82px 0;
  }
  .home-hero {
    padding: 78px 0 54px;
  }
  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }
  h2 {
    font-size: 2.6rem;
  }
  .path-section {
    padding-bottom: 82px;
  }
  .path-card {
    min-height: 420px;
    padding: 30px 24px;
  }
  .path-card__label {
    margin-top: 50px;
  }
  .meet-strip {
    padding: 82px 0;
  }
  .executive-photo {
    min-height: 480px;
  }
  .credibility-line,
  .offer-grid,
  .video-grid,
  .form-row,
  .timeline,
  .licensing-list {
    grid-template-columns: 1fr;
  }
  .trust-band__grid {
    grid-template-columns: 1fr;
  }
  .trust-band__grid span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .section-heading p {
    font-size: 0.95rem;
  }
  .page-hero {
    padding: 92px 0 78px;
  }
  .cta-band__inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-nav {
    grid-template-columns: 1fr;
  }
  .social-links {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
