body {
  margin: 0;
  background: #020617;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

input,
textarea,
select,
button {
  font-size: 16px;
}

.hero-media {
  position: relative;
  min-height: clamp(24rem, 62vw, 38rem);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 2rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  background: rgba(15, 23, 42, 0.72);
  box-shadow:
    0 24px 70px rgba(2, 6, 23, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-media--trigger {
  width: 100%;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-media--trigger:hover,
.hero-media--trigger:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 30px 80px rgba(2, 6, 23, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-media__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.hero-media__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.12) 0%, rgba(2, 6, 23, 0.3) 42%, rgba(2, 6, 23, 0.82) 100%),
    linear-gradient(135deg, rgba(14, 165, 233, 0.08), transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

.hero-copy > p {
  max-width: 42rem;
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
  line-height: 1.6;
  text-align: left;
}

.hero-title-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
}

.hero-title-row h1 {
  margin: 0;
  min-width: 0;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-title-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(5rem, 12vw, 7rem);
  height: clamp(5rem, 12vw, 7rem);
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.28);
  color: #f8fafc;
  backdrop-filter: blur(14px);
  box-shadow:
    0 12px 30px rgba(2, 6, 23, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  justify-self: end;
}

.hero-title-action svg {
  width: 90%;
  height: 90%;
}

.video-lightbox-open {
  overflow: hidden;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.video-lightbox.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(8px);
}

.video-lightbox__dialog {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(92vw, 68rem);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.5rem;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 24px 90px rgba(2, 6, 23, 0.45);
  opacity: 0;
  transition:
    opacity 0.24s ease,
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transform: translate(-50%, calc(-50% + 14px));
}

.video-lightbox.is-open .video-lightbox__dialog {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.video-lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.9);
}

.video-lightbox__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
}

.video-lightbox__close {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: #f8fafc;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.video-lightbox__frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-lightbox__video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 1rem;
  box-sizing: border-box;
  overflow-x: clip;
}

.site-header__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  max-width: 100%;
  padding: 0.95rem 1rem;
  min-height: 0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.76)),
    rgba(15, 23, 42, 0.82);
  box-shadow:
    0 14px 40px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  transition: min-height 0.32s cubic-bezier(0.33, 1, 0.68, 1);
  box-sizing: border-box;
}

.site-header__top {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  padding-top: 0.1rem;
  padding-bottom: 0;
  transition: padding-bottom 0.32s cubic-bezier(0.33, 1, 0.68, 1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  color: #f8fafc;
  text-decoration: none;
}

.site-header__brand-wordmark {
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: lowercase;
}

.site-header__brand-base {
  font-weight: 600;
}

.site-header__brand-accent {
  font-weight: 800;
}

.site-header__nav {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  margin-top: 0;
  height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(148, 163, 184, 0);
  box-sizing: border-box;
  transition:
    height 0.32s cubic-bezier(0.33, 1, 0.68, 1),
    margin-top 0.32s cubic-bezier(0.33, 1, 0.68, 1),
    border-color 0.32s cubic-bezier(0.33, 1, 0.68, 1);
}

.site-header__content-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 30px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0) 100%);
  pointer-events: none;
}

.site-header__content-fade--bottom {
  top: auto;
  bottom: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0) 100%);
}

.site-header__menu-scroll {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.5rem;
  min-height: 0;
  min-width: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 0.2rem;
  touch-action: pan-y;
  scrollbar-width: none;
  max-width: 100%;
  box-sizing: border-box;
}

.site-header__menu-scroll::-webkit-scrollbar {
  display: none;
}

.site-header__menu-section {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  min-width: 0;
  max-width: 100%;
}

.site-header__menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.site-header__menu-head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  max-width: 100%;
}

.site-header__menu-title {
  margin: 0;
  color: #f8fafc;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header__menu-caption {
  margin: 0;
  color: #94a3b8;
  font-size: 0.92rem;
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-header__menu-rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.1rem 0 0.35rem;
  scroll-snap-type: x proximity;
  scroll-padding-left: 0;
  scrollbar-width: none;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.site-header__menu-rail::-webkit-scrollbar {
  display: none;
}

.site-header__menu-card-status {
  margin: 0;
  color: #94a3b8;
}

.site-header__menu-card {
  flex: 0 0 min(18rem, 78vw);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 12rem;
  padding: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(14, 165, 233, 0.06), transparent 36%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.92));
  color: #f8fafc;
  text-decoration: none;
  scroll-snap-align: start;
  box-sizing: border-box;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.site-header__menu-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background-color: rgba(30, 41, 59, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-header__menu-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header__menu-card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
  min-width: 0;
  padding: 0 0.2rem 0.15rem;
}

.site-header__menu-card:hover,
.site-header__menu-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.32);
}

.site-header__menu-card-tag {
  color: #7dd3fc;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header__menu-card-title {
  display: -webkit-box;
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.site-header__menu-card-copy {
  display: -webkit-box;
  overflow: hidden;
  color: #94a3b8;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.site-header__menu-card--skeleton {
  pointer-events: none;
}

.site-header__menu-card-media--skeleton,
.site-header__menu-card-line {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(148, 163, 184, 0.08), rgba(148, 163, 184, 0.18), rgba(148, 163, 184, 0.08));
}

.site-header__menu-card-media--skeleton::after,
.site-header__menu-card-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: site-header-skeleton-shimmer 1.5s ease-in-out infinite;
}

.site-header__menu-card-line {
  display: block;
  border-radius: 999px;
}

.site-header__menu-card-line--tag {
  width: 4.75rem;
  height: 0.72rem;
}

.site-header__menu-card-line--title {
  width: 86%;
  height: 1.12rem;
}

.site-header__menu-card-line--copy {
  width: 100%;
  height: 0.82rem;
}

.site-header__menu-card-line--copy-short {
  width: 74%;
}

@keyframes site-header-skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.site-header__menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.site-header__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(148, 163, 184, 0.05), rgba(15, 23, 42, 0.26)),
    rgba(15, 23, 42, 0.3);
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  text-align: left;
}

.site-header__link:hover,
.site-header__link:focus-visible {
  background:
    linear-gradient(180deg, rgba(125, 211, 252, 0.08), rgba(15, 23, 42, 0.36)),
    rgba(15, 23, 42, 0.34);
  border-color: rgba(125, 211, 252, 0.32);
  color: #f8fafc;
  transform: translateY(-1px);
}

.site-header__link-label {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-header__link svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  opacity: 0.84;
}

@media (min-width: 900px) {
  .site-header__menu-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-header__menu-grid .site-header__menu-section {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
  }

  .site-header__menu-grid .site-header__menu-head {
    padding-top: 0;
  }

  .site-header__menu-grid .site-header__menu-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 0.85rem;
    width: 100%;
  }

  .site-header__menu-grid .site-header__link {
    width: 100%;
    min-width: 0;
    flex: none;
  }
}

.site-header__brand:focus-visible,
.site-header__link:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.85);
  outline-offset: 3px;
}

.site-header__menu-toggle {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  flex-direction: column;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f8fafc;
  cursor: pointer;
}

.site-header__icon-button {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f8fafc;
  cursor: pointer;
}

.site-header__icon-button svg {
  width: 1.7rem;
  height: 1.7rem;
}

.site-header__menu-line {
  width: 1.4rem;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-header.is-menu-open .site-header__nav {
  margin-top: 0;
  border-top-color: rgba(148, 163, 184, 0.16);
}

.site-header.is-menu-open .site-header__inner {
  min-height: calc(100dvh - 2rem);
}

.site-header.is-menu-open .site-header__top {
  padding-bottom: 0.85rem;
}

.site-header.is-menu-open .site-header__menu-scroll {
  padding-top: calc(30px + 0.85rem);
  padding-bottom: calc(30px + 0.85rem);
}

.site-menu-open {
  overflow: hidden;
  touch-action: none;
}

.site-header.is-menu-open .site-header__menu-line:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.is-menu-open .site-header__menu-line:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.contact-sheet-open {
  overflow: hidden;
  touch-action: none;
}

.contact-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.contact-sheet__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, 0);
  transition: background-color 0.3s ease;
}

