@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --bg: #f2f2f2;
  --ink: #0b0b0b;
  --muted: #666;
  --yellow: #ffef13;
  --font: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  --theme-accent: var(--yellow);
  --theme-accent-ink: #111;
  --text-on-dark: #fff;
  --text-muted-on-dark: rgba(255, 255, 255, 0.74);
  --text-muted-on-light: #5f5f5f;
  --type-display: clamp(2.75rem, 5.5vw, 5.5rem);
  --type-section: clamp(2.25rem, 4.5vw, 4.5rem);
  --type-card: clamp(1.25rem, 2vw, 1.6rem);
  --site-shell: min(76rem, calc(100% - 3rem));
  --section-space: clamp(5.5rem, 9vw, 9rem);
  --section-space-compact: clamp(4.5rem, 7vw, 7rem);
  --content-gap: clamp(2.5rem, 5vw, 4.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: visible;
  isolation: isolate;
  padding-bottom: 2.5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  background: url("../images/hero-bg.png") center / cover no-repeat;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 17, 0.1);
}

.hero__glow {
  display: none;
}

.hero__glow--left {
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  top: -8%;
  left: -8%;
  background: rgba(255, 255, 255, 0.75);
}

.hero__glow--right {
  width: 48vw;
  height: 48vw;
  max-width: 580px;
  max-height: 580px;
  top: -12%;
  right: -10%;
  background: rgba(255, 255, 255, 0.7);
}

.hero__blobs {
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: min(1100px, 92%);
  height: 280px;
  transform: translateX(-50%);
  z-index: -2;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.55;
}

.blob--1 {
  width: 220px;
  height: 160px;
  left: 8%;
  bottom: 20%;
  background: #7dffb0;
}

.blob--2 {
  width: 260px;
  height: 180px;
  left: 38%;
  bottom: 8%;
  background: #6eb6ff;
}

.blob--3 {
  width: 240px;
  height: 170px;
  right: 6%;
  bottom: 18%;
  background: #9b8cff;
}

/* ——— Hero nav (original pill) ——— */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem clamp(1.5rem, 4vw, 3.25rem) 1rem;
  position: relative;
  z-index: 20;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  justify-self: start;
  flex-shrink: 0;
}

.logo__s {
  width: 1.5rem;
  height: 1.85rem;
  object-fit: contain;
  flex-shrink: 0;
}

.logo__x {
  width: 1rem;
  height: 1.1rem;
  object-fit: contain;
  flex-shrink: 0;
}

.logo__text {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav__pill {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(20, 20, 20, 0.72);
  padding: 0.58rem 1.05rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav__link:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
}

.nav__link.is-active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-weight: 600;
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 #fff;
}

.nav__cta {
  justify-self: end;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.nav__cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 #fff;
}

/* ——— Services dropdown ——— */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.58rem 1.05rem;
  border: 0;
  border-radius: 999px;
  color: rgba(20, 20, 20, 0.72);
  background: transparent;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-dropdown__toggle svg {
  width: 0.72rem;
  height: 0.72rem;
  transition: transform 0.25s ease;
}

.nav-dropdown__toggle:hover,
.nav-dropdown.is-open .nav-dropdown__toggle {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
}

