:root {
  --home-charcoal: #151310;
  --home-charcoal-soft: #25211d;
  --home-ink: #1c1916;
  --home-bone: #f3efe9;
  --home-white: #fbf9f6;
  --home-copper: #bd7b52;
  --home-copper-light: #dfa77f;
  --home-sage: #748279;
  --home-sage-light: #dfe6e2;
  --home-steel: #66727b;
  --home-steel-light: #dfe3e7;
  --home-wine: #68483f;
  --home-line-dark: rgba(255, 255, 255, 0.16);
  --home-line-light: rgba(28, 25, 22, 0.16);
  --home-page-width: 1480px;
}

.home-page {
  overflow-x: clip;
  background: var(--home-bone);
  color: var(--home-ink);
}

.home-page::before {
  display: none;
}

.home-page *,
.home-page *::before,
.home-page *::after {
  letter-spacing: 0;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p {
  text-wrap: pretty;
}

.home-page .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 28px;
  min-height: 78px;
  padding: 10px max(28px, calc((100vw - var(--home-page-width)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 16, 14, 0.72);
  color: var(--home-white);
  backdrop-filter: blur(18px);
  transition:
    min-height 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.home-page .site-header.is-scrolled {
  min-height: 68px;
  background: rgba(18, 16, 14, 0.96);
  box-shadow: 0 12px 34px rgba(8, 7, 6, 0.18);
}

.home-page .brand-mark {
  display: flex;
  align-items: center;
  width: 116px;
}

.home-page .brand-mark img {
  width: 100%;
  height: auto;
}

.home-page .main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  align-items: center;
}

.home-page .main-nav a {
  position: relative;
  color: rgba(251, 249, 246, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.home-page .main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--home-copper-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.home-page .main-nav a:hover,
.home-page .main-nav a:focus-visible,
.home-page .main-nav a.is-active {
  color: var(--home-white);
}

.home-page .main-nav a:hover::after,
.home-page .main-nav a:focus-visible::after,
.home-page .main-nav a.is-active::after {
  transform: scaleX(1);
}

.home-page .header-actions {
  justify-self: end;
  width: auto;
}

.home-page .header-action {
  min-height: 42px;
  padding: 9px 17px;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--home-white);
  font-size: 0.78rem;
}

.home-page .header-action:last-child {
  border-color: var(--home-copper-light);
  background: var(--home-copper-light);
  color: var(--home-charcoal);
}

.home-page .header-action-secondary {
  background: transparent;
}

.home-page .member-header {
  color: var(--home-white);
}

.home-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: transparent;
}

.home-menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: var(--home-white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.home-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.home-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.home-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.home-eyebrow {
  margin: 0 0 18px;
  color: var(--home-copper);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-hero {
  --hero-shift: 0px;
  position: relative;
  display: flex;
  min-height: 90svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--home-charcoal);
  color: var(--home-white);
}

.home-hero-image {
  position: absolute;
  inset: -3% 0 auto;
  z-index: -3;
  width: 100%;
  height: 106%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--hero-shift)) scale(1.03);
  transform-origin: center;
  will-change: transform;
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(11, 10, 9, 0.52);
}

.home-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, var(--home-page-width));
  min-height: 90svh;
  margin: 0 auto;
  padding: 130px 34px 86px;
}

.home-hero .home-eyebrow {
  max-width: 620px;
  color: #f1bd91;
}

.home-hero h1 {
  width: min(760px, 72%);
  margin: 0;
  color: var(--home-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.4rem;
  font-weight: 500;
  line-height: 0.94;
}

.home-hero-statement {
  width: min(630px, 70%);
  margin: 28px 0 0;
  color: rgba(251, 249, 246, 0.8);
  font-size: 1.13rem;
  line-height: 1.65;
}

.home-hero-actions,
.home-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.home-button-primary {
  background: var(--home-copper-light);
  color: var(--home-charcoal);
}

.home-button-primary:hover,
.home-button-primary:focus-visible {
  background: var(--home-white);
}

.home-button-quiet {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--home-white);
}