.contact-sheet__panel {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  height: min(84vh, 44rem);
  padding: 1.25rem 1.25rem 1.5rem;
  overflow: hidden;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9)),
    rgba(15, 23, 42, 0.96);
  box-shadow: 0 -18px 50px rgba(2, 6, 23, 0.42);
  transform: translateY(100%);
  transition: transform 0.36s cubic-bezier(0.33, 1, 0.68, 1);
  pointer-events: auto;
}

.contact-sheet.is-open {
  pointer-events: auto;
}

.contact-sheet.is-open .contact-sheet__backdrop {
  background: rgba(2, 6, 23, 0.58);
}

.contact-sheet.is-open .contact-sheet__panel {
  transform: translateY(0);
}

.contact-sheet__header {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
}

.contact-sheet__header-title {
  margin: 0;
  text-align: center;
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-sheet__close {
  justify-self: start;
}

.contact-sheet__header-submit {
  justify-self: end;
}

.contact-sheet__close {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: #f8fafc;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.contact-sheet__header-submit {
  height: 2.5rem;
  padding: 0 1.15rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
  color: #052e16;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.contact-sheet__content {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
}

.contact-sheet__content-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0.2rem;
  z-index: 3;
  height: 30px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0) 100%);
  pointer-events: none;
}

.contact-sheet__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-top: 30px;
  padding-right: 0.2rem;
  touch-action: pan-y;
  scrollbar-width: none;
}

.contact-sheet__body::-webkit-scrollbar {
  display: none;
}

.contact-sheet__title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.contact-sheet__caption {
  margin: 0.65rem 0 1.5rem;
  max-width: 32rem;
  color: #94a3b8;
  line-height: 1.6;
}

.contact-sheet__faq {
  margin-bottom: 1.25rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.38);
}

.contact-sheet__faq-title {
  margin: 0 0 0.7rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.contact-sheet__faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-sheet__faq-item {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.contact-sheet__faq-item:first-child {
  border-top: 0;
}

.contact-sheet__faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.contact-sheet__faq-question {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: #f8fafc;
}

.contact-sheet__faq-icon {
  flex-shrink: 0;
  color: #94a3b8;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-sheet__faq-item.is-open .contact-sheet__faq-icon {
  transform: rotate(45deg);
  color: #f8fafc;
}

.contact-sheet__faq-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.28s cubic-bezier(0.33, 1, 0.68, 1);
}

.contact-sheet__faq-answer {
  margin: 0;
  padding: 0 0 0.6rem;
  color: #94a3b8;
  font-size: 0.94rem;
  line-height: 1.5;
}

.contact-sheet__form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.contact-sheet__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.contact-sheet__field span {
  font-weight: 500;
}

.contact-sheet__field input,
.contact-sheet__field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
  font: inherit;
  font-size: 16px;
  resize: vertical;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.contact-sheet__field input::placeholder,
.contact-sheet__field textarea::placeholder {
  color: #64748b;
}

.contact-sheet__field input:focus,
.contact-sheet__field textarea:focus {
  outline: none;
  border-color: rgba(125, 211, 252, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(125, 211, 252, 0.45),
    0 0 0 3px rgba(125, 211, 252, 0.16);
  background: rgba(15, 23, 42, 0.88);
}

.contact-sheet__header-submit:focus-visible,
.contact-sheet__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.22);
}

.contact-sheet__status {
  min-height: 1.4rem;
  margin: 0.9rem 0 0;
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-sheet__status[data-tone="success"] {
  color: #86efac;
}

.contact-sheet__status[data-tone="error"] {
  color: #fca5a5;
}

@media (min-width: 768px) {
  .contact-sheet {
    display: flex;
    justify-content: flex-end;
  }

  .contact-sheet__panel {
    inset: 0 0 0 auto;
    width: min(100%, 34rem);
    height: 100%;
    padding: 1.6rem 1.6rem 1.8rem;
    border-top-left-radius: 1.75rem;
    border-top-right-radius: 0;
    border-bottom-left-radius: 1.75rem;
    box-shadow: -18px 0 50px rgba(2, 6, 23, 0.4);
    transform: translateX(100%);
  }

  .contact-sheet.is-open .contact-sheet__panel {
    transform: translateX(0);
  }
}

@media (max-width: 720px) {
  .hero-media {
    min-height: 28rem;
    align-items: flex-end;
    border-radius: 1.5rem;
  }

  .hero-title-action {
    width: 4.25rem;
    height: 4.25rem;
  }

  .site-header {
    padding: 0.8rem;
  }

  .site-header__inner {
    border-radius: 1.25rem;
  }
}

/*
 * SplitText uses y-from-below; overflow on the h1 itself clips glyphs (descenders, tight line boxes).
 * Padding = space for translateY(100px) + type; negative margin keeps the subtitle from jumping down.
 */
.hero-title-mask {
  overflow: hidden;
  width: 100%;
  padding-top: 0.2em;
  padding-bottom: calc(6.75rem + 0.35em);
  margin-top: 0;
  margin-bottom: calc(-5.75rem + 0.15em);
}

@media (min-width: 640px) {
  .hero-title-mask {
    padding-bottom: calc(7.25rem + 0.4em);
    margin-bottom: calc(-6.25rem + 0.15em);
  }
}

h1 {
  font-weight: 600;
}

h2 {
  font-weight: 600;
}

h3 {
  font-weight: 600;
}

h4,
h5,
h6 {
  font-weight: 500;
}

/* Horizontal gallery */
#portfolio {
  position: relative;
  overflow: hidden;
  text-align: center;
}

#portfolio .container-fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

#portfolio .horiz-gallery-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  /* Stable mobile height (URL bar) so pin + layout don’t jump */
  min-height: 100svh;
  min-height: 100dvh;
  position: relative;
}

#portfolio {
  overflow-x: clip;
}

#portfolio .horiz-gallery-heading {
  width: 100%;
  box-sizing: border-box;
  padding: clamp(1rem, 4vw, 1.75rem) clamp(1rem, 4vw, 1.5rem) 0.75rem;
  text-align: left;
}

#portfolio .horiz-gallery-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

#portfolio .horiz-gallery-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  will-change: transform;
  position: relative;
}

@media (max-width: 767px) {
  #portfolio .horiz-gallery-wrapper {
    min-height: auto;
    justify-content: flex-start;
  }

  #portfolio .horiz-gallery-strip {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pinch-zoom;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 0 0 0.5rem clamp(1.1rem, 4vw, 1.5rem);
    box-sizing: border-box;
  }

  #portfolio .horiz-gallery-strip::after {
    content: "";
    flex: 0 0 clamp(1.1rem, 4vw, 1.5rem);
  }

  #portfolio .horiz-gallery-strip::-webkit-scrollbar {
    display: none;
  }

  #portfolio .project-wrap {
    scroll-snap-align: start;
    width: min(80vw, 21rem);
    padding: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  #portfolio .project-wrap {
    width: min(70vw, 22.5rem);
    padding: clamp(0.95rem, 2.7vw, 1.3rem);
  }
}

#portfolio .horiz-gallery-footer {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding: 0.25rem clamp(1rem, 4vw, 1.5rem) clamp(1rem, 4vw, 1.75rem);
}

#portfolio .horiz-gallery-cta {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* Card: large on phone, scale up to desktop */
#portfolio .project-wrap,
.for-index-grid__cards .project-wrap {
  flex: 0 0 auto;
  box-sizing: border-box;
  display: block;
  /* ~one main card + sliver of next = clear horizontal story */
  width: min(86vw, 22rem);
  padding: clamp(0.75rem, 3vw, 1.25rem);
  color: inherit;
  text-decoration: none;
}

@media (min-width: 480px) {
  #portfolio .project-wrap,
  .for-index-grid__cards .project-wrap {
    width: min(72vw, 24rem);
    padding: clamp(1rem, 2.5vw, 1.5rem);
  }
}

@media (min-width: 768px) {
  #portfolio .project-wrap,
  .for-index-grid__cards .project-wrap {
    width: min(48vw, 20rem);
    padding: 1.5rem;
  }
}

/* Large: ~3.5 items visible (mobile / tablet rules above stay as-is) */
@media (min-width: 1024px) {
  #portfolio .project-wrap,
  .for-index-grid__cards .project-wrap {
    width: calc(100vw / 3.5);
    padding: clamp(1rem, 1.25vw, 1.75rem);
  }
}

