/* Home page — Figma 2351:4959 */

:root {
  --home-coral: #ff934f;
  --home-coral-deep: #7f3100;
  --home-scorpion: #5e565a;
  --home-cream: #efecca;
  --home-sage: #e7efe7;
  --home-sage-line: #92a692;
  --home-ink: #191c1e;
  --home-white: #ffffff;
  --home-radius-lg: 1.875rem;
  --home-radius-md: 1.5rem;
  --home-radius-sm: 0.75rem;
  --home-max: 77.5rem;
  --site-header-height: 4.75rem;
}

.page-home-main {
  /* clip only on X — keep Y visible so sticky stack works */
  overflow-x: clip;
  overflow-y: visible;
  background: var(--home-white);
  color: var(--home-scorpion);
}

.home-section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--home-scorpion);
  text-align: center;
}

.home-section-title--left {
  text-align: left;
}

.home-section-lead {
  margin: 1.5rem auto 0;
  max-width: 53rem;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.35;
  color: var(--home-scorpion);
  text-align: center;
}

.home-section-lead--sm {
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #455252;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.4rem;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  background: var(--home-coral);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Buttons */
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.22;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-btn:hover {
  transform: translateY(-1px);
}

.home-btn--primary {
  background: var(--home-coral);
  border: 1px solid var(--home-coral);
  color: #fff;
}

.home-btn--primary:hover,
.home-btn--primary:focus-visible {
  background: #f07a2e;
  border-color: #f07a2e;
  color: #fff;
}

.home-btn--ghost {
  background: #fff;
  border: 1px solid rgba(94, 86, 90, 0.2);
  color: var(--home-scorpion);
}

.home-btn--ghost:hover,
.home-btn--ghost:focus-visible {
  border-color: var(--home-scorpion);
  color: var(--home-scorpion);
}

.home-btn--ghost-light {
  background: #fff;
}

.home-btn--square {
  border-radius: 0.75rem;
}

.home-btn--block {
  width: 100%;
  border-radius: 0.75rem;
}

/* Reveal */
.home-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.home-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ========== Hero ========== */
.home-hero {
  position: relative;
  padding: 0;
  min-height: 56.25rem;
  background: #fff;
  overflow: hidden;
}

.home-hero__grid {
  position: absolute;
  left: 50%;
  top: calc(50% - 45rem - 16.25rem);
  width: 90rem;
  height: 90rem;
  transform: translateX(-50%);
  background-image:
    linear-gradient(rgba(179, 179, 179, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179, 179, 179, 0.1) 1px, transparent 1px);
  background-size: 10rem 10rem;
  background-position: left top;
  pointer-events: none;
}

.home-hero__glows {
  position: absolute;
  right: 5%;
  top: 8rem;
  width: min(46rem, 55%);
  height: 48rem;
  opacity: 0.2;
  pointer-events: none;
}

.home-hero__glow {
  position: absolute;
  width: 21rem;
  height: 21rem;
  border-radius: 50%;
  filter: blur(10rem);
}

.home-hero__glow--coral {
  left: 8rem;
  top: 2rem;
  background: #ff934f;
}

.home-hero__glow--lime {
  left: 0;
  top: 24rem;
  background: #f7ff58;
  filter: blur(11.5rem);
}

.home-hero__glow--sage {
  left: 6rem;
  top: 10rem;
  background: #a9cbb7;
  filter: blur(8.5rem);
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
  max-width: var(--home-max);
  min-height: 56.25rem;
  padding-top: 8.75rem;
}

.home-hero__copy {
  max-width: 36.375rem;
  padding-top: 4.4rem;
}

.home-hero__title {
  margin: 0;
  max-width: 36.375rem;
  font-size: clamp(2.75rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.21875;
  letter-spacing: -0.02em;
  color: var(--home-scorpion);
}

.home-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.home-hero__pills li {
  min-height: 2.9375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.6875rem;
  background: var(--home-cream);
  color: var(--home-coral);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.home-hero__lead {
  margin: 2rem 0 0;
  max-width: 32.1875rem;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.208;
  color: var(--home-scorpion);
}

.home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.home-hero__showcase {
  position: relative;
  min-height: 43rem;
}

.home-hero__panel {
  position: relative;
  margin-left: auto;
  width: min(100%, 38.125rem);
  min-height: 43.75rem;
  padding: 4.5rem 2.5rem 2rem;
  border-radius: 1.875rem;
  background: radial-gradient(50% 50% at 50% 50%, #ff934f 0%, #ffa268 100%);
  overflow: hidden;
}

.home-hero__panel::before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  right: -2rem;
  top: -3rem;
  border-radius: 50%;
  background: #fff;
  filter: blur(11rem);
  pointer-events: none;
}

.home-hero__panel::after {
  content: "";
  position: absolute;
  width: 50.9375rem;
  height: 19.75rem;
  left: -16.75rem;
  top: 26.375rem;
  background: #fff;
  filter: blur(9.75rem);
  transform: rotate(-10.24deg);
  pointer-events: none;
}

.home-hero__divider {
  position: absolute;
  width: 31.5rem;
  left: 4.625rem;
  top: 4.875rem;
  border-top: 1px dashed #7a2f00;
  transform: rotate(90deg);
  transform-origin: left top;
  opacity: 0.9;
}

.home-hero__quote {
  position: absolute;
  right: 2.25rem;
  top: 5.625rem;
  margin: 0;
  max-width: 15.75rem;
  text-align: right;
  color: var(--home-coral-deep);
  z-index: 2;
}

.home-hero__quote p {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.27;
}

.home-hero__quote strong {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.17;
}

.home-hero__stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8125rem;
  max-width: 15.9375rem;
  margin-left: 0.1rem;
  filter: blur(0.5px);
}

.home-hero__chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 3.625rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-hero__chip:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.home-hero__chip-icon {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
}

.home-hero__chip--blue .home-hero__chip-icon { background: rgba(0, 64, 224, 0.1); box-shadow: inset 0 0 0 9px #0040e0; }
.home-hero__chip--indigo .home-hero__chip-icon { background: rgba(46, 91, 255, 0.1); box-shadow: inset 0 0 0 9px #2e5bff; }
.home-hero__chip--red .home-hero__chip-icon { background: rgba(186, 26, 26, 0.1); box-shadow: inset 0 0 0 9px #ba1a1a; }
.home-hero__chip--violet .home-hero__chip-icon { background: rgba(47, 46, 190, 0.1); box-shadow: inset 0 0 0 9px #2f2ebe; }
.home-hero__chip--slate .home-hero__chip-icon { background: rgba(63, 70, 95, 0.1); box-shadow: inset 0 0 0 9px #3f465f; }

.home-hero__chip-label {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--home-ink);
}

.home-hero__mini {
  width: 100%;
  padding: 0.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
}

.home-hero__mini-card {
  padding: 1.25rem;
  border-radius: 0.625rem;
  background: #fff;
}

.home-hero__mini-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: #000;
}

.home-hero__mini-sub {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
}

.home-hero__bar {
  display: block;
  width: 100%;
  height: 0.55rem;
  margin-top: 0.85rem;
  border-radius: 1.25rem;
  background: #e5e5e5;
}

.home-hero__bar--sm {
  width: 72%;
  margin-top: 0.4rem;
}

.home-hero__thumbs {
  display: flex;
  gap: 0.4rem;
  margin-top: 1rem;
}

.home-hero__thumbs i {
  width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
  background: #d2d2d2;
}

.home-hero__mini-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.home-hero__mini-actions span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.625rem;
  border-radius: 0.625rem;
  background: #fff;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
}

.home-hero__person {
  position: absolute;
  right: -1.8rem;
  bottom: -0.6rem;
  width: 22rem;
  z-index: 2;
}

.home-hero__person-ring {
  position: absolute;
  width: 12rem;
  height: 12rem;
  right: 1.6rem;
  bottom: 1.6rem;
  border-radius: 50%;
  background: #f6ce1d;
  opacity: 0.9;
}

.home-hero__person img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.14));
}

/* ========== Featured ========== */
.home-featured {
  padding: 0 0 2rem;
}

.home-featured__card {
  padding: 5rem clamp(1.5rem, 4vw, 6.25rem);
  border-radius: 4.5rem;
  background: var(--home-sage);
}

.home-featured__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--home-scorpion);
}

