@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

ul {
  list-style: none;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  line-height: 1.6;
  color: hsl(0, 0%, 10%);
  background: hsl(40, 23%, 97%);
}

.wrap {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 72px);
}

.wrap--narrow {
  max-width: 760px;
}

.section-pad {
  padding-block: clamp(64px, 9vw, 128px);
}

.bg-default {
  background: hsl(40, 23%, 97%);
}

.bg-card {
  background: hsl(45, 18%, 95%);
}

.bg-muted {
  background: hsl(40, 10%, 92%);
}

.section-dark {
  background: hsl(0, 0%, 9%);
  color: #fff;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(196, 70%, 37%);
}
.kicker::before {
  content: "";
  width: 1.6em;
  height: 1px;
  background: hsl(196, 70%, 37%);
  flex-shrink: 0;
}

.section-dark .kicker,
.section-dark .kicker::before {
  color: hsl(78, 90%, 72%);
  background: hsl(78, 90%, 72%);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: end;
  padding-bottom: clamp(40px, 5vw, 72px);
}
.section-head h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
}
.section-head .sh-aside {
  padding-bottom: 6px;
}
.section-head.text-center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.section-intro-head {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  padding-bottom: clamp(36px, 4.5vw, 64px);
}
.section-intro-head .kicker {
  margin-bottom: 0.75rem;
}
.section-intro-head h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
  margin-bottom: 0.5rem;
}

h1, h2, h3, h4 {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.lead {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.muted {
  color: hsl(0, 0%, 38%);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.6em;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s;
  white-space: nowrap;
  text-decoration: none;
  border: none;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, hsl(328, 100%, 45%), hsl(270, 88%, 60%));
  color: #fff;
}
.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: hsl(0, 0%, 10%);
  border: 1px solid hsl(40, 10%, 89%);
}
.btn--ghost:hover {
  border-color: hsl(0, 0%, 10%);
}

.btn--ghost-on-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost-on-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn--lg {
  padding: 1.05em 2em;
  font-size: 1rem;
}

.highlight-pink {
  color: hsl(328, 100%, 45%);
}

.highlight-lime {
  color: hsl(78, 90%, 72%);
}

.highlight-purple {
  color: hsl(270, 88%, 60%);
}

.text-gradient-primary {
  background: linear-gradient(135deg, hsl(78, 90%, 72%), hsl(196, 70%, 37%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prose {
  color: hsl(0, 0%, 38%);
  line-height: 1.8;
  font-weight: 300;
}
.prose p + p {
  margin-top: 1em;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5em;
}
.prose li {
  margin-top: 0.4em;
}
.prose a {
  color: hsl(196, 70%, 37%);
  text-decoration: underline;
}
.prose strong {
  font-weight: 600;
  color: hsl(0, 0%, 10%);
}

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: hsl(196, 70%, 37%);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 0.5rem 0.5rem;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 0;
}

.site-footer {
  background: hsl(45, 18%, 95%);
  border-top: 1px solid hsl(40, 10%, 89%);
  margin-top: auto;
  padding-block: clamp(40px, 6vw, 80px);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.site-footer__copy {
  font-size: 0.8rem;
  color: hsl(0, 0%, 55%);
}

.section-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(120px, 18vh, 200px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: hsl(0, 0%, 9%);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 9, 12, 0.9) 0%, rgba(8, 9, 12, 0.45) 45%, rgba(8, 9, 12, 0.2) 100%), linear-gradient(to right, rgba(8, 9, 12, 0.65) 0%, rgba(8, 9, 12, 0.05) 65%);
}

.hero__inner {
  width: 100%;
}

.hero__content {
  color: #fff;
  max-width: 820px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.2rem;
}
.hero__eyebrow::before {
  content: "";
  width: 1.6em;
  height: 1px;
  background: hsl(78, 90%, 72%);
}

.hero__heading {
  font-size: clamp(2.4rem, 1.5rem + 4vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: clamp(16px, 2.5vw, 28px);
  text-wrap: balance;
}
.hero__heading .accent-word {
  color: hsl(78, 90%, 72%);
}

.hero__sub {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  font-weight: 300;
  margin-bottom: clamp(24px, 3vw, 36px);
}

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

.section-stats {
  padding-block: clamp(64px, 9vw, 128px);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 56px);
  text-align: center;
}

.stat__value {
  font-size: clamp(2.2rem, 1.5rem + 3vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
  color: #fff;
}
.section-dark .stat__value {
  color: #fff;
}
.bg-default .stat__value, .bg-card .stat__value, .bg-muted .stat__value {
  color: hsl(0, 0%, 10%);
}

.stat__suffix {
  display: inline;
  font-size: 0.6em;
  vertical-align: super;
}

.stat__label {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}
.bg-default .stat__label, .bg-card .stat__label, .bg-muted .stat__label {
  color: hsl(0, 0%, 38%);
}

.section-intro {
  padding-block: clamp(64px, 9vw, 128px);
}

.intro__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.intro__inner h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
  margin-bottom: 1rem;
}
.intro__inner .prose {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  color: hsl(0, 0%, 38%);
}

.section-image-grid {
  padding-block: clamp(64px, 9vw, 128px);
}

.image-grid {
  display: grid;
  gap: clamp(12px, 2vw, 24px);
  grid-template-columns: repeat(3, 1fr);
}
.image-grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.image-grid--cols-4 {
  grid-template-columns: repeat(2, 1fr);
}

.image-grid__figure img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
  display: block;
}
.image-grid__figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: hsl(0, 0%, 55%);
  text-align: center;
}

