* {
  box-sizing: border-box;
}

:root {
  --desktop-edge: clamp(20px, 5vw, 76px);
  --header-height: clamp(140px, 16vh, 220px);
  --header-top: clamp(14px, 3vh, 28px);
  --header-clearance: clamp(32px, 4.8vh, 64px);
  --hero-reserve: calc(var(--header-height) + var(--header-top) + var(--header-clearance));
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: "Poppins", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  min-height: 100%;
  overflow-y: auto;
  background: linear-gradient(
    to right,
    #000000 0%,
    #222222 14.3%,
    #454545 28.6%,
    #686868 42.9%,
    #8b8b8b 57.1%,
    #cecece 85.7%,
    #f0f0f0 100%
  );
  background-attachment: fixed;
  background-size: 100% 100%;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.header-block {
  position: fixed;
  top: var(--header-top);
  left: 0;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: var(--header-height);
  margin: 0;
  padding: clamp(8px, 1.2vh, 14px) 0 0 4px;
  border-radius: 6px;
  background: linear-gradient(to right, #000000 0%, #808080 50%, #f0f0f0 100%);
  box-shadow:
    0 0 54px 18px rgba(0, 0, 0, 0.34),
    0 24px 90px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.header-block:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 68px 22px rgba(0, 0, 0, 0.38),
    0 32px 110px 28px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.header-logo {
  display: block;
  height: clamp(84px, 8vw, 90px);
  max-width: min(520px, calc(100vw - 30px));
  margin-left: clamp(12px, 1.6vw, 24px);
}

.brand-tagline {
  margin: 5px 0 0 clamp(150px, 9.6vw, 166px);
  color: transparent;
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 500;
  font-family: Tahoma, Verdana, sans-serif;
  letter-spacing: 1.2px;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffffff;
  -webkit-background-clip: text;
  background-clip: text;
}

.header-right {
  position: absolute;
  top: clamp(8px, 1.4vh, 16px);
  right: clamp(24px, 4vw, 54px);
}

.header-title {
  margin: 4px 1px 0 0;
  color: transparent;
  font-size: clamp(24px, 2.35vw, 36px);
  font-weight: 1000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(to right, #000000 0%, #a9a9a9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.header-nav {
  position: absolute;
  right: max(0px, calc(100% - 100vw));
  bottom: clamp(18px, 2vh, 22px);
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: clamp(44px, 5.4vh, 56px);
  padding: 6px clamp(16px, 1.7vw, 24px) 6px 6px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  background: transparent;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.header-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: transparent;
}

.header-nav::after {
  display: none;
}

.header-nav:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: transparent;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nav-item {
  position: relative;
  z-index: 2;
  display: flex;
}

.nav-item--dropdown {
  position: static;
}

.header-nav a,
.nav-trigger {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: clamp(34px, 4vh, 42px);
  padding: 0 clamp(13px, 1.35vw, 20px);
  overflow: hidden;
  color: rgba(16, 16, 16, 0.72);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1;
  text-decoration: none;
  text-shadow: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.header-nav a::before,
.header-nav a::after,
.nav-trigger::before,
.nav-trigger::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.header-nav a::before,
.nav-trigger::before {
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: none;
  transform: scale(0.94);
}

.header-nav a::after,
.nav-trigger::after {
  left: 50%;
  right: auto;
  bottom: 4px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #ffa508;
  transform: translateX(-50%) scaleX(0.42);
}

.header-nav a:hover,
.header-nav a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-item--dropdown.is-open .nav-trigger {
  color: #000000;
  text-shadow: none;
  transform: translateY(-1px);
  outline: none;
}

.header-nav a:hover::before,
.header-nav a:focus-visible::before,
.header-nav a:hover::after,
.header-nav a:focus-visible::after,
.nav-trigger:hover::before,
.nav-trigger:focus-visible::before,
.nav-trigger:hover::after,
.nav-trigger:focus-visible::after,
.nav-item--dropdown.is-open .nav-trigger::before,
.nav-item--dropdown.is-open .nav-trigger::after {
  opacity: 1;
  transform: scale(1);
}

.nav-chevron {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-label {
  position: relative;
  z-index: 1;
}

.nav-item--dropdown:hover .nav-chevron,
.nav-item--dropdown:focus-within .nav-chevron,
.nav-item--dropdown.is-open .nav-chevron {
  transform: translateY(3px) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 8;
  display: grid;
  gap: 8px;
  width: 272px;
  padding: 12px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background:
    linear-gradient(135deg, #000000, rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown::before {
  content: none;
  position: absolute;
  top: -5px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-left: 0;
  border-top: 0;
  background: rgba(255, 255, 255, 0.24);
  transform: rotate(45deg);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.18), transparent 50%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 52%);
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-dropdown a {
  position: relative;
  z-index: 1;
  justify-content: flex-start;
  gap: 0;
  min-height: 58px;
  padding: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.32);
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 10px 22px rgba(0, 0, 0, 0.08);
  transform: none;
}

.nav-dropdown a::before {
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.16);
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.industry-icon {
  display: none;
}

.industry-icon::before {
  content: attr(data-letter);
}

.industry-copy {
  display: grid;
  gap: 4px;
}

.industry-name,
.industry-note {
  display: block;
}

.industry-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.industry-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.25;
}

.story-shell {
  position: relative;
  min-height: 100svh;
  background: transparent;
  scroll-snap-type: y proximity;
}

.story-panel {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 100svh;
  padding: var(--hero-reserve) var(--desktop-edge) clamp(82px, 10vh, 128px) 0;
  overflow: hidden;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  scroll-margin-top: 0;
  scroll-snap-align: start;
  isolation: isolate;
}

.story-panel.is-active {
  z-index: 1;
  display: block;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.story-panel + .story-panel::before {
  content: "";
  position: absolute;
  top: clamp(-150px, -16vh, -90px);
  right: 0;
  left: 0;
  z-index: 0;
  height: clamp(170px, 24vh, 260px);
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.22), transparent 32%),
    radial-gradient(circle at 72% 18%, rgba(255, 165, 8, 0.22), transparent 34%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.2) 48%, rgba(0, 0, 0, 0));
  filter: blur(18px);
  opacity: 0.8;
}

.story-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.11) 48%, transparent 68%);
  opacity: 0;
  transform: translateX(-120%);
}

.js-ready .premium-reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 880ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-index, 0) * 90ms);
}

.js-ready .story-panel.is-in-view .premium-reveal {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.js-ready .story-panel.is-in-view::after {
  animation: premiumSheen 1200ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

@keyframes premiumSheen {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  30% {
    opacity: 0.42;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(60vw, 1000px);
}

.hero-kicker2 {
  display: inline-block;
  flex: 0 0 auto;
  align-self: flex-end;
  margin-left: clamp(12px, 2.4vw, 32px);
  color: transparent;
  font-size: clamp(26px, 3vw, 50px);
  font-weight: 800;
  letter-spacing: 6px;
  line-height: 1;
  background: linear-gradient(to left, #ffa508 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translateY(-0.12em);
}

.hero-content h2 {
  display: grid;
  gap: 0;
  margin: 0 0 clamp(22px, 3.8vh, 42px);
  color: transparent;
  font-size: clamp(62px, min(7.6vw, 13vh), 136px);
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 0.94;
  text-transform: uppercase;
  background: linear-gradient(to left, #000000 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-title-line {
  display: block;
  min-width: 0;
}

.hero-title-line--top {
  display: inline-flex;
  align-items: flex-end;
  gap: clamp(8px, 1.2vw, 18px);
}

.hero-copy {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(12px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1.55;
}

.trust-box {
  display: grid;
  align-content: center;
  gap: clamp(12px, 1.6vh, 18px);
  width: clamp(280px, 25vw, 380px);
  height: clamp(132px, 15vh, 168px);
  margin-top: clamp(24px, 4.2vh, 48px);
  padding: 18px 22px 18px clamp(36px, 3.4vw, 50px);
  color: #ffa508;
  font-size: clamp(18px, 1vw, 20px);
  font-weight: 600;
  line-height: 1.25;
  list-style: none;
  border-radius: 0 12px 12px 0;;
}

.trust-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.trust-box li::before {
  content: "\2713";
  flex: 0 0 auto;
  font-weight: 800;
}

.scale-gallery {
  position: absolute;
  top: calc(var(--hero-reserve) - clamp(28px, 4vh, 54px));
  right: var(--desktop-edge);
  z-index: 1;
  width: clamp(380px, 38vw, 560px);
  color: #111111;
}

.scale-gallery__viewport {
  position: relative;
  width: 100%;
  min-height: clamp(430px, 66vh, 640px);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.scale-gallery__viewport:active {
  cursor: grabbing;
}

.scale-gallery__viewport:focus-visible {
  outline: 2px solid rgba(255, 165, 8, 0.72);
  outline-offset: 6px;
  border-radius: 18px;
}

.scale-gallery__track {
  display: flex;
  height: 100%;
  transform: translateX(0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.scale-slide {
  position: relative;
  display: grid;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: clamp(430px, 66vh, 640px);
  align-content: center;
  justify-items: center;
  color: inherit;
  text-decoration: none;
}

.scale-slide__image {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(340px, 54vh, 510px);
  background: transparent;
}

.scale-slide__image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: clamp(340px, 59vh, 560px);
  object-fit: contain;
  -webkit-user-drag: none;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.3));
  transform: translateY(0) scale(0.98);
  transition: transform 260ms ease, filter 260ms ease;
}

.scale-slide:hover .scale-slide__image img,
.scale-slide:focus-visible .scale-slide__image img {
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.34));
  transform: translateY(-6px) scale(1);
}

.scale-slide__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 0px;
  padding-right: 4px;
  text-align: right;
}

.scale-slide__caption span,
.scale-slide__caption small {
  display: block;
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.48);
}

.scale-slide__caption span {
  font-size: clamp(28px, 2.45vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.scale-slide__caption small {
  color: rgba(0, 0, 0, 0.66);
  font-size: clamp(12px, 1.08vw, 16px);
  font-weight: 700;
}

.scale-gallery__dots {
  position: absolute;
  right: 4px;
  bottom: 0;
  display: flex;
  gap: 7px;
}

.scale-gallery__dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  transition: width 220ms ease, background 220ms ease;
}

.scale-gallery__dots span.is-active {
  width: 22px;
  background: #ffa508;
}

.why-page {
  padding: var(--hero-reserve) 0 0;
}

.why-page__intro {
  position: absolute;
  top: calc(var(--hero-reserve) + clamp(10px, 2vh, 24px));
  left: clamp(18px, 4.3vw, 62px);
  z-index: 3;
  width: min(33vw, 430px);
  padding: clamp(12px, 1.5vw, 20px);
  color: #ffffff;
  text-align: center;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 18% 0%, rgba(255, 165, 8, 0.18), transparent 44%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 24px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.why-page__kicker {
  margin: 0 0 clamp(18px, 3vh, 26px);
  margin-bottom: 10px; 
  color: transparent;
  font-size: clamp(19px, 1.9vw, 30px);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1.1;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 0%, #f3f3f3 36%, #ffa508 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.why-page__intro blockquote {
  margin: 0;
  font-style: normal;
}

.why-page__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 700;
  line-height: 1.16;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.why-page__intro cite {
  display: block;
  margin-top: 8px;
  padding-right: clamp(10px, 2vw, 34px);
  color: #ffffff;
  font-size: clamp(10px, 0.9vw, 13px);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.why-page__image {
  position: absolute;
  left: clamp(18px, 3.4vw, 56px);
  bottom: clamp(-30px, -2.2vw, -12px);
  z-index: 1;
  display: block;
  width: min(53vw, 810px);
  max-width: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.3));
}

.why-page__content {
  position: absolute;
  top: calc(var(--hero-reserve) + clamp(10px, 2vh, 24px));
  right: 0;
  z-index: 2;
  width: min(43vw, 590px);
  padding-right: clamp(24px, 4vw, 64px);
}

.why-page__content::before {
  content: "";
  position: absolute;
  top: -18%;
  right: 4%;
  z-index: -1;
  width: min(34vw, 440px);
  aspect-ratio: 1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 165, 8, 0.16), rgba(255, 255, 255, 0.12) 34%, transparent 68%);
  filter: blur(22px);
  opacity: 0.78;
}

.why-page__small {
  margin: 0 0 clamp(18px, 3vh, 28px);
  color: transparent;
  font-size: clamp(17px, 1.9vw, 28px);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(to right, #ffffff 0%, #ffe2b2 48%, #ffa508 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.why-page__content h2 {
  display: grid;
  gap: 0;
  margin: 0;
  color: transparent;
  font-size: clamp(40px, min(4vw, 7vh), 62px);
  font-weight: 900;
  letter-spacing: 5px;
  line-height: 0.98;
  text-transform: uppercase;
  background: linear-gradient(100deg, #0f0f0f 0%, #232323 34%, #7d7d7d 64%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.12));
}

.why-page__card {
  margin: clamp(16px, 3vh, 28px) calc(clamp(24px, 4vw, 64px) * -1) 0 0;
  padding: clamp(22px, 3vh, 32px) clamp(26px, 3.4vw, 52px);
  color: #ffffff;
  font-size: clamp(10px, 0.92vw, 13px);
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.65;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px 0 0 30px;
  background:
    linear-gradient(135deg, rgba(78, 78, 78, 0.86), rgba(34, 34, 34, 0.76)),
    radial-gradient(circle at 10% 0%, rgba(255, 165, 8, 0.16), transparent 42%);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.call-pop {
  position: fixed;
  left: 50%;
  bottom: clamp(16px, 2.8vh, 22px);
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  width: min(230px, calc(100vw - 36px));
  min-height: 50px;
  padding: 8px 9px 8px 13px;
  color: #111111;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.36);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  transform: translate(-50%, 26px) scale(0.94);
  opacity: 0;
  animation:
    callPopIn 640ms cubic-bezier(0.22, 1, 0.36, 1) 900ms forwards,
    callPopFloat 4s ease-in-out 1700ms infinite;
}

.call-pop.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  animation: callPopFloat 4s ease-in-out infinite;
}

.call-pop__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.call-pop__label {
  color: #9a6400;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.call-pop p {
  margin: 0;
  color: #111111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.call-pop__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  padding: 0 13px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  background: #ffa508;
  box-shadow:
    0 12px 28px rgba(255, 165, 8, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.call-pop__button:hover,
.call-pop__button:focus-visible {
  background: #ffb629;
  box-shadow:
    0 16px 34px rgba(255, 165, 8, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
  outline: none;
}

@keyframes callPopIn {
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes callPopFloat {
  0%,
  100% {
    transform: translate(-50%, 0) scale(1);
  }

  50% {
    transform: translate(-50%, -4px) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .call-pop {
    animation: none;
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }

  .js-ready .premium-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .js-ready .story-panel.is-in-view::after {
    animation: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 65px;
    --header-top: 10px;
    --header-clearance: 13px;
    --hero-reserve: 88px;
  }

  .header-block {
    top: 10px;
    height: 65px;
    padding: 6px 0 0;
  }

  .header-logo {
    height: 35px;
    max-width: calc(100vw - 15px);
    margin-left: 8px;
  }

  .brand-tagline {
    margin: 5px 0 0 55px;
    font-size: 5px;
    letter-spacing: 0.45px;
  }

  .header-right {
    top: 8px;
    right: auto !important;
    left: 122px !important;
    width: calc(100vw - 134px) !important;
    overflow: visible;
  }

  .header-title {
    right: auto !important;
    width: min(170px, calc(100vw - 120px));
    margin-left: 150px;
    margin-top: 0;
    color: #111111;
    font-size: 7.8px;
    letter-spacing: 0.25px;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: none;
    -webkit-text-fill-color: #111111;
  }

  .header-nav {
    right: auto !important;
    bottom: 9px;
    left: clamp(184px, 28vw, 260px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    justify-content: stretch;
    width: min(204px, calc(100vw - 184px));
    min-height: 20px;
    max-width: none;
    padding: 3px 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .header-nav .nav-item {
    display: block;
    min-width: 0;
  }

  .header-nav a,
  .nav-trigger {
    gap: 2px;
    width: 100%;
    min-width: 0;
    min-height: 23px;
    padding: 0 3px;
    font-size: 8px;
    letter-spacing: 0;
    border-radius: 999px;
    transform: none !important;
  }

  .nav-trigger {
    width: 100%;
  }

  .header-nav > a .nav-label,
  .nav-trigger .nav-label {
    font-size: 0;
  }

  .header-nav > a .nav-label::after,
  .nav-trigger .nav-label::after {
    content: attr(data-mobile-label);
    font-size: 8px;
  }

  .header-nav a::before,
  .nav-trigger::before {
    inset: 0;
    border-radius: inherit;
  }

  .header-nav a::after,
  .nav-trigger::after {
    bottom: 2px;
    width: 8px;
    height: 1px;
  }

  .nav-chevron {
    display: none;
  }

  .nav-dropdown {
    top: 100%;
    right: 0;
    left: auto;
    width: 178px;
    padding: 7px;
    border-radius: 14px;
    transform-origin: top right;
  }

  .nav-dropdown::before {
    right: 20px;
    left: auto;
  }

  .nav-dropdown a {
    gap: 0;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 9px;
    border-radius: 11px;
  }

  .nav-dropdown a::after {
    display: none;
  }

  .industry-icon {
    display: none;
  }

  .industry-copy {
    gap: 3px;
  }

  .industry-name {
    font-size: 10px;
  }

  .industry-note {
    font-size: 8px;
  }

  .story-shell {
    min-height: 100svh;
  }

  .story-panel {
    min-height: 100svh;
    padding: var(--hero-reserve) 16px 82px;
  }

  .hero-section {
    height: 100svh;
    min-height: 100svh;
    padding: var(--hero-reserve) 16px 82px;
    overflow: hidden;
  }

  .hero-content {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .hero-kicker2 {
    font-size: 18px;
    letter-spacing: 3px;
    transform: translateY(-0.08em);
  }

  .hero-content h2 {
    max-width: 358px;
    margin-bottom: 16px;
    font-size: 29px;
    
  }

  .hero-title-line--top {
    gap: 6px;
  }

  .hero-copy {
    max-width: 340px;
    overflow-wrap: break-word;
    font-size: 12px;
    line-height: 1.45;
  }

  .trust-box {
    width: 190px;
    height: 116px;
    margin-left: -18px;
    margin-top: 22px;
    padding: 13px 10px 13px 26px;
    gap: 9px;
    font-size: 8.5px;
    line-height: 1.25;
    border-radius: 0px 12px 12px 0;
  }

  .scale-gallery {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, calc(100vw - 32px));
    margin-top: -10px;
    overflow: hidden;
  }

  .scale-gallery__viewport {
    min-height: 268px;
    border-radius: 18px;
  }

  .scale-slide {
    min-height: 268px;
  }

  .scale-slide__image {
    min-height: 232px;
    justify-items: start;
    padding-left: 18px;
    padding-right: 122px;
  }

  .scale-slide__image img {
    max-height: 246px;
    max-width: min(68vw, 230px);
  }

  .scale-slide__caption {
    right: auto;
    left: clamp(88px, 26vw, 112px);
    top: 22px;
    bottom: auto;
    width: 124px;
    max-width: 124px;
    gap: 5px;
    padding: 0;
    text-align: left;
  }

  .scale-slide__caption span {
    overflow-wrap: break-word;
    font-size: 13px;
    line-height: 1.05;
    white-space: normal;
  }

  .scale-slide__caption small {
    overflow-wrap: break-word;
    font-size: 9px;
    line-height: 1.25;
    white-space: normal;
  }

  .scale-gallery__dots {
    right: 0;
    bottom: 10px;
  }

  .why-page {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding: var(--hero-reserve) 16px calc(92px + env(safe-area-inset-bottom, 0px));
    overflow: visible;
  }

  .why-page__intro,
  .why-page__content,
  .why-page__image {
    position: relative;
    inset: auto;
  }

  .why-page__intro {
    order: 1;
    width: min(calc(100vw - 48px), 340px);
    max-width: 340px;
    margin: 0;
    padding: 12px;
    text-align: left;
    border-radius: 16px;
  }

  .why-page__kicker {
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 3px;
  }

  .why-page__intro p {
    max-width: 290px;
    font-size: 10px;
    line-height: 1.25;
  }

  .why-page__intro cite {
    max-width: 290px;
    padding-right: 0;
    font-size: 8px;
    text-align: right;
  }

  .why-page__content {
    order: 2;
    width: min(calc(100vw - 48px), 340px);
    max-width: 340px;
    margin-top: 20px;
    padding-right: 0;
  }

  .why-page__content::before {
    top: 8%;
    right: -20%;
    width: 260px;
    opacity: 0.52;
  }

  .why-page__small {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .why-page__content h2 {
    max-width: 330px;
    font-size: clamp(28px, 9.5vw, 42px);
    letter-spacing: 2px;
    line-height: 1;
    background: linear-gradient(to right, #ffffff 0%, #bdbdbd 50%, #242424 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .why-page__card {
    width: 100%;
    max-width: 100%;
    margin: 14px 0 0;
    padding: 16px 18px;
    font-size: 8.8px;
    line-height: 1.5;
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(34, 34, 34, 0.88), rgba(11, 11, 11, 0.74)),
      radial-gradient(circle at 12% 0%, rgba(255, 165, 8, 0.16), transparent 46%);
  }

  .why-page__image {
    order: 3;
    position: relative;
    left: auto;
    bottom: auto;
    align-self: center;
    display: block;
    width: min(62vw, 240px);
    max-width: 240px;
    height: auto;
    margin: 10px auto 0;
    transform: none;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.24));
  }

  .call-pop {
    right: auto !important;
    bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    left: calc(min(100vw, 390px) - 170px) !important;
    z-index: 1000;
    gap: 8px;
    width: 156px;
    min-height: 44px;
    padding: 7px 8px 7px 12px;
    border-radius: 999px;
    opacity: 1;
    transform: translate(0, 0) scale(1) !important;
    animation: none;
  }

  .call-pop.is-visible {
    transform: translate(0, 0) scale(1) !important;
    animation: none;
  }

  .call-pop__label {
    font-size: 7px;
  }

  .call-pop p {
    font-size: 12px;
  }

  .call-pop__button {
    min-width: 52px;
    min-height: 30px;
    padding: 0 11px;
    font-size: 11px;
  }
}
