:root {
  --bg: #000000;
  --bg-soft: #0b0c0f;
  --bg-card: #111317;
  --bg-card-2: #15181e;
  --line: #23262d;
  --line-soft: #1a1d23;
  --txt: #ffffff;
  --txt-2: #cdd3db;
  --txt-3: #959ba6;
  --red: #ff2f2f;
  --red-deep: #e01010;
  --red-soft: #ff5a5a;
  --blue: #4d8dff;
  --blue-soft: #7db0ff;
  --blue-deep: #2563eb;
  --mint: #34e0c2;
  --mint-soft: #6cf0d8;
  --green: #37e08a;
  --amber: #ffb02e;
  --purple: #b06bff;
  --pink: #ff6bd0;
  --radius: 20px;
  --radius-lg: 30px;
  --maxw: 1200px;
  --sp-section: clamp(64px, 11vw, 128px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  font-family: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont, system-ui, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--txt);
  font-size: 18px;
  line-height: 1.68;
  letter-spacing: -.012em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "tnum";
  position: relative;
}

@media(max-width:480px) {
  body {
    font-size: 16.5px;
  }
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .45;
  background-image: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000, transparent 72%);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(77, 141, 255, .10), transparent 60%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s;
  will-change: left, top;
}

@media(hover:hover) and (pointer:fine) {
  .cursor-glow {
    opacity: 1;
  }
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--blue), var(--blue-soft));
  box-shadow: 0 0 14px rgba(77, 141, 255, .7);
  transition: width .1s linear;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
  will-change: transform, opacity;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.stagger>* {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease-out), transform .8s var(--ease-out);
}

.stagger.in>* {
  opacity: 1;
  transform: none;
}

.stagger.in>*:nth-child(1) {
  transition-delay: .05s
}

.stagger.in>*:nth-child(2) {
  transition-delay: .13s
}

.stagger.in>*:nth-child(3) {
  transition-delay: .21s
}

.stagger.in>*:nth-child(4) {
  transition-delay: .29s
}

.stagger.in>*:nth-child(5) {
  transition-delay: .37s
}

.stagger.in>*:nth-child(6) {
  transition-delay: .45s
}

@media(prefers-reduced-motion:reduce) {

  .reveal,
  .stagger>* {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .cursor-glow,
  .bg-grid {
    display: none;
  }
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -130%;
  width: 60%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .36), transparent);
  transform: skewX(-22deg);
  animation: sweep 4.5s ease-in-out infinite;
}

.shine:hover::after {
  animation: sweep 1s ease;
}

@keyframes sweep {
  0% {
    left: -130%;
  }

  45% {
    left: 140%;
  }

  100% {
    left: 140%;
  }
}

/* ===== blue neon XON logo ===== */
.xlogo {
  height: 30px;
  width: auto;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 0 6px rgba(77, 141, 255, .35));
}

.xlogo text {
  font-family: "Arial Black", "Arial Narrow", Arial, "Pretendard", sans-serif;
  font-weight: 900;
  font-size: 96px;
  letter-spacing: 6px;
  fill: none;
}

.xlogo-glow {
  stroke: #3f8bff;
  stroke-width: 9;
  opacity: .45;
}

.xlogo-core {
  stroke: #e6f2ff;
  stroke-width: 2.6;
}

/* ===== custom neon cursor (X-ON UX) ===== */
.cur-dot,
.cur-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: left, top, width, height;
}

.cur-dot {
  width: 7px;
  height: 7px;
  background: var(--blue-soft);
  box-shadow: 0 0 10px rgba(77, 141, 255, .95);
  transition: width .2s, height .2s, background .2s;
}

.cur-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(77, 141, 255, .7);
  box-shadow: 0 0 14px rgba(77, 141, 255, .45), inset 0 0 8px rgba(77, 141, 255, .25);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s, background .25s;
}

.cur-ring.hot {
  width: 56px;
  height: 56px;
  border-color: var(--blue-soft);
  background: rgba(77, 141, 255, .08);
}