.section-segment {
  padding-block: clamp(64px, 9vw, 128px);
}

.segment__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.segment__card {
  display: block;
  background: hsl(45, 18%, 95%);
  border: 1px solid hsl(40, 10%, 89%);
  border-radius: 1rem;
  padding: clamp(24px, 3vw, 40px);
  text-decoration: none;
  color: hsl(0, 0%, 10%);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
  transition: border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.segment__card:hover {
  border-color: hsl(196, 70%, 37%);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.12);
}
.section-dark .segment__card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.section-dark .segment__card:hover {
  border-color: hsl(78, 90%, 72%);
}

.segment__card-title {
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.segment__card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: hsl(0, 0%, 38%);
  font-weight: 300;
}
.section-dark .segment__card-desc {
  color: rgba(255, 255, 255, 0.65);
}

.section-proof {
  padding-block: clamp(64px, 9vw, 128px);
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.proof__card {
  background: hsl(40, 23%, 97%);
  border: 1px solid hsl(40, 10%, 89%);
  border-radius: 1rem;
  padding: clamp(20px, 2.5vw, 32px);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
}
.section-dark .proof__card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.proof__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(78, 90%, 72%), hsl(196, 70%, 37%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.proof__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.proof__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: hsl(0, 0%, 38%);
  font-weight: 300;
}
.section-dark .proof__desc {
  color: rgba(255, 255, 255, 0.65);
}

.section-process {
  padding-block: clamp(64px, 9vw, 128px);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.process__step {
  background: hsl(45, 18%, 95%);
  border: 1px solid hsl(40, 10%, 89%);
  border-radius: 1rem;
  padding: clamp(20px, 2.5vw, 32px);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
}
.section-dark .process__step {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.process__num {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: hsl(196, 70%, 37%);
  margin-bottom: 1rem;
}
.section-dark .process__num {
  color: hsl(78, 90%, 72%);
}

.process__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: hsl(0, 0%, 38%);
  font-weight: 300;
}
.section-dark .process__desc {
  color: rgba(255, 255, 255, 0.65);
}

.section-feature {
  padding-block: clamp(64px, 9vw, 128px);
}

.feature__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.feature__text h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
  margin-bottom: 1.25rem;
  color: #fff;
}
.feature__text .prose {
  color: rgba(255, 255, 255, 0.72);
}

.feature__media img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35), 0 20px 48px rgba(0, 0, 0, 0.25);
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.section-comparison {
  padding-block: clamp(64px, 9vw, 128px);
}

.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 28px);
}

.comparison__col {
  background: hsl(0, 0%, 9%);
  color: #fff;
  border-radius: 1rem;
  padding: clamp(24px, 3vw, 40px);
}
.comparison__col h3 {
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.comparison__col--positive {
  border: 1px solid rgba(28.305, 125.171, 160.395, 0.4);
}

.comparison__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.comparison__list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}
.comparison__list .list-icon {
  flex-shrink: 0;
  margin-top: 0.1em;
  font-size: 1em;
}
.comparison__list .list-icon--neg {
  color: #f56c6c;
}
.comparison__list .list-icon--pos {
  color: hsl(78, 90%, 72%);
}