.home-featured__desc {
  margin: 1.5rem auto 0;
  max-width: 41rem;
  font-size: 1.375rem;
  line-height: 1.27;
  color: var(--home-scorpion);
}

.home-featured__marquee {
  position: relative;
  margin-top: 3.75rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4rem, #000 calc(100% - 4rem), transparent);
}

.home-featured__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: home-marquee 28s linear infinite;
}

.home-featured__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 12.5rem;
  height: 5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.home-featured__logo img {
  display: block;
  width: auto;
  max-width: calc(100% - 2.25rem);
  max-height: 2.5rem;
  height: auto;
  object-fit: contain;
}

.home-featured__logo span {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(94, 86, 90, 0.55);
}

@keyframes home-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== Five Products ========== */
.home-products {
  padding: 5rem 0 4rem;
}

.home-products__head {
  margin-bottom: 4rem;
}

.home-products__stage {
  position: relative;
  max-width: 77.5rem;
  margin: 0 auto;
  min-height: 37.5rem;
  padding: 4rem 2rem 2.5rem;
  border: 1px solid #e7e7e7;
  border-radius: 1.5rem;
  background: var(--home-sage);
}

.home-products__tabs {
  position: absolute;
  left: 50%;
  top: -1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  width: min(51rem, calc(100% - 2rem));
  padding: 0.25rem;
  border-radius: 1.75rem;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
  z-index: 2;
}

.home-products__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.45rem;
  padding: 0.625rem 1.25rem;
  border: 0;
  border-radius: 2.5rem;
  background: transparent;
  color: #000;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.home-products__tab.is-active {
  background: var(--home-coral);
  color: #fff;
}

.home-products__soon {
  position: absolute;
  right: -0.5rem;
  top: -1.9rem;
  padding: 0.35rem 0.75rem;
  border-radius: 2.5rem;
  background: var(--home-cream);
  color: var(--home-coral);
  font-size: 0.75rem;
  line-height: 1;
}

.home-products__panel {
  display: none;
  text-align: center;
}

.home-products__panel.is-active {
  display: block;
}

.home-products__tagline {
  margin: 1rem 0 1.5rem;
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-style: italic;
  font-weight: 500;
  color: #575757;
}

.home-products__preview {
  max-width: 70rem;
  margin: 0 auto;
}

.home-products__frame {
  position: relative;
  overflow: hidden;
  border: 0px solid var(--home-sage);
  border-radius: 1.25rem 1.25rem 0 0;
  background: #fff;
  min-height: 18rem;
}

.home-products__shot {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top left;
}

.home-products__chrome {
  display: flex;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee;
}

.home-products__chrome i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #ddd;
}

.home-products__screen {
  min-height: 16rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%),
    linear-gradient(135deg, #f7f6ed 0%, #efe8d8 45%, #e7efe7 100%);
}

.home-products__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.home-products__actions .home-btn {
  min-width: 14rem;
  min-height: 3rem;
}

/* ========== Teams ========== */
.home-teams {
  padding: 6.25rem 0 8rem;
  background: #fff;
}

.home-teams__copy {
  box-sizing: border-box;
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-radius: 0.875rem;
  background: #fff;
}

.home-teams__title {
  margin: 0;
  max-width: 29.75rem;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 500;
  line-height: 1.159;
  color: var(--home-scorpion);
}

.home-teams__list {
  display: flex;
  flex-direction: column;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.home-teams__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  width: 100%;
  min-height: 3.8125rem;
  padding: 1rem 0.75rem;
  border: 0;
  border-bottom: 1px solid var(--home-sage);
  background: transparent;
  color: rgba(0, 0, 0, 0.3);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.208;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}