.cur-dot.hot {
  background: #fff;
  width: 9px;
  height: 9px;
}

body.cur-on,
body.cur-on a,
body.cur-on button,
body.cur-on .menu-btn {
  cursor: none;
}

@media(hover:none), (pointer:coarse) {

  .cur-dot,
  .cur-ring {
    display: none !important;
  }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: rgba(6, 7, 9, .55);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: transform .45s var(--ease), background .3s, border-color .3s;
}

.nav.solid {
  background: rgba(6, 7, 9, .92);
  border-color: var(--line-soft);
}

.nav.hide {
  transform: translateY(-100%);
}

.nav-in {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo .xlogo {
  height: 30px;
  transition: transform .3s var(--ease);
}

.logo:hover .xlogo {
  transform: scale(1.05);
}

@media(max-width:600px) {
  .logo .xlogo {
    height: 28px;
  }
}

.menu-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .02);
  transition: border-color .2s, background .2s;
}

.menu-btn:hover {
  border-color: #3a3f49;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
}

.menu-btn span::before {
  top: -6px;
}

.menu-btn span::after {
  top: 6px;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(0, 0, 0, .97);
  display: flex;
  flex-direction: column;
  padding: 90px 30px 40px;
  gap: 4px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
}

.drawer.open {
  transform: none;
}

.drawer a {
  font-size: 25px;
  font-weight: 800;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color .2s, padding-left .2s;
}

.drawer a:hover,
.drawer a.cur {
  color: var(--blue-soft);
  padding-left: 8px;
}

.drawer a small {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--txt-3);
  margin-top: 3px;
}

.drawer .close {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 34px;
  font-weight: 300;
}

/* ===== HERO (main video) ===== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 88px 20px 24px;
}

.hero .eyebrow {
  font-size: clamp(11px, 3vw, 14px);
  font-weight: 800;
  letter-spacing: .28em;
  color: var(--blue-soft);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 1s .2s both;
}

.hero-vid {
  position: relative;
  width: clamp(300px, 86vw, 680px);
  aspect-ratio: 1/1;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(77, 141, 255, .28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .04), 0 30px 90px -30px rgba(77, 141, 255, .65), inset 0 0 60px rgba(77, 141, 255, .08);
  opacity: 0;
  animation: popIn 1.2s .35s var(--ease-out) both;
}

.hero-vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-vid::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  box-shadow: inset 0 0 34px rgba(77, 141, 255, .22);
  pointer-events: none;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(.86);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero .htag {
  margin-top: 22px;
  font-size: clamp(22px, 6.2vw, 40px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.28;
  opacity: 0;
  animation: fadeUp 1s 1.1s both;
}

.hero .htag .accent {
  color: var(--blue);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ===== generic section ===== */
.section {
  padding: var(--sp-section) 0;
  position: relative;
}

.eyebrow-s {
  display: inline-block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--blue-soft);
  margin-bottom: 16px;
}