.section-portfolio {
  padding-block: clamp(64px, 9vw, 128px);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.portfolio__item {
  display: block;
  text-decoration: none;
  color: hsl(0, 0%, 10%);
}
.portfolio__item:hover .portfolio__image {
  opacity: 0.88;
  transform: scale(1.02);
}

.portfolio__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio__title {
  font-size: 1rem;
  font-weight: 700;
}

.section-founder {
  padding-block: clamp(64px, 9vw, 128px);
}

.founder__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.founder__quote {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.founder__quote::before {
  content: "“";
}
.founder__quote::after {
  content: "”";
}

.founder__bio {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.founder__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.founder__name {
  font-weight: 700;
  font-size: 0.95rem;
}

.founder__role {
  font-size: 0.82rem;
  color: hsl(0, 0%, 38%);
  margin-top: 0.2rem;
}

.section-seo-articles {
  padding-block: clamp(64px, 9vw, 128px);
}

.seo-articles__list {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 96px);
  max-width: 760px;
  margin-inline: auto;
}

.seo-article__heading {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
  margin-bottom: 1.25rem;
}

.seo-article__media {
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
}
.seo-article__media img {
  width: 100%;
  display: block;
}

.seo-article__body {
  color: hsl(0, 0%, 38%);
  font-weight: 300;
  line-height: 1.8;
}

.section-faq {
  padding-block: clamp(64px, 9vw, 128px);
}

.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: hsl(40, 23%, 97%);
  border: 1px solid hsl(40, 10%, 89%);
  border-radius: 1rem;
  overflow: hidden;
}
.section-dark .faq__item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.faq__item[open] .faq__toggle {
  transform: rotate(45deg);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.section-dark .faq__question {
  color: #fff;
}

.faq__toggle {
  flex-shrink: 0;
  color: hsl(196, 70%, 37%);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-dark .faq__toggle {
  color: hsl(78, 90%, 72%);
}

.faq__answer {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: hsl(0, 0%, 38%);
  font-weight: 300;
}
.section-dark .faq__answer {
  color: rgba(255, 255, 255, 0.65);
}

.section-contact {
  padding-block: clamp(64px, 9vw, 128px);
}

.contact__inner {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}
.contact__inner h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
  margin-bottom: 0.75rem;
}
.contact__inner p {
  color: hsl(0, 0%, 38%);
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact__frame {
  background: hsl(45, 18%, 95%);
  border: 1px solid hsl(40, 10%, 89%);
  border-radius: 1rem;
  padding: clamp(24px, 4vw, 48px);
  text-align: left;
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
}

.section-cta {
  padding-block: clamp(64px, 9vw, 128px);
  overflow: hidden;
}

.cta__inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.cta__heading {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.cta__sub {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  color: hsl(0, 0%, 38%);
  font-weight: 300;
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 52ch;
  margin-inline: auto;
}

.section-cta.section-dark .cta__sub {
  color: rgba(255, 255, 255, 0.72);
}

.section-related {
  padding-block: clamp(64px, 9vw, 128px);
  text-align: center;
}

.related__heading {
  font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
  font-weight: 300;
  margin-bottom: 2rem;
}

.related__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.related__link {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid hsl(40, 10%, 89%);
  background: hsl(40, 23%, 97%);
  font-size: 0.85rem;
  color: hsl(0, 0%, 10%);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.related__link:hover {
  border-color: hsl(196, 70%, 37%);
  color: hsl(196, 70%, 37%);
}
.section-dark .related__link {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}
.section-dark .related__link:hover {
  border-color: hsl(78, 90%, 72%);
  color: hsl(78, 90%, 72%);
}

.section-rich-text {
  padding-block: clamp(64px, 9vw, 128px);
}

.rich-text__inner {
  max-width: 760px;
}

.section-cards {
  padding-block: clamp(64px, 9vw, 128px);
}

.cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
.cards__grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.cards__grid--cols-4 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  display: block;
  background: hsl(40, 23%, 97%);
  border: 1px solid hsl(40, 10%, 89%);
  border-radius: 1rem;
  padding: clamp(20px, 2.5vw, 32px);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: hsl(0, 0%, 10%);
  transition: border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:is(a):hover {
  border-color: hsl(196, 70%, 37%);
  transform: translateY(-3px);
}
.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: hsl(0, 0%, 38%);
  font-weight: 300;
}
.section-dark .card__desc {
  color: rgba(255, 255, 255, 0.65);
}

.section-case-step {
  padding-block: clamp(64px, 9vw, 128px);
}

.case-step__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.case-step__num {
  font-size: clamp(3rem, 2rem + 4vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: hsl(196, 70%, 37%);
  margin-bottom: 1rem;
}

.case-step__title {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
  margin-bottom: 1.25rem;
}

.case-step__body {
  color: hsl(0, 0%, 38%);
  font-weight: 300;
  line-height: 1.8;
}

.case-step__media img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.section-comp-table {
  padding-block: clamp(64px, 9vw, 128px);
}

.comp-table-wrap {
  overflow-x: auto;
}

.comp-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comp-table thead tr {
  border-bottom: 2px solid hsl(40, 10%, 89%);
}
.comp-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
}
.comp-table td {
  padding: 0.75rem 1rem;
  color: hsl(0, 0%, 38%);
  font-weight: 300;
  border-bottom: 1px solid hsl(40, 10%, 89%);
}
.comp-table tr:last-child td {
  border-bottom: none;
}
.comp-table tbody tr:hover td {
  background: hsl(40, 10%, 92%);
}

@media (max-width: 1024px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-grid--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards__grid--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .section-head {
    grid-template-columns: 1fr;
  }
  .section-head h2, .section-head .sh-aside {
    max-width: 100%;
  }
  .feature__split {
    grid-template-columns: 1fr;
  }
  .founder__split {
    grid-template-columns: 1fr;
  }
  .comparison__grid {
    grid-template-columns: 1fr;
  }
  .case-step__split {
    grid-template-columns: 1fr;
  }
  .segment__cards {
    grid-template-columns: 1fr;
  }
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-grid--cols-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .section-hero {
    min-height: 70vh;
  }
  .hero__heading {
    letter-spacing: -0.02em;
  }
  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof__grid {
    grid-template-columns: 1fr;
  }
  .process__grid {
    grid-template-columns: 1fr;
  }
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
  .cards__grid {
    grid-template-columns: 1fr;
  }
  .image-grid {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*# sourceMappingURL=main.css.map */
