* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background: #ffffff;
  color: #14181f;
}
h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  max-width: 100%;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2954d9;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #1f3fa8;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #14181f;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid #dadfe6;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: #2954d9;
  color: #2954d9;
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2954d9;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #33394a;
}
.social-link:hover {
  border-color: #2954d9;
}
.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #2954d9;
  flex-shrink: 0;
}

/* Every section is full-bleed (background spans the whole viewport);
   .inner centers and caps the actual content at 1440px inside it. */
.wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 96px;
  padding-right: 96px;
  box-sizing: border-box;
}

.nav-section {
  background: #ffffff;
  border-bottom: 1px solid #edeff2;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn-ghost) {
  font-size: 15px;
  font-weight: 500;
  color: #5a6270;
}

.hero-section {
  background: #ffffff;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding-top: 120px;
  padding-bottom: 100px;
}
.hero h1 {
  font-size: 62px;
  line-height: 1.1;
  max-width: 880px;
  color: #14181f;
}
.hero p {
  font-size: 19px;
  line-height: 1.6;
  max-width: 640px;
  color: #5a6270;
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.problem-section {
  background: #ffffff;
}
.problem {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.problem h2,
.how h2,
.positioning h2 {
  font-size: 36px;
  line-height: 1.2;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: #fafbfc;
  border-radius: 16px;
  border: 1px solid #edeff2;
}
.card h3 {
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
}
.card p {
  font-size: 15px;
  line-height: 1.55;
  color: #6b727e;
  margin: 0;
}

.how-section {
  background: #fafbfc;
  border-top: 1px solid #edeff2;
  border-bottom: 1px solid #edeff2;
}
.how {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.step-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 44px;
  color: #dadfe6;
}
.step h3 {
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0 0;
}
.step p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b727e;
  margin: 16px 0 0;
}

.positioning-section {
  background: #ffffff;
}
.positioning {
  display: flex;
  gap: 80px;
  padding-top: 100px;
  padding-bottom: 100px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.positioning-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 17px;
  line-height: 1.65;
  color: #3a414d;
  min-width: 280px;
}
.positioning-head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 280px;
}
.positioning h2 {
  max-width: 480px;
}

.cta-section {
  background: #14181f;
}
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding-top: 110px;
  padding-bottom: 110px;
}
.cta h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #ffffff;
  max-width: 620px;
}
.cta p {
  font-size: 17px;
  line-height: 1.6;
  color: #a6aebd;
  max-width: 520px;
  margin: 0;
}

.footer-section {
  background: #14181f;
  border-top: 1px solid #262b36;
}
.footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 32px;
  flex-wrap: wrap;
  gap: 24px;
}
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.foot-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-brand-row span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 16px;
  color: #ffffff;
}
.foot-tag {
  font-size: 13px;
  color: #7a8290;
}
.foot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.foot-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .inner {
    padding-left: 32px;
    padding-right: 32px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a:not(.btn-ghost) {
    display: none;
  }
  .hero h1 {
    font-size: 40px;
  }
  .problem-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }
  .positioning {
    flex-direction: column;
    gap: 32px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .foot-right {
    align-items: flex-start;
  }
}
