.home-page {
  --text-primary: var(--color-typography-primary, #141414);
  --text-secondary: var(--color-typography-secondary, #4A4A4A);
  --text-helper: var(--color-carbon-helper-text);
  --text-on-dark: var(--color-typography-white, #F5F1EB);
  --text-on-dark-muted: rgb(245 241 235 / 0.8);
  --text-on-dark-soft: rgb(245 241 235 / 0.6);
  --button-dark: var(--color-carbon-primary-accent);
  --button-dark-hover: color-mix(in srgb, var(--color-carbon-primary-accent) 88%, black);
  --surface-dark: var(--color-carbon-base-carbon);
  --surface-light: var(--color-surface-light, #F5F1EB);
  --surface-section: var(--color-surface-section, #F6F7F8);
  --surface-white: var(--color-surface-white, #FFF);
  --border-default: var(--color-carbon-borders);
  --border-support: var(--color-support-border, #D6D0C8);
  --accent-primary: var(--color-buttons-primary, #B85C38);
  --accent-secondary: var(--color-buttons-secondary, #4F5D52);
  --shadow-card: 0 18px 35px rgb(0 0 0 / 0.08);
  --container-max: 1440px;
  color: var(--text-primary);
  overflow-x: clip;
}

.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}

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

.home-page button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.home-page a {
  color: inherit;
}

.layout-container {
  width: min(100%, var(--container-max));
  margin-inline: auto;
}

.section-dark {
  background: var(--surface-dark);
  color: var(--text-on-dark);
}

.section-light {
  background: var(--surface-light);
}

.section-muted {
  background: var(--surface-section);
}

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

.section-header {
  display: flex;
  width: min(100%, 1332px);
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-inline: auto;
  text-align: center;
}

.section-title,
.section-subtitle,
.card__title,
.card__body,
.card__meta,
.home-legal__item-title,
.home-legal__item-body,
.home-waitlist__title,
.home-waitlist__note,
.eyebrow {
  margin: 0;
}

.section-title {
  color: var(--text-primary);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 51px;
  letter-spacing: -0.66px;
}

.section-subtitle {
  max-width: 880px;
  color: var(--text-primary);
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 100ms ease, opacity 150ms ease;
  white-space: nowrap;
}

.button:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
}

.button:active {
  transform: scale(0.97);
}

.button--hero {
  gap: 10px;
  padding: 24px 32px;
  border-radius: 12px;
  background: var(--button-dark);
  color: var(--text-on-dark);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.255px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.08);
}

.button--hero:hover {
  background: var(--button-dark-hover);
}

.button--hero:focus-visible {
  outline-color: var(--text-on-dark);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--button-dark) 40%, transparent);
}

.button--light {
  padding: 16px;
  border-radius: 8px;
  background: var(--surface-light);
  color: var(--text-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.225px;
}

.button--light:hover {
  background: color-mix(in srgb, var(--surface-light) 85%, black);
}

.button--light:active {
  background: color-mix(in srgb, var(--surface-light) 75%, black);
}

.button--light:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
}

.home-topbar__cta {
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.225px;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 100ms ease, box-shadow 150ms ease;
}

.home-topbar__cta:active {
  transform: scale(0.97);
}

.home-topbar__cta:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.home-topbar__cta--dark {
  border-color: var(--surface-light);
  color: var(--text-on-dark);
}

.home-topbar__cta--dark:hover {
  background: rgb(245 241 235 / 0.08);
}

.home-topbar.topbar--light-surface .home-topbar__cta--dark {
  border-color: #141414 !important;
  color: #141414 !important;
}

.home-topbar.topbar--light-surface .home-topbar__cta--dark:hover {
  background: rgb(20 20 20 / 0.04);
}

.button--waitlist {
  gap: 10px;
  padding: 16px 24px;
  border-radius: 12px;
  background: var(--accent-primary);
  color: var(--text-on-dark);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.225px;
}

.button--waitlist:hover {
  background: color-mix(in srgb, var(--accent-primary) 88%, black);
}

.button--waitlist:active {
  background: color-mix(in srgb, var(--accent-primary) 76%, black);
}

.button--waitlist:focus-visible {
  outline-color: var(--text-on-dark);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-primary) 40%, transparent);
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.225px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 150ms ease, text-decoration-color 150ms ease;
}

.link-inline:hover {
  text-decoration-color: currentColor;
}

.link-inline:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

.link-inline .icon {
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.link-inline:hover .icon {
  transform: translateX(4px);
}

.link-inline--muted {
  color: var(--text-secondary);
}

.link-inline--footer {
  color: var(--accent-secondary);
  text-decoration-color: currentColor;
}

.card {
  width: 100%;
}

.card__copy {
  display: flex;
  flex-direction: column;
}

.card__footer {
  display: flex;
  flex-direction: column;
}

.card__title {
  color: var(--text-primary);
}

.card__body {
  color: var(--text-secondary);
}

.card--workflow {
  display: flex;
  min-height: 294px;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  border: 1px solid var(--border-support);
  background: var(--surface-light);
}

.card__copy--workflow {
  gap: 0;
  margin-top: auto;
}

.card__title--workflow {
  color: var(--text-primary);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}

.card__body--workflow {
  color: var(--text-secondary);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
}

.card--comparison {
  padding: 32px;
  border-radius: 16px;
  background: var(--surface-white);
  box-shadow: var(--shadow-card);
}

.card--insight {
  display: flex;
  min-height: 365px;
  padding: 20px 20px 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  border-radius: 16px;
  border: 1px solid var(--border-default);
  background: var(--surface-white);
}

.card__media-link--insight {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
}

.card__image--insight {
  aspect-ratio: 404 / 216;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card__image--placeholder {
  background:
    linear-gradient(135deg, rgb(20 20 20 / 0.16), transparent 55%),
    linear-gradient(180deg, #6f7d72, #24404e 48%, #1e2532);
}

.card__copy--insight {
  flex: 1 1 auto;
  min-height: 0;
  gap: 12px;
  overflow: hidden;
}

.card__title--insight {
  color: var(--text-primary);
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.002px;
}

.card__title--insight a {
  text-decoration: none;
  transition: color 150ms ease;
}

.card--insight:has(.card__media-link--insight:hover) .card__image--insight,
.card--insight:has(.card__title--insight a:hover) .card__image--insight,
.card--insight:has(.link-inline--muted:hover) .card__image--insight,
.card--insight:has(.card__media-link--insight:focus-visible) .card__image--insight,
.card--insight:has(.card__title--insight a:focus-visible) .card__image--insight,
.card--insight:has(.link-inline--muted:focus-visible) .card__image--insight {
  transform: scale(1.04);
}

.card--insight:has(.card__media-link--insight:hover) .card__title--insight a,
.card--insight:has(.card__title--insight a:hover) .card__title--insight a,
.card--insight:has(.link-inline--muted:hover) .card__title--insight a,
.card--insight:has(.card__media-link--insight:focus-visible) .card__title--insight a,
.card--insight:has(.card__title--insight a:focus-visible) .card__title--insight a,
.card--insight:has(.link-inline--muted:focus-visible) .card__title--insight a,
.card__title--insight a:hover {
  color: var(--accent-primary);
}

.card__body--insight {
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.card__footer--insight {
  gap: 36px;
}

.card__meta {
  color: var(--text-helper);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.home-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  width: 100%;
  padding: 16px 56px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  color: var(--text-on-dark);
  transition: padding 0.3s ease;
}

.home-topbar--scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
}

.home-topbar--scrolled .home-topbar__link,
.home-topbar--scrolled .home-topbar__links,
.home-topbar--scrolled .home-topbar__cta {
  font-size: 13px;
}

.home-topbar--scrolled .home-topbar__link {
  transition: font-size 0.3s ease, opacity 150ms ease;
}

.home-topbar--scrolled .home-topbar__cta {
  transition: font-size 0.3s ease, background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 100ms ease;
}

.home-topbar--scrolled .home-topbar__logo-svg {
  width: 96px;
  height: 23px;
  transition: width 0.3s ease, height 0.3s ease;
}

.home-topbar__brand {
  display: inline-flex;
  align-items: center;
}

.home-topbar__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-topbar__links {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  color: var(--color-surface-light, #F5F1EB);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.225px;
}

.home-topbar.topbar--light-surface .home-topbar__links {
  color: var(--text-primary);
}

.home-topbar__link {
  position: relative;
  display: inline-grid;
  place-items: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.225px;
  text-decoration: none;
  transition: opacity 150ms ease;
}

.home-topbar__link:hover {
  opacity: 0.7;
}

.home-topbar__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 4px;
}

.topbar-contrast {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.topbar-contrast__layer {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar-contrast__layer--light {
  color: var(--color-surface-light, #F5F1EB);
}

.topbar-contrast__layer--dark {
  color: var(--color-typography-primary, #141414);
  clip-path: inset(100% 0 0 0);
  pointer-events: none;
}

.home-topbar__logo-svg {
  width: 119px;
  height: 29px;
  transition: width 0.3s ease, height 0.3s ease;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: #141414;
}

.home-hero canvas,
.home-waitlist canvas {
  mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #141414 0%, #181A19 45%, #242A2C 75%, #4F5D52 100%);
}


.home-hero__bg::after,
.home-waitlist::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
}

.fade-up.is-visible {
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}

.fade-up--delay-100 {
  --reveal-delay: 0.1s;
}

.fade-up--delay-150 {
  --reveal-delay: 0.15s;
}

.fade-up--delay-200 {
  --reveal-delay: 0.2s;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-hero__title,
.home-hero__subtitle,
.home-hero__actions {
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-hero__title        { animation-delay: 0.1s; }
.home-hero__subtitle     { animation-delay: 0.25s; }
.home-hero__actions      { animation-delay: 0.4s; }

.home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 904px;
  padding: 228px 56px 144px;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  text-align: center;
}

.home-hero__copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.home-hero__title {
  width: min(100%, 1140px);
  margin: 0;
  color: var(--text-on-dark);
  font-size: 104px;
  font-style: normal;
  font-weight: 600;
  line-height: 107px;
  letter-spacing: -3.12px;
}

.home-hero__subtitle {
  width: min(100%, 882px);
  margin: 0;
  color: var(--text-on-dark-muted);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
}

.home-desktop-break {
  display: inline;
}

.home-hero__actions {
  display: flex;
  width: 100%;
  justify-content: center;
}

.home-hero__form {
  display: flex;
  width: min(100%, 640px);
  align-items: center;
  gap: 12px;
}

.home-hero__input {
  flex: 1 1 auto;
  min-width: 320px;
  padding: 24px 24px 23px;
  border: 1px solid rgb(245 241 235 / 0.18);
  border-radius: 12px;
  background: rgb(255 255 255 / 0.08);
  color: var(--text-on-dark);
  font: inherit;
  font-size: 17px;
  line-height: 24px;
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, color 150ms ease;
}

.home-hero__input::placeholder {
  color: var(--text-on-dark-soft);
}

.home-hero__input:focus-visible {
  outline: 2px solid var(--text-on-dark);
  outline-offset: 3px;
  background: rgb(255 255 255 / 0.82);
  color: var(--text-primary);
}

.home-hero__input:focus-visible::placeholder {
  color: rgb(20 20 20 / 0.56);
}

.home-workflow {
  background: linear-gradient(180deg, var(--color-carbon-base-parchment, #F5F1EB) 0%, #F0E9E1 100%);
}

.home-workflow .layout-container {
  display: flex;
  padding: 96px 54px;
  flex-direction: column;
  align-items: flex-start;
  gap: 106px;
}

.home-workflow__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 72px;
}

.home-workflow__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-comparison {
  align-self: center;
  display: flex;
  width: min(100%, 896px);
  flex-direction: column;
  gap: 32px;
}

.home-comparison__title {
  color: var(--text-secondary);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -0.64px;
}

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

.home-comparison__column--before {
  padding: 32px;
}

.eyebrow {
  color: var(--text-helper);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-list {
  display: grid;
  gap: 16px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.home-list--after {
  color: var(--text-primary);
}

.home-legal {
  background: var(--surface-section);
}

.home-legal .layout-container {
  display: flex;
  padding: 96px 56px;
  flex-direction: column;
  align-items: center;
  gap: 104px;
}

.home-legal__items {
  display: flex;
  width: min(100%, 654px);
  margin-bottom: 96px;
  flex-direction: column;
  gap: 48px;
}

.home-legal__item {
  display: flex;
  width: min(100%, 654px);
  padding-left: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-left: 2px solid var(--accent-primary);
}

.home-legal__item-title {
  color: var(--color-typography-primary, #141414);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}

.home-legal__item-body {
  color: var(--color-typography-secondary, #4A4A4A);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
}

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

.home-insights .layout-container {
  display: flex;
  min-height: 900px;
  padding: 96px 56px;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.home-insights__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-insights__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.home-waitlist {
  position: relative;
  overflow: hidden;
  padding: 126px 118px;
  background: linear-gradient(180deg, #141414 0%, #181A19 45%, #242A2C 75%, #4F5D52 100%);
}

.home-waitlist::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at center, rgb(255 255 255 / 0.08), transparent 58%);
}

.home-waitlist .layout-container {
  position: relative;
  z-index: 2;
}

.home-waitlist__bg {
  display: none;
}

.home-waitlist .layout-container {
  position: relative;
  display: flex;
  width: min(100%, 1204px);
  flex-direction: column;
  align-items: center;
  gap: 68px;
}

.home-waitlist__content {
  text-align: center;
}

.home-waitlist__title {
  width: min(100%, 886px);
  color: var(--text-on-dark);
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 65px;
  letter-spacing: -1.2px;
}

.home-waitlist__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.home-waitlist__form {
  display: flex;
  width: min(100%, 640px);
  align-items: center;
  gap: 12px;
}

.home-waitlist__input {
  flex: 1 1 auto;
  min-width: 320px;
  padding: 17px 20px;
  border: 1px solid rgb(245 241 235 / 0.18);
  border-radius: 12px;
  background: rgb(255 255 255 / 0.08);
  color: var(--text-on-dark);
  font: inherit;
  font-size: 15px;
  line-height: 18px;
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, color 150ms ease;
}

.home-waitlist__input::placeholder {
  color: var(--text-on-dark-soft);
}

.home-waitlist__input:focus-visible {
  outline: 2px solid var(--text-on-dark);
  outline-offset: 3px;
  background: rgb(255 255 255 / 0.82);
  color: var(--text-primary);
}

.home-waitlist__input:focus-visible::placeholder {
  color: rgb(20 20 20 / 0.56);
}

.home-waitlist__note {
  color: var(--text-on-dark-soft);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.icon {
  flex: none;
}

.icon--step {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  color: var(--text-secondary);
}

.icon--inline {
  width: 16px;
  height: 16px;
}

@media (max-width: 1279px) {
  .home-topbar {
    padding-inline: 32px;
  }

  .home-hero__content {
    min-height: 820px;
    padding: 200px 32px 120px;
  }

  .home-hero__title {
    font-size: 84px;
    line-height: 88px;
    letter-spacing: -2.4px;
  }

  .home-hero__subtitle {
    font-size: 28px;
    line-height: 38px;
  }

  .home-workflow .layout-container,
  .home-legal .layout-container,
  .home-insights .layout-container {
    padding-inline: 32px;
  }

  .home-waitlist {
    padding-inline: 72px;
  }
}

@media (max-width: 1023px) {
  .section-title {
    font-size: 40px;
    line-height: 46px;
  }

  .section-subtitle {
    font-size: 19px;
    line-height: 30px;
  }

  .home-topbar {
    padding-inline: 24px;
  }

  .home-topbar__nav {
    gap: 16px;
  }

  .home-hero__content {
    min-height: auto;
    padding: 176px 24px 104px;
  }

  .home-hero__title {
    font-size: 68px;
    line-height: 72px;
    letter-spacing: -2px;
  }

  .home-hero__subtitle {
    font-size: 24px;
    line-height: 34px;
  }

  .home-workflow .layout-container,
  .home-legal .layout-container,
  .home-insights .layout-container {
    gap: 72px;
    padding: 80px 24px;
  }

  .home-workflow__content {
    gap: 56px;
  }

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

  .home-comparison {
    width: 100%;
    gap: 24px;
  }

  .home-comparison__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-legal__items {
    width: min(100%, 720px);
  }

  .home-legal__item-title {
    font-size: 28px;
    line-height: 34px;
  }

  .home-legal__item-body {
    font-size: 19px;
    line-height: 30px;
  }

  .home-insights .layout-container {
    min-height: 0;
  }

  .home-waitlist {
    padding: 96px 24px;
  }

  .home-waitlist__title {
    font-size: 48px;
    line-height: 54px;
    letter-spacing: -1px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -0.48px;
  }

  .section-subtitle {
    font-size: 18px;
    line-height: 28px;
  }

  .home-topbar {
    width: 100%;
    min-height: 96px;
    padding: 16px 20px;
    transform: none;
    left: 0;
    background: transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .home-topbar__links {
    display: none;
  }

  .home-hero__content {
    gap: 24px;
    padding: 132px 20px 72px;
  }

  .home-hero__title {
    font-size: 48px;
    line-height: 50px;
    letter-spacing: -1px;
  }

  .home-hero__subtitle {
    font-size: 20px;
    line-height: 30px;
  }

  .home-desktop-break {
    display: none;
  }

  .home-hero__form {
    width: 100%;
  }

  .home-hero__actions .button--hero {
    max-width: 320px;
  }

  .home-workflow .layout-container,
  .home-legal .layout-container,
  .home-insights .layout-container {
    gap: 48px;
    padding: 64px 20px;
  }

  .home-workflow__content {
    gap: 40px;
  }

  .home-workflow__grid,
  .home-insights__grid {
    grid-template-columns: 1fr;
  }

  .card--workflow,
  .card--insight {
    min-height: 0;
  }

  .card--comparison {
    padding: 24px;
  }

  .card__title--workflow {
    font-size: 24px;
    line-height: 32px;
  }

  .card__body--workflow {
    font-size: 18px;
    line-height: 29px;
  }

  .home-comparison__title {
    font-size: 28px;
    line-height: 38px;
  }

  .home-comparison__column--before {
    padding: 24px;
  }

  .home-list {
    font-size: 17px;
    line-height: 28px;
  }

  .home-legal__items {
    gap: 32px;
  }

  .home-legal__item-title {
    font-size: 24px;
    line-height: 30px;
  }

  .home-legal__item-body {
    font-size: 18px;
    line-height: 28px;
  }

  .home-insights .layout-container {
    padding-bottom: 72px;
  }

  .home-waitlist {
    padding: 72px 20px;
  }

  .home-waitlist .layout-container {
    gap: 40px;
  }

  .home-waitlist__title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.72px;
  }
}

@media (max-width: 479px) {
  .section-title {
    font-size: 32px;
    line-height: 38px;
  }

  .section-subtitle {
    font-size: 17px;
    line-height: 27px;
  }

  .home-topbar {
    padding-inline: 32px;
  }

  .home-waitlist__actions {
    justify-content: center;
  }

  .home-waitlist__input {
    min-width: 0;
  }

  .home-hero__content {
    padding-inline: 16px;
  }

  .home-hero__title {
    font-size: 38px;
    line-height: 40px;
    letter-spacing: -0.72px;
  }

  .home-hero__subtitle {
    font-size: 18px;
    line-height: 28px;
  }

  .button--hero {
    padding: 20px 24px;
    font-size: 16px;
    line-height: 22px;
  }

  .home-hero__input {
    min-width: 0;
    padding: 20px 18px;
    font-size: 16px;
    line-height: 22px;
  }

  .home-workflow .layout-container,
  .home-legal .layout-container,
  .home-insights .layout-container,
  .home-waitlist {
    padding-inline: 16px;
  }

  .card--workflow,
  .card--insight,
  .card--comparison,
  .home-comparison__column--before {
    padding: 20px;
  }

  .home-comparison__title {
    font-size: 24px;
    line-height: 32px;
  }

  .home-waitlist__title {
    font-size: 30px;
    line-height: 34px;
    letter-spacing: -0.6px;
  }
}
