:root {
  --blue: #0052ff;
  --blue-lt: #4080ff;
  --blue-glow: rgba(0, 82, 255, 0.18);
  --blue-dim: rgba(0, 82, 255, 0.07);
  --green: #10b981;
  --green-dim: rgba(16, 185, 129, 0.1);
  --red: #ef4444;
  --red-dim: rgba(239, 68, 68, 0.07);
  --purple: #a855f7;
  --bg: #f4f6fb;
  --white: #fff;
  --dark: #080a12;
  --dark2: #0e1120;
  --dark3: #161929;
  --dark4: #1e2236;
  --text: #0d1021;
  --text2: #3d4460;
  --muted: #8a90a8;
  --border: rgba(0, 0, 0, 0.065);
  --border-d: rgba(255, 255, 255, 0.07);
  --s1: 0 1px 4px rgba(0, 0, 0, 0.05), 0 0 1px rgba(0, 0, 0, 0.04);
  --s2: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.05);
  --s3: 0 16px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.07);
  --s4: 0 32px 80px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.1);
  --sb: 0 8px 28px rgba(0, 82, 255, 0.28);
  --sg: 0 6px 20px rgba(16, 185, 129, 0.32);
  --r8: 8px;
  --r12: 12px;
  --r18: 18px;
  --r24: 24px;
  --r32: 32px;
  --fd: 'Bricolage Grotesque', sans-serif;
  --fb: 'Plus Jakarta Sans', sans-serif;
  --fm: 'JetBrains Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 45% at 5% 0%, rgba(0, 82, 255, 0.055) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 95% 95%, rgba(16, 185, 129, 0.045) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(0, 82, 255, 0.022) 0%, transparent 60%);
  pointer-events: none;
}

/* ═══════════════════ NAV ════════════════════════════════ */

/* ═══════════════════ PAGE ═══════════════════════════════ */
.page {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 36px 100px;
}

/* ═══════════════════ HEADER ═════════════════════════════ */
.ph {
  padding: 20px 0 0px;
  text-align: center;
  position: relative;
}

.ph::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 260px;
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.065) 0%, transparent 65%);
  pointer-events: none;
}

.ph-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid rgba(0, 82, 255, 0.14);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: var(--s1);
}

.ph-dot {
  width: 22px;
  height: 22px;
  background: var(--blue-dim);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.ph-dot::after {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.7);
    opacity: 0.5;
  }
}

.ph .h1 {
  font-family: var(--fd);
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 22px;
}

.ph .h1 .ac {
  background: linear-gradient(125deg, var(--blue) 0%, #5599ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ph .h1 .it {
  font-style: italic;
  background: linear-gradient(125deg, var(--blue) 0%, #5599ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ph p {
  font-size: 17px;
  font-weight: 400;
  color: var(--text2);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

/* stat strip */
.ss {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r24);
  box-shadow: var(--s2);
  overflow: hidden;
}

.ss-i {
  padding: 18px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
  min-width: 140px;
}

.ss-i:last-child {
  border-right: none;
}

.ss-v {
  font-family: var(--fm);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.ss-v .u {
  color: var(--blue);
  font-weight: 600;
}

.ss-l {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ═══════════════════ FILTERS ════════════════════════════ */
.fb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 52px 0 44px;
}

.fp {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text2);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: var(--s1);
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.fp:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-dim);
}

.fp.on {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: var(--sb);
  font-weight: 600;
}

/* ═══════════════════ BENTO ══════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 76px;
  gap: 14px;
}

.cw {
  grid-column: span 8;
  grid-row: span 5;
}

.ct {
  grid-column: span 4;
  grid-row: span 6;
}

.csq {
  grid-column: span 4;
  grid-row: span 5;
}

.ch {
  grid-column: span 6;
  grid-row: span 4;
}

.c3 {
  grid-column: span 4;
  grid-row: span 4;
}

.cw2 {
  grid-column: span 8;
  grid-row: span 4;
}

/* ═══════════════════ CARD ═══════════════════════════════ */
.pc {
  position: relative;
  border-radius: var(--r24);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--s2);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  isolation: isolate;
}

.pc:hover {
  box-shadow: var(--s4);
  transform: translateY(-4px);
}

.pc-vis {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pc-ov {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.15) 0%, rgba(8, 10, 18, 0.82) 65%, rgba(8, 10, 18, 0.97) 100%);
  transition: background 0.3s;
}

.pc:hover .pc-ov {
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.55) 0%, rgba(8, 10, 18, 0.92) 65%, rgba(8, 10, 18, 0.99) 100%);
}

.pc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: var(--green);
  color: #fff;
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: var(--sg);
  letter-spacing: 0.04em;
}

.pc-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pc-cnt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
  z-index: 2;
}