.h-sec {
  font-size: clamp(30px, 7.4vw, 52px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.03em;
}

.h-sec .x {
  color: var(--blue);
}

.h-sec .accent {
  color: var(--red);
}

.lede {
  color: var(--txt-2);
  font-size: clamp(16px, 4vw, 20px);
  line-height: 1.7;
  margin-top: 18px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 26px;
  border-radius: 14px;
  transition: transform .2s var(--ease), box-shadow .25s;
}

.cta-primary {
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 16px 38px -12px rgba(77, 141, 255, .7);
}

.cta-primary:hover {
  transform: scale(1.02);
}

.cta-ghost {
  background: var(--bg-card);
  color: #fff;
  border: 1px solid var(--line);
}

.cta-ghost:hover {
  border-color: #3a3f49;
}

/* problem */
.prob-grid {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

@media(min-width:860px) {
  .prob-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* X meaning */
.xmean {
  position: relative;
}

.xmean .ghostx {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: min(70vw, 560px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(77, 141, 255, .13);
  text-stroke: 2px rgba(77, 141, 255, .13);
  z-index: 0;
  pointer-events: none;
}

.xmean .wrap {
  position: relative;
  z-index: 1;
}

.xmean-head {
  text-align: center;
}

.xmean-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  margin-top: 34px;
  text-align: left;
}

.xmean-defs {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.4vw, 22px);
}

.xmean-def {
  position: relative;
  padding-left: 14px;
  border-left: 4px solid var(--blue);
}

.xmean-def__title {
  font-size: clamp(14px, 1.85vw, 17px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--blue);
  letter-spacing: -.01em;
}

.xmean-def__x {
  font-weight: 900;
}

.xmean-def__desc {
  margin-top: 4px;
  font-size: clamp(12px, 1.55vw, 14px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--txt);
}

.xmean-domains {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  --xmean-gap: clamp(10px, 1.8vw, 14px);
}

.xmean-hub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1.5px solid rgba(77, 141, 255, .55);
  border-radius: 999px;
  background: rgba(77, 141, 255, .08);
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 800;
  color: var(--txt);
  letter-spacing: -.01em;
  white-space: nowrap;
}

.xmean-tree {
  position: relative;
  width: 100%;
  height: 52px;
  margin: 2px auto 0;
}

.xmean-tree__stem,
.xmean-tree__bar,
.xmean-tree__drop {
  position: absolute;
  background: rgba(255, 255, 255, .22);
}

.xmean-tree__stem {
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 26px;
  transform: translateX(-50%);
}

.xmean-tree__bar {
  left: calc(25% - var(--xmean-gap) / 4);
  width: calc(50% + var(--xmean-gap) / 2);
  top: 26px;
  height: 1.5px;
}

.xmean-tree__drop {
  top: 26px;
  width: 1.5px;
  height: 26px;
}

.xmean-tree__drop--l {
  left: calc(25% - var(--xmean-gap) / 4);
  transform: translateX(-50%);
}

.xmean-tree__drop--r {
  left: calc(75% + var(--xmean-gap) / 4);
  transform: translateX(-50%);
}

.xmean-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--xmean-gap);
}

.xmean-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: clamp(14px, 2.2vw, 18px) clamp(12px, 1.8vw, 16px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(17, 19, 23, .92), rgba(10, 11, 15, .96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.xmean-card__icon {
  flex-shrink: 0;
  width: clamp(42px, 5vw, 48px);
  height: clamp(42px, 5vw, 48px);
  display: grid;
  place-items: center;
  color: var(--blue);
}

.xmean-card__icon svg {
  width: clamp(24px, 3vw, 28px);
  height: clamp(24px, 3vw, 28px);
}

.xmean-card__body {
  min-width: 0;
}

.xmean-card__title {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue);
}

.xmean-card__sub {
  margin-top: 8px;
  font-size: clamp(13px, 1.7vw, 15px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--blue);
}

@media(max-width:860px) {
  .xmean-board {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 28px;
    align-items: stretch;
  }

  .xmean-defs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .xmean-tree {
    height: 44px;
  }

  .xmean-tree__stem {
    height: 22px;
  }

  .xmean-tree__bar {
    top: 22px;
  }

  .xmean-tree__drop {
    top: 22px;
    height: 22px;
  }
}

@media(max-width:480px) {
  .xmean-cards {
    gap: 8px;
  }

  .xmean-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 14px;
  }

  .xmean-card__icon {
    width: 36px;
    height: 36px;
  }

  .xmean-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .xmean-card__title {
    padding-bottom: 6px;
    border-bottom-width: 1.5px;
  }

  .xmean-card__sub {
    margin-top: 6px;
  }
}