.home-teams__item span {
  flex: 1 1 auto;
}

.home-teams__item svg {
  flex: 0 0 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-teams__item.is-active,
.home-teams__item:hover,
.home-teams__item:focus-visible {
  color: #000;
}

.home-teams__item.is-active svg {
  opacity: 1;
  transform: translateX(2px);
}

.home-teams__item:hover svg,
.home-teams__item:focus-visible svg {
  opacity: 1;
}

.home-teams__visual {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  min-height: 36.25rem;
  padding: 2.5rem;
  border: 1px solid var(--home-sage);
  border-radius: 0.875rem;
  background: #f4f4f4;
  overflow: visible;
}

.home-teams__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  z-index: 0;
}

.home-teams__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-teams__card {
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  bottom: -2.625rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 12.1px rgba(0, 0, 0, 0.08);
}

.home-teams__card p {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.375rem);
  font-weight: 400;
  line-height: 1.32;
  color: var(--home-scorpion);
}

.home-teams__card .home-btn {
  width: 100%;
  min-height: 3rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 105.8px rgba(0, 0, 0, 0.08);
}

/* ========== Workflow — Figma 2351:5138 ========== */
.home-workflow {
  padding: clamp(3.5rem, 7vw, 6.25rem) 0;
  background: #fff;
}

.home-workflow__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3.75rem) clamp(2rem, 12vw, 18.375rem);
  margin-bottom: 3.75rem;
}

.home-workflow__title {
  max-width: 29.75rem;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.227;
  color: var(--home-scorpion);
}

.home-workflow__intro {
  margin: 0;
  max-width: 29.375rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
}

.home-workflow__swiper {
  overflow: visible;
}

.home-workflow__card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 28.615rem;
  border: 1px solid #eee;
  border-radius: 1rem;
  background: #fff;
}

.home-workflow__card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6875rem;
  max-width: 33.75rem;
  padding: 2.05rem 2rem 0.5rem;
}

.home-workflow__card-icon {
  display: block;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
}

.home-workflow__card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--home-scorpion);
}

.home-workflow__card p {
  margin: 0;
  max-width: 17.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(94, 86, 90, 0.7);
}

.home-workflow__card-art {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  background: #fff;
}

.home-workflow__card-shot {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  box-shadow: none;
}

/* Business Website — Figma: mock under copy, bottom clipped */
.home-workflow__card--site .home-workflow__card-art {
  background: #fff;
}

.home-workflow__card--site .home-workflow__card-art::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 28%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 45%, #fff 100%);
}

.home-workflow__card--site .home-workflow__card-shot {
  top: 0;
  bottom: auto;
  left: 50%;
  width: 92%;
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center top;
  border-radius: 0.7rem;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.14);
}

/* Brand Strategy — Figma: collage fills bottom, bleeds edges */
.home-workflow__card--strategy .home-workflow__card-art {
  background: #fff;
}

.home-workflow__card--strategy .home-workflow__card-shot {
  top: -6%;
  left: -4%;
  width: 112%;
  height: 128%;
  transform: none;
  object-fit: cover;
  object-position: 35% 18%;
}

.home-workflow__card--writer .home-workflow__card-art,
.home-workflow__card--landing .home-workflow__card-art,
.home-workflow__card--social .home-workflow__card-art {
  background: #fff;
}

.home-workflow__card--writer .home-workflow__card-shot,
.home-workflow__card--landing .home-workflow__card-shot,
.home-workflow__card--social .home-workflow__card-shot {
  width: 100%;
  object-position: center bottom;
}

.home-workflow__progress {
  position: relative;
  height: 0.625rem;
  margin-top: 3.75rem;
  border-radius: 1.25rem;
  background: #dedede;
  overflow: hidden;
}

.home-workflow__progress-bar {
  display: block;
  width: 15.3%;
  height: 100%;
  border-radius: inherit;
  background: var(--home-coral);
  transition: width 0.35s ease;
}

/* ========== Showcase — Figma 2351:5543 ========== */
.home-showcase {
  padding: clamp(3.5rem, 7vw, 6.25rem) 0;
  background: #fff;
}

.home-showcase__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.75rem;
}

.home-showcase__head .home-section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.15;
}

.home-showcase__lead {
  margin: 0;
  max-width: 53rem;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--home-scorpion);
  text-align: center;
}

.home-showcase__stack {
  --showcase-stack-gap: 2rem; /* 32px — between 24–40px */
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  isolation: isolate;
}

.home-showcase__block {
  position: sticky;
  top: var(--site-header-height, 4.75rem);
  z-index: calc(1 + var(--stack-i, 0));
  display: block;
  width: 100%;
  height: auto;
  min-height: 28.125rem;
  margin: 0 0 var(--showcase-stack-gap);
  padding: 0;
  border: 1px solid var(--home-sage-line);
  border-radius: 1.875rem;
  background-color: var(--home-sage);
  background-image: var(--showcase-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  box-shadow:
    0 0.5rem 1.5rem rgba(0, 0, 0, 0.04),
    0 1.25rem 3.5rem rgba(0, 0, 0, 0.12);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.home-showcase__block:last-child {
  margin-bottom: 0;
}

.home-showcase__panel {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: auto;
  min-height: 28.125rem;
  background: linear-gradient(
    90deg,
    rgba(231, 239, 231, 0.88) 0%,
    rgba(231, 239, 231, 0.55) 38%,
    rgba(231, 239, 231, 0.12) 52%,
    rgba(231, 239, 231, 0) 62%
  );
}

.home-showcase__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  max-width: 33rem;
  min-height: 100%;
  padding: 2.5rem clamp(1.25rem, 3vw, 1.5rem) 2.5rem clamp(1.5rem, 4vw, 3.75rem);
}

.home-showcase__product {
  margin: 0;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.22;
  color: var(--home-coral);
}

.home-showcase__block--ranking-hub .home-showcase__product {
  background: linear-gradient(180deg, #f7a16b 0%, rgba(231, 239, 231, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-showcase__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 29.3rem;
}

.home-showcase__subtitle {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}

.home-showcase__body {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--home-scorpion);
}

.home-showcase__cta {
  margin-top: auto;
  padding: 0.75rem 1.375rem;
  min-height: 3rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.home-showcase__block--soon .home-showcase__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: linear-gradient(
    90deg,
    rgba(231, 239, 231, 0.92) 0%,
    rgba(231, 239, 231, 0.45) 42%,
    rgba(237, 236, 232, 0.92) 58%,
    rgba(237, 236, 232, 0.97) 100%
  );
}

.home-showcase__soon {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2.5rem clamp(1.5rem, 4vw, 3.75rem) 2.5rem 1rem;
  text-align: right;
}

.home-showcase__soon-label {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.23;
  color: var(--home-coral);
}

.home-showcase__soon-text {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.5rem;
  max-width: 29.3rem;
}

.home-showcase__soon-note {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  color: #000;
}

.home-showcase__soon-desc {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--home-scorpion);
}