.pc-t {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
}

.pc-d {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-cta {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.28s;
}

.pc:hover .pc-cta {
  opacity: 1;
}

.pc-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r12);
  padding: 13px 26px;
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 82, 255, 0.45);
  transform: translateY(10px) scale(0.95);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: -0.01em;
  cursor: pointer;
}

.pc:hover .pc-btn {
  transform: translateY(0) scale(1);
}

.pc-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  flex-shrink: 0;
}

/* ═══════════════════ CARD VISUALS ═══════════════════════ */
/* 1 Elzgo */
.v1 {
  background: linear-gradient(145deg, #060d20 0%, #0a1535 50%, #071228 100%);
}

.v1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}

.v1::after {
  content: '';
  position: absolute;
  bottom: 34%;
  left: 6%;
  right: 6%;
  height: 58%;
  background: linear-gradient(to top, rgba(0, 82, 255, 0.17), transparent);
  clip-path: polygon(
    0% 100%,
    6% 82%,
    14% 76%,
    23% 62%,
    34% 52%,
    44% 36%,
    56% 28%,
    66% 18%,
    76% 10%,
    88% 4%,
    100% 0%,
    100% 100%
  );
}

.v1 .cl {
  position: absolute;
  bottom: calc(34% + 1px);
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  opacity: 0.85;
}

.v1 .gd {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px var(--blue),
    0 0 16px var(--blue);
  bottom: calc(34% + 48%);
  right: 13%;
  z-index: 2;
}

/* 2 ROAS */
.v2 {
  background: linear-gradient(145deg, #060f0c 0%, #081810 100%);
}

.v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(16, 185, 129, 0.12), transparent 60%);
}

.v2::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 8%;
  right: 8%;
  height: 52%;
  background:
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 0 0/11% 55% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 13% 0/11% 38% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 26% 0/11% 72% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 39% 0/11% 48% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 52% 0/11% 85% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 65% 0/11% 62% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 78% 0/11% 100% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 91% 0/11% 78% no-repeat;
}

/* 3 SaaS */
.v3 {
  background: linear-gradient(145deg, #0c0f20 0%, #090c1c 100%);
}

.v3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

.v3::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(0, 82, 255, 0.18);
  box-shadow:
    0 0 0 24px rgba(0, 82, 255, 0.05),
    0 0 0 52px rgba(0, 82, 255, 0.03),
    inset 0 0 40px rgba(0, 82, 255, 0.08);
}

.v3 .ic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.25), transparent 70%);
  border: 1px solid rgba(0, 82, 255, 0.3);
}

/* 4 Moda */
.v4 {
  background: linear-gradient(145deg, #140820 0%, #0e0618 100%);
}

.v4::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 75% 25%, rgba(168, 85, 247, 0.18), transparent 55%),
    radial-gradient(ellipse 80% 60% at 25% 75%, rgba(0, 82, 255, 0.12), transparent 50%);
}

.v4::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.8), transparent);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

/* 5 MedTech */
.v5 {
  background: linear-gradient(145deg, #080d1a 0%, #0a1124 100%);
}

.v5::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.v5::after {
  content: '';
  position: absolute;
  bottom: 25%;
  left: 8%;
  right: 8%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 82, 255, 0.14), transparent);
  clip-path: polygon(
    0% 100%,
    100% 100%,
    100% 40%,
    75% 40%,
    75% 0%,
    60% 0%,
    60% 60%,
    40% 60%,
    40% 20%,
    25% 20%,
    25% 40%,
    0% 40%
  );
}

/* 6 Cargo */
.v6 {
  background: linear-gradient(145deg, #080e10 0%, #0a1214 100%);
}

.v6::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(16, 185, 129, 0.09), transparent 55%);
}

.v6::after {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 8%;
  right: 8%;
  height: 55%;
  background:
    linear-gradient(to top, rgba(16, 185, 129, 0.28), transparent) 0 0/18% 40% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.28), transparent) 22% 0/18% 75% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.28), transparent) 44% 0/18% 50% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.28), transparent) 66% 0/18% 95% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.28), transparent) 88% 0/18% 62% no-repeat;
}

.pc.hidden {
  display: none;
}

/* ═══════════════════ BACKDROP / MODAL ══════════════════ */
.bd {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 5, 10, 0.72);
  backdrop-filter: blur(14px) saturate(150%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}

.bd.open {
  opacity: 1;
  pointer-events: all;
}

.modal-mo {
  background: var(--white);
  border-radius: var(--r32);
  width: 100%;
  margin-top: 70px;
  max-width: 880px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow:
    var(--s4),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(28px) scale(0.975);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 82, 255, 0.15) transparent;
}

.modal-mo::-webkit-scrollbar {
  width: 4px;
}