.home-button-quiet:hover,
.home-button-quiet:focus-visible {
  border-color: var(--home-white);
  background: rgba(255, 255, 255, 0.1);
}

.home-button-outline {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--home-white);
}

.home-button-outline:hover,
.home-button-outline:focus-visible {
  border-color: var(--home-white);
  background: var(--home-white);
  color: var(--home-charcoal);
}

.home-hero-facts {
  display: flex;
  gap: 30px;
  width: min(780px, 78%);
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.home-hero-facts span {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: rgba(251, 249, 246, 0.7);
  font-size: 0.77rem;
}

.home-hero-facts strong {
  color: var(--home-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.home-scroll-cue {
  position: absolute;
  right: max(34px, calc((100vw - var(--home-page-width)) / 2 + 34px));
  bottom: 35px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(251, 249, 246, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-scroll-cue span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.home-scroll-cue span::after {
  position: absolute;
  top: 10px;
  left: 13px;
  width: 6px;
  height: 10px;
  border-right: 1px solid var(--home-white);
  border-bottom: 1px solid var(--home-white);
  transform: rotate(45deg);
  content: "";
}

.home-signal-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 10svh;
  padding: 0 max(28px, calc((100vw - var(--home-page-width)) / 2));
  border-bottom: 1px solid var(--home-line-light);
  background: var(--home-white);
}

.home-signal-band p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 20px 26px;
  border-left: 1px solid var(--home-line-light);
  color: #4f4943;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-signal-band p:last-child {
  border-right: 1px solid var(--home-line-light);
}

.home-human-story,
.home-workbench,
.home-comparison,
.plans-section,
.faq-section {
  padding-right: max(28px, calc((100vw - var(--home-page-width)) / 2));
  padding-left: max(28px, calc((100vw - var(--home-page-width)) / 2));
}

.home-human-story {
  padding-top: 118px;
  padding-bottom: 128px;
  background: var(--home-bone);
}

.home-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.52fr);
  gap: 9%;
  align-items: end;
  margin-bottom: 56px;
}

.home-section-heading .home-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.home-section-heading h2,
.home-method-heading h2,
.home-ecosystem-intro h2,
.home-workbench-heading h2,
.home-continuity h2,
.home-comparison h2,
.home-final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.02;
}

.home-section-heading > p:last-child {
  margin: 0 0 4px;
  color: #625b55;
  font-size: 1.02rem;
  line-height: 1.7;
}

.home-human-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(220px, 0.7fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.home-human-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.home-human-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-human-team {
  min-height: 570px;
}

.home-human-team figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px 26px;
  background: rgba(18, 16, 14, 0.84);
  color: var(--home-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.home-human-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background: var(--home-wine);
  color: var(--home-white);
}

.home-human-note span {
  color: #e9b993;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-human-note p {
  margin: 130px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1.28;
}

.home-human-owner {
  min-height: 570px;
}

.home-method {
  padding: 118px max(28px, calc((100vw - var(--home-page-width)) / 2)) 124px;
  background: var(--home-charcoal);
  color: var(--home-white);
}

.home-method-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 8%;
  align-items: start;
  margin-bottom: 68px;
}

.home-method-heading .home-eyebrow {
  margin-top: 10px;
  color: var(--home-copper-light);
}

.home-method-heading h2 {
  max-width: 850px;
  color: var(--home-white);
}

.home-method-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--home-line-dark);
  list-style: none;
}

.home-method-steps li {
  min-height: 280px;
  padding: 28px 26px;
  border-right: 1px solid var(--home-line-dark);
}

.home-method-steps li:first-child {
  border-left: 1px solid var(--home-line-dark);
}