.home-showcase__notify {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 26.3rem;
  margin-top: auto;
  padding-top: 0px;
  border: 1px solid #888;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.home-showcase__notify input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: var(--home-scorpion);
  outline: none;
}

.home-showcase__notify input::placeholder {
  color: rgba(94, 86, 90, 0.4);
}

.home-showcase__notify .home-btn {
  margin: 0;
  border-radius: 0.75rem;
  min-height: 3rem;
  font-size: 1.125rem;
}

/* ========== Industries — Figma 2351:5717 ========== */
.home-industries {
  padding: 5rem 0 4.5rem;
  background: #fff;
  overflow: hidden;
}

.home-industries__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.75rem;
}

.home-industries__title {
  max-width: 53.2rem;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--home-scorpion);
}

.home-industries__lead {
  margin: 0;
  max-width: 53.2rem;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--home-scorpion);
  text-align: center;
}

.home-industries__carousel {
  position: relative;
  margin-bottom: 2rem;
  padding-block: 2rem 1rem;
}

.home-industries__swiper {
  overflow: visible;
  padding: 0.5rem 0;
}

.home-industries__swiper .swiper-wrapper {
  align-items: center;
}

.home-industries__swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
  opacity: 0.62;
  transform: scale(0.82);
  transform-origin: center center;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.home-industries__swiper .swiper-slide-prev,
.home-industries__swiper .swiper-slide-next {
  opacity: 0.88;
  transform: scale(0.88);
  z-index: 1;
}

.home-industries__swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.1);
  z-index: 3;
}

.home-industry-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 21.25rem;
  border-radius: 1.46875rem;
  background: #fff;
  box-shadow: 0 0.75rem 1.5rem rgba(6, 48, 121, 0.08);
  overflow: hidden;
  transition: box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-industries__swiper .swiper-slide-prev .home-industry-card,
.home-industries__swiper .swiper-slide-next .home-industry-card {
  box-shadow: 0 1rem 1.85rem rgba(6, 48, 121, 0.12);
}

.home-industries__swiper .swiper-slide-active .home-industry-card {
  box-shadow: 0 1.85rem 3.5rem rgba(6, 48, 121, 0.24);
}

.home-industry-card__top {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  padding: 2.25rem;
  background: linear-gradient(196.32deg, #fba46d 2.93%, #ff934f 89.51%);
  color: #fff;
  overflow: hidden;
  border-radius: 1.46875rem 1.46875rem 0 0;
}

.home-industry-card__top::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  left: -20%;
  top: -80%;
  border-radius: 50%;
  background: #c8a3d8;
  mix-blend-mode: plus-lighter;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
}

.home-industry-card__top::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.home-industry-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 2px 31.2px rgba(0, 0, 0, 0.05);
}

.home-industry-card__icon::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: var(--home-coral);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  /* default: rounded square mark */
  border-radius: 0.3rem;
}

.home-industry-card--it .home-industry-card__icon::before {
  background: #c65f1f;
  border-radius: 0;
  clip-path: polygon(20% 0, 80% 0, 100% 50%, 80% 100%, 20% 100%, 0 50%);
}

.home-industry-card--media .home-industry-card__icon::before {
  background: #b44804;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.home-industry-card--ecom .home-industry-card__icon::before {
  background: #c65f1f;
  border-radius: 0.15rem;
  box-shadow: inset 0 -0.35rem 0 rgba(255, 255, 255, 0.35);
}

.home-industry-card--health .home-industry-card__icon::before {
  background: #ff934f;
  width: 1.35rem;
  height: 1.35rem;
  clip-path: polygon(40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%, 0 40%, 40% 40%);
  border-radius: 0;
}

.home-industry-card--finance .home-industry-card__icon::before {
  background: #c65f1f;
  border-radius: 50%;
}

.home-industry-card--edu .home-industry-card__icon::before {
  background: #b44804;
  clip-path: polygon(50% 0, 100% 30%, 100% 100%, 0 100%, 0 30%);
  border-radius: 0;
}

.home-industry-card--realty .home-industry-card__icon::before {
  background: #c65f1f;
  clip-path: polygon(50% 0, 100% 40%, 100% 100%, 0 100%, 0 40%);
  border-radius: 0;
}

.home-industry-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 17rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: left;
  color: #fff;
}

.home-industry-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 0 0 auto;
  min-height: 4.75rem;
  padding: 0 2.25rem;
}

.home-industry-card__foot p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #070707;
}

.home-industry-card__foot a {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--home-scorpion);
  text-decoration: none;
  white-space: nowrap;
}

.home-industry-card__foot a:hover,
.home-industry-card__foot a:focus-visible {
  color: var(--home-coral);
}

.home-industries__dots {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  margin: 1.5rem auto 0;
}