/* partners marquee (seamless, CI 로고) */
.pmarquee {
  margin-top: 38px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ptrack {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: flowx 32s linear infinite;
}

.pmarquee:hover .ptrack {
  animation-play-state: paused;
}

@keyframes flowx {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.plogo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 18px;
  padding: 24px 40px;
  min-width: 220px;
  min-height: 118px;
  box-shadow: 0 14px 36px -18px rgba(0, 0, 0, .55);
}

.plogo.dark {
  background: #0a0c12;
  border: 1px solid #20283a;
}

.plogo img {
  height: 62px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
}

/* business swiper */
.swipe-head {
  text-align: center;
  margin-bottom: 26px;
}

.swiper {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 22px 24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.bu-swiper {
  overflow: hidden;
  width: 100%;
  padding: 6px 22px 24px;
}

#buSwiper.bu-swiper,
#buSwiper.bu-swiper.swiper {
  display: block;
  flex-wrap: nowrap;
  gap: 0;
  overflow: hidden;
  overflow-x: hidden;
  scroll-snap-type: none;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: auto;
  touch-action: pan-y;
  cursor: default;
}

.bu-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.bu-swiper .bu-img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 759px) {
  #business .bu-swiper {
    padding: 6px 0 24px 22px;
  }
}

@media (min-width: 1024px) {
  .bu-swiper {
    padding: 6px clamp(28px, 5vw, 80px) 24px;
  }
}

.bu-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 24px;
  border: none;
  display: block;
}

/* section image replacements */
.prob-img {
  width: 100%;
  border-radius: 18px;
  display: block;
  border: none;
}

.diff-img {
  width: 100%;
  border-radius: 18px;
  display: block;
  border: none;
}

.proc-imgs {
  max-width: 1040px;
  margin: 40px auto 0;
  display: grid;
  gap: 16px;
}

.proc-img {
  width: 100%;
  border-radius: 16px;
  display: block;
  border: none;
}

.sec-img {
  width: 100%;
  max-width: 1300px;
  margin: 30px auto 0;
  border-radius: 20px;
  display: block;
  border: none;
}

/* WHY WITH X-ON — expect images */
.expect-head {
  text-align: center;
}

.expect-swiper {
  margin-top: 30px;
  overflow: hidden;
  width: 100%;
}

.expect-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  box-sizing: border-box;
}

.expect-img {
  height: 600px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  border: none;
}

@media (max-width: 859px) {
  #why-with .wrap {
    padding-right: 0;
  }

  .expect-swiper {
    padding-right: 22px;
  }
}

@media (min-width: 860px) {
  .expect-swiper {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }
}

.cta-img {
  width: 100%;
  max-width: 268px;
  border-radius: 20px;
  display: block;
  border: none;
}

.team-img {
  width: 100%;
  height: auto;
  aspect-ratio: 643 / 490;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  display: block;
  border: none;
  background: #0a0b0f;
}

#teamSwiper .team-img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* ===== limited banner (HTML · 배경=페이지 검정·중앙정렬·본문 1.3x) ===== */
.limit2 {
  max-width: 1080px;
  margin: 42px auto 0;
  background: transparent;
  border: 1px solid rgba(255, 176, 46, .42);
  border-radius: 24px;
  padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 48px);
  text-align: center;
}

.limit2 .l2tri {
  font-size: 54px;
  line-height: 1;
  filter: drop-shadow(0 0 16px rgba(255, 176, 46, .6));
}

.limit2 .l2title {
  font-size: clamp(30px, 7vw, 46px);
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -.02em;
  margin: 14px 0 18px;
}

.limit2 .l2desc {
  font-size: clamp(17px, 4.2vw, 22px);
  color: var(--txt-2);
  line-height: 1.78;
}

.limit2 .l2div {
  width: 130px;
  height: 1px;
  background: rgba(255, 176, 46, .4);
  margin: 30px auto;
}

.limit2 .l2foot {
  font-size: clamp(16px, 4vw, 21px);
  color: var(--txt-3);
  line-height: 1.7;
}

.limit2 .l2foot b {
  display: inline-block;
  margin-top: 6px;
  color: var(--amber);
}