.home-method-steps span {
  color: var(--home-copper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.home-method-steps h3 {
  margin: 82px 0 12px;
  color: var(--home-white);
  font-size: 1.25rem;
}

.home-method-steps p {
  margin: 0;
  color: rgba(251, 249, 246, 0.64);
  font-size: 0.9rem;
  line-height: 1.65;
}

.home-ecosystem-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 9%;
  padding: 126px max(28px, calc((100vw - var(--home-page-width)) / 2)) 52px;
  background: var(--home-white);
}

.home-ecosystem-intro h2 {
  max-width: 850px;
}

.home-ecosystem-intro > p {
  align-self: end;
  margin: 0 0 7px;
  color: #655e58;
  font-size: 1rem;
  line-height: 1.75;
}

.home-product-index {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--home-line-light);
  border-bottom: 1px solid var(--home-line-light);
}

.home-product-index a {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 20px 22px;
  border-right: 1px solid var(--home-line-light);
  font-size: 0.82rem;
  font-weight: 850;
}

.home-product-index a:first-child {
  border-left: 1px solid var(--home-line-light);
}

.home-product-index span {
  color: #8a5132;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.home-product {
  padding: 112px max(28px, calc((100vw - var(--home-page-width)) / 2));
  scroll-margin-top: 68px;
}

.home-product-studio {
  background: #e8e0d8;
}

.home-product-empresas {
  background: var(--home-sage-light);
}

.home-product-ai {
  background: var(--home-steel-light);
}

.home-product-inner {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(600px, 1.28fr);
  gap: 6%;
  align-items: center;
}

.home-product-reversed {
  grid-template-columns: minmax(600px, 1.28fr) minmax(330px, 0.72fr);
}

.home-product-reversed .home-product-copy {
  grid-column: 2;
  grid-row: 1;
}

.home-product-reversed .home-product-demo {
  grid-column: 1;
  grid-row: 1;
}

.home-product-number {
  margin: 0 0 26px;
  color: #5b514a;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-product-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.35rem;
  font-weight: 500;
  line-height: 1.02;
}

.home-product-copy > p:not(.home-product-number) {
  margin: 24px 0 0;
  color: #5c554f;
  font-size: 1rem;
  line-height: 1.75;
}

.home-product-copy ul {
  margin: 28px 0;
  padding: 0;
  border-top: 1px solid rgba(28, 25, 22, 0.18);
  list-style: none;
}

.home-product-copy li {
  position: relative;
  padding: 13px 8px 13px 26px;
  border-bottom: 1px solid rgba(28, 25, 22, 0.18);
  color: #3f3934;
  font-size: 0.88rem;
  font-weight: 700;
}

.home-product-copy li::before {
  position: absolute;
  top: 20px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-copper);
  content: "";
}

.home-text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.83rem;
  font-weight: 850;
}

.home-text-link span {
  font-size: 1rem;
}

.home-product-demo {
  min-width: 0;
}

.home-product-demo > * {
  display: block;
  width: 100%;
}

.home-workbench {
  padding-top: 122px;
  padding-bottom: 128px;
  background: var(--home-charcoal);
  color: var(--home-white);
}

.home-workbench-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: 7%;
  align-items: start;
}

.home-workbench-heading .home-eyebrow {
  margin-top: 10px;
  color: var(--home-copper-light);
}

.home-workbench-heading h2 {
  max-width: 880px;
  color: var(--home-white);
}

.home-workbench-tabs {
  display: flex;
  gap: 0;
  margin-top: 58px;
  border-bottom: 1px solid var(--home-line-dark);
}

.home-workbench-tabs button {
  min-width: 160px;
  padding: 15px 22px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: rgba(251, 249, 246, 0.5);
  font-size: 0.85rem;
  font-weight: 850;
}

.home-workbench-tabs button[aria-selected="true"] {
  border-bottom-color: var(--home-copper-light);
  color: var(--home-white);
}

.home-workbench-panels article {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(500px, 1.35fr);
  gap: 7%;
  align-items: center;
  min-height: 540px;
  padding-top: 44px;
}