.home-industries__dots .swiper-pagination-bullet {
  width: 0.375rem;
  height: 0.375rem;
  margin: 0 !important;
  background: #d0d0d0;
  border-radius: 1.25rem;
  opacity: 1;
  transition:
    width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    transform 0.35s ease;
}

.home-industries__dots .swiper-pagination-bullet-active {
  width: 2.75rem;
  background: #f7985e;
  transform: scaleY(1.15);
}

.home-industries__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 19.4rem;
  min-height: 3rem;
  margin-top: 1.25rem;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(94, 86, 90, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--home-scorpion);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.home-industries__cta:hover,
.home-industries__cta:focus-visible {
  border-color: var(--home-coral);
  color: var(--home-coral-deep);
  background: #fff;
}

@media (max-width: 991.98px) {
  .home-industries__head {
    margin-bottom: 2.5rem;
  }

  .home-industries__carousel {
    padding-block: 1.5rem 0.75rem;
  }

  .home-industries__swiper .swiper-slide {
    opacity: 0.65;
    transform: scale(0.86);
  }

  .home-industries__swiper .swiper-slide-prev,
  .home-industries__swiper .swiper-slide-next {
    opacity: 0.88;
    transform: scale(0.9);
  }

  .home-industries__swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.08);
  }

  .home-industry-card {
    height: 18.5rem;
    border-radius: 1.1rem;
  }

  .home-industry-card__top {
    padding: 1.5rem;
    border-radius: 1.1rem 1.1rem 0 0;
  }

  .home-industry-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.55rem;
  }

  .home-industry-card h3 {
    font-size: 1.45rem;
  }

  .home-industry-card__foot {
    min-height: 3.75rem;
    padding: 0 1.5rem;
  }

  .home-industry-card__foot p {
    font-size: 0.95rem;
  }

  .home-industry-card__foot a {
    font-size: 0.875rem;
  }

  .home-industries__cta {
    width: 100%;
    max-width: 22rem;
    min-width: 0;
  }
}

@media (max-width: 575.98px) {
  .home-industries__carousel {
    padding-block: 1rem 0.5rem;
  }

  .home-industries__swiper .swiper-slide {
    opacity: 0.55;
    transform: scale(0.92);
  }

  .home-industries__swiper .swiper-slide-prev,
  .home-industries__swiper .swiper-slide-next {
    opacity: 0.75;
    transform: scale(0.92);
  }

  .home-industries__swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.04);
  }

  .home-industries__dots .swiper-pagination-bullet-active {
    width: 2.25rem;
  }
}

/* ========== Audience — Figma 2351:5807 ========== */
.home-audience {
  padding: 4.75rem 0;
  background: var(--home-sage);
}

.home-audience__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto 2.5rem;
  max-width: 37.625rem;
  text-align: center;
}

.home-audience__title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--home-scorpion);
}

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

.home-audience-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  height: 100%;
  padding: 1.8125rem 1.875rem;
  border: 1px solid #eee;
  border-radius: 1rem;
  background: #fff;
}

.home-audience-card__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 544 / 200;
  background: #d9d9d9;
}

.home-audience-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.home-audience-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-audience-card__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.7rem;
  width: 100%;
}

.home-audience-card__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: 0;
}

.home-audience-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--home-scorpion);
}

.home-audience-card p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(94, 86, 90, 0.7);
}

.home-audience-card a {
  flex-shrink: 0;
  color: #070707;
  font-size: 0.837rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.home-audience-card a:hover,
.home-audience-card a:focus-visible {
  color: var(--home-coral);
}

@media (max-width: 991.98px) {
  .home-audience__grid {
    gap: 1.25rem;
  }

  .home-audience-card {
    padding: 1.25rem;
    gap: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .home-audience__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Why — Figma 2351:5844 ========== */
.home-why {
  padding: clamp(3.5rem, 6vw, 4.75rem) 0 5rem;
  background: #fff;
}

.home-why__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 53.2rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.home-why__title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--home-scorpion);
}

.home-why__lead {
  margin: 0;
  max-width: 41.125rem;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--home-scorpion);
}

.home-why__compare {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.25rem minmax(0, 1fr);
  align-items: stretch;
  max-width: 77.5rem;
  min-height: 37.5rem;
  margin: 0 auto;
  border: 1px solid #e7e7e7;
  border-radius: 1.5rem;
  background: var(--home-sage);
  overflow: hidden;
}

.home-why__col {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2.5rem 2rem;
  min-width: 0;
}

.home-why__copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 21.6rem;
}

.home-why__copy h3 {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--home-scorpion);
}

.home-why__copy > p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--home-scorpion);
}

.home-why__divider {
  position: relative;
  z-index: 3;
  width: 0.25rem;
  background: #fff;
}

.home-why__handle {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  grid-template-columns: repeat(2, 0.25rem);
  gap: 0.25rem 0.375rem;
  place-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #000;
  border-radius: 60px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.home-why__handle i {
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #000;
}

.home-why__chaos {
  position: relative;
  flex: 1 1 auto;
  min-height: 17rem;
  margin-top: 2rem;
}

.home-why__chaos-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.home-why__tool {
  position: absolute;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 2px 13.7px rgba(0, 0, 0, 0.09);
  z-index: 1;
}

.home-why__tool img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-why__tool--meta { left: 18%; top: 18%; }
.home-why__tool--docs { left: 42%; top: 8%; }
.home-why__tool--mail { left: 64%; top: 16%; }
.home-why__tool--gpt { left: 8%; top: 42%; }
.home-why__tool--ga { left: 36%; top: 38%; }
.home-why__tool--wp { left: 58%; top: 34%; }
.home-why__tool--xls { left: 22%; top: 68%; }
.home-why__tool--zap { left: 48%; top: 72%; }
.home-why__tool--notion { left: 70%; top: 68%; }

.home-why__orbit {
  position: relative;
  flex: 1 1 auto;
  display: grid;
  place-items: center;
  min-height: 20rem;
  margin-top: 1.5rem;
}

.home-why__ring {
  position: absolute;
  width: min(18.75rem, 70%);
  aspect-ratio: 1;
  border: 1px solid #517f51;
  border-radius: 50%;
  background: #fff;
}

.home-why__logo {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(11rem, 55%);
}

.home-why__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.home-why__pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.625rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--home-ink);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.home-why__pill-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.home-why__pill-icon::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.home-why__pill--social {
  top: 8%;
  left: 2%;
}
.home-why__pill--social .home-why__pill-icon {
  background: rgba(186, 26, 26, 0.1);
  color: #ba1a1a;
}
.home-why__pill--social .home-why__pill-icon::before {
  clip-path: polygon(10% 10%, 90% 10%, 90% 55%, 70% 55%, 50% 90%, 50% 55%, 10% 55%);
}