.nav-dropdown.is-active .nav-dropdown__toggle {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.nav-dropdown.is-open .nav-dropdown__toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  z-index: 50;
  width: min(43rem, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.15rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.1rem;
  background: rgba(12, 12, 12, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 0.5rem);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

.nav-dropdown__menu a {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem;
  border-radius: 0.78rem;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: rgba(255, 255, 255, 0.075);
  transform: translateX(2px);
  outline: none;
}

.nav-dropdown__menu a + a {
  margin-top: 0;
}

.nav-dropdown__menu > a:first-child {
  grid-column: 1 / -1;
}

.nav-dropdown__menu strong,
.nav-dropdown__menu small {
  display: block;
}

.nav-dropdown__menu strong {
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-dropdown__menu small {
  margin-top: 0.16rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  line-height: 1.35;
}

.nav-dropdown__icon {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.68rem;
  font-weight: 800;
}

.nav-dropdown__icon--yellow {
  color: #111;
  background: var(--yellow);
  border-color: var(--yellow);
}

.sticky-nav .nav-dropdown__toggle {
  padding: 0.55rem 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 600;
}

.sticky-nav .nav-dropdown__toggle:hover,
.sticky-nav .nav-dropdown.is-open .nav-dropdown__toggle {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.sticky-nav .nav-dropdown.is-active .nav-dropdown__toggle {
  color: #111;
  background: var(--yellow);
}

.sticky-nav .nav-dropdown__menu {
  top: calc(100% + 1rem);
}

@media (max-width: 980px) {
  .nav__pill,
  .sticky-nav__menu {
    overflow: visible;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .nav-dropdown__toggle {
    padding: 0.5rem 0.75rem;
    font-size: 0.74rem;
  }

  .nav-dropdown__menu {
    position: fixed;
    top: 8.1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    max-height: calc(100dvh - 9.1rem);
    grid-template-columns: 1fr;
    overflow-y: auto;
    transform: translateY(0.5rem);
  }

  .nav-dropdown__menu > a:first-child {
    grid-column: auto;
  }

  .nav-dropdown.is-open .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    transform: translateY(0);
  }

  .sticky-nav .nav-dropdown__menu {
    top: 7.4rem;
  }
}

/* ——— Sticky dark glass bar (on scroll) ——— */
.sticky-nav {
  --sticky-nav-pad: 1.1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--sticky-nav-pad) clamp(1.25rem, 4vw, 2.5rem) 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-110%);
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-nav.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-nav.is-compact .sticky-nav__shell {
  padding: 0.7rem 1rem 0.7rem 1.25rem;
}

.sticky-nav__shell {
  width: min(78rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem 2rem;
  padding: 0.85rem 1rem 0.85rem 1.4rem;
  border-radius: 12px;
  background: rgba(28, 28, 30, 0.88);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.28),
    0 4px 14px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    padding 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.sticky-nav .logo {
  gap: 0.06rem;
  color: #fff;
}

.sticky-nav .logo__s {
  width: 1.45rem;
  height: 1.75rem;
}

.sticky-nav .logo__x {
  width: 0.98rem;
  height: 1.08rem;
}

.sticky-nav .logo__text {
  font-size: 1.12rem;
  color: #fff;
  font-weight: 800;
}

.sticky-nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(0.85rem, 1.6vw, 1.65rem);
  padding: 0;
  background: transparent;
}

.sticky-nav .nav__link {
  position: relative;
  border-radius: 0;
  padding: 0.35rem 0;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  box-shadow: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.sticky-nav .nav__link:hover {
  color: #fff;
  background: transparent;
  opacity: 0.75;
}

.sticky-nav .nav__link.is-active {
  color: #fff;
  background: transparent;
  font-weight: 600;
  box-shadow: none;
}

.sticky-nav .nav__link.is-active::after {
  content: none;
}

.sticky-nav__cta {
  border-radius: 8px;
  padding: 0.72rem 1.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #111;
  background: #fff;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.sticky-nav__cta:hover {
  transform: translateY(-1px);
  background: var(--yellow);
  color: #111;
  box-shadow: none;
}

/* ——— Hero copy ——— */
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.25rem, 3.5vh, 2.5rem) 1.25rem 0.5rem;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: #575757;
  padding: 0.48rem 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 1.4rem;
}

.hero__title {
  font-size: clamp(2.75rem, 5.7vw, 5rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.public-site main .hero__title > .hero__title-line {
  display: block;
  color: var(--ink);
}

.public-site main .hero__title .hero__title-accent {
  color: var(--yellow);
}

.hero__subtitle {
  margin-top: 1.1rem;
  max-width: 36rem;
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
}

/* ——— Arc + glass cards ——— */
.arc {
  position: relative;
  width: 100%;
  height: auto;
  padding: 1.75rem 0 2.5rem;
  margin-top: auto;
  z-index: 2;
  overflow: visible;
}

.arc__line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  transform: none;
  pointer-events: none;
  overflow: visible;
}

.arc__line path {
  fill: none;
  stroke: rgba(24, 24, 24, 0.32);
  stroke-width: 1.15;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.arc__track {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  top: 0;
  left: auto;
  width: min(72rem, 94vw);
  margin: 0 auto;
  padding: 0 0 0;
  transform: none;
  overflow: visible;
}

.card {
  /* clothesline: center hangs lower; left clockwise / right counter-clockwise */
  --rot: calc(var(--i) * -5deg);
  --lift: calc(50px + (4 - (var(--i) * var(--i))) * 9px);
  flex: 0 0 14.5rem;
  position: relative;
  margin-top: var(--lift);
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 16px 42px rgba(18, 24, 40, 0.1),
    0 2px 8px rgba(18, 24, 40, 0.04);
  transform: rotate(var(--rot));
  transform-origin: 50% 0%;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
  will-change: transform;
}

.card + .card {
  margin-left: -0.55rem;
}

.card--far-left,
.card--far-right {
  z-index: 1;
}

.card--left,
.card--right {
  z-index: 2;
}

.card--center {
  z-index: 3;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-10px) rotate(var(--rot)) scale(1.03);
    box-shadow:
      0 22px 48px rgba(0, 0, 0, 0.12);
    z-index: 5;
  }
}

.card:focus-visible {
  transform: translateY(-10px) rotate(var(--rot)) scale(1.03);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
  outline: 3px solid var(--theme-accent);
  outline-offset: 4px;
  z-index: 5;
}

.card__pin {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 16px;
  height: 26px;
  border: 2px solid #7d96ae;
  border-radius: 6px;
  background: transparent;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.22));
  z-index: 3;
}

/* Inner loop — creates the classic double-wire clip silhouette */
.card__pin::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 2px;
  right: 2px;
  height: 14px;
  border: 2px solid #7d96ae;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  background: transparent;
}

.card__pin::after {
  display: none;
}

.card__media {
  margin: 0.7rem 0.7rem 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 0.92;
  background: linear-gradient(145deg, #8fe8ff, #7dffb0 50%, #7a8cff);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.card__body {
  padding: 0.9rem 0.95rem 1.2rem;
}

.card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
  color: #111;
}

.card__body p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #626262;
}

/* Subscription offer */
.subscription-offer {
  position: relative;
  padding: clamp(4.75rem, 8vw, 8rem) 0;
  overflow: hidden;
  color: #fff;
  background: #10110f;
  isolation: isolate;
}

.subscription-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, #000, transparent 78%);
}