#portfolio .project-wrap-media,
.for-index-grid__cards .project-wrap-media {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

#portfolio .project-wrap:hover .project-wrap-media,
.for-index-grid__cards .project-wrap:hover .project-wrap-media {
  transform: scale(1.04);
}

#portfolio .project-wrap-media img,
.for-index-grid__cards .project-wrap-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

#portfolio .project-wrap-overlay,
.for-index-grid__cards .project-wrap-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(0.85rem, 3.2vw, 1.35rem) clamp(0.75rem, 2.5vw, 1.15rem);
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.94) 0%,
    rgba(15, 23, 42, 0.5) 38%,
    transparent 68%
  );
  pointer-events: none;
}

#portfolio .project-wrap-meta,
.for-index-grid__cards .project-wrap-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(0.5rem, 2.5vw, 0.85rem);
  width: 100%;
}

#portfolio .project-wrap-text,
.for-index-grid__cards .project-wrap-text {
  flex: 1;
  min-width: 0;
}

#portfolio .project-wrap-title,
.for-index-grid__cards .project-wrap-title {
  margin: 0;
  /* Larger floor for phones; caps on big viewports */
  font-size: clamp(1.2rem, 3.8vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #f8fafc;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

#portfolio .project-wrap-copy,
.for-index-grid__cards .project-wrap-copy {
  margin: 0.38rem 0 0;
  max-width: 26ch;
  color: rgba(226, 232, 240, 0.82);
  font-size: clamp(0.82rem, 2.2vw, 0.92rem);
  line-height: 1.4;
  text-align: left;
}

#portfolio .project-wrap-arrow-wrap,
.for-index-grid__cards .project-wrap-arrow-wrap {
  flex: 0 0 auto;
  align-self: end;
}

#portfolio .project-wrap-arrow,
.for-index-grid__cards .project-wrap-arrow {
  flex-shrink: 0;
  width: clamp(1.6rem, 6.5vw, 1.875rem);
  height: auto;
  color: #f8fafc;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) and (pointer: fine) {
  #portfolio .project-wrap-arrow,
  .for-index-grid__cards .project-wrap-arrow {
    opacity: 0;
    transform: translateX(-8px);
  }

  #portfolio .project-wrap:hover .project-wrap-arrow,
  .for-index-grid__cards .project-wrap:hover .project-wrap-arrow {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media {
    opacity: 1;
    transform: none;
  }

  .contact-sheet__backdrop,
  .contact-sheet__panel,
  #portfolio .project-wrap-media,
  .for-index-grid__cards .project-wrap-media {
    transition: none;
  }

  #portfolio .project-wrap:hover .project-wrap-media,
  .for-index-grid__cards .project-wrap:hover .project-wrap-media {
    transform: none;
  }

  #portfolio .project-wrap-arrow,
  .for-index-grid__cards .project-wrap-arrow {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.insight-section {
  padding: clamp(5rem, 10vw, 7.5rem) 1.5rem clamp(6rem, 10vw, 8rem);
}

.insight-section__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.insight-section__intro {
  position: sticky;
  top: 5.5rem;
  z-index: 5;
  align-self: start;
  padding: 1.5rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.82) 72%, rgba(2, 6, 23, 0));
}

.insight-section__intro-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.insight-section__title {
  margin: 0;
  max-width: 18rem;
  font-size: clamp(1.55rem, 4.3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: #f8fafc;
  text-wrap: balance;
}

.insight-section__intro-icon {
  flex-shrink: 0;
}

.insight-section__intro-icon--mobile {
  width: 1.75rem;
  height: 1.75rem;
}

.insight-section__intro-icon--desktop {
  display: none;
}

.insight-section__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.insight-section__item {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem 0 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.insight-section__item:last-child {
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.insight-section__item-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 6;
  margin-bottom: 1.2rem;
  border-radius: 1rem;
  object-fit: cover;
}

.insight-section__metrics {
  width: 100%;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.insight-section__metrics.is-stacked {
  position: relative;
  width: min(100%, 40rem);
  min-height: 28rem;
  display: block;
  margin-inline: auto;
  overflow-x: clip;
}

.insight-section__metric-badge {
  width: min(100%, 34rem);
  padding: 0.72rem 0.9rem 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 0.7rem;
  background: rgba(2, 6, 23, 0.42);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "meta label"
    "meta value";
  column-gap: 0.85rem;
  align-items: start;
}

.insight-section__metrics.is-stacked .insight-section__metric-badge {
  position: absolute;
  width: min(calc(100% - var(--stack-shift, 0px)), 34rem);
  left: calc(50% + var(--stack-shift, 0px));
  bottom: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(-50%);
  will-change: transform, opacity;
}

.insight-section__metric-badge--offset {
  margin-left: clamp(2.25rem, 8vw, 6rem);
  --stack-shift: clamp(2.25rem, 8vw, 6rem);
}

.insight-section__metric-badge--danger {
  border-color: rgba(248, 113, 113, 0.24);
  background: rgba(69, 10, 10, 0.28);
}

.insight-section__metric-badge--danger .insight-section__metric-label {
  color: #fda4af;
}

.insight-section__metric-badge--danger .insight-section__metric-value {
  color: #fecaca;
}

.insight-section__metric-meta {
  grid-area: meta;
  display: inline-flex;
  align-items: center;
  min-width: 4.8rem;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.insight-section__metric-label {
  grid-area: label;
  display: block;
  color: #93c5fd;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: none;
}

.insight-section__metric-value {
  grid-area: value;
  display: block;
  margin-top: 0.22rem;
  color: #cbd5e1;
  font-size: clamp(0.94rem, 1.8vw, 1.04rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.32;
}

.insight-section__traffic {
  width: 100%;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
  position: relative;
  isolation: isolate;
}

.insight-section__traffic::before,
.insight-section__funnel::before,
.insight-section__scale::before,
.insight-section__metrics::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, 24rem);
  height: min(100%, 24rem);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.16) 0%, rgba(56, 189, 248, 0.08) 34%, rgba(2, 6, 23, 0) 72%);
  filter: blur(36px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.insight-section__traffic-triangle {
  width: min(100%, 40rem);
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 15rem);
  grid-template-areas:
    ". top"
    "left top"
    "left bottom"
    ". bottom";
  justify-content: center;
  align-items: center;
  column-gap: clamp(1.25rem, 3vw, 2rem);
  row-gap: 0.9rem;
  position: relative;
  z-index: 1;
}

.insight-section__traffic-metric {
  width: 100%;
  grid-template-columns: 1fr;
  grid-template-areas:
    "label"
    "value";
  column-gap: 0;
  align-content: start;
  padding: 0.8rem 0.9rem 0.85rem;
}

.insight-section__traffic-metric--left {
  grid-area: left;
  align-self: center;
}

.insight-section__traffic-metric--top-right {
  grid-area: top;
}

.insight-section__traffic-metric--bottom-right {
  grid-area: bottom;
}

.insight-section__traffic-copy {
  margin: 0.38rem 0 0;
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.45;
}

.insight-section__traffic-meta,
.insight-section__traffic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.insight-section__traffic-tag {
  padding: 0.4rem 0.58rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
}

.insight-section__funnel {
  width: min(100%, 40rem);
  margin: 0 auto 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  isolation: isolate;
}

.insight-section__funnel-stage {
  width: min(100%, 30rem);
  padding: 0.95rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 0.9rem;
  background:
    linear-gradient(180deg, rgba(125, 211, 252, 0.05), rgba(2, 6, 23, 0.24)),
    rgba(2, 6, 23, 0.42);
  text-align: center;
}

.insight-section__funnel-stage--mid {
  width: min(100%, 23rem);
}

.insight-section__funnel-stage--narrow {
  width: min(100%, 16rem);
}

.insight-section__funnel-label {
  display: block;
  color: #93c5fd;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.insight-section__funnel-value {
  display: block;
  margin-top: 0.32rem;
  color: #f8fafc;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.insight-section__funnel-arrow {
  width: 1px;
  height: 1.2rem;
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.5), rgba(125, 211, 252, 0));
  position: relative;
}

.insight-section__funnel-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.05rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1px solid rgba(125, 211, 252, 0.5);
  border-bottom: 1px solid rgba(125, 211, 252, 0.5);
  transform: translateX(-50%) rotate(45deg);
}

.insight-section__scale {
  width: min(100%, 40rem);
  margin: 0 auto 1.2rem;
  display: flex;
  justify-content: center;
  position: relative;
  isolation: isolate;
}

.insight-section__scale-bars {
  width: min(100%, 34rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  z-index: 1;
}

.insight-section__scale-row {
  display: grid;
  grid-template-columns: minmax(0, 8rem) minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
}

.insight-section__scale-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.insight-section__scale-number {
  color: #f8fafc;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.insight-section__scale-row--positive .insight-section__metric-label,
.insight-section__scale-row--positive .insight-section__scale-number {
  color: #86efac;
}

.insight-section__scale-bar {
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  overflow: hidden;
}

.insight-section__scale-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7dd3fc, #38bdf8);
  transform-origin: left center;
}

.insight-section__scale-fill--budget {
  width: 68%;
}

.insight-section__scale-fill--leads {
  width: 84%;
}

.insight-section__scale-fill--efficiency {
  width: 58%;
  background: linear-gradient(90deg, #86efac, #4ade80);
}

@media (max-width: 640px) {
  .insight-section__metrics.is-stacked {
    min-height: 24rem;
  }

  .insight-section__metrics.is-stacked .insight-section__metric-badge {
    width: min(calc(100% - var(--stack-shift, 0px)), 27rem);
  }

  .insight-section__traffic-triangle {
    width: min(100%, 22rem);
    grid-template-columns: minmax(0, 9.4rem) minmax(0, 9.4rem);
    column-gap: 0.7rem;
    row-gap: 0.7rem;
  }

  .insight-section__traffic-metric {
    padding: 0.72rem 0.8rem 0.76rem;
  }

  .insight-section__traffic-copy {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .insight-section__traffic-tag {
    font-size: 0.72rem;
    padding: 0.36rem 0.5rem;
  }

  .insight-section__funnel-stage {
    width: min(100%, 22rem);
    padding: 0.84rem 0.86rem;
  }

  .insight-section__funnel-stage--mid {
    width: min(100%, 17rem);
  }

  .insight-section__funnel-stage--narrow {
    width: min(100%, 12rem);
  }

  .insight-section__scale-bars {
    width: min(100%, 22rem);
  }

  .insight-section__scale-row {
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }
}

.insight-section__item-title {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #f8fafc;
  text-wrap: balance;
}

.insight-section__item-copy {
  margin: 0.9rem 0 0;
  max-width: 40rem;
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.78;
}

.insight-section__item-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.05rem;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.insight-section__item-cta:hover,
.insight-section__item-cta:focus-visible {
  color: #7dd3fc;
}

.insight-section__item-cta-arrow {
  display: inline-block;
  color: #7dd3fc;
  font-size: 0.98rem;
  transition: transform 180ms ease;
}

.insight-section__item-cta:hover .insight-section__item-cta-arrow,
.insight-section__item-cta:focus-visible .insight-section__item-cta-arrow {
  transform: translate3d(0.14rem, -0.08rem, 0);
}

@media (min-width: 900px) {
  .insight-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
    gap: clamp(2rem, 5vw, 5rem);
  }

  .insight-section__intro {
    position: sticky;
    top: 50vh;
    transform: translateY(-50%);
    padding: 0;
    background: transparent;
  }

  .insight-section__intro-head {
    display: block;
  }

  .insight-section__intro-icon--mobile {
    display: none;
  }

  .insight-section__intro-icon--desktop {
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    margin-top: 1.5rem;
  }

  .insight-section__title {
    max-width: 17rem;
  }

  .insight-section__item {
    min-height: 100svh;
    min-height: 100dvh;
  }
}

.question-section {
  padding: 0 1.5rem clamp(6rem, 10vw, 8rem);
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.question-section__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  isolation: isolate;
}

.question-section__main {
  position: relative;
  z-index: 1;
}

.question-section__main::before {
  content: "";
  position: absolute;
  left: 38%;
  top: 50%;
  width: min(100%, 26rem);
  height: min(100%, 26rem);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.16) 0%, rgba(56, 189, 248, 0.08) 34%, rgba(2, 6, 23, 0) 72%);
  filter: blur(40px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

.question-section__eyebrow {
  margin: 0 0 0.75rem;
  color: #7dd3fc;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.question-section__title {
  margin: 0;
  color: #f8fafc;
  max-width: 44rem;
  font-size: clamp(1.95rem, 5.2vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.question-section__copy {
  margin: 1.15rem 0 0;
  max-width: 40rem;
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.78;
}

.question-section__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1rem;
}

.question-section__links-label {
  flex-basis: 100%;
  grid-column: 1 / -1;
  margin: 0 0 0.1rem;
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.question-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #94a3b8;
  font-size: 0.94rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 180ms ease;
}

.question-section__link-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .question-section__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
    gap: 0.6rem 1rem;
  }

  .question-section__link {
    width: 100%;
  }
}

.question-section__link:hover,
.question-section__link:focus-visible {
  color: #e2e8f0;
}

.question-section__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(22rem, 60vw);
  margin-inline: auto;
  padding: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(148, 163, 184, 0.05), rgba(15, 23, 42, 0.28)),
    rgba(15, 23, 42, 0.3);
  text-align: center;
}

.question-section__profile-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.question-section__profile-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  object-fit: cover;
}