/* differentiators */
.diff-grid {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

@media(min-width:860px) {
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 4D process */
@media(max-width:600px) {
  .proc-imgs {
    gap: 12px;
  }
}

/* why-with (benefits) */
.bene-grid {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

@media(min-width:900px) {
  .bene-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* team swiper */
#team {
  margin-bottom: 0;
}

#teamSwiper {
  display: flex;
  gap: clamp(12px, 2vw, 18px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  margin: 42px 0 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 8px clamp(20px, 4vw, 48px) 26px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  cursor: grab;
}

#teamSwiper.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

#teamSwiper::-webkit-scrollbar {
  display: none;
}

#teamSwiper .slide {
  scroll-snap-align: start;
  flex: 0 0 min(92%, 520px);
  max-width: 520px;
  min-width: 0;
}

@media(min-width:640px) {
  #teamSwiper .slide {
    flex: 0 0 min(58%, 560px);
    max-width: 560px;
  }
}

@media(min-width:1024px) {
  #teamSwiper .slide {
    flex: 0 0 min(36%, 580px);
    max-width: 580px;
  }
}

#team .swiper-wrap {
  position: relative;
  max-width: 100%;
  overflow-x: clip;
}

#team .swiper-wrap:not(.can-scroll) #teamSwiper {
  justify-content: center;
}

#team .swiper-wrap:not(.can-scroll) #teamSwiper .slide {
  scroll-snap-align: center;
}

#team .swiper-arrow {
  display: none;
}

@media(min-width:1024px) {
  #team .swiper-wrap.can-scroll .swiper-arrow {
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, .82);
    cursor: pointer;
    opacity: .72;
    transition: opacity .25s var(--ease), background .2s, border-color .2s, transform .2s var(--ease);
  }

  #team .swiper-wrap.can-scroll .swiper-arrow:hover {
    opacity: 1;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .28);
  }

  #team .swiper-wrap.can-scroll .swiper-arrow:active {
    transform: translateY(-50%) scale(.94);
  }

  #team .swiper-prev {
    left: clamp(8px, 2vw, 14px);
  }

  #team .swiper-next {
    right: clamp(8px, 2vw, 14px);
  }
}

/* CTA diagnostics */
.cta-sec {
  text-align: center;
}

.cta-lead {
  max-width: 600px;
  margin: 14px auto 0;
  color: var(--txt-2);
  font-size: 16px;
}

.cta-lead b {
  color: #fff;
}

.diag-grid {
  display: grid;
  gap: 20px;
  margin: 44px auto 0;
  max-width: 1180px;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 820px) {
  .diag-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

.diag-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  color: #fff;
  background: rgba(8, 12, 20, 0.92);
  border: 1px solid rgba(0, 196, 255, 0.32);
  box-shadow:
    0 0 28px rgba(0, 174, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.diag-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 220, 255, 0.5);
  box-shadow:
    0 12px 40px rgba(0, 174, 255, 0.2),
    0 0 32px rgba(0, 174, 255, 0.16);
}

.diag-card__bg {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  opacity: 0.95;
}

.diag-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.28) 32%, rgba(8, 12, 20, 0.9) 52%, rgba(8, 12, 20, 0.98) 100%);
  pointer-events: none;
}

.diag-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 118px 18px 18px;
}

.diag-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.diag-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #7ee8ff;
  background: rgba(0, 174, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.35);
  box-shadow: 0 0 18px rgba(0, 174, 255, 0.25);
}

.diag-card__icon svg {
  width: 20px;
  height: 20px;
}

.diag-card__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
}

.diag-card__title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.diag-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 12px;
}

.diag-card__tags {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.diag-card__tags li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.diag-card__tags svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: #5edfff;
  opacity: 0.9;
}

.diag-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 210, 255, 0.55);
  box-shadow: 0 0 18px rgba(0, 174, 255, 0.22);
}

.diag-card__cta svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #7ee8ff;
}

@media (max-width: 819px) {
  .diag-card {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }

  .diag-card__bg {
    height: 180px;
  }

  .diag-card__content {
    padding-top: 128px;
  }
}

.drawer .legal-link {
  font-size: 25px;
  font-weight: 800;
  padding: 17px 0;
  width: 100%;
  border-bottom: 1px solid var(--line-soft);
  color: var(--txt);
  text-align: left;
  transition: color .2s, padding-left .2s;
}

.drawer .legal-link:hover {
  color: var(--blue-soft);
  padding-left: 8px;
}