.subscription-offer__glow {
  position: absolute;
  right: -10rem;
  bottom: -16rem;
  z-index: -1;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: var(--yellow);
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.subscription-offer__inner {
  width: var(--site-shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.subscription-offer__copy {
  max-width: 42rem;
}

.subscription-offer__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.subscription-offer__eyebrow span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0.3rem rgba(255, 239, 19, 0.12);
}

.subscription-offer h2 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 5.3vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.subscription-offer h2 mark {
  color: var(--yellow);
  background: transparent;
}

.subscription-offer__lead {
  max-width: 37rem;
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.96rem, 1.35vw, 1.08rem);
  line-height: 1.75;
}

.subscription-offer__promise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.subscription-offer__promise span {
  padding: 0.68rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 650;
}

.subscription-plan {
  position: relative;
  padding: clamp(1.5rem, 3.4vw, 2.35rem);
  border-radius: 2rem;
  color: #111;
  background: #f8f7f1;
  box-shadow: 0 2.5rem 7rem rgba(0, 0, 0, 0.35);
}

.subscription-plan::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.55rem;
  pointer-events: none;
}

.subscription-plan__head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.subscription-plan__head p {
  margin-bottom: 0.4rem;
  color: #73736d;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.subscription-plan__head h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.subscription-plan__badge {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: #111;
  background: var(--yellow);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.subscription-plan__price {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-top: 2.4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.subscription-plan__currency {
  margin-top: 0.68rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.subscription-plan__price strong {
  font-size: clamp(4.2rem, 7vw, 6rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
}

.subscription-plan__period {
  align-self: flex-end;
  margin: 0 0 0.4rem 0.65rem;
  color: #77776f;
  font-size: 0.8rem;
  font-weight: 650;
}

.subscription-plan__features {
  position: relative;
  display: grid;
  gap: 0.9rem;
  margin-top: 1.8rem;
  list-style: none;
}

.subscription-plan__features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #393934;
  font-size: 0.82rem;
  line-height: 1.45;
}

.subscription-plan__features li span {
  display: grid;
  flex: 0 0 1.35rem;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--yellow);
  font-size: 0.7rem;
  font-weight: 900;
}

.subscription-plan__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.7rem;
  margin-top: 2rem;
  padding: 0.65rem 0.7rem 0.65rem 1.25rem;
  border-radius: 999px;
  color: #fff;
  background: #111;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

.subscription-plan__cta span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--yellow);
  transition: transform 0.25s ease;
}

.subscription-plan__cta:hover,
.subscription-plan__cta:focus-visible {
  transform: translateY(-2px);
  background: #242424;
}

.subscription-plan__cta:hover span,
.subscription-plan__cta:focus-visible span {
  transform: rotate(45deg);
}

.subscription-plan__cta:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.subscription-plan__note {
  position: relative;
  margin-top: 1rem;
  color: #7b7b74;
  font-size: 0.67rem;
  line-height: 1.5;
  text-align: center;
}

/* ——— Responsive ——— */
/* Digital marketing section */
.marketing__inner,
.about__inner,
.site-footer__inner {
  width: min(72rem, 100%);
  margin-inline: auto;
}

.marketing {
  position: relative;
  background: #ffffff;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 6vw, 5rem);
}

.marketing__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.marketing__copy {
  max-width: 32rem;
}

.marketing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  color: #6a6a6a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marketing__eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--yellow);
}

.marketing h2 {
  font-size: clamp(2.4rem, 4.4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.marketing h2 span {
  color: var(--yellow);
  display: inline;
}

.marketing__description {
  margin-top: 1.35rem;
  max-width: 28rem;
  color: #5f5f5f;
  font-size: 1.02rem;
  line-height: 1.7;
}

.marketing__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.65rem;
  list-style: none;
}

.marketing__services li {
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: #fff;
  color: #2f2f2f;
  font-size: 0.78rem;
  font-weight: 600;
}

.marketing__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.8rem 0.85rem 0.8rem 1.35rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.marketing__cta:hover {
  transform: translateY(-2px);
  background: #000;
}

.marketing__cta span {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  font-size: 0.95rem;
}

.marketing__visual {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
}

.marketing__video {
  width: 100%;
  max-width: 34rem;
  height: auto;
  aspect-ratio: 1;
  display: block;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}

/* Shared section type */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  color: #6a6a6a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--yellow);
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.section-title span {
  color: var(--yellow);
}

/* About */
.about {
  position: relative;
  background:
    linear-gradient(180deg, #f6f6f6 0%, #efefef 100%);
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 10%;
  width: min(28rem, 50vw);
  height: min(28rem, 50vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 239, 19, 0.22), transparent 68%);
  pointer-events: none;
}

.about__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.about__intro .section-title {
  max-width: 22ch;
}

.about__body p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 36rem;
}

.about__body p + p {
  margin-top: 1rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.about__stats > div {
  padding: 0 1.25rem;
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.about__stats > div:first-child {
  padding-left: 0;
}

.about__stats > div + div {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.about__stats.is-visible > div {
  opacity: 1;
  transform: translateY(0);
}

.about__stats.is-visible > div:nth-child(2) {
  transition-delay: 0.12s;
}

.about__stats.is-visible > div:nth-child(3) {
  transition-delay: 0.24s;
}

.about__stats strong {
  display: block;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: #111;
}

.about__stats span {
  display: block;
  margin-top: 0.35rem;
  color: #666;
  font-size: 0.82rem;
  line-height: 1.35;
}

/* Solutions — sticky left nav + scroll-driven right panels */
.solutions {
  --solutions-vh: 100vh;
  --solutions-vh: 100dvh;
  --solutions-sticky-top: 5.5rem;
  --panel-count: 6;
  position: relative;
  background: #ffffff;
  height: calc(var(--solutions-vh) * var(--panel-count));
}

.solutions__sticky {
  position: sticky;
  top: var(--solutions-sticky-top);
  height: calc(var(--solutions-vh) - var(--solutions-sticky-top));
  width: min(72rem, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(14rem, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: start;
  padding: clamp(2rem, 5vh, 3.5rem) 0;
}

.solutions__nav {
  align-self: start;
  padding-top: 0.35rem;
}

.solutions__heading {
  margin-bottom: 1.75rem;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
}

.solutions__list {
  list-style: none;
  display: grid;
  gap: 0.15rem;
}

.solutions__link {
  position: relative;
  display: grid;
  grid-template-columns: 0.7rem 1.7rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.55rem 0;
  border: 0;
  background: transparent;
  color: #c4c4c4;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.45s ease;
}

.solutions__marker {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: transparent;
  transition: background 0.45s ease, transform 0.45s ease;
}

.solutions__num {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.solutions__label {
  line-height: 1.35;
}

.solutions__arrow {
  opacity: 0;
  transform: translateX(-0.35rem);
  font-size: 0.95rem;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.solutions__link.is-active {
  color: #111;
  font-weight: 700;
}

.solutions__link.is-active .solutions__marker {
  background: #111;
  transform: scale(1.15);
}

.solutions__link.is-active .solutions__arrow {
  opacity: 1;
  transform: translateX(0);
}

.solutions__link:hover:not(.is-active) {
  color: #888;
}

.solutions__viewport {
  height: 100%;
  overflow: hidden;
  min-width: 0;
}

.solutions__panels {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.solutions__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(var(--solutions-vh) - var(--solutions-sticky-top) - 4rem);
  padding: 0.5rem 0 2rem;
}

.solutions__panel-index {
  margin-bottom: 0.85rem;
  color: #c8c8c8;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.solutions__panel-title {
  max-width: 16ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #111;
}

.solutions__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  list-style: none;
}

.solutions__tags li {
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  background: #ececec;
  color: #555;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.solutions__panel-copy {
  display: grid;
  gap: 1.1rem;
  max-width: 38rem;
}

.solutions__panel-copy p {
  color: #6a6a6a;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Mobile: stack nav + panels, no sticky pin */
@media (max-width: 980px) {
  .solutions {
    height: auto;
  }

  .solutions__sticky {
    position: relative;
    top: auto;
    height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: clamp(3.5rem, 8vw, 5rem) 0 3rem;
  }

  .solutions__list {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .solutions__list::-webkit-scrollbar {
    display: none;
  }

  .solutions__list li {
    flex: 0 0 auto;
  }

  .solutions__link {
    grid-template-columns: auto;
    gap: 0;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #f2f2f2;
    color: #888;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .solutions__marker,
  .solutions__num,
  .solutions__arrow {
    display: none;
  }

  .solutions__link.is-active {
    background: #111;
    color: #fff;
  }

  .solutions__viewport {
    overflow: visible;
  }

  .solutions__panels {
    transform: none !important;
  }

  .solutions__panel {
    min-height: 0;
    padding: 1.5rem 0 2.25rem;
    scroll-snap-align: start;
  }

  .solutions__panel + .solutions__panel {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 720px) {
  .solutions__sticky {
    width: calc(100% - 2.5rem);
  }

  .solutions__panel-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    max-width: none;
  }
}

/* Case studies — sticky left + scroll-driven vertical slides */
.cases {
  --cases-vh: 100vh;
  --cases-vh: 100dvh;
  --cases-sticky-top: 5.5rem;
  --cases-block-pad: clamp(1.5rem, 3vh, 2.25rem);
  --slide-count: 3;
  position: relative;
  background: #ffffff;
  /* One viewport “chapter” per slide; JS syncs --slide-count */
  height: calc(var(--cases-vh) * var(--slide-count));
}

.cases__sticky {
  position: sticky;
  top: var(--cases-sticky-top);
  height: calc(var(--cases-vh) - var(--cases-sticky-top));
  box-sizing: border-box;
  width: min(76rem, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
  padding: var(--cases-block-pad) clamp(0.25rem, 2vw, 1rem);
}

.cases__left {
  align-self: center;
  max-width: 28rem;
  padding-block: 0.75rem;
}

.cases__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid #111;
  padding-bottom: 0.2rem;
}

.cases__label::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--yellow);
}

.cases__title {
  font-size: clamp(2.1rem, 3.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.cases__title mark {
  background: var(--yellow);
  color: #111;
  padding: 0 0.18em;
  border-radius: 0.12em;
}

.cases__text {
  margin-top: 1.25rem;
  color: #555;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 28rem;
}

.cases__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1.75rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.45s ease, transform 0.45s ease;
}

.cases__cta:hover {
  background: #222;
  transform: translateY(-1px);
}

.cases__right {
  position: relative;
  height: 100%;
  min-height: 0;
  padding-right: 2.5rem;
  display: flex;
  flex-direction: column;
}

.cases__viewport {
  flex: 1;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

/* Track moves via translateY driven by scroll progress in script.js */
.cases__track {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Equal chapter height — padding is identical so gaps stay even */
.cases__slide {
  --cases-slide-gap: clamp(0.6rem, 1.2vh, 0.9rem);
  box-sizing: border-box;
  height: calc(
    var(--cases-vh) - var(--cases-sticky-top) - var(--cases-block-pad) -
      var(--cases-block-pad)
  );
  display: flex;
  align-items: stretch;
  padding: var(--cases-slide-gap) 0;
  margin: 0;
}

.cases__slide-card {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 1.5rem;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

/* Full-bleed mockup — fills the whole card, clear on the right */
.cases__slide-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}

.cases__slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  transform: scale(1.03);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.cases__slide.is-active .cases__slide-visual img {
  transform: scale(1);
}

/* Text panel — black transparency so copy stays readable, image stays clear on the side */
.cases__slide-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(56%, 24rem);
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  padding: clamp(2.25rem, 5vh, 3.25rem)
    clamp(1.75rem, 3vw, 2.5rem);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.72) 55%,
    rgba(0, 0, 0, 0.28) 85%,
    rgba(0, 0, 0, 0) 100%
  );
}

.cases__slide-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.65rem;
}

.cases__slide-client {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cases__slide-stat {
  margin-top: 0.85rem;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--yellow);
  line-height: 1.05;
}

.cases__slide-desc {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 34ch;
}

.cases__slide-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
  list-style: none;
}

.cases__slide-badges li {
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cases__progress-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.cases__progress {
  display: grid;
  gap: 0.45rem;
}

.cases__progress span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  transition:
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s ease;
}

.cases__progress span.is-active {
  height: 1.35rem;
  background: var(--yellow);
}

.cases__progress-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Mobile: stacked slides + scroll-snap, no sticky pin */
@media (max-width: 980px) {
  .cases {
    height: auto;
  }

  .cases__sticky {
    position: relative;
    top: auto;
    height: auto;
    grid-template-columns: 1fr;
    padding: clamp(4rem, 8vw, 5rem) 0 clamp(3.5rem, 7vw, 4.5rem);
    gap: 2rem;
  }

  .cases__left {
    padding-top: 0;
    max-width: none;
  }

  .cases__right {
    height: auto;
    padding-right: 0;
  }

  .cases__viewport {
    overflow: visible;
    scroll-snap-type: y proximity;
  }

  .cases__track {
    transform: none !important;
  }

  .cases__slide {
    height: auto;
    min-height: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 0 0 clamp(1.5rem, 3vw, 2rem);
  }

  .cases__slide:last-child {
    padding-bottom: 0;
  }

  .cases__slide-card {
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 20rem;
  }

  .cases__slide-copy {
    width: 100%;
    max-width: none;
    height: auto;
    margin-top: auto;
    padding: clamp(2rem, 5vw, 2.5rem) clamp(1.5rem, 4vw, 2rem)
      clamp(2.25rem, 5.5vw, 2.75rem);
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.55) 35%,
      rgba(0, 0, 0, 0.88) 100%
    );
  }

  .cases__slide-visual img {
    object-position: center center;
  }

  .cases__progress-wrap {
    display: none;
  }
}

@media (max-width: 720px) {
  .cases__sticky {
    width: calc(100% - 2.5rem);
  }

  .cases__slide-card {
    min-height: 28rem;
    border-radius: 1.25rem;
  }

  .cases__slide-stat {
    font-size: 1.45rem;
  }
}

/* Case studies redesign — editorial bento showcase */
.cases {
  height: auto !important;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 239, 19, 0.12), transparent 24rem),
    #10110f;
}

.cases__sticky {
  position: relative;
  top: auto;
  height: auto;
  width: min(78rem, calc(100% - 3rem));
  display: block;
  padding: 0;
}

.cases__left {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  column-gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
  padding: 0;
}

.cases__label {
  grid-column: 1 / -1;
  width: fit-content;
  margin-bottom: 1.35rem;
  padding: 0;
  border: 0;
  color: var(--yellow);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.cases__label::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: currentColor;
}

.cases__label::after {
  display: none;
}

.cases__title {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.cases__title mark {
  display: inline;
  padding: 0;
  color: var(--yellow);
  background: transparent;
  border-radius: 0;
}

.cases__text {
  max-width: 30rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.75;
}

.cases__cta {
  justify-content: center;
  width: fit-content;
  margin-top: 1.5rem;
  padding: 0.92rem 1.4rem;
  color: #111;
  background: var(--yellow);
}

.cases__cta::after {
  content: "↗";
  margin-left: 0.7rem;
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}

.cases__cta:hover {
  color: #111;
  background: #fff32d;
}

.cases__cta:hover::after {
  transform: translate(0.15rem, -0.15rem);
}

.cases__right,
.cases__viewport {
  height: auto;
  min-height: 0;
}

.cases__right {
  padding: 0;
}

.cases__viewport {
  overflow: visible;
}

.cases__track {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  transform: none !important;
}

.cases__slide {
  height: auto;
  min-height: 0;
  display: block;
  padding: 0;
}

.cases__slide:first-child {
  grid-column: 1 / -1;
}

.cases__slide:not(:first-child) {
  grid-column: span 6;
}

.cases__slide-card {
  min-height: clamp(33rem, 52vw, 43rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(1.35rem, 2.5vw, 2rem);
  background: #1b1d19;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.cases__slide:not(:first-child) .cases__slide-card {
  min-height: clamp(31rem, 45vw, 38rem);
}

.cases__slide-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 10, 8, 0.02) 20%,
    rgba(9, 10, 8, 0.3) 58%,
    rgba(9, 10, 8, 0.96) 100%
  );
}