.home-why__pill--strategy {
  top: 4%;
  right: 2%;
}
.home-why__pill--strategy .home-why__pill-icon {
  background: rgba(0, 64, 224, 0.1);
  color: #0040e0;
}
.home-why__pill--strategy .home-why__pill-icon::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  background: radial-gradient(circle, currentColor 30%, transparent 32%);
  box-sizing: border-box;
}

.home-why__pill--landing {
  top: 42%;
  right: -2%;
}
.home-why__pill--landing .home-why__pill-icon {
  background: rgba(47, 46, 190, 0.1);
  color: #2f2ebe;
}
.home-why__pill--landing .home-why__pill-icon::before {
  clip-path: polygon(0 15%, 100% 15%, 100% 100%, 0 100%);
  border-radius: 0.1rem;
}

.home-why__pill--ranking {
  bottom: 8%;
  right: 12%;
}
.home-why__pill--ranking .home-why__pill-icon {
  background: rgba(63, 70, 95, 0.1);
  color: #3f465f;
}
.home-why__pill--ranking .home-why__pill-icon::before {
  clip-path: polygon(0 70%, 30% 70%, 30% 40%, 55% 40%, 55% 20%, 80% 20%, 80% 100%, 0 100%);
}

.home-why__pill--writer {
  bottom: 22%;
  left: 0;
}
.home-why__pill--writer .home-why__pill-icon {
  background: rgba(46, 91, 255, 0.1);
  color: #2e5bff;
}
.home-why__pill--writer .home-why__pill-icon::before {
  clip-path: polygon(10% 80%, 70% 10%, 90% 30%, 30% 100%);
}

/* ========== Resources — Figma 2351:5932 ========== */
.home-resources {
  padding: 5rem 0;
  background: #fff;
}

.home-resources__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
  max-width: 75rem;
}

.home-resources__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
  max-width: 100%;
  text-align: center;
}

.home-resources__title {
  font-size: clamp(2rem, 3.5vw, 2.771rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.home-resources__lead {
  margin: 0;
  max-width: 28rem;
}

.home-resources__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.367fr) minmax(0, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 75rem;
  align-items: stretch;
}

.home-resources__featured,
.home-resources__list-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  border-radius: 1.5rem;
  background: var(--home-cream);
}

.home-resources__featured {
  padding: 1.3125rem 1.375rem;
  gap: 0.6875rem;
}

.home-resources__list-wrap {
  padding: 1.375rem;
  gap: 0.8125rem;
}

.home-resources__label {
  margin: 0;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.063em;
  text-transform: uppercase;
  color: #6a7878;
}

.home-resources__feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 28.87rem;
  padding: 0.45rem 0.45rem 1.25rem;
  border-radius: 1.35375rem;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-resources__feature-card:hover,
.home-resources__feature-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.home-resources__feature-media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 644 / 340.5;
  border-radius: 0.9025rem;
  overflow: hidden;
  background: #e5e2c8;
}

.home-resources__feature-media.is-missing {
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.08), transparent 55%),
    linear-gradient(135deg, #d7e0c8, #efecca 55%, #e8d9c4);
}

.home-resources__feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-resources__feature-card > .home-resources__chip {
  margin: 0.85rem 0 0 0.85rem;
}

.home-resources__feature-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 0.5rem 1.25rem;
  align-items: start;
  margin-top: 0.55rem;
  padding: 0 0.85rem;
}

.home-resources__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 1.125rem;
  padding: 0.1875rem 1rem;
  border-radius: 1.128rem;
  background: #cdface;
  color: #366625;
  font-size: 0.5375rem;
  line-height: 1.4;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.home-resources__feature-body h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.166;
  letter-spacing: -0.025em;
  color: #001f1f;
}

.home-resources__feature-body p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #455252;
}

.home-resources__list {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-resources__list a {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  min-height: 6.51rem;
  padding: 0.45rem;
  border-radius: 1.35375rem;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-resources__list a:hover,
.home-resources__list a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.home-resources__thumb {
  flex: 0 0 10.7rem;
  width: 10.7rem;
  height: 5.61rem;
  border-radius: 0.9025rem;
  overflow: hidden;
  background: #e5e2c8;
}

.home-resources__thumb.is-missing {
  background: linear-gradient(135deg, #d7e4d7, #efecca 55%, #e8d9c4);
}

.home-resources__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-resources__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.35rem 0.75rem 0.35rem 0;
}

.home-resources__meta strong {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.027em;
  color: #001f1f;
}

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

.home-resources__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 17rem;
  min-height: 3rem;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(94, 86, 90, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--home-scorpion);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.22;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home-resources__cta-btn:hover,
.home-resources__cta-btn:focus-visible {
  border-color: var(--home-scorpion);
  color: var(--home-scorpion);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

/* ========== CTA — Figma 2351:5976 ========== */
.home-cta {
  position: relative;
  min-height: clamp(28rem, 62.5vw, 56.25rem);
  padding: 5rem 0;
  color: #fff;
  overflow: hidden;
}

.home-cta__bg {
  position: absolute;
  inset: 0;
}

.home-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.home-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    132.33deg,
    rgba(0, 0, 0, 0.9) 2.76%,
    rgba(31, 31, 31, 0.62676) 26.74%,
    rgba(102, 102, 102, 0) 52.39%
  );
  pointer-events: none;
}

.home-cta .container,
.home-cta__copy {
  position: relative;
  z-index: 1;
}

.home-cta__title {
  margin: 0;
  max-width: 53rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.home-cta__desc {
  margin: 1.5rem 0 0;
  max-width: 53rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* ========== FAQ — Figma 2351:5990 ========== */
.home-faq {
  padding: 6.25rem 0;
  background: #fff;
}

.home-faq__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3.125rem;
  max-width: 77.5rem;
}

.home-faq__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.11;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--home-scorpion);
}