.home-workbench-panels article[hidden] {
  display: none;
}

.home-workbench-panels article > div span {
  color: var(--home-copper-light);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-workbench-panels h3 {
  margin: 18px 0;
  color: var(--home-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.06;
}

.home-workbench-panels p {
  color: rgba(251, 249, 246, 0.65);
  line-height: 1.75;
}

.home-workbench-panels a {
  display: inline-block;
  margin-top: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--home-copper-light);
  color: var(--home-white);
  font-size: 0.84rem;
  font-weight: 800;
}

.home-workbench-panels img {
  width: 100%;
  max-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.home-continuity {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(500px, 1.18fr);
  gap: 8%;
  align-items: stretch;
  padding: 0 max(28px, calc((100vw - var(--home-page-width)) / 2));
  background: var(--home-white);
}

.home-continuity-media {
  min-height: 720px;
}

.home-continuity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-continuity-copy {
  align-self: center;
  padding: 100px 0;
}

.home-continuity-copy > p:not(.home-eyebrow) {
  max-width: 670px;
  margin: 28px 0 0;
  color: #615a54;
  font-size: 1.03rem;
  line-height: 1.75;
}

.home-continuity dl {
  margin: 42px 0 0;
  border-top: 1px solid var(--home-line-light);
}

.home-continuity dl div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--home-line-light);
}

.home-continuity dt {
  color: var(--home-copper);
  font-weight: 850;
}

.home-continuity dd {
  margin: 0;
  color: #4f4944;
}

.home-comparison {
  padding-top: 122px;
  padding-bottom: 128px;
  background: var(--home-steel-light);
}

.home-comparison-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 7%;
  align-items: start;
}

.home-comparison-heading .home-eyebrow {
  margin-top: 10px;
}

.home-comparison-heading h2 {
  max-width: 920px;
}

.home-comparison-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 58px;
}

.home-comparison-lanes article {
  min-height: 380px;
  padding: 38px 42px;
}

.home-comparison-lanes article > span {
  display: block;
  margin-bottom: 65px;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-comparison-lanes p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.home-lane-fragmented {
  background: #d9d4cf;
  color: #5b554f;
}

.home-lane-legacy {
  background: var(--home-wine);
  color: var(--home-white);
}

.home-page .plans-section {
  display: block;
  padding-top: 126px;
  padding-bottom: 130px;
  background: var(--home-charcoal);
  color: var(--home-white);
}

.home-page .plans-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.45fr);
  gap: 8%;
  width: 100%;
  max-width: none;
  margin: 0 0 58px;
}

.home-page .plans-copy .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -20px;
  color: var(--home-copper-light);
}

.home-page .plans-copy h2 {
  margin: 0;
  color: var(--home-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.02;
}

.home-page .plans-copy > p {
  align-self: end;
  margin: 0;
  color: rgba(251, 249, 246, 0.65);
}

.home-page .plans-note {
  grid-column: 1 / 2;
  justify-content: flex-start;
  margin: 10px 0 0;
}

.home-page .billing-toggle {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  width: min(100%, 360px);
  margin: 10px 0 0;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.home-page .billing-toggle button {
  color: rgba(251, 249, 246, 0.64);
}

.home-page .billing-toggle button.is-active {
  background: var(--home-copper);
  color: var(--home-white);
}

.home-page .pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-page .pricing-card {
  min-height: 660px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: var(--home-charcoal-soft);
  color: var(--home-white);
  box-shadow: none;
}

.home-page .pricing-card-featured {
  border-color: var(--home-copper-light);
  background: #30251f;
}

.home-page .pricing-card-custom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.3fr) 220px;
  gap: 38px;
  align-items: center;
  min-height: 210px;
}

.home-page .pricing-card h3,
.home-page .pricing-price strong,
.home-page .pricing-card p,
.home-page .pricing-card li {
  color: inherit;
}