.modal-mo::-webkit-scrollbar-thumb {
  background: rgba(0, 82, 255, 0.18);
  border-radius: 4px;
}

.bd.open .modal-mo {
  transform: translateY(0) scale(1);
}

/* modal header */
.modal-mo .mh {
  background: var(--dark2);
  border-radius: var(--r32) var(--r32) 0 0;
  padding: 44px 48px 48px;
  position: relative;
  overflow: hidden;
}

.modal-mo .mh::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.modal-mo .mh::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.modal-mo .m-x {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition:
    background 0.2s,
    transform 0.25s;
}

.modal-mo .m-x:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(90deg);
}

.modal-mo .m-x svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.modal-mo .m-ey {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 82, 255, 0.14);
  border: 1px solid rgba(0, 82, 255, 0.2);
  color: #7aaaff;
  border-radius: 100px;
  padding: 4px 13px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  font-family: var(--fb);
}

.modal-mo .m-ti {
  font-family: var(--fd);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.modal-mo .m-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r12);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.modal-mo .m-mi {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.modal-mo .m-mi:last-child {
  border-right: none;
}

.modal-mo .m-ml {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.modal-mo .m-mv {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* modal body */
.modal-mo .mb {
  padding: 44px 48px;
}

.modal-mo .st {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-mo .st::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ps */
.modal-mo .ps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 44px;
}

.modal-mo .psc {
  border-radius: var(--r12);
  padding: 24px;
  border: 1px solid;
}

.modal-mo .psc.pr {
  background: var(--red-dim);
  border-color: rgba(239, 68, 68, 0.1);
}

.modal-mo .psc.ps2 {
  background: var(--blue-dim);
  border-color: rgba(0, 82, 255, 0.1);
}

.modal-mo .psh {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.modal-mo .psi {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.modal-mo .psi.r {
  background: rgba(239, 68, 68, 0.1);
}

.modal-mo .psi.b {
  background: rgba(0, 82, 255, 0.1);
}

.modal-mo .psl {
  font-family: var(--fd);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.modal-mo .psl.r {
  color: var(--red);
}

.modal-mo .psl.b {
  color: var(--blue);
}

.modal-mo .pli {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.modal-mo .pli li {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  letter-spacing: -0.01em;
}

.modal-mo .pli li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.modal-mo .pr .pli li::before {
  background: var(--red);
}

.modal-mo .ps2 .pli li::before {
  background: var(--blue);
}

/* data */
.dr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 44px;
}

.dc {
  background: var(--dark);
  border-radius: var(--r12);
  padding: 22px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.dc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.dc.db::before {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.dc.dg::before {
  background: linear-gradient(90deg, var(--green), transparent);
}

.dc.dp::before {
  background: linear-gradient(90deg, var(--purple), transparent);
}

.dm {
  font-family: var(--fm);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.dm.b {
  color: #6699ff;
}

.dm.g {
  color: var(--green);
}

.dm.p {
  color: #c084fc;
}

.dl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.bc {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}

.bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: grow 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes grow {
  to {
    transform: scaleY(1);
  }
}

.bar.b {
  background: linear-gradient(to top, var(--blue), #6699ff);
}

.bar.g {
  background: linear-gradient(to top, var(--green), #34d39a);
}

.bar.p {
  background: linear-gradient(to top, var(--purple), #c084fc);
}

/* cta */
.mc {
  background: linear-gradient(135deg, #f5f8ff 0%, #eaefff 100%);
  border: 1px solid rgba(0, 82, 255, 0.1);
  border-radius: var(--r24);
  padding: 38px 40px;
  text-align: center;
}

.mc h3 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.mc p {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 26px;
  letter-spacing: -0.01em;
  line-height: 1.65;
}

.mc-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r12);
  padding: 14px 30px;
  font-family: var(--fb);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: -0.01em;
  box-shadow: var(--sb);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}

.mc-btn:hover {
  background: var(--blue-lt);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 82, 255, 0.38);
}

.mc-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ═══════════════════ RESPONSIVE ═════════════════════════ */
@media (max-width: 860px) {
  .n-links,
  .n-ghost {
    display: none;
  }

  .page {
    padding: 0 16px 64px;
  }

  .cw,
  .ct,
  .csq,
  .ch,
  .c3,
  .cw2 {
    grid-column: span 12;
    grid-row: span 5;
  }

  .mb {
    padding: 22px 20px;
  }

  .mh {
    padding: 28px 22px 32px;
    flex-direction: column;
  }

  .m-ti {
    font-size: 22px;
  }

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

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

  .m-meta {
    grid-template-columns: 1fr 1fr;
  }

  .ss {
    flex-wrap: wrap;
  }

  .ss-i {
    min-width: 120px;
  }
}