.cases__slide-visual img,
.cases__slide.is-active .cases__slide-visual img {
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.cases__slide-copy {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: auto;
  justify-content: flex-end;
  padding: clamp(7rem, 14vw, 11rem) clamp(1.5rem, 3.5vw, 3rem)
    clamp(1.6rem, 3.5vw, 2.8rem);
  background: transparent;
}

.cases__slide:first-child .cases__slide-copy {
  padding-right: clamp(2rem, 38vw, 30rem);
}

.cases__slide-kicker {
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(10, 10, 9, 0.36);
  backdrop-filter: blur(10px);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.cases__slide-client {
  max-width: 18ch;
  font-size: clamp(1.65rem, 3.1vw, 2.75rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.cases__slide:not(:first-child) .cases__slide-client {
  font-size: clamp(1.45rem, 2.35vw, 2.05rem);
}

.cases__slide-stat {
  margin-top: 0.7rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: var(--yellow);
}

.cases__slide-desc {
  max-width: 48ch;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.84rem, 1vw, 0.96rem);
  line-height: 1.65;
}

.cases__slide-badges {
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.cases__slide-badges li {
  padding: 0.42rem 0.72rem;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 0.64rem;
}

.cases__progress-wrap {
  display: none;
}

@media (hover: hover) {
  .cases__slide-card:hover .cases__slide-visual img {
    transform: scale(1.055);
    filter: saturate(1.08);
  }
}

@media (max-width: 980px) {
  .cases__sticky {
    width: min(46rem, calc(100% - 2.5rem));
    padding: 0;
  }

  .cases__left {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cases__title {
    max-width: 12ch;
  }

  .cases__text {
    margin-top: 1.5rem;
  }

  .cases__track {
    grid-template-columns: 1fr;
  }

  .cases__slide:first-child,
  .cases__slide:not(:first-child) {
    grid-column: auto;
    padding: 0;
  }

  .cases__slide-card,
  .cases__slide:not(:first-child) .cases__slide-card {
    min-height: clamp(29rem, 72vw, 36rem);
    aspect-ratio: auto;
  }

  .cases__slide:first-child .cases__slide-copy {
    padding-right: clamp(1.5rem, 4vw, 2rem);
  }
}

@media (max-width: 720px) {
  .cases {
    padding: 4.5rem 0;
  }

  .cases__sticky {
    width: calc(100% - 2rem);
  }

  .cases__title {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .cases__slide-card,
  .cases__slide:not(:first-child) .cases__slide-card {
    min-height: 32rem;
    border-radius: 1.25rem;
  }

  .cases__slide-copy {
    padding: 7rem 1.25rem 1.4rem;
  }

  .cases__slide-badges li {
    font-size: 0.6rem;
  }
}

/* Testimonials */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
  color: #111;
  background: #f1f0e9;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -12rem;
  right: -10rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(255, 255, 255, 0.18),
    0 0 0 8rem rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.testimonials__inner {
  position: relative;
  width: min(78rem, calc(100% - 3rem));
  margin: 0 auto;
}

.testimonials__header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.testimonials__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonials__eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: #111;
}

.testimonials h2 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.testimonials h2 span {
  color: #8a7f00;
}

.testimonials__intro {
  max-width: 29rem;
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.75;
}

.testimonials__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.testimonials__controls button {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 50%;
  color: #111;
  background: rgba(255, 255, 255, 0.68);
  font: inherit;
  font-size: 1.05rem;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.testimonials__controls button:hover:not(:disabled) {
  color: var(--yellow);
  background: #111;
}

.testimonials__controls button:disabled {
  opacity: 0.3;
  cursor: default;
}

.testimonials__controls p {
  min-width: 4.25rem;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2.5rem) / 3);
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.5rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.testimonials__grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-height: 29rem;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: clamp(1.35rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1.5rem 4rem rgba(22, 23, 18, 0.08);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.testimonial-card--yellow {
  background: var(--yellow);
  border-color: rgba(17, 17, 17, 0.08);
}

.testimonial-card--wide {
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 239, 19, 0.2), transparent 16rem),
    #151613;
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.testimonial-card__number {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.48;
}

.testimonial-card__mark {
  height: 2.5rem;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.85;
}

.testimonial-card--yellow .testimonial-card__mark {
  color: #111;
}

.testimonial-card blockquote {
  max-width: 29ch;
  margin: auto 0 clamp(2.5rem, 5vw, 4rem);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.testimonial-card--wide blockquote {
  max-width: 29ch;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.testimonial-card__client {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.testimonial-card--wide .testimonial-card__client {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.testimonial-card__avatar {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.testimonial-card--yellow .testimonial-card__avatar {
  color: var(--yellow);
}

.testimonial-card--wide .testimonial-card__avatar {
  color: #111;
  background: var(--yellow);
}

.testimonial-card__client > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-card__client strong {
  font-size: 0.83rem;
  font-weight: 800;
}

.testimonial-card__client small {
  font-size: 0.69rem;
  color: currentColor;
  opacity: 0.52;
}

@media (hover: hover) {
  .testimonial-card:hover {
    transform: translateY(-0.45rem);
    box-shadow: 0 2rem 5rem rgba(22, 23, 18, 0.13);
  }
}

@media (max-width: 980px) {
  .testimonials__inner {
    width: min(46rem, calc(100% - 2.5rem));
  }

  .testimonials__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials__grid {
    grid-auto-columns: min(78%, 24rem);
  }

  .testimonial-card,
  .testimonial-card--yellow,
  .testimonial-card--wide {
    min-height: 25rem;
  }

  .testimonial-card--wide {
    padding-right: clamp(1.5rem, 3vw, 2.4rem);
  }
}

@media (max-width: 720px) {
  .testimonials {
    padding: 4.5rem 0;
  }

  .testimonials__inner {
    width: calc(100% - 2rem);
  }

  .testimonials h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .testimonials__grid {
    grid-auto-columns: 88%;
  }

  .testimonial-card,
  .testimonial-card--yellow,
  .testimonial-card--wide {
    min-height: 26rem;
    padding: 1.35rem;
    border-radius: 1.25rem;
  }

  .testimonial-card blockquote,
  .testimonial-card--wide blockquote {
    font-size: clamp(1.25rem, 6vw, 1.6rem);
  }
}

/* CTA band */
.cta-band {
  background: #111;
  color: #fff;
  padding: clamp(4.5rem, 8vw, 6.5rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
}

.cta-band__inner {
  width: min(42rem, 100%);
  margin: 0 auto;
}

.cta-band .section-eyebrow {
  color: rgba(255, 255, 255, 0.65);
  justify-content: center;
}

.cta-band .section-title {
  color: #fff;
}

.cta-band__text {
  margin: 1.2rem auto 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  line-height: 1.65;
}

.cta-band .marketing__cta {
  margin-top: 2rem;
  background: #fff;
  color: #111;
}

.cta-band .marketing__cta:hover {
  background: #f3f3f3;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.62);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 5rem) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -12rem;
  left: 5%;
  width: 28rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(255, 239, 19, 0.08);
  filter: blur(5rem);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  width: min(72rem, 100%);
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(16rem, 1.65fr) repeat(3, minmax(8rem, 0.65fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.site-footer .logo__text {
  color: #fff;
}

.site-footer__brand > p {
  max-width: 25rem;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.7;
}

.site-footer__email {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.55rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 239, 19, 0.6);
  padding-bottom: 0.3rem;
}

.site-footer__email span {
  color: var(--yellow);
  transition: transform 0.25s ease;
}

.site-footer__email:hover span {
  transform: translate(0.15rem, -0.15rem);
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.site-footer__column h3 {
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer__column a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer__column a:hover {
  color: var(--yellow);
  transform: translateX(0.2rem);
}

.site-footer__wordmark {
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  color: #fff;
  font-size: clamp(3.4rem, 10.5vw, 8.8rem);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.075em;
  white-space: nowrap;
  opacity: 0.96;
  user-select: none;
}

.site-footer__wordmark span {
  color: var(--yellow);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer__bottom p,
.site-footer__bottom a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__bottom > div {
  display: flex;
  gap: 1.25rem;
}

.site-footer__bottom a {
  transition: color 0.25s ease;
}

.site-footer__bottom a:hover {
  color: #fff;
}

.site-footer__back {
  justify-self: end;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
    row-gap: 0.85rem;
  }

  .nav__pill {
    grid-column: 1 / -1;
    justify-self: center;
    order: 3;
    overflow-x: auto;
    max-width: 100%;
  }

  .nav__cta {
    grid-column: 2;
    grid-row: 1;
  }

  .sticky-nav__shell {
    grid-template-columns: 1fr auto;
    row-gap: 0.55rem;
    padding: 0.75rem 0.85rem 0.8rem 1rem;
    border-radius: 12px;
  }

  .sticky-nav__menu {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.15rem;
  }

  .sticky-nav__menu::-webkit-scrollbar {
    display: none;
  }

  .sticky-nav .nav__link {
    padding: 0.25rem 0;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .sticky-nav__cta {
    grid-column: 2;
    grid-row: 1;
    padding: 0.58rem 1rem;
    font-size: 0.78rem;
    border-radius: 8px;
  }

  .card {
    --rot: calc(var(--i) * -3.5deg);
    --lift: calc(16px + (4 - (var(--i) * var(--i))) * 18px);
  }

  .marketing__inner {
    grid-template-columns: 1fr;
  }

  .marketing__copy {
    max-width: 38rem;
  }

  .marketing h2,
  .marketing__description {
    max-width: 36rem;
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__top {
    grid-template-columns: minmax(16rem, 1.3fr) repeat(2, minmax(8rem, 0.7fr));
  }

  .site-footer__column:last-child {
    grid-column: 2 / -1;
  }
}

@media (min-width: 721px) {
  body {
    overflow-x: hidden;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 1rem 1rem 0.6rem;
    column-gap: 0.75rem;
  }

  .logo__s {
    width: 1.2rem;
    height: 1.45rem;
  }

  .logo__x {
    width: 0.82rem;
    height: 0.92rem;
  }

  .logo__text {
    font-size: 0.95rem;
  }

  .nav__pill {
    width: 100%;
    justify-self: stretch;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .nav__pill::-webkit-scrollbar {
    display: none;
  }

  .nav__link {
    padding: 0.5rem 0.75rem;
    font-size: 0.74rem;
  }

  .nav__cta {
    padding: 0.58rem 0.85rem;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .sticky-nav {
    padding: 0.75rem 0.85rem 0;
  }

  .sticky-nav__shell {
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
    line-height: 0.99;
  }

  .hero__blobs {
    display: none;
  }

  .arc__track {
    position: static;
    width: auto;
    transform: none;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    padding: 1rem 1.25rem 2rem;
    gap: 0.9rem;
    -webkit-overflow-scrolling: touch;
  }

  .card {
    --lift: 0px;
    --rot: 0deg;
    flex: 0 0 178px;
    scroll-snap-align: center;
  }

  .card__body h3 {
    font-size: 0.94rem;
  }

  .card__body p {
    font-size: 0.78rem;
  }

  .subscription-offer {
    padding: 4.25rem 0;
  }

  .subscription-offer__inner {
    width: calc(100% - 2rem);
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .subscription-offer h2 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .subscription-offer__lead {
    line-height: 1.65;
  }

  .subscription-plan {
    padding: 1.4rem;
    border-radius: 1.5rem;
  }

  .subscription-plan::before {
    border-radius: 1.1rem;
  }

  .subscription-plan__head {
    align-items: center;
  }

  .subscription-plan__price strong {
    font-size: clamp(4rem, 22vw, 5.3rem);
  }

  .arc__line {
    display: none;
  }

  .marketing {
    padding: 4rem 1.25rem 4.5rem;
  }

  .marketing__inner {
    gap: 2.5rem;
  }

  .marketing h2 {
    font-size: clamp(2.2rem, 9.5vw, 3.1rem);
  }

  .marketing__video {
    max-width: 22rem;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about__stats > div,
  .about__stats > div:first-child {
    padding: 0;
  }

  .about__stats > div + div {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 0;
  }

  .site-footer {
    padding-top: 3.5rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__column:last-child {
    grid-column: auto;
  }

  .site-footer__wordmark {
    margin-top: 4rem;
    font-size: clamp(2.8rem, 13.8vw, 5rem);
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .site-footer__bottom > div {
    flex-wrap: wrap;
  }

  .site-footer__back {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Sticky navigation polish */
.sticky-nav {
  --sticky-nav-pad: 0.9rem;
  padding: var(--sticky-nav-pad) clamp(1rem, 3vw, 2rem) 0;
  transform: translateY(calc(-100% - 1.5rem)) scale(0.98);
  transition:
    opacity 0.4s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-nav.is-visible {
  transform: translateY(0) scale(1);
}

.sticky-nav.is-compact .sticky-nav__shell {
  padding: 0.58rem 0.7rem 0.58rem 0.95rem;
  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sticky-nav__shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: 1rem 1.35rem;
  padding: 0.7rem 0.78rem 0.7rem 1rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 82% -80%, rgba(255, 239, 19, 0.22), transparent 34%),
    linear-gradient(120deg, rgba(17, 18, 16, 0.94), rgba(30, 31, 28, 0.9));
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.3),
    0 5px 16px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.sticky-nav__shell::before {
  content: "";
  position: absolute;
  inset: 0 12% auto;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0.8;
}

.sticky-nav .logo {
  padding: 0.42rem 0.65rem 0.42rem 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.sticky-nav__menu {
  justify-content: center;
  justify-self: center;
  gap: 0.15rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.sticky-nav .nav__link {
  border-radius: 999px;
  padding: 0.55rem 0.82rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.sticky-nav .nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
  transform: translateY(-1px);
}

.sticky-nav .nav__link.is-active {
  color: #111;
  background: var(--yellow);
  font-weight: 750;
  box-shadow:
    0 5px 15px rgba(255, 239, 19, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.sticky-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  padding: 0.42rem 0.48rem 0.42rem 1rem;
  font-size: 0.8rem;
}

.sticky-nav__cta::after {
  content: "↗";
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: #111;
  color: var(--yellow);
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.sticky-nav__cta:hover::after {
  transform: rotate(45deg);
}

@media (max-width: 980px) {
  .sticky-nav__shell {
    padding: 0.72rem 0.78rem 0.75rem 0.9rem;
    border-radius: 1.1rem;
  }

  .sticky-nav__menu {
    justify-content: flex-start;
    justify-self: stretch;
    gap: 0.1rem;
    padding: 0.25rem;
    border-radius: 0.85rem;
  }

  .sticky-nav .nav__link {
    padding: 0.48rem 0.72rem;
  }

  .sticky-nav__cta {
    padding: 0.38rem 0.42rem 0.38rem 0.85rem;
    border-radius: 999px;
  }
}

@media (max-width: 720px) {
  .sticky-nav {
    padding: 0.6rem 0.65rem 0;
  }

  .sticky-nav__shell {
    padding: 0.62rem 0.65rem 0.65rem;
    border-radius: 1rem;
  }

  .sticky-nav .logo {
    padding: 0.35rem 0.45rem 0.35rem 0.35rem;
  }

  .sticky-nav__cta::after {
    width: 1.65rem;
    height: 1.65rem;
  }
}