.home-page .pricing-card-header p,
.home-page .pricing-billing-note,
.home-page .pricing-card li {
  color: rgba(251, 249, 246, 0.65);
}

.home-page .pricing-card ul {
  margin-bottom: 28px;
}

.home-page .plan-button {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--home-white);
}

.home-page .plan-button:hover,
.home-page .plan-button:focus-visible,
.home-page .plan-button-primary {
  border-color: var(--home-copper-light);
  background: var(--home-copper-light);
  color: var(--home-charcoal);
}

.home-page .faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 8%;
  padding-top: 126px;
  padding-bottom: 130px;
  background: var(--home-bone);
  color: var(--home-ink);
}

.home-page .faq-heading {
  position: sticky;
  top: 110px;
  align-self: start;
  max-width: 430px;
  text-align: left;
}

.home-page .faq-heading h2 {
  margin: 0;
  color: var(--home-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.55rem;
  font-weight: 500;
  line-height: 1.02;
}

.home-page .faq-heading p:last-child {
  color: #625b55;
}

.home-page .faq-heading .section-kicker {
  color: #815739;
}

.home-page .faq-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.home-page .faq-item {
  border: 0;
  border-top: 1px solid var(--home-line-light);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .faq-item:last-child {
  border-bottom: 1px solid var(--home-line-light);
}

.home-page .faq-item summary {
  padding: 22px 48px 22px 0;
  color: var(--home-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.home-page .faq-item summary::after {
  right: 5px;
  color: var(--home-copper);
}

.home-page .faq-item p {
  padding: 0 48px 24px 0;
  color: #625b55;
}

.home-page .faq-item[open] {
  background: transparent;
  box-shadow: none;
}

.home-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8%;
  align-items: end;
  padding: 108px max(28px, calc((100vw - var(--home-page-width)) / 2));
  background: #29342f;
  color: var(--home-white);
}

.home-final-cta .home-eyebrow {
  color: #d9a680;
}

.home-final-cta h2 {
  max-width: 900px;
  color: var(--home-white);
}

.home-final-cta p:not(.home-eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(251, 249, 246, 0.68);
  line-height: 1.7;
}

.home-final-actions {
  flex-direction: column;
  min-width: 230px;
  margin: 0;
}

.home-page .site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 9%;
  padding: 72px max(28px, calc((100vw - var(--home-page-width)) / 2)) 28px;
  background: #0f0e0d;
  color: var(--home-white);
  text-align: left;
}

.home-footer-brand img {
  width: 142px;
  margin: 0 0 24px;
}

.home-footer-brand p {
  max-width: 430px;
  margin: 0;
  color: rgba(251, 249, 246, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}

.home-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.home-footer-nav div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-footer-nav strong {
  margin-bottom: 7px;
  color: var(--home-copper-light);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.home-footer-nav a {
  color: rgba(251, 249, 246, 0.64);
  font-size: 0.86rem;
}

.home-footer-nav a:hover,
.home-footer-nav a:focus-visible {
  color: var(--home-white);
}

.home-footer-note {
  grid-column: 1 / -1;
  margin: 54px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(251, 249, 246, 0.66);
  font-size: 0.72rem;
}

.home-page.is-motion-ready [data-home-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page.is-motion-ready [data-home-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .home-page .site-header {
    grid-template-columns: auto 1fr auto auto;
    padding-right: 24px;
    padding-left: 24px;
  }

  .home-page .main-nav {
    gap: 17px;
  }

  .home-page .main-nav a {
    font-size: 0.7rem;
  }

  .home-hero h1 {
    font-size: 4.5rem;
  }

  .home-human-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.58fr);
  }

  .home-human-note {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: row;
    gap: 50px;
    align-items: end;
  }

  .home-human-note p {
    max-width: 650px;
    margin: 0;
  }

  .home-human-team,
  .home-human-owner {
    min-height: 500px;
  }

  .home-product-inner,
  .home-product-reversed {
    grid-template-columns: minmax(290px, 0.7fr) minmax(500px, 1.3fr);
    gap: 4%;
  }

  .home-product-copy h2 {
    font-size: 2.8rem;
  }

  .home-page .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .pricing-card-custom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .home-page .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .home-menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .home-page .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px 24px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(18, 16, 14, 0.98);
  }

  .home-page .main-nav.is-open {
    display: flex;
  }

  .home-page .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
  }

  .home-page .main-nav a::after {
    display: none;
  }

  .home-page .header-actions,
  .home-page .member-header {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .home-page .header-action-secondary {
    display: none;
  }

  .home-section-heading,
  .home-method-heading,
  .home-ecosystem-intro,
  .home-workbench-heading,
  .home-comparison-heading,
  .home-page .plans-copy,
  .home-page .faq-section,
  .home-final-cta {
    grid-template-columns: 1fr;
  }

  .home-section-heading .home-eyebrow,
  .home-page .plans-copy .section-kicker {
    margin-bottom: 0;
  }

  .home-method-heading,
  .home-workbench-heading,
  .home-comparison-heading {
    gap: 18px;
  }

  .home-method-heading .home-eyebrow,
  .home-workbench-heading .home-eyebrow,
  .home-comparison-heading .home-eyebrow {
    margin-top: 0;
  }

  .home-method-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-method-steps li:nth-child(3) {
    border-left: 1px solid var(--home-line-dark);
  }

  .home-product-index {
    grid-template-columns: 1fr;
  }

  .home-product-index a {
    border-right: 1px solid var(--home-line-light);
    border-bottom: 1px solid var(--home-line-light);
  }

  .home-product-index a:first-child {
    border-left: 1px solid var(--home-line-light);
  }

  .home-product-inner,
  .home-product-reversed {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .home-product-reversed .home-product-copy,
  .home-product-reversed .home-product-demo {
    grid-column: 1;
    grid-row: auto;
  }

  .home-product-reversed .home-product-copy {
    order: 1;
  }

  .home-product-reversed .home-product-demo {
    order: 2;
  }

  .home-workbench-panels article {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-continuity {
    grid-template-columns: minmax(260px, 0.7fr) minmax(350px, 1fr);
    gap: 5%;
  }

  .home-continuity-media {
    min-height: 620px;
  }

  .home-page .plans-note,
  .home-page .billing-toggle {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .home-page .faq-heading {
    position: static;
    max-width: 700px;
  }

  .home-final-actions {
    flex-direction: row;
    margin-top: 34px;
  }
}

@media (max-width: 680px) {
  .home-page .site-header {
    min-height: 66px;
    padding: 8px 16px;
  }

  .home-page .brand-mark {
    width: 92px;
  }

  .home-page .header-action {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  .home-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .home-hero {
    min-height: 88svh;
  }

  .home-hero-image {
    object-position: 63% center;
  }

  .home-hero-shade {
    background: rgba(11, 10, 9, 0.62);
  }

  .home-hero-content {
    justify-content: flex-end;
    min-height: 88svh;
    padding: 110px 20px 76px;
  }

  .home-hero h1 {
    width: 100%;
    max-width: 420px;
    font-size: 3.15rem;
    line-height: 0.98;
  }

  .home-hero-statement {
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .home-hero-actions {
    margin-top: 24px;
  }

  .home-button {
    flex: 1 1 180px;
    min-height: 47px;
    padding: 12px 14px;
  }

  .home-hero-facts {
    display: none;
  }

  .home-scroll-cue {
    right: 20px;
    bottom: 20px;
    font-size: 0;
  }

  .home-signal-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .home-signal-band p,
  .home-signal-band p:last-child {
    min-height: 70px;
    padding: 14px 17px;
    border-right: 1px solid var(--home-line-light);
    border-bottom: 1px solid var(--home-line-light);
    font-size: 0.65rem;
  }

  .home-human-story,
  .home-method,
  .home-ecosystem-intro,
  .home-product,
  .home-workbench,
  .home-comparison,
  .home-page .plans-section,
  .home-page .faq-section,
  .home-final-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .home-human-story,
  .home-method,
  .home-workbench,
  .home-comparison,
  .home-page .plans-section,
  .home-page .faq-section {
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .home-section-heading,
  .home-method-heading,
  .home-workbench-heading,
  .home-comparison-heading {
    margin-bottom: 38px;
  }

  .home-section-heading h2,
  .home-method-heading h2,
  .home-ecosystem-intro h2,
  .home-workbench-heading h2,
  .home-continuity h2,
  .home-comparison h2,
  .home-final-cta h2,
  .home-page .plans-copy h2,
  .home-page .faq-heading h2 {
    font-size: 2.45rem;
  }

  .home-human-grid {
    grid-template-columns: 1fr;
  }

  .home-human-team,
  .home-human-owner {
    min-height: 420px;
  }

  .home-human-note {
    grid-column: 1;
    grid-row: auto;
    flex-direction: column;
    align-items: start;
    padding: 26px;
  }

  .home-human-note p {
    margin-top: 74px;
    font-size: 1.45rem;
  }

  .home-method-steps {
    grid-template-columns: 1fr;
  }

  .home-method-steps li,
  .home-method-steps li:nth-child(3) {
    min-height: 230px;
    border-right: 1px solid var(--home-line-dark);
    border-left: 1px solid var(--home-line-dark);
    border-bottom: 1px solid var(--home-line-dark);
  }

  .home-method-steps h3 {
    margin-top: 54px;
  }

  .home-ecosystem-intro {
    gap: 26px;
    padding-top: 84px;
    padding-bottom: 40px;
  }

  .home-product-index {
    margin-top: 36px;
  }

  .home-product {
    padding-top: 80px;
    padding-bottom: 84px;
  }

  .home-product-copy h2 {
    font-size: 2.35rem;
  }

  .home-product-copy > p:not(.home-product-number) {
    font-size: 0.94rem;
  }

  .home-product-inner,
  .home-product-reversed {
    gap: 38px;
  }

  .home-workbench-tabs {
    overflow-x: auto;
  }

  .home-workbench-tabs button {
    min-width: 120px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .home-workbench-panels article {
    min-height: 0;
  }

  .home-workbench-panels h3 {
    font-size: 2.2rem;
  }

  .home-continuity {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .home-continuity-media {
    min-height: 520px;
    max-height: 650px;
  }

  .home-continuity-copy {
    padding: 78px 20px 84px;
  }

  .home-continuity dl div {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .home-comparison-lanes {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .home-comparison-lanes article {
    min-height: 330px;
    padding: 30px 25px;
  }

  .home-comparison-lanes article > span {
    margin-bottom: 44px;
  }

  .home-page .plans-copy {
    gap: 22px;
  }

  .home-page .plans-note {
    display: none;
  }

  .home-page .billing-toggle {
    width: 100%;
  }

  .home-page .pricing-grid {
    grid-template-columns: 1fr;
  }

  .home-page .pricing-card {
    min-height: 0;
  }

  .home-page .pricing-card-custom {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }

  .home-page .faq-section {
    gap: 42px;
  }

  .home-page .faq-item summary {
    padding-right: 40px;
    font-size: 1.08rem;
  }

  .home-page .faq-item p {
    padding-right: 0;
  }

  .home-final-cta {
    padding-top: 82px;
    padding-bottom: 84px;
  }

  .home-final-actions {
    flex-direction: column;
  }

  .home-final-actions .home-button {
    flex: 0 0 auto;
    width: 100%;
  }

  .home-page .site-footer {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 20px 26px;
  }

  .home-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 20px;
  }

  .home-footer-note {
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .home-hero-image {
    transform: none !important;
  }

  .home-page.is-motion-ready [data-home-reveal] {
    opacity: 1;
    transform: none;
  }
}