.home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin: 0;
}

.home-faq__item {
  width: 100%;
  border-radius: 1.5rem;
  background: var(--home-cream);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.home-faq__item[open] {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.home-faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.75rem;
  padding: 2rem;
  cursor: pointer;
  list-style: none;
}

.home-faq__summary::-webkit-details-marker {
  display: none;
}

.home-faq__question {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.555;
  color: var(--home-scorpion);
}

.home-faq__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.home-faq__item[open] .home-faq__icon {
  transform: rotate(180deg);
}

.home-faq__answer {
  padding: 0 2rem 2rem;
}

.home-faq__answer p {
  margin: 0;
  max-width: 48rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(94, 86, 90, 0.85);
}

/* ========== Newsletter ========== */
.home-newsletter {
  padding: 0 0 5rem;
}

.home-newsletter__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1.25rem, 3vw, 2.5rem);
  border-radius: 1.5rem;
  background: var(--home-cream);
}

.home-newsletter__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--home-scorpion);
}

.home-newsletter__copy p {
  margin: 0;
  max-width: 28rem;
  color: rgba(94, 86, 90, 0.85);
}

.home-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: min(100%, 28rem);
}

.home-newsletter__form .form-control {
  flex: 1;
  min-width: 12rem;
  min-height: 3rem;
  border: 2px solid rgba(94, 86, 90, 0.3);
  border-radius: 0.75rem;
}

.home-newsletter__form .home-btn {
  min-height: 3rem;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  top: 30px;
}