.question-section__profile-name {
  margin: 1rem 0 0;
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.question-section__profile-role {
  margin: 0.35rem 0 0;
  color: #94a3b8;
  line-height: 1.6;
}

.question-section__profile-cta {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: transparent;
  color: #f8fafc;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.question-section__profile-cta:hover,
.question-section__profile-cta:focus-visible {
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(125, 211, 252, 0.32);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .question-section__profile {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 0.78rem;
    padding: 0.72rem;
    border-radius: 1.05rem;
    text-align: left;
  }

  .question-section__profile-body {
    flex: 1;
    min-width: 0;
    align-items: flex-start;
  }

  .question-section__profile-image {
    width: 4.4rem;
    aspect-ratio: 1 / 1;
    border-radius: 0.82rem;
    flex: 0 0 auto;
  }

  .question-section__profile-name {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.1;
  }

  .question-section__profile-role {
    margin-top: 0.2rem;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .question-section__profile-cta {
    margin-top: 0.52rem;
    margin-left: 0;
    align-self: flex-start;
    padding: 0.58rem 0.78rem;
    font-size: 0.84rem;
    line-height: 1;
  }
}

@media (min-width: 900px) {
  .question-section__inner {
    grid-template-columns: minmax(0, 3fr) minmax(15rem, 1fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.testimonial-section {
  padding: 0 1.5rem 6rem;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.testimonial-section__inner {
  position: relative;
  isolation: isolate;
  width: min(100%, 72rem);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.testimonial-section__inner::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(44rem, 82vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(125, 211, 252, 0.14) 0%, rgba(14, 165, 233, 0.08) 40%, rgba(2, 6, 23, 0) 74%);
  filter: blur(38px);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.testimonial-section__header {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}

.testimonial-section__eyebrow {
  margin: 0;
  color: #7dd3fc;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.testimonial-section__title {
  margin: 0.6rem 0 0;
  color: #f8fafc;
  font-size: clamp(1.8rem, 4.8vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
  text-wrap: balance;
}

.testimonial-section__results,
.testimonial-section__accordion {
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.75rem;
  background:
    linear-gradient(180deg, rgba(148, 163, 184, 0.05), rgba(15, 23, 42, 0.28)),
    rgba(15, 23, 42, 0.34);
}

.testimonial-section__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.testimonial-section__metric {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1.15rem;
  background: rgba(2, 6, 23, 0.34);
}

.testimonial-section__metric--success {
  border-color: rgba(74, 222, 128, 0.2);
  background:
    linear-gradient(180deg, rgba(74, 222, 128, 0.08), rgba(2, 6, 23, 0.24)),
    rgba(2, 6, 23, 0.34);
}

.testimonial-section__metric-label {
  margin: 0;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.testimonial-section__metric-value {
  display: inline-block;
  margin-top: 0.45rem;
  color: #f8fafc;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.testimonial-section__metric--success .testimonial-section__metric-label,
.testimonial-section__metric--success .testimonial-section__metric-value {
  color: #86efac;
}

.testimonial-section__accordion {
  overflow: hidden;
}

.testimonial-section__accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
}

.testimonial-section__accordion-toggle::-webkit-details-marker {
  display: none;
}

.testimonial-section__accordion-copy {
  display: grid;
  gap: 0.2rem;
}

.testimonial-section__accordion-title {
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.testimonial-section__accordion-meta {
  color: #94a3b8;
  font-size: 0.94rem;
}

.testimonial-section__accordion-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  color: #94a3b8;
  transition: transform 180ms ease, color 180ms ease;
}

.testimonial-section__accordion-icon svg {
  width: 1rem;
  height: 1rem;
}

.testimonial-section__accordion[open] .testimonial-section__accordion-icon {
  color: #cbd5e1;
  transform: rotate(180deg);
}

.testimonial-section__accordion-body {
  margin-top: 1.2rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  opacity: 1;
  transition: opacity 220ms ease;
}

.testimonial-section__accordion:not([open]) .testimonial-section__accordion-body {
  opacity: 0;
}

.testimonial-section__cta {
  justify-self: center;
}

.testimonial-section__quote {
  margin: 0;
  color: #cbd5e1;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.85;
}

.testimonial-section__quote p {
  margin: 0;
}

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

.audit-cta-section {
  padding: 0 1.5rem clamp(6rem, 10vw, 8rem);
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.audit-cta-section__inner {
  position: relative;
  isolation: isolate;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.audit-cta-section__inner::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(42rem, 78vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(125, 211, 252, 0.14) 0%, rgba(14, 165, 233, 0.08) 38%, rgba(2, 6, 23, 0) 72%);
  filter: blur(36px);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.audit-cta-section__eyebrow {
  margin: 0;
  color: #7dd3fc;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-cta-section__title {
  margin: 0.85rem auto 0;
  max-width: min(100%, 26ch);
  color: #f8fafc;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.audit-cta-section__copy {
  margin: 1rem auto 0;
  max-width: 48rem;
  color: #94a3b8;
  line-height: 1.75;
}

.audit-cta-section__button {
  margin: 1.4rem auto 0;
}

@media (max-width: 767px) {
  #portfolio .horiz-gallery-wrapper,
  .insight-section__item,
  .question-section,
  .testimonial-section,
  .audit-cta-section {
    min-height: 100svh;
  }
}

@media (max-width: 640px) {
  .testimonial-section__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem 2rem;
}

.site-footer__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.1rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.site-footer__legal-link {
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus-visible {
  color: #cbd5e1;
}

.site-footer__banner {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: clamp(18rem, 38vw, 24rem);
  border-radius: 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  text-decoration: none;
  background: #0f172a;
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.site-footer__banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.site-footer__banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.84)),
    linear-gradient(135deg, rgba(14, 165, 233, 0.16), transparent 42%);
}

.site-footer__banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.site-footer__banner-eyebrow {
  margin: 0 0 0.75rem;
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__banner-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
}

.site-footer__banner-title {
  margin: 0;
  color: #f8fafc;
  max-width: 48rem;
  font-size: clamp(1.95rem, 5.4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.site-footer__banner-arrow {
  width: clamp(1.7rem, 5vw, 2.25rem);
  height: auto;
  color: #f8fafc;
  justify-self: end;
}

.site-footer__banner:hover .site-footer__banner-image,
.site-footer__banner:focus-visible .site-footer__banner-image {
  transform: scale(1.04);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0.5rem 0 0;
}

.site-footer__section {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  text-align: left;
}

.site-footer__title {
  margin: 0;
  color: #f8fafc;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-footer__link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #94a3b8;
  text-decoration: none;
  font: inherit;
  line-height: 1.6;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #f8fafc;
  transform: translateX(2px);
}

.site-footer__link--muted {
  color: #64748b;
  cursor: default;
  transform: none !important;
}

.cookie-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 55;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cookie-consent__inner {
  width: min(100%, 56rem);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(148, 163, 184, 0.05), rgba(15, 23, 42, 0.22)),
    rgba(2, 6, 23, 0.94);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.34);
  backdrop-filter: blur(18px);
}

.cookie-consent__title {
  margin: 0;
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cookie-consent__text {
  margin: 0.4rem 0 0;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.cookie-consent__link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
}

.cookie-consent__link:hover,
.cookie-consent__link:focus-visible {
  color: #f8fafc;
}

.cookie-consent__button {
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.85rem 1rem;
  cursor: pointer;
}

.cookie-consent__button--ghost {
  background: rgba(148, 163, 184, 0.12);
  color: #e2e8f0;
}

.cookie-consent__button--primary {
  background: #f8fafc;
  color: #020617;
}

@media (min-width: 900px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding: 0.5rem 0 0;
  }

  .cookie-consent {
    left: auto;
    width: min(36rem, calc(100vw - 2rem));
  }

  .cookie-consent__inner {
    width: 100%;
  }
}

.legal-page {
  padding: clamp(8rem, 14vw, 11rem) 1.5rem clamp(6rem, 10vw, 8rem);
}

.legal-page__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.legal-page__copy {
  max-width: 46rem;
  color: #94a3b8;
  font-size: 1.02rem;
  line-height: 1.9;
}

.legal-page__title {
  margin: 0 0 1.5rem;
  color: #f8fafc;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-wrap: balance;
}

.legal-page__copy h2 {
  margin: 3rem 0 0;
  color: #f8fafc;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-wrap: balance;
}

.legal-page__copy p {
  margin: 1rem 0 0;
}

.for-page {
  position: relative;
  padding-top: 0;
}

.for-page__visual {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: min(52vh, 34rem);
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
  z-index: 0;
}

.for-page__visual-image {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  bottom: -2.5rem;
  left: -2.5rem;
  width: auto;
  height: auto;
  min-width: calc(100% + 5rem);
  min-height: calc(100% + 5rem);
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1);
  filter: blur(0);
  transition:
    filter 1400ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1600ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.for-page__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 8, 12, 0.02) 0%, rgba(6, 8, 12, 0.52) 55%, #020617 100%);
}

.for-page__visual-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 8, 12, 0.08) 0%, rgba(6, 8, 12, 0.7) 42%, #020617 100%);
  opacity: 0;
  transition: opacity 2600ms cubic-bezier(0.19, 1, 0.22, 1);
}

.for-page.is-reading .for-page__visual-image {
  opacity: 0.46;
  transform: scale(1.08);
  filter: blur(22px);
}

.for-page.is-reading .for-page__visual-overlay::after {
  opacity: 1;
}

.for-page__article {
  position: relative;
  z-index: 1;
  padding: clamp(9rem, 16vw, 12rem) 1.5rem clamp(7rem, 12vw, 10rem);
}

.for-page__article-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.for-page__article-copy {
  order: 2;
}

.for-page__side-rail {
  display: contents;
}

.for-page__article-body {
  max-width: 46rem;
  color: #94a3b8;
  font-size: 1.02rem;
  line-height: 1.9;
}

.for-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  color: #64748b;
  font-size: 0.84rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.for-page__breadcrumb-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 180ms ease;
}

.for-page__breadcrumb-link:hover,
.for-page__breadcrumb-link:focus-visible {
  color: #f8fafc;
}

.for-page__breadcrumb-separator {
  color: rgba(148, 163, 184, 0.6);
}

.for-page__breadcrumb-current {
  color: #94a3b8;
}

.for-page__article-body h1 {
  margin: 0 0 1.5rem;
  max-width: none;
  color: #f8fafc;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-wrap: balance;
}

.for-page__article-body h2 {
  margin: 3rem 0 0;
  color: #f8fafc;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-wrap: balance;
}

.for-page__article-body h3 {
  margin: 2rem 0 0;
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.for-page__article-body p {
  margin: 1rem 0 0;
}

.for-page__article-body ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.for-page__article-body li {
  margin: 0.4rem 0;
}

.for-page__article-body strong {
  color: #e2e8f0;
}

.for-page__article-body code {
  padding: 0.12rem 0.38rem;
  border-radius: 0.45rem;
  background: rgba(148, 163, 184, 0.12);
  color: #f8fafc;
  font-size: 0.92em;
}

.for-page__video-rail {
  order: 1;
}

.for-page__video-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(148, 163, 184, 0.04), rgba(15, 23, 42, 0.22)),
    rgba(15, 23, 42, 0.28);
}

.for-page__video-frame {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 1.2rem;
  background: #020617;
}

.for-page__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.for-page__video-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  background: #000;
  color: rgba(248, 250, 252, 0.88);
  text-align: center;
}

.for-page__video-fallback-icon {
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  margin-bottom: 0;
  opacity: 0.5;
}

.for-page__video-fallback p {
  margin: 0;
  max-width: 16rem;
  line-height: 1.5;
}

.for-page__video-cta-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition:
    max-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.for-page__video-card.is-cta-visible .for-page__video-cta-wrap {
  max-height: 4.5rem;
  margin-top: 0.9rem;
  opacity: 1;
  transform: translateY(0);
}

.for-page__video-cta {
  width: 100%;
  border: 0;
  border-radius: 0.95rem;
  background: linear-gradient(180deg, #34d399, #22c55e);
  color: #052e16;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.95rem 1rem;
  cursor: pointer;
  display: block;
  pointer-events: none;
}

.for-page__video-card.is-cta-visible .for-page__video-cta {
  pointer-events: auto;
}

.for-page__video-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.28);
}

.for-page__faq-rail {
  order: 3;
}

.for-page__faq-card {
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(148, 163, 184, 0.04), rgba(15, 23, 42, 0.22)),
    rgba(15, 23, 42, 0.28);
}

.for-page__faq-label {
  margin: 0 0 0.45rem;
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.for-page__faq-title {
  margin: 0;
  color: #f8fafc;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.for-page__faq-list {
  margin-top: 1.15rem;
}

.for-page__faq-item {
  padding: 1rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.for-page__faq-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.for-page__faq-item-question {
  margin: 0;
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.for-page__faq-item-answer {
  margin: 0.5rem 0 0;
  color: #94a3b8;
  line-height: 1.75;
}

.for-page__faq-empty {
  margin: 0;
  color: #94a3b8;
  line-height: 1.7;
}

.for-page__faq-ask {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.for-page__faq-ask-title {
  margin: 0 0 0.9rem;
  color: #f8fafc;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.for-page__faq-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.for-page__faq-field span {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.for-page__faq-field input,
.for-page__faq-field textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.95rem;
  background: rgba(15, 23, 42, 0.6);
  color: #f8fafc;
  font: inherit;
  font-size: 16px;
  padding: 0.9rem 1rem;
  resize: vertical;
}

.for-page__faq-field input::placeholder,
.for-page__faq-field textarea::placeholder {
  color: #64748b;
}

.for-page__faq-field input:focus,
.for-page__faq-field textarea:focus {
  outline: none;
  border-color: rgba(125, 211, 252, 0.42);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.14);
}

.for-page__faq-submit {
  margin-top: 0.9rem;
  width: 100%;
  border: 0;
  border-radius: 0.95rem;
  background: #f8fafc;
  color: #020617;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.95rem 1rem;
  cursor: pointer;
}

.for-page__faq-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.for-page__faq-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 250, 252, 0.18);
}

.for-page__faq-status {
  min-height: 1.4rem;
  margin: 0.8rem 0 0;
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.5;
}

.for-page__faq-status[data-tone="success"] {
  color: #86efac;
}

.for-page__faq-status[data-tone="error"] {
  color: #fca5a5;
}

.for-page__more {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 10vw, 7rem) 1.5rem clamp(6rem, 10vw, 8rem);
}

.for-page__more-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.for-page__more-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  text-align: center;
}

.for-page__more-label {
  margin: 0;
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.for-page__more-title {
  margin: 0;
  max-width: min(70vw, 24ch);
  color: #f8fafc;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.for-page__more-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.for-page__more-card {
  width: 100%;
}

@media (max-width: 767px) {
  .for-page__more-rail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .for-page__more-card {
    flex: 0 0 auto;
    min-height: 0;
    width: min(70vw, 26rem);
  }

  .for-page__more-card .site-header__menu-card-media {
    aspect-ratio: 4 / 5;
    flex: 0 0 auto;
  }

  .for-page__more-card:nth-child(odd) {
    align-self: flex-start;
  }

  .for-page__more-card:nth-child(even) {
    align-self: flex-end;
  }
}

.consent-modal-open {
  overflow: hidden;
}

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 1.25rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.consent-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, 0.72);
  opacity: 0;
  transition: opacity 220ms ease;
}

.consent-modal__dialog {
  position: relative;
  width: min(100%, 34rem);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(148, 163, 184, 0.05), rgba(15, 23, 42, 0.22)),
    rgba(2, 6, 23, 0.96);
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
  transform: scale(0.94) translateY(16px);
  opacity: 0;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease;
}

.consent-modal__visual {
  position: relative;
  height: clamp(8rem, 18vh, 11rem);
  overflow: hidden;
}

.consent-modal__visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consent-modal__visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.06) 0%, rgba(2, 6, 23, 0.24) 34%, rgba(2, 6, 23, 0.96) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, 0) 44%, rgba(2, 6, 23, 0.62) 72%, rgba(2, 6, 23, 1) 100%);
}

.consent-modal__body {
  padding: 1.35rem 1.35rem 1.25rem;
}

.consent-modal__title {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-align: center;
  text-wrap: balance;
}

.consent-modal__copy {
  margin: 0.9rem auto 0;
  max-width: 30rem;
  color: #94a3b8;
  line-height: 1.75;
  text-align: center;
  text-wrap: balance;
}

.consent-modal__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.consent-modal__button {
  min-width: 8.5rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.95rem 1.15rem;
  cursor: pointer;
}

.consent-modal__button--ghost {
  background: rgba(148, 163, 184, 0.12);
  color: #e2e8f0;
}

.consent-modal__button--primary {
  background: #f8fafc;
  color: #020617;
}

.consent-modal__button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 250, 252, 0.18);
}

.consent-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.consent-modal.is-open .consent-modal__backdrop {
  opacity: 1;
}

.consent-modal.is-open .consent-modal__dialog {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 1.25rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, 0.72);
  opacity: 0;
  transition: opacity 220ms ease;
}

.success-modal__dialog {
  position: relative;
  width: min(100%, 32rem);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(148, 163, 184, 0.05), rgba(15, 23, 42, 0.22)),
    rgba(2, 6, 23, 0.96);
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
  transform: scale(0.94) translateY(16px);
  opacity: 0;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease;
}

.success-modal__body {
  padding: 1.4rem;
}

.success-modal__eyebrow {
  margin: 0;
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.success-modal__title {
  margin: 0.7rem 0 0;
  color: #f8fafc;
  font-size: clamp(1.45rem, 4vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
}

.success-modal__copy {
  margin: 0.9rem 0 0;
  color: #94a3b8;
  line-height: 1.75;
}

.success-modal__status {
  min-height: 1.4rem;
  margin: 0.85rem 0 0;
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.5;
}

.success-modal__status[data-tone="error"] {
  color: #fca5a5;
}

.success-modal__status[data-tone="success"] {
  color: #86efac;
}

.success-modal__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

.success-modal__button {
  min-width: 8rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.95rem 1.15rem;
  cursor: pointer;
}

.success-modal__button--ghost {
  background: rgba(148, 163, 184, 0.12);
  color: #e2e8f0;
}

.success-modal__button--primary {
  background: #f8fafc;
  color: #020617;
}

.success-modal__button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.success-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-modal.is-open .success-modal__backdrop {
  opacity: 1;
}

.success-modal.is-open .success-modal__dialog {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.lead-capture-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lead-capture-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, 0);
  transition: background-color 0.32s ease;
}

.lead-capture-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 42rem);
  max-height: min(90vh, 48rem);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.92)),
    rgba(15, 23, 42, 0.96);
  box-shadow: 0 32px 80px rgba(2, 6, 23, 0.45);
  opacity: 0;
  transform: scale(0.97) translateY(18px);
  transition:
    opacity 0.32s ease,
    transform 0.36s cubic-bezier(0.33, 1, 0.68, 1);
}

.lead-capture-modal__floating-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0));
}

.lead-capture-modal__close {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: #f8fafc;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

.lead-capture-modal__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.lead-capture-modal__scroll::-webkit-scrollbar {
  display: none;
}

.lead-capture-modal__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 100%;
  padding: 1rem 1.15rem 1.25rem;
}

.lead-capture-modal__form {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.lead-capture-modal__page {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 100%;
  padding-top: 0;
}

.lead-capture-modal__visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: min(30vh, 12rem);
  min-height: 9rem;
  max-height: 30%;
  overflow: hidden;
  border-radius: 1.2rem;
  flex: 0 0 auto;
}

.lead-capture-modal__visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-capture-modal__visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(15, 23, 42, 0.28) 48%, rgba(15, 23, 42, 0.96) 100%),
    linear-gradient(135deg, rgba(14, 165, 233, 0.1), transparent 46%);
}

.lead-capture-modal__page-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-top: 1rem;
  min-width: 0;
}

.lead-capture-modal__eyebrow {
  margin: 0 0 0.5rem;
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-capture-modal__title {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.lead-capture-modal__copy {
  margin: 0.6rem 0 1.1rem;
  max-width: 34rem;
  color: #94a3b8;
  line-height: 1.6;
}

.lead-capture-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.lead-capture-modal__field span {
  font-weight: 500;
}

.lead-capture-modal__field input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
  font: inherit;
  font-size: 16px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.lead-capture-modal__field input::placeholder {
  color: #64748b;
}

.lead-capture-modal__field input:focus {
  outline: none;
  border-color: rgba(125, 211, 252, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(125, 211, 252, 0.45),
    0 0 0 3px rgba(125, 211, 252, 0.16);
  background: rgba(15, 23, 42, 0.88);
}

.lead-capture-modal__helper {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
}

.lead-capture-modal__questions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 0;
  overflow: visible;
  padding-bottom: 0.2rem;
}

.lead-capture-modal__question {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.lead-capture-modal__question-title {
  margin: 0 0 0.6rem;
  max-width: 100%;
  color: #e2e8f0;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
}

.lead-capture-modal__segmented {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.25rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.25rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  overflow: hidden;
  min-width: 0;
}

.lead-capture-modal__segmented-thumb {
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  width: calc((100% - 0.5rem) / 3);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.16);
  border: 1px solid rgba(125, 211, 252, 0.35);
  transform: translateX(0);
  transition: transform 0.22s cubic-bezier(0.33, 1, 0.68, 1);
  pointer-events: none;
}

.lead-capture-modal__segmented:not([data-selected-index]) .lead-capture-modal__segmented-thumb,
.lead-capture-modal__segmented[data-selected-index=""] .lead-capture-modal__segmented-thumb {
  opacity: 0;
}

.lead-capture-modal__choice {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 2.6rem;
  padding: 0.78rem 0.5rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #cbd5e1;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  cursor: pointer;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.lead-capture-modal__choice.is-selected {
  color: #f8fafc;
}

.lead-capture-modal__select-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
}

.lead-capture-modal__select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 3rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
  font: inherit;
  font-size: 16px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #94a3b8 50%),
    linear-gradient(135deg, #94a3b8 50%, transparent 50%);
  background-position:
    calc(100% - 1.2rem) calc(50% - 0.1rem),
    calc(100% - 0.85rem) calc(50% - 0.1rem);
  background-size: 0.45rem 0.45rem, 0.45rem 0.45rem;
  background-repeat: no-repeat;
}

.lead-capture-modal__select:focus {
  outline: none;
  border-color: rgba(125, 211, 252, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(125, 211, 252, 0.45),
    0 0 0 3px rgba(125, 211, 252, 0.16);
  background-color: rgba(15, 23, 42, 0.88);
}

.lead-capture-modal__status {
  min-height: 1.4rem;
  margin: 0.9rem 0 0;
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.5;
}

.lead-capture-modal__status[data-tone="success"] {
  color: #86efac;
}

.lead-capture-modal__status[data-tone="error"] {
  color: #fca5a5;
}

.lead-capture-modal__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.lead-capture-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 8.5rem;
  min-height: 2.9rem;
  padding: 0 1.15rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.lead-capture-modal__button-spinner {
  display: none;
  width: 0.95rem;
  height: 0.95rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: lead-capture-spin 0.7s linear infinite;
}

.lead-capture-modal__button.is-loading .lead-capture-modal__button-spinner {
  display: inline-block;
}

.lead-capture-modal__button.is-loading .lead-capture-modal__button-label {
  opacity: 0.96;
}

.lead-capture-modal__button--ghost {
  background: rgba(148, 163, 184, 0.12);
  color: #e2e8f0;
}

.lead-capture-modal__button--primary {
  background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
  color: #052e16;
}

.lead-capture-modal__button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.lead-capture-modal__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.15rem 1.15rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.96)),
    rgba(15, 23, 42, 0.94);
  flex: 0 0 auto;
}

@keyframes lead-capture-spin {
  to {
    transform: rotate(360deg);
  }
}

.lead-capture-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lead-capture-modal.is-open .lead-capture-modal__backdrop {
  background: rgba(2, 6, 23, 0.62);
}

