@font-face {
  font-family: "GM Sans";
  src: url("../wp-content/themes/twentytwentyfour/assets/fonts/inter/Inter-VariableFont_slntwght.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "GM Serif";
  src: url("../wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --wash: #f4f6ff;
  --wash-deep: #e9edff;
  --ink: #151a2f;
  --muted: #596078;
  --blue: #4154f1;
  --blue-dark: #2f43cf;
  --navy: #17225b;
  --orange: #c55433;
  --line: #d9deed;
  --line-dark: rgba(255, 255, 255, 0.25);
  --wrap: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "GM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 26px;
  font-size: clamp(46px, 5.5vw, 74px);
  font-weight: 780;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 760;
}

h3 {
  font-size: 22px;
}

.wrap {
  width: min(calc(100% - 48px), var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
}

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

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 88px;
}

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

.brand img {
  width: 46px;
  height: 46px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 20px;
  line-height: 1.2;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.primary-nav {
  display: flex;
  gap: 25px;
}

.primary-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.plain-link:hover,
.plain-link:focus-visible {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button-small {
  justify-self: end;
  min-height: 42px;
  padding: 9px 15px;
  font-size: 13px;
}

.plain-link {
  color: var(--blue-dark);
  font-weight: 720;
  text-underline-offset: 4px;
}

.hero {
  padding: 78px 0 82px;
  background: var(--wash);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(48px, 7vw, 86px);
  align-items: center;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 26px;
  color: #3d445b;
  font-size: 20px;
  line-height: 1.55;
}

.hero-checks {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 27px;
}

.hero-checks li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.direct-contact {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.direct-contact a {
  color: var(--ink);
  font-weight: 700;
}

.founder-photo {
  margin: 0;
  background: var(--white);
  border: 1px solid #d6dbea;
  box-shadow: 10px 12px 0 #dfe4fb;
}

.founder-photo img {
  width: 100%;
  height: auto;
}

.founder-photo figcaption {
  display: grid;
  gap: 4px;
  padding: 19px 21px 21px;
}

.founder-photo strong {
  font-size: 17px;
}

.founder-photo span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.proof {
  border-bottom: 1px solid var(--line);
}

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

.proof-grid div {
  min-height: 146px;
  padding: 31px 27px;
  border-left: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 7px;
  color: var(--blue-dark);
  font-size: clamp(26px, 3vw, 37px);
  letter-spacing: -0.035em;
}

.proof-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 54px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.situations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.situations article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding: 33px 36px 35px 0;
  border-bottom: 1px solid var(--line);
}

.situations article:nth-child(odd) {
  padding-right: 52px;
}

.situations article:nth-child(even) {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.situations article > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.situations h3 {
  margin-bottom: 9px;
}

.situations p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.personal-section {
  background: #f8f8f4;
  border-block: 1px solid #e4e3da;
}

.personal-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(60px, 9vw, 110px);
  align-items: start;
}

.large-copy {
  color: #363d54;
  font-size: 20px;
  line-height: 1.55;
}

.personal-grid > div > p:last-child {
  color: var(--muted);
}

.expect-list {
  padding-top: 6px;
}

.expect-list > h3 {
  padding-bottom: 17px;
  border-bottom: 2px solid var(--ink);
}

.expect-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.expect-list li {
  display: grid;
  gap: 3px;
  padding: 17px 0 18px;
  border-bottom: 1px solid #d7d6ce;
}

.expect-list span {
  color: var(--muted);
  font-size: 14px;
}

.process-section {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.process-list li {
  padding: 28px 32px 8px 0;
}

.process-list li + li {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 11px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.timeline-section {
  overflow: hidden;
  background: var(--wash-deep);
}

.timeline-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(58px, 9vw, 108px);
  align-items: center;
}

.timeline-image {
  height: 520px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #cdd4f2;
  box-shadow: 10px 12px 0 rgba(65, 84, 241, 0.12);
}

.timeline-image img {
  width: 100%;
  height: auto;
}

.timeline-grid .button {
  margin-top: 10px;
}

.reviews-section {
  color: var(--white);
  background: var(--navy);
}

.section-heading-light {
  color: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.reviews-grid figure {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  margin: 0;
  padding: 35px 34px 8px 0;
}

.reviews-grid figure + figure {
  padding-left: 34px;
  border-left: 1px solid var(--line-dark);
}

.reviews-grid blockquote {
  margin-bottom: 30px;
  font-family: "GM Serif", Georgia, serif;
  font-size: 23px;
  line-height: 1.45;
}

.reviews-grid figcaption {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.reviews-grid figcaption span {
  color: #b8c2eb;
  font-size: 14px;
}

.insights-section {
  background: var(--white);
}

.insights-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}

.insights-heading h2 {
  margin-bottom: 0;
}

.insights-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.insights-list article {
  padding: 28px 32px 8px 0;
}

.insights-list article + article {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.post-meta {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.insights-list h3 {
  margin-bottom: 13px;
  font-size: 22px;
  line-height: 1.25;
}

.insights-list h3 a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.insights-list p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  padding: 76px 0;
  color: var(--white);
  background: var(--blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  align-items: center;
}

.contact-grid h2 {
  margin-bottom: 13px;
}

.contact-grid p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: #e4e8ff;
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.button-light {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}

.contact-actions > a:not(.button) {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.contact-actions span {
  color: #d8ddff;
  font-size: 13px;
}

.site-footer {
  padding: 45px 0 26px;
  color: #525a71;
  background: #f7f8fc;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 35px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-brand p {
  display: grid;
  margin-bottom: 0;
}

.footer-brand strong {
  color: var(--ink);
}

.footer-brand span {
  font-size: 13px;
}

.footer-grid nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.legal-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

@media (max-width: 1020px) {
  .header-row {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero-grid,
  .personal-grid,
  .timeline-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

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

  .proof-grid div:nth-child(3),
  .proof-grid div:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(calc(100% - 34px), var(--wrap));
  }

  body {
    font-size: 16px;
  }

  .header-row {
    min-height: 76px;
  }

  .brand small,
  .button-small {
    display: none;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .hero {
    padding: 54px 0 64px;
  }

  .hero-grid,
  .personal-grid,
  .timeline-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    box-shadow: 7px 8px 0 #dfe4fb;
  }

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

  .proof-grid,
  .situations,
  .process-list,
  .reviews-grid,
  .insights-list {
    grid-template-columns: 1fr;
  }

  .proof-grid div {
    min-height: 118px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .situations article,
  .situations article:nth-child(odd),
  .situations article:nth-child(even) {
    padding: 26px 0;
    border-left: 0;
  }

  .process-list li,
  .process-list li + li,
  .reviews-grid figure,
  .reviews-grid figure + figure,
  .insights-list article,
  .insights-list article + article {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .reviews-grid figure,
  .reviews-grid figure + figure {
    min-height: 0;
    border-color: var(--line-dark);
  }

  .reviews-grid blockquote {
    font-size: 21px;
  }

  .insights-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-image {
    height: 400px;
  }

  .footer-grid,
  .legal-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid nav {
    flex-wrap: wrap;
  }
}

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