.industry-work-section {
  --industry-scroll-height: 2600px;
  position: relative;
  height: var(--industry-scroll-height);
  overflow: visible;
  padding: 0;
  background: #fff;
}

.industry-scroll-sticky {
  position: sticky;
  top: 72px;
  height: calc(100dvh - 72px);
  overflow: hidden;
  padding-top: clamp(38px, 5.5vh, 62px);
  background: #fff;
}

.industry-work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  align-items: end;
  gap: clamp(54px, 8vw, 126px);
  margin-bottom: clamp(28px, 4.2vh, 46px);
}

.industry-work-heading .eyebrow {
  margin-bottom: 14px;
}

.industry-work-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(46px, 4.8vw, 69px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.99;
  text-wrap: balance;
}

.industry-work-intro > p {
  max-width: 520px;
  margin: 0;
  color: #3e4248;
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}

.industry-carousel-toolbar {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
}

.industry-carousel-toolbar p {
  min-width: 72px;
  margin: 0 8px 0 0;
  color: #7a7f85;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.industry-carousel-toolbar p span {
  color: #111820;
  font-weight: 700;
}

.industry-carousel-toolbar button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #c9cdd1;
  border-radius: 50%;
  background: #fff;
  color: #111820;
  font: inherit;
  font-size: 19px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.industry-carousel-toolbar button:hover:not(:disabled) {
  border-color: #111820;
  background: #111820;
  color: #fff;
  transform: translateY(-2px);
}

.industry-carousel-toolbar button:active:not(:disabled) {
  transform: translateY(0) scale(0.97);
}

.industry-carousel-toolbar button:focus-visible,
.industry-card:focus-visible {
  outline: 3px solid #58a6ff;
  outline-offset: 4px;
}

.industry-carousel-toolbar button:disabled {
  opacity: 0.32;
  cursor: default;
}

.industry-carousel-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-color: #aeb3b8 transparent;
  scrollbar-width: thin;
}

.industry-carousel-viewport::-webkit-scrollbar {
  height: 8px;
}

.industry-carousel-viewport::-webkit-scrollbar-thumb {
  border: 2px solid #fff;
  border-radius: 99px;
  background: #aeb3b8;
}

.industry-carousel-viewport:focus-visible {
  outline: 3px solid #58a6ff;
  outline-offset: 4px;
}

.industry-carousel-track {
  width: max-content;
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  padding: 4px max(20px, calc((100vw - 1320px) / 2 + 32px)) 18px;
  scroll-padding-inline: max(20px, calc((100vw - 1320px) / 2 + 32px));
}

.industry-card {
  --mockup-travel: 0px;
  --mockup-duration: 5.4s;
  width: clamp(390px, 39vw, 560px);
  flex: 0 0 clamp(390px, 39vw, 560px);
  min-width: 0;
  scroll-snap-align: start;
  color: #111820;
  outline: 0;
}

.industry-mockup-frame {
  position: relative;
  height: auto;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #e5f3ff;
  box-shadow: inset 0 0 0 1px rgb(17 24 32 / 0.08);
  transform: translateZ(0);
}

.industry-card:nth-child(2n) .industry-mockup-frame {
  background: #fff0dc;
}

.industry-card:nth-child(3n) .industry-mockup-frame {
  background: #ffe4ec;
}

.industry-card:nth-child(4n) .industry-mockup-frame {
  background: #e8e4ff;
}

.industry-mockup-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.28);
  pointer-events: none;
}

.industry-mockup-frame img {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-card:hover .industry-mockup-frame img,
.industry-card:focus .industry-mockup-frame img,
.industry-card.is-previewing .industry-mockup-frame img {
  transform: translate3d(0, calc(var(--mockup-travel) * -1), 0);
  transition-duration: var(--mockup-duration);
  transition-delay: 160ms;
  transition-timing-function: cubic-bezier(0.34, 0.08, 0.18, 1);
}

.industry-hover-hint {
  position: absolute;
  z-index: 3;
  inset: auto 16px 16px auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgb(255 255 255 / 0.38);
  border-radius: 100px;
  padding: 9px 12px 9px 14px;
  background: rgb(8 15 22 / 0.76);
  color: #fff;
  box-shadow: 0 10px 30px rgb(8 15 22 / 0.16);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.01em;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.industry-hover-hint b {
  font-size: 14px;
}

.industry-card:hover .industry-hover-hint,
.industry-card:focus .industry-hover-hint,
.industry-card.is-previewing .industry-hover-hint {
  opacity: 0;
  transform: translateY(6px);
}

.industry-card-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
  padding: 18px 2px 0;
}

.industry-card-meta > span {
  padding-top: 6px;
  color: #8a8f94;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.industry-card-meta h3 {
  margin: 0 0 3px;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: clamp(23px, 2.2vw, 29px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.industry-card-meta p {
  margin: 0;
  color: #73787e;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-height: 760px) and (min-width: 861px) {
  .industry-scroll-sticky {
    padding-top: 26px;
  }

  .industry-work-heading {
    margin-bottom: 24px;
  }

  .industry-work-heading h2 {
    font-size: 50px;
  }

  .industry-mockup-frame {
    aspect-ratio: 1.42 / 1;
  }
}

@media (max-width: 860px) {
  .industry-work-section {
    height: auto !important;
    padding: 90px 0 104px;
  }

  .industry-scroll-sticky {
    position: static;
    height: auto;
    overflow: visible;
    padding: 0;
  }

  .industry-work-heading {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-bottom: 42px;
  }

  .industry-work-heading h2 {
    max-width: 620px;
    font-size: 44px;
    line-height: 1.02;
  }

  .industry-work-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
  }

  .industry-carousel-toolbar {
    margin-top: 0;
  }

  .industry-carousel-toolbar p {
    display: none;
  }

  .industry-carousel-viewport {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
  }

  .industry-carousel-track {
    gap: 16px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .industry-card {
    width: min(82vw, 390px);
    flex-basis: min(82vw, 390px);
  }

  .industry-mockup-frame {
    height: auto;
    aspect-ratio: 1.22 / 1;
  }
}

@media (max-width: 520px) {
  .industry-work-intro {
    grid-template-columns: 1fr;
  }

  .industry-carousel-toolbar {
    margin-top: 2px;
  }

  .industry-card {
    width: 84vw;
    flex-basis: 84vw;
  }

  .industry-mockup-frame {
    height: auto;
    max-height: none;
  }

  .industry-hover-hint {
    inset: auto 12px 12px auto;
  }
}

@media (hover: none) {
  .industry-hover-hint {
    padding-inline: 12px;
  }

  .industry-hover-hint {
    font-size: 0;
  }

  .industry-hover-hint b {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-work-section {
    height: auto !important;
    padding: 100px 0 112px;
  }

  .industry-scroll-sticky {
    position: static;
    height: auto;
    overflow: visible;
    padding: 0;
  }

  .industry-carousel-viewport {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: auto;
    scroll-snap-type: inline mandatory;
  }

  .industry-mockup-frame img,
  .industry-card:hover .industry-mockup-frame img,
  .industry-card:focus .industry-mockup-frame img,
  .industry-card.is-previewing .industry-mockup-frame img {
    transition-duration: 1ms;
    transition-delay: 0ms;
  }

  .industry-carousel-toolbar button {
    transition: none;
  }
}

/* Post-launch hosting carousel */
.hosting-section {
  --hosting-scroll-height: 2200px;
  position: relative;
  height: var(--hosting-scroll-height);
  overflow: visible;
  padding: 0;
  background: #f6f5ff;
}

.hosting-scroll-sticky {
  position: sticky;
  top: 72px;
  height: calc(100dvh - 72px);
  overflow: hidden;
  padding-top: clamp(30px, 4.5vh, 54px);
  background:
    radial-gradient(circle at 10% 5%, rgb(255 222 151 / 0.58), transparent 22%),
    radial-gradient(circle at 91% 96%, rgb(188 226 255 / 0.68), transparent 29%),
    #f6f5ff;
}

.hosting-work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  align-items: end;
  gap: clamp(48px, 8vw, 124px);
  margin-bottom: clamp(24px, 3.8vh, 38px);
}

.hosting-work-heading .eyebrow {
  margin: 0 0 12px;
  color: #4e5ab2;
}

.hosting-work-heading h2 {
  max-width: 780px;
  margin: 0;
  color: #15172f;
  font-size: clamp(46px, 4.9vw, 70px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hosting-work-intro > p {
  max-width: 500px;
  margin: 0;
  color: #474a5e;
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}

.hosting-work-intro > p strong { color: #252f8d; }

.hosting-carousel-toolbar {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
}

.hosting-carousel-toolbar p {
  min-width: 72px;
  margin: 0 8px 0 0;
  color: #81849a;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.hosting-carousel-toolbar p span { color: #15172f; font-weight: 700; }

.hosting-carousel-toolbar button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(49 48 104 / 0.18);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.68);
  color: #1f2050;
  font: inherit;
  font-size: 19px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hosting-carousel-toolbar button:hover:not(:disabled) {
  border-color: #272a79;
  background: #272a79;
  color: #fff;
  transform: translateY(-2px);
}

.hosting-carousel-toolbar button:active:not(:disabled) { transform: scale(0.96); }
.hosting-carousel-toolbar button:disabled { opacity: 0.32; cursor: default; }
.hosting-carousel-toolbar button:focus-visible,
.hosting-feature-card:focus-visible { outline: 3px solid #566cff; outline-offset: 4px; }

.hosting-carousel-track {
  width: max-content;
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  padding: 4px max(20px, calc((100vw - 1320px) / 2 + 32px)) 16px;
  overflow: visible;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hosting-feature-card {
  position: relative;
  width: clamp(650px, 68vw, 920px);
  height: clamp(315px, 40vh, 405px);
  flex: 0 0 clamp(650px, 68vw, 920px);
  overflow: hidden;
  border: 1px solid rgb(29 31 76 / 0.12);
  border-radius: 18px;
  padding: clamp(22px, 2.6vw, 34px);
  color: #15172f;
  box-shadow: 0 24px 56px rgb(66 57 127 / 0.16);
  outline: 0;
}

.hosting-feature-card::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -32%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.25);
}

.hosting-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.42);
  pointer-events: none;
}

.hosting-speed-card { background: linear-gradient(135deg, #d4edff 0%, #b9d2ff 52%, #aebcff 100%); }
.hosting-uptime-card { background: linear-gradient(135deg, #d8f7b9 0%, #bfeab1 48%, #a9e8c7 100%); }
.hosting-support-card { background: linear-gradient(135deg, #ffd7ba 0%, #ffb9c8 50%, #e6b5f8 100%); }
.hosting-evolve-card { background: linear-gradient(135deg, #ffe99e 0%, #ffd18d 42%, #ffc2a9 100%); }

.hosting-card-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgb(21 23 47 / 0.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hosting-card-top b {
  border: 1px solid rgb(21 23 47 / 0.12);
  border-radius: 99px;
  padding: 6px 9px;
  background: rgb(255 255 255 / 0.35);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.hosting-card-copy {
  position: absolute;
  z-index: 3;
  bottom: clamp(24px, 3.1vw, 38px);
  left: clamp(22px, 2.6vw, 34px);
  width: min(49%, 395px);
}

.hosting-card-copy p {
  margin: 0 0 8px;
  color: rgb(21 23 47 / 0.62);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hosting-card-copy h3 {
  max-width: 370px;
  margin: 0 0 10px;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: clamp(29px, 3.1vw, 46px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hosting-card-copy > span {
  display: block;
  max-width: 360px;
  color: rgb(21 23 47 / 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.hosting-character {
  --character-skin: #ffc39f;
  --character-shirt: #5353ce;
  --character-hair: #252447;
  position: absolute;
  z-index: 2;
  right: clamp(7%, 10vw, 15%);
  bottom: 13%;
  width: clamp(176px, 19vw, 265px);
  height: clamp(205px, 23vw, 300px);
  transform: perspective(800px) rotateY(-10deg) rotateZ(-3deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 24px 16px rgb(35 39 99 / 0.19));
}

.hosting-character i,
.hosting-character b,
.hosting-character em { position: absolute; display: block; }

.character-shadow {
  z-index: -1;
  bottom: 0;
  left: 5%;
  width: 91%;
  height: 16%;
  border-radius: 50%;
  background: rgb(58 49 94 / 0.17);
  filter: blur(5px);
  transform: rotateX(65deg);
}

.character-body {
  bottom: 7%;
  left: 23%;
  width: 55%;
  height: 49%;
  border-radius: 47% 47% 26% 26% / 25% 25% 18% 18%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--character-shirt) 76%, #fff) 0%, var(--character-shirt) 54%, color-mix(in srgb, var(--character-shirt) 78%, #111) 100%);
  box-shadow: inset 12px 8px 18px rgb(255 255 255 / 0.24), inset -12px -10px 18px rgb(22 24 66 / 0.16);
}

.character-head {
  z-index: 2;
  top: 4%;
  left: 27%;
  width: 47%;
  height: 43%;
  overflow: hidden;
  border-radius: 45% 45% 48% 48% / 44% 44% 54% 54%;
  background: radial-gradient(circle at 34% 30%, #ffe9d0 0 6%, transparent 7%), linear-gradient(130deg, #ffd6b9, var(--character-skin) 55%, #e98975);
  box-shadow: inset 10px 8px 16px rgb(255 255 255 / 0.34), inset -10px -10px 15px rgb(151 60 72 / 0.16);
}

.character-head::before {
  content: "";
  position: absolute;
  top: -16%;
  left: -7%;
  width: 114%;
  height: 42%;
  border-radius: 50% 50% 35% 35%;
  background: var(--character-hair);
  box-shadow: 0 7px 0 rgb(255 255 255 / 0.1);
}

.character-head b {
  top: 51%;
  width: 11%;
  height: 11%;
  border-radius: 50%;
  background: #242444;
  box-shadow: 0 1px 0 #fff;
}

.character-head b:first-child { left: 27%; }
.character-head b:nth-child(2) { right: 27%; }

.character-head em {
  left: 42%;
  bottom: 22%;
  width: 18%;
  height: 8%;
  border-bottom: 3px solid #8e4661;
  border-radius: 0 0 50% 50%;
}

.character-arm {
  z-index: 1;
  top: 47%;
  width: 20%;
  height: 38%;
  border-radius: 99px;
  background: linear-gradient(100deg, #ffd0b4, var(--character-skin));
  box-shadow: inset 4px 3px 8px rgb(255 255 255 / 0.22);
}

.arm-left { left: 15%; transform: rotate(31deg); }
.arm-right { right: 13%; transform: rotate(-34deg); }

.character-prop {
  z-index: 4;
  right: -7%;
  top: 34%;
  width: 31%;
  aspect-ratio: 1;
  display: grid !important;
  place-items: center;
  border: 5px solid rgb(255 255 255 / 0.44);
  border-radius: 35% 50% 45% 48%;
  background: #fff5a6;
  color: #34305d;
  box-shadow: inset 6px 5px 12px rgb(255 255 255 / 0.5), 0 10px 0 rgb(42 37 101 / 0.1);
  font-family: "Wix Madefor Display", sans-serif;
  font-size: clamp(24px, 3.3vw, 42px);
  font-style: normal;
  font-weight: 700;
  transform: rotate(12deg) translateZ(30px);
}

.speed-character { --character-shirt: #5261cf; --character-hair: #1c315d; --character-skin: #f2a685; }
.uptime-character { --character-shirt: #348e70; --character-hair: #2b3c33; --character-skin: #c87959; transform: perspective(800px) rotateY(12deg) rotateZ(3deg); }
.support-character { --character-shirt: #d84a84; --character-hair: #6a315e; --character-skin: #a66351; }
.evolve-character { --character-shirt: #e36c39; --character-hair: #653c31; --character-skin: #f2b47d; transform: perspective(800px) rotateY(8deg) rotateZ(-1deg); }
.uptime-character .character-prop { background: #d5ffbb; }
.support-character .character-prop { background: #e2d8ff; }
.evolve-character .character-prop { background: #aee7ff; }

.hosting-cta {
  position: absolute;
  z-index: 5;
  right: max(20px, calc((100vw - 1320px) / 2 + 32px));
  bottom: clamp(20px, 4vh, 36px);
}

.hosting-feature-card[aria-current="true"] .hosting-character {
  animation: hosting-character-float 3.8s ease-in-out infinite;
}

.hosting-feature-card[aria-current="true"] .character-prop { animation: hosting-prop-pop 2.2s ease-in-out infinite; }

@keyframes hosting-character-float {
  0%, 100% { margin-bottom: 0; }
  50% { margin-bottom: 12px; }
}

@keyframes hosting-prop-pop {
  0%, 100% { scale: 1; }
  50% { scale: 1.1; }
}

@media (max-height: 760px) and (min-width: 861px) {
  .hosting-scroll-sticky { padding-top: 24px; }
  .hosting-work-heading { margin-bottom: 18px; }
  .hosting-work-heading h2 { font-size: 48px; }
  .hosting-feature-card { height: min(365px, 43vh); }
  .hosting-card-copy h3 { font-size: 34px; }
  .hosting-card-copy > span { font-size: 12px; }
}

@media (max-width: 860px) {
  .hosting-section { height: auto !important; padding: 90px 0 118px; }
  .hosting-scroll-sticky { position: static; height: auto; overflow: visible; padding: 0; }
  .hosting-work-heading { grid-template-columns: 1fr; gap: 23px; margin-bottom: 42px; }
  .hosting-work-heading h2 { max-width: 620px; font-size: 44px; line-height: 1.02; }
  .hosting-work-intro { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 18px; }
  .hosting-carousel-toolbar { margin-top: 0; }
  .hosting-carousel-toolbar p { display: none; }
  .hosting-carousel-track { width: 100%; gap: 16px; overflow-x: auto; padding-inline: 20px; scroll-padding-inline: 20px; scroll-snap-type: inline mandatory; transform: none !important; will-change: auto; }
  .hosting-feature-card { width: min(82vw, 600px); height: 390px; flex-basis: min(82vw, 600px); scroll-snap-align: start; }
  .hosting-cta { position: static; display: flex; width: fit-content; margin: 30px 20px 0; }
}

@media (max-width: 520px) {
  .hosting-work-intro { grid-template-columns: 1fr; }
  .hosting-carousel-toolbar { margin-top: 2px; }
  .hosting-feature-card { width: 84vw; height: 435px; flex-basis: 84vw; border-radius: 14px; }
  .hosting-card-copy { width: auto; right: 21px; bottom: 24px; }
  .hosting-card-copy h3 { max-width: 290px; font-size: 34px; }
  .hosting-card-copy > span { max-width: 310px; font-size: 12px; }
  .hosting-character { right: 5%; bottom: 38%; width: 180px; height: 210px; }
  .hosting-card-top b { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .hosting-section { height: auto !important; padding: 100px 0 112px; }
  .hosting-scroll-sticky { position: static; height: auto; overflow: visible; padding: 0; }
  .hosting-carousel-track { width: 100%; overflow-x: auto; scroll-behavior: auto; scroll-snap-type: inline mandatory; transform: none !important; will-change: auto; }
  .hosting-feature-card[aria-current="true"] .hosting-character,
  .hosting-feature-card[aria-current="true"] .character-prop { animation: none; }
  .hosting-carousel-toolbar button { transition: none; }
}

/* Hosting carousel v2: fixed 30/70 split with generated 3D props */
.hosting-scroll-sticky {
  display: grid;
  padding-top: 0;
}

.hosting-layout {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(30px, 4.2vw, 68px);
}

.hosting-offer-rail {
  position: relative;
  z-index: 4;
  align-self: center;
}

.hosting-offer-rail .eyebrow {
  margin: 0 0 14px;
  color: #4e5ab2;
}

.hosting-offer-rail h2 {
  max-width: 390px;
  margin: 0;
  color: #15172f;
  font-size: clamp(44px, 4.35vw, 64px);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.96;
  text-wrap: balance;
}

.hosting-offer-rail > p:not(.eyebrow) {
  max-width: 370px;
  margin: 24px 0 0;
  color: #474a5e;
  font-size: 15px;
  line-height: 1.55;
}

.hosting-offer-rail > p strong { color: #252f8d; }

.hosting-offer-rail .hosting-carousel-toolbar { margin-top: 26px; }

.hosting-offer-rail .hosting-cta {
  position: static;
  width: fit-content;
  margin-top: 24px;
}

.hosting-card-stage {
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-inline: contain;
  scroll-behavior: auto;
  scroll-snap-type: none;
  scrollbar-color: rgb(57 61 125 / 0.38) transparent;
  scrollbar-width: thin;
}

.hosting-card-stage::-webkit-scrollbar { height: 7px; }
.hosting-card-stage::-webkit-scrollbar-track { background: transparent; }
.hosting-card-stage::-webkit-scrollbar-thumb { border-radius: 99px; background: rgb(57 61 125 / 0.32); }
.hosting-card-stage:focus-visible { outline: 3px solid #566cff; outline-offset: 6px; }

.hosting-carousel-track {
  width: max-content;
  gap: clamp(16px, 1.7vw, 24px);
  padding: 12px 32vw 18px 0;
  transform: none;
  will-change: auto;
}

.hosting-feature-card {
  width: clamp(440px, 45vw, 640px);
  height: clamp(315px, 40vh, 405px);
  flex: 0 0 clamp(440px, 45vw, 640px);
  scroll-snap-align: start;
  border-radius: 18px;
  padding: clamp(22px, 2.2vw, 30px);
}

.hosting-card-copy {
  bottom: clamp(24px, 2.7vw, 34px);
  left: clamp(22px, 2.2vw, 30px);
  width: 55%;
}

.hosting-card-copy h3 {
  max-width: 330px;
  font-size: clamp(29px, 2.65vw, 39px);
}

.hosting-card-copy > span {
  max-width: 320px;
  font-size: 12px;
}

.hosting-card-prop {
  position: absolute;
  z-index: 2;
  top: 48%;
  right: 1.5%;
  width: 47%;
  height: auto;
  transform: translateY(-50%) rotate(2deg) scale(0.96);
  transform-origin: center;
  filter: drop-shadow(0 24px 18px rgb(35 39 99 / 0.2));
  pointer-events: none;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 700ms ease;
}

.hosting-uptime-card .hosting-card-prop { transform: translateY(-50%) rotate(-3deg) scale(0.94); }
.hosting-support-card .hosting-card-prop { right: 0; width: 49%; transform: translateY(-50%) rotate(2deg) scale(0.93); }
.hosting-evolve-card .hosting-card-prop { transform: translateY(-50%) rotate(-2deg) scale(0.94); }

.hosting-feature-card[aria-current="true"] .hosting-card-prop {
  animation: hosting-prop-float-v2 4.2s ease-in-out infinite;
  filter: drop-shadow(0 30px 22px rgb(35 39 99 / 0.24));
}

@keyframes hosting-prop-float-v2 {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@media (max-height: 760px) and (min-width: 861px) {
  .hosting-offer-rail h2 { font-size: 46px; }
  .hosting-offer-rail > p:not(.eyebrow) { margin-top: 16px; font-size: 13px; }
  .hosting-offer-rail .hosting-carousel-toolbar { margin-top: 18px; }
  .hosting-offer-rail .hosting-cta { margin-top: 16px; }
  .hosting-feature-card { height: min(365px, 48vh); }
}

@media (max-width: 860px) {
  .hosting-scroll-sticky { display: block; }
  .hosting-layout { height: auto; grid-template-columns: 1fr; gap: 42px; }
  .hosting-offer-rail h2 { max-width: 620px; font-size: 44px; line-height: 1.02; }
  .hosting-offer-rail > p:not(.eyebrow) { max-width: 610px; }
  .hosting-offer-rail .hosting-carousel-toolbar { margin-top: 22px; }
  .hosting-offer-rail .hosting-cta { margin: 24px 0 0; }
  .hosting-card-stage { width: calc(100vw - 20px); scroll-snap-type: inline mandatory; }
  .hosting-carousel-track { width: max-content; overflow: visible; padding: 8px 18vw 20px 0; }
  .hosting-feature-card { width: min(78vw, 460px); height: 405px; flex-basis: min(78vw, 460px); }
  .hosting-card-copy { width: 58%; }
  .hosting-card-prop { width: 48%; right: 0; }
}

@media (max-width: 520px) {
  .hosting-feature-card { width: 80vw; height: 435px; flex-basis: 80vw; }
  .hosting-card-copy { width: auto; right: 20px; }
  .hosting-card-copy h3 { max-width: 280px; font-size: 31px; }
  .hosting-card-copy > span { max-width: 305px; }
  .hosting-card-prop,
  .hosting-support-card .hosting-card-prop { top: 35%; right: 3%; width: 58%; }
}

@media (prefers-reduced-motion: reduce) {
  .hosting-card-stage { scroll-behavior: auto; }
  .hosting-feature-card[aria-current="true"] .hosting-card-prop { animation: none; }
}