.lead-capture-modal.is-open .lead-capture-modal__dialog {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.lead-capture-modal[data-step="quiz"] .lead-capture-modal__visual {
  display: none;
}

@media (min-width: 900px) {
  .lead-capture-modal__dialog {
    min-height: min(82vh, 44rem);
  }

  .lead-capture-modal__body {
    padding: 1.2rem 1.45rem 1.35rem;
  }

}

@media (max-width: 640px) {
  .lead-capture-modal__dialog {
    width: min(100%, 42rem);
    max-height: min(92vh, 48rem);
    border-radius: 1.4rem;
  }

  .lead-capture-modal__floating-header {
    padding: 0.85rem;
  }

  .lead-capture-modal__body {
    padding: 0.9rem 0.95rem 1rem;
  }

  .lead-capture-modal__segmented {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lead-capture-modal__choice {
    padding-inline: 0.3rem;
    font-size: 0.84rem;
  }

  .lead-capture-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lead-capture-modal__footer {
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem 0.95rem 1rem;
  }

  .lead-capture-modal__button {
    width: 100%;
  }
}

.for-index-page {
  padding: clamp(7rem, 12vw, 9rem) 1.5rem clamp(6rem, 10vw, 8rem);
}

.for-index-page__hero-inner,
.for-index-grid__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.for-index-page__title {
  margin: 0;
  max-width: 12ch;
  color: #f8fafc;
  font-size: clamp(2.5rem, 8vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-wrap: balance;
}

.for-index-page__copy {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: #94a3b8;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.8;
}

.for-index-grid {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

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

.for-index-grid__cards .project-wrap,
.for-index-grid__card {
  width: 100%;
  padding: 0;
}

.for-index-grid__status {
  grid-column: 1 / -1;
  margin: 0;
  color: #94a3b8;
}

@media (max-width: 767px) {
  .for-index-grid__cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .for-index-grid__cards .project-wrap,
  .for-index-grid__cards .for-index-grid__card {
    width: min(70vw, 26rem);
  }

  .for-index-grid__cards .project-wrap-media {
    aspect-ratio: 4 / 5;
  }

  .for-index-grid__cards .project-wrap:nth-child(odd),
  .for-index-grid__cards .for-index-grid__card:nth-child(odd) {
    align-self: flex-start;
  }

  .for-index-grid__cards .project-wrap:nth-child(even),
  .for-index-grid__cards .for-index-grid__card:nth-child(even) {
    align-self: flex-end;
  }

  .for-index-grid__status {
    align-self: stretch;
  }
}

@media (min-width: 900px) {
  .for-index-grid__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 900px) {
  .for-page__article-inner {
    grid-template-columns: minmax(0, 2fr) minmax(17rem, 1fr);
    gap: 3rem;
    align-items: start;
  }

  .for-page__article-copy {
    order: 1;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .for-page__side-rail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    position: sticky;
    top: 8rem;
  }

  .for-page__video-rail {
    order: 2;
  }

  .for-page__video-card {
    padding: 1.15rem;
    border-radius: 1.2rem;
  }

  .for-page__faq-rail {
    order: 3;
  }

  .for-page__faq-card {
    padding: 1.15rem;
  }

  .for-page__more-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.blog-index-page {
  padding: clamp(7rem, 12vw, 9rem) 1.5rem clamp(6rem, 10vw, 8rem);
}

.blog-index-page__hero-inner,
.blog-index-grid__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.blog-index-page__title {
  margin: 0;
  max-width: 14ch;
  color: #f8fafc;
  font-size: clamp(2.5rem, 8vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-wrap: balance;
}

.blog-index-page__copy {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: #94a3b8;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.8;
}

.blog-index-grid {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

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

.blog-index-grid__cards .site-header__menu-card,
.blog-index-grid__card {
  width: 100%;
  min-height: 100%;
  flex: 1 1 auto;
}

.blog-index-grid__status {
  grid-column: 1 / -1;
  margin: 0;
  color: #94a3b8;
}

.blog-index-grid__cards .site-header__menu-card-media {
  aspect-ratio: 4 / 5;
}

.blog-page__visual {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: min(52vh, 34rem);
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
  z-index: 0;
}

.blog-page__visual-image {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  bottom: -2.5rem;
  left: -2.5rem;
  width: auto;
  height: auto;
  min-width: calc(100% + 5rem);
  min-height: calc(100% + 5rem);
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1);
  filter: blur(0);
  transition:
    filter 1400ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1600ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-page__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 8, 12, 0.02) 0%, rgba(6, 8, 12, 0.52) 55%, #020617 100%);
}

.blog-page__visual-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 8, 12, 0.08) 0%, rgba(6, 8, 12, 0.7) 42%, #020617 100%);
  opacity: 0;
  transition: opacity 2600ms cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-page.is-reading .blog-page__visual-image {
  opacity: 0.46;
  transform: scale(1.08);
  filter: blur(22px);
}

.blog-page.is-reading .blog-page__visual-overlay::after {
  opacity: 1;
}

.blog-page__article {
  position: relative;
  z-index: 1;
  padding: 7rem 1.5rem 5rem;
}

.blog-page__article-shell {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.blog-page__hero-spacer {
  height: 20vh;
}

.blog-page__article-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding-top: 0;
  display: grid;
  row-gap: 0.9rem;
  column-gap: 2rem;
}

.blog-page__breadcrumb {
  margin-bottom: 0;
}

.blog-page__toc-card--mobile {
  order: 1;
}

.blog-page__copy {
  order: 2;
  width: min(100%, 52rem);
}

.blog-page__article-head {
  margin: 0;
}

.blog-page__article-title {
  margin: 0 0 1.5rem;
  color: #f8fafc;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.blog-page__side-rail {
  order: 3;
  display: grid;
  gap: 1rem;
}

.blog-page__toc-card,
.blog-page__comments-card {
  padding: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(18px);
}

.blog-page__toc-card--desktop {
  display: none;
}

.blog-page__side-label {
  margin: 0;
  color: rgba(226, 232, 240, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-page__side-title {
  margin: 0.45rem 0 0;
  color: #f8fafc;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.blog-page__side-empty {
  margin: 0.85rem 0 0;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.blog-page__toc-list {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.9rem;
}

.blog-page__toc-link {
  color: rgba(226, 232, 240, 0.84);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.6;
}

.blog-page__toc-link--h3 {
  padding-left: 0.9rem;
  color: rgba(148, 163, 184, 0.94);
  font-size: 0.95rem;
  font-weight: 400;
}

.blog-page__toc-link:hover,
.blog-page__toc-link:focus-visible {
  color: #f8fafc;
}

.blog-page__comments-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.blog-page__comment {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.blog-page__comment:first-child {
  padding-top: 0;
  border-top: 0;
}

.blog-page__comment-head strong {
  color: #f8fafc;
  font-size: 0.96rem;
  font-weight: 600;
}

.blog-page__comment-body {
  margin: 0.4rem 0 0;
  color: #cbd5e1;
  font-size: 0.96rem;
  line-height: 1.75;
}

.blog-page__comments-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.blog-page__comments-form-title {
  margin: 0;
  color: #f8fafc;
  font-size: 0.98rem;
  font-weight: 600;
}

.blog-page__comments-field {
  display: grid;
  gap: 0.45rem;
}

.blog-page__comments-field span {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
}

.blog-page__comments-field input,
.blog-page__comments-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 0.95rem;
  background: rgba(2, 6, 23, 0.46);
  color: #f8fafc;
  font: inherit;
  font-size: 16px;
  padding: 0.95rem 1rem;
  box-sizing: border-box;
}

.blog-page__comments-field textarea {
  resize: vertical;
}

.blog-page__comments-field input::placeholder,
.blog-page__comments-field textarea::placeholder {
  color: rgba(148, 163, 184, 0.72);
}

.blog-page__comments-field input:focus,
.blog-page__comments-field textarea:focus {
  outline: none;
  border-color: rgba(125, 211, 252, 0.42);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.14);
}

.blog-page__comments-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 999px;
  background: #f8fafc;
  color: #020617;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.blog-page__comments-submit:disabled {
  cursor: wait;
  opacity: 0.78;
}

.blog-page__comments-status {
  margin: 0;
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.6;
}

.blog-page__comments-status[data-tone="success"] {
  color: #bbf7d0;
}

.blog-page__comments-status[data-tone="error"] {
  color: #fca5a5;
}

.blog-page__body {
  margin-top: 1.5rem;
  color: #94a3b8;
  font-size: 1.02rem;
  line-height: 1.9;
}

.blog-page__body h2 {
  margin: 3rem 0 0;
  color: #f8fafc;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.blog-page__body h3 {
  margin: 2rem 0 0;
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.blog-page__body p,
.blog-page__body ul {
  margin: 1rem 0 0;
}

.blog-page__body ul {
  padding-left: 1.2rem;
}

.blog-page__body li {
  margin: 0.4rem 0;
}

.blog-page__body strong {
  color: #e2e8f0;
}

.blog-page__body code {
  padding: 0.12rem 0.38rem;
  border-radius: 0.45rem;
  background: rgba(148, 163, 184, 0.12);
  color: #f8fafc;
  font-size: 0.92em;
}

.blog-page__body a {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.blog-page__markdown-image,
.blog-page__embed img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 1rem;
}

.blog-page__embed {
  margin: 1.5rem 0;
}

.blog-page__embed figcaption {
  margin-top: 0.7rem;
  color: #94a3b8;
  font-size: 0.92rem;
}

.blog-page__embed--banner img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.blog-page__embed--square {
  width: min(100%, 18rem);
  margin-left: auto;
  margin-right: auto;
}

.blog-page__embed-media {
  aspect-ratio: 1 / 1;
}

.blog-page__embed-media img {
  height: 100%;
  object-fit: cover;
}

.blog-page__embed--palette .blog-page__embed-media {
  border-radius: 1rem;
}

.blog-page__embed--palette figcaption {
  text-align: center;
}

.blog-page__embed-meta {
  opacity: 0.78;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.blog-page__embed--cta {
  padding: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1rem;
  background: rgba(148, 163, 184, 0.06);
  text-align: center;
}

.blog-page__embed--cta strong {
  display: block;
  color: #f8fafc;
  font-size: 1.05rem;
}

.blog-page__embed--cta p {
  margin: 0.6rem 0 0;
}

.blog-page__embed-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.9rem;
  min-height: 2.75rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: #f8fafc;
  color: #020617;
  font-weight: 700;
  text-decoration: none;
}

.blog-page__embed--columns-container {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(var(--columns-mobile, 1), minmax(0, 1fr));
}

.blog-page__embed-column {
  min-width: 0;
}

@media (min-width: 900px) {
  .blog-index-grid__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .blog-page__article-inner {
    padding-top: 0;
    grid-template-columns: minmax(0, 2fr) minmax(17rem, 1fr);
    row-gap: 0.9rem;
    column-gap: 3rem;
    align-items: start;
  }

  .blog-page__article-shell {
    margin-bottom: calc(clamp(7rem, 14vh, 9.5rem) * -1);
  }

  .blog-page__toc-card--desktop {
    display: block;
  }

  .blog-page__toc-card--mobile {
    display: none;
  }

  .blog-page__copy {
    order: initial;
    width: auto;
    grid-column: 1;
    grid-row: 2;
  }

  .blog-page__side-rail {
    order: initial;
    grid-column: 2;
    grid-row: 2;
    position: sticky;
    top: 8rem;
    align-self: start;
  }

  .blog-page__embed--columns-container {
    grid-template-columns: repeat(var(--columns-desktop, 2), minmax(0, 1fr));
  }
}