/* ========== Responsive ========== */
@media (max-width: 1199.98px) {
  .home-hero {
    min-height: auto;
    overflow: visible;
  }

  .home-hero__inner,
  .home-resources__grid {
    grid-template-columns: 1fr;
  }

  .home-resources__feature-card {
    min-height: 0;
  }

  .home-resources__feature-body {
    grid-template-columns: 1fr;
  }

  .home-why__compare {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-why__divider {
    width: 100%;
    height: 0.25rem;
  }

  .home-why__handle {
    left: 50%;
    top: 50%;
  }

  .home-why__col--gain .home-why__orbit {
    margin-top: 2.5rem;
  }

  .home-why__pill--landing {
    right: 0;
  }

  .home-showcase__block {
    background-position: center center;
  }

  .home-showcase__panel {
    background: linear-gradient(
      180deg,
      rgba(231, 239, 231, 0.94) 0%,
      rgba(231, 239, 231, 0.82) 55%,
      rgba(231, 239, 231, 0.35) 100%
    );
  }

  .home-showcase__copy {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .home-showcase__block--soon .home-showcase__panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    background: rgba(231, 239, 231, 0.92);
  }

  .home-showcase__block--soon .home-showcase__copy {
    min-height: 0;
    padding-bottom: 1rem;
  }

  .home-showcase__block--soon .home-showcase__text {
    margin-top: 1rem;
    gap: 1rem;
  }

  .home-teams__copy {
    padding: 0;
  }

  .home-teams__visual {
    min-height: 28rem;
  }

  .home-hero__inner {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;
    gap: 2.5rem;
  }

  .home-hero__copy {
    padding-top: 0;
    max-width: 42rem;
  }

  .home-hero__showcase {
    min-height: auto;
    width: 100%;
  }

  .home-hero__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(11rem, 0.85fr);
    align-items: start;
    gap: 1.25rem 1.5rem;
    width: 100%;
    min-height: 0;
    margin-left: 0;
    padding: 2rem 1.75rem 1.5rem;
    overflow: visible;
  }

  .home-hero__divider {
    display: none;
  }

  .home-hero__quote {
    position: static;
    grid-column: 2;
    grid-row: 1;
    right: auto;
    top: auto;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .home-hero__quote p {
    font-size: 1.2rem;
  }

  .home-hero__quote strong {
    font-size: 1.35rem;
  }

  .home-hero__stack {
    grid-column: 1;
    grid-row: 1 / span 2;
    max-width: none;
    width: 100%;
    margin: 0;
    filter: none;
  }

  .home-hero__person {
    position: relative;
    grid-column: 2;
    grid-row: 2;
    width: min(100%, 17rem);
    right: auto;
    bottom: auto;
    margin: 0.5rem 0 0 auto;
    justify-self: end;
    align-self: end;
  }

  .home-hero__person-ring {
    width: 8.5rem;
    height: 8.5rem;
    right: 1rem;
    bottom: 1rem;
  }

  .home-why__divider {
    width: 100%;
    height: 0.25rem;
  }

  .home-showcase__soon,
  .home-showcase__notify {
    text-align: left;
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
  }

  .home-showcase__soon {
    width: 100%;
    max-width: none;
    padding: 0 1.5rem 2rem;
    overflow: visible;
  }

  .home-showcase__soon-label {
    width: 100%;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.2;
    overflow: visible;
  }

  .home-showcase__soon-text {
    width: 100%;
    max-width: none;
    margin-top: 0.75rem;
    gap: 0.5rem;
  }

  .home-showcase__notify {
    max-width: none;
    width: 100%;
    margin-top: 1.25rem;
  }

  .home-showcase__block--soon .home-showcase__panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .home-showcase__stack {
    --showcase-stack-gap: 1.5rem; /* 24px on smaller screens */
  }

  .home-showcase__block {
    border-radius: 1.25rem;
  }

  .home-showcase__panel {
    min-height: 0;
  }

  .home-hero__inner {
    padding-top: 6rem;
  }

  /* Tablet: quote full-width, chips + person side-by-side — kill empty orange void */
  .home-hero__panel {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: end;
    gap: 1.25rem 1.5rem;
    padding: 1.75rem 1.5rem 1.35rem;
    min-height: 28rem;
  }

  .home-hero__quote {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: left;
    max-width: 32rem;
  }

  .home-hero__quote p {
    font-size: 1.25rem;
  }

  .home-hero__quote strong {
    font-size: 1.4rem;
  }

  .home-hero__stack {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    width: 100%;
  }

  .home-hero__chip.is-expanded,
  .home-hero__mini {
    width: 100%;
  }

  .home-hero__person {
    grid-column: 2;
    grid-row: 2;
    width: min(100%, 18rem);
    margin: 0;
    justify-self: end;
    align-self: end;
  }

  .home-hero__person-ring {
    width: 9.5rem;
    height: 9.5rem;
    right: 0.75rem;
    bottom: 1rem;
  }

  .home-featured__card {
    border-radius: 2.5rem;
    padding: 3rem 1.5rem;
  }

  .home-products__stage {
    padding-top: 5rem;
  }

  .home-products__tabs {
    position: static;
    transform: none;
    width: 100%;
    margin: 0 auto 1.5rem;
  }

  .home-products__soon {
    position: static;
    margin-left: 0.35rem;
  }

  .home-teams__card {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: -2rem;
    padding: 1.1rem 1.15rem;
  }

  .home-teams__visual {
    min-height: 22rem;
    padding: 1.25rem;
  }

  .home-teams {
    padding-bottom: 6.5rem;
  }

  .home-workflow__head {
    align-items: flex-start;
    margin-bottom: 2.5rem;
  }

  .home-workflow__card {
    height: 24rem;
  }

  .home-workflow__progress {
    margin-top: 2.5rem;
  }

  .home-resources {
    padding: 3.5rem 0;
  }

  .home-resources__inner {
    gap: 2rem;
  }

  .home-resources__featured,
  .home-resources__list-wrap {
    padding: 1.1rem;
  }

  .home-resources__thumb {
    flex-basis: 6.5rem;
    width: 6.5rem;
    height: 4.5rem;
  }

  .home-resources__meta strong {
    font-size: 0.9375rem;
  }

  .home-resources__feature-body h3 {
    font-size: 1.25rem;
  }

  .home-resources__cta-btn {
    width: 100%;
    max-width: 17rem;
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .home-hero__pills {
    gap: 0.75rem;
  }

  .home-hero__panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1.1rem 1.1rem;
    border-radius: 1.25rem;
    min-height: 0;
  }

  .home-hero__quote {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
  }

  .home-hero__quote p {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .home-hero__quote strong {
    font-size: 1.2rem;
  }

  .home-hero__stack {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    width: 100%;
  }

  .home-hero__chip {
    min-height: 3.25rem;
  }

  .home-hero__person {
    grid-column: 1;
    grid-row: 3;
    width: min(72%, 12.5rem);
    margin: 0.25rem 0 0 auto;
    justify-self: end;
  }

  .home-hero__person-ring {
    width: 6.5rem;
    height: 6.5rem;
  }

  .home-hero__cta,
  .home-products__actions,
  .home-cta__actions {
    flex-direction: column;
  }

  .home-hero__cta .home-btn,
  .home-products__actions .home-btn,
  .home-cta__actions .home-btn {
    width: 100%;
  }

  .home-featured__logo {
    flex-basis: 9rem;
    height: 4rem;
  }

  .home-showcase__notify {
    flex-direction: column;
    align-items: stretch;
  }

  .home-showcase__notify input {
    width: 100%;
    padding: 0.85rem 1rem;
  }

  .home-showcase__notify .home-btn {
    width: 100%;
    border-radius: 0 0 0.65rem 0.65rem;
  }

  .home-showcase__soon {
    padding: 0 1.25rem 1.5rem;
  }

  .home-showcase__block--soon .home-showcase__copy {
    padding: 1.5rem 1.25rem 0.75rem;
  }

  .home-showcase__soon-label {
    font-size: clamp(1.65rem, 7.5vw, 2.1rem);
    letter-spacing: -0.02em;
  }

  .home-showcase__soon-text {
    margin-top: 0.65rem;
  }

  .home-showcase__soon-note {
    font-size: 1.25rem;
  }

  .home-showcase__soon-desc {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .home-showcase__block--soon .home-showcase__product {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .home-faq {
    padding: 4rem 0;
  }

  .home-faq__inner {
    gap: 2rem;
  }

  .home-faq__summary {
    min-height: 0;
    padding: 1.25rem;
  }

  .home-faq__answer {
    padding: 0 1.25rem 1.25rem;
  }

  .home-why__ring {
    display: none;
  }

  .home-why__pill {
    position: static;
    margin: 0;
  }

  .home-why__orbit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    min-height: auto;
    padding-top: 0.5rem;
  }

  .home-why__logo {
    width: 9rem;
    margin-bottom: 0.75rem;
  }

  .home-why__chaos {
    min-height: 14rem;
  }

  .home-hero__pills li {
    min-height: auto;
  }

  .home-teams {
    padding: 3.5rem 0 5.5rem;
  }

  .home-teams__visual {
    min-height: 18rem;
  }

  .home-teams__card {
    left: 1rem;
    right: 1rem;
    bottom: -1.75rem;
    gap: 1rem;
    padding: 1rem;
  }

  .home-teams__item {
    min-height: 3.25rem;
    padding: 0.85rem 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-featured__track,
  .home-btn,
  .home-reveal,
  .home-industry-card,
  .home-audience-card {
    animation: none !important;
    transition: none !important;
  }
}
