*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #ffffff;
  --s1: #f8fafc;
  --s2: #eff6ff;
  --s3: #f0f9ff;
  --ink: #0a0a14;
  --ink2: #1c1c2a;
  --r: #2563eb;
  --o: #3b82f6;
  --a: #0ea5e9;
  --g: #4f46e5;
  --g2: #6366f1;
  --b: #06b6d4;
  --muted: #475569;
  --muted2: #94a3b8;
  --bd: #e2e8f0;
  --bd2: #f1f5f9;
  --warm-grad: linear-gradient(135deg, #2563eb, #0ea5e9);
  --cool-grad: linear-gradient(135deg, #4f46e5, #06b6d4);
  --tri-grad: linear-gradient(
    120deg,
    #4f46e5 0%,
    #2563eb 35%,
    #0ea5e9 70%,
    #06b6d4 100%
  );
  --violet: #6366f1;
  --violet2: #8b5cf6;
  --glow: rgba(37, 99, 235, 0.35);
  --shadow-blue: rgba(37, 99, 235, 0.12);
  --ink3: #334155;
  --ok: #16a34a;
  --ok2: #22c55e;
  --warn: #f59e0b;
  --warn2: #fbbf24;
  --bad: #ef4444;
  --bad2: #f87171;
  --elev-1: 0 1px 2px rgba(16, 24, 40, 0.04), 0 1px 3px rgba(16, 24, 40, 0.05);
  --elev-2: 0 4px 12px rgba(16, 24, 40, 0.05), 0 2px 4px rgba(16, 24, 40, 0.04);
  --elev-3:
    0 18px 40px rgba(37, 99, 235, 0.1), 0 8px 16px rgba(16, 24, 40, 0.05);
  --elev-4:
    0 32px 72px rgba(37, 99, 235, 0.16), 0 12px 28px rgba(16, 24, 40, 0.08);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", "Noto Sans KR", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─ UTILS ─ */
.gw {
  background: var(--tri-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gw-shift 6s ease infinite;
}
@keyframes gw-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.gc {
  background: var(--cool-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─ PROGRESS ─ */
#prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--warm-grad);
  z-index: 9999;
}

/* ─ NAV ─ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: all 0.3s;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--tri-grad);
  background-size: 160% auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 18px rgba(37, 99, 235, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-logo:hover .nav-logo-mark {
  transform: rotate(-6deg) scale(1.06);
}
.nav-logo-mark svg {
  width: 19px;
  height: 19px;
}
.nav-logo-text {
  font-family: "Plus Jakarta Sans", "Noto Sans KR", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.6px;
  background: var(--warm-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-text b {
  font-weight: 800;
}
.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
  letter-spacing: -0.01em;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links .nh {
  color: var(--ink);
  font-weight: 600;
}
.nav-cta-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-login {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 7px;
  transition: all 0.2s;
}
.nav-login:hover {
  color: var(--ink);
  background: var(--bd2);
}
.nav-cta {
  background: var(--tri-grad);
  background-size: 150% auto;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.28);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.nav-cta:hover {
  transform: translateY(-1px);
  background-position: right center;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.42);
}

/* ─ HERO ─ */
.hero {
  min-height: 100vh;
  padding: 140px 0 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  width: 1040px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse 50% 50% at 50% 50%,
    rgba(37, 99, 235, 0.08),
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
}
.hbc1 {
  width: 760px;
  height: 760px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.14) 0%,
    transparent 66%
  );
  top: -260px;
  right: -180px;
  animation: hbm 13s ease-in-out infinite;
  mix-blend-mode: multiply;
}
.hbc2 {
  width: 680px;
  height: 680px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.12) 0%,
    transparent 66%
  );
  bottom: -180px;
  left: -220px;
  animation: hbm 16s ease-in-out infinite reverse;
  mix-blend-mode: multiply;
}
.hbc3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.1) 0%,
    transparent 66%
  );
  top: 18%;
  left: 54%;
  animation: hbm 15s ease-in-out infinite 2s;
  mix-blend-mode: multiply;
}
.hbc4 {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.08) 0%,
    transparent 66%
  );
  top: 2%;
  left: 16%;
  animation: hbm 18s ease-in-out infinite 1s;
  mix-blend-mode: multiply;
}
@keyframes hbm {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  35% {
    transform: translate(55px, -75px) scale(1.1);
  }
  70% {
    transform: translate(-40px, 50px) scale(0.94);
  }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.022) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(
    ellipse 75% 55% at 50% 42%,
    #000 0%,
    transparent 72%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 75% 55% at 50% 42%,
    #000 0%,
    transparent 72%
  );
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  flex: 1;
}
.hero-inner.hero-centered {
  display: block;
  text-align: center;
  flex: none;
  padding-top: 64px;
  padding-bottom: 96px;
  max-width: 960px;
}
.hero-centered .hero-kicker {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
}
.hero-centered h1.hero-h {
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 1.12;
  letter-spacing: -2.8px;
  margin-bottom: 36px;
}
.hero-centered .hero-desc {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
  font-size: 19px;
  line-height: 1.9;
  margin-bottom: 52px;
}
.hero-centered .hero-btns {
  justify-content: center;
  margin-bottom: 52px;
}
.hero-centered .hero-trust {
  justify-content: center;
  gap: 48px;
}
.nowrap {
  white-space: nowrap;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.06),
    rgba(14, 165, 233, 0.06)
  );
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 40px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.06);
}
.kicker-badge {
  background: var(--tri-grad);
  background-size: 150% auto;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}
.kicker-text {
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
  letter-spacing: 0.02em;
}
h1.hero-h {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 36px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero-scroll-cue {
  margin: 0 48px 8px auto;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  animation: cue-bob 2.2s ease-in-out infinite;
}
.hero-scroll-cue span {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero-scroll-cue-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--muted2);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-cue-mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--muted2);
  border-radius: 2px;
  animation: cue-dot 2.2s ease-in-out infinite;
}
@keyframes cue-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@keyframes cue-dot {
  0% {
    opacity: 1;
    top: 6px;
  }
  60% {
    opacity: 0;
    top: 16px;
  }
  100% {
    opacity: 0;
  }
}
.hero-desc strong {
  color: var(--ink);
  font-weight: 700;
}
.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}
.btn-primary {
  background: var(--tri-grad);
  background-size: 150% auto;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow:
    0 8px 24px rgba(37, 99, 235, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background-position: right center;
  box-shadow:
    0 16px 40px rgba(37, 99, 235, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.btn-primary:hover svg {
  transform: translateX(3px);
}
.btn-secondary {
  border: 1.5px solid var(--bd);
  color: var(--ink);
  padding: 14px 32px;
  border-radius: 9px;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-primary {
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.tp {
  font-size: 12px;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.tp-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--warm-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tp-check svg {
  width: 9px;
  height: 9px;
}

/* hero visual */
.hero-visual {
  position: relative;
}
.hero-screen-wrap {
  position: relative;
  z-index: 2;
}
.hero-screen-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  background: radial-gradient(
    ellipse,
    rgba(37, 99, 235, 0.16) 0%,
    rgba(6, 182, 212, 0.08) 40%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
  animation: glow-pulse 5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
.hero-screen {
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.08),
    0 30px 80px rgba(37, 99, 235, 0.18),
    0 12px 32px rgba(10, 10, 20, 0.1);
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.screen-chrome {
  background: #1e1e2e;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sd {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.sd-r {
  background: #ff5f57;
}
.sd-y {
  background: #febc2e;
}
.sd-g {
  background: #28c840;
}
.screen-url-bar {
  flex: 1;
  max-width: 200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 3px 10px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
  text-align: center;
}
.hero-screen img {
  width: 100%;
  display: block;
}
/* floating cards */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow:
    0 12px 40px rgba(37, 99, 235, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.fc1 {
  bottom: 40px;
  left: 20px;
  animation-delay: 0s;
}
.fc2 {
  top: 80px;
  right: 20px;
  animation-delay: 1.5s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.fc-label {
  font-size: 10px;
  color: var(--muted2);
  font-weight: 600;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.fc-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1;
}
.fc-sub {
  font-size: 11px;
  color: var(--g);
  font-weight: 600;
  margin-top: 2px;
}
.fc-sub-r {
  color: var(--r);
}

/* hero screen bottom */
.hero-screen-bottom {
  background: linear-gradient(
    180deg,
    rgba(249, 115, 22, 0.03) 0%,
    var(--s1) 100%
  );
  margin-top: 64px;
  padding: 48px 0 0;
  width: 100%;
}
.hb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}
/* prob2 — 원래 hero 2단 레이아웃 */
.hero-screen-bottom {
  padding: 80px 0 96px;
}
.prob2-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.prob2-h {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -1.8px;
  margin-bottom: 28px;
}
.prob2-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 400;
}
.prob2-desc strong {
  color: var(--ink);
  font-weight: 700;
}
.prob2-visual {
  position: relative;
}
.prob2-screen {
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.1),
    0 2px 4px rgba(10, 10, 20, 0.04),
    0 12px 24px rgba(37, 99, 235, 0.1),
    0 32px 72px rgba(37, 99, 235, 0.18);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.prob2-visual:hover .prob2-screen {
  transform: translateY(-6px);
}
.prob2-screen img {
  width: 100%;
  display: block;
}
.prob2-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 14px;
  padding: 13px 17px;
  box-shadow:
    0 12px 40px rgba(37, 99, 235, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.prob2-card1 {
  top: 50%;
  left: -32px;
  transform: translateY(-50%);
  animation-delay: 0s;
}
.prob2-card2 {
  top: 38%;
  right: -32px;
  animation-delay: 1.5s;
}
.hb-screen {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--bd),
    0 -4px 0 0 #3b82f6,
    0 20px 60px rgba(10, 10, 20, 0.08);
}
.hb-chrome {
  background: linear-gradient(180deg, #252538, #1e1e2e);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.hb-url {
  margin-left: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 3px 14px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.08em;
}
.hb-screen img {
  width: 100%;
  display: block;
}

/* ─ LOGOS ─ */
.logos {
  padding: 30px 0;
  background: var(--s1);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  overflow: hidden;
}
.logos-head {
  text-align: center;
  margin-bottom: 18px;
}
.logos-label {
  font-size: 11px;
  color: var(--muted2);
  font-weight: 500;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.logos-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logos-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: logomarq 36s linear infinite;
}
.logos:hover .logos-track {
  animation-play-state: paused;
}
@keyframes logomarq {
  to {
    transform: translateX(-50%);
  }
}
.logo-chip {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s;
}
.logo-chip:hover {
  border-color: #3b82f6;
  color: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}
.logo-img {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: all 0.25s;
}
.logo-img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ─ PAIN ─ */
.pain {
  padding: 96px 0;
  background: var(--bg);
}
.sec-eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--muted2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-eyebrow::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
}
.sec-h {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.pain-head {
  margin-bottom: 56px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--bd);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.pain-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 20px;
  pointer-events: none;
}
.pc1::after {
  background: radial-gradient(
    circle at top left,
    rgba(37, 99, 235, 0.04),
    transparent 60%
  );
}
.pc2::after {
  background: radial-gradient(
    circle at top left,
    rgba(14, 165, 233, 0.04),
    transparent 60%
  );
}
.pc3::after {
  background: radial-gradient(
    circle at top left,
    rgba(79, 70, 229, 0.04),
    transparent 60%
  );
}
.pain-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 64px rgba(37, 99, 235, 0.14),
    0 0 0 1px rgba(37, 99, 235, 0.08);
}
.pain-card:hover::after {
  opacity: 1;
}
.pain-card-top {
  height: 4px;
  margin: -36px -36px 28px;
  border-radius: 20px 20px 0 0;
}
.pc1-top {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}
.pc2-top {
  background: linear-gradient(90deg, #3b82f6, #0ea5e9);
}
.pc3-top {
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
}
.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pi1 {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    rgba(59, 130, 246, 0.08)
  );
}
.pi2 {
  background: rgba(14, 165, 233, 0.08);
}
.pi3 {
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.08),
    rgba(6, 182, 212, 0.08)
  );
}
.pain-icon svg {
  width: 22px;
  height: 22px;
}
.pain-num {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--muted2);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.pain-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  word-break: keep-all;
}
.pain-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 400;
  word-break: keep-all;
}
.pain-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}
.pt1 {
  background: rgba(37, 99, 235, 0.07);
  color: #2563eb;
}
.pt2 {
  background: rgba(14, 165, 233, 0.07);
  color: #0ea5e9;
}
.pt3 {
  background: rgba(79, 70, 229, 0.07);
  color: #4f46e5;
}

/* ─ HOW ─ */
.how {
  padding: 100px 0;
  background: var(--s1);
}
.how-head {
  text-align: center;
  margin-bottom: 72px;
}
.how-h {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.how-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
  word-break: keep-all;
}
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.flow-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 20px 16px 24px;
  border: 1px solid var(--bd);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.flow-card:hover {
  box-shadow: 0 16px 44px rgba(37, 99, 235, 0.16);
  transform: translateY(-6px);
  border-color: #3b82f6;
}
.fc-num {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  padding: 3px 10px;
  border-radius: 20px;
}
.fn1 {
  background: rgba(37, 99, 235, 0.07);
  color: #2563eb;
}
.fn2 {
  background: rgba(14, 165, 233, 0.07);
  color: #0ea5e9;
}
.fn3 {
  background: rgba(79, 70, 229, 0.07);
  color: #4f46e5;
}
.fn4 {
  background: rgba(6, 182, 212, 0.07);
  color: #0891b2;
}
.fn5 {
  background: rgba(37, 99, 235, 0.07);
  color: #1d4ed8;
}
.flow-img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--bd2);
  margin-bottom: 14px;
}
.flow-img img {
  width: 100%;
  display: block;
}
.flow-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  word-break: keep-all;
}

/* ─ FEATURES ─ */
.features {
  padding: 100px 0;
  background: var(--bg);
}
.feat-head {
  margin-bottom: 80px;
}
.feat-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.feat-main-h {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -2px;
}
.feat-main-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 400;
  word-break: keep-all;
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--bd);
}
.feat-row:last-child {
  border-bottom: 1px solid var(--bd);
}
.feat-row.flip {
  direction: rtl;
}
.feat-row.flip > * {
  direction: ltr;
}
.feat-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.feat-n {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: 0.15em;
}
.feat-badge {
  font-size: 11px;
  padding: 4px 11px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid transparent;
}
.fb-r {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.07),
    rgba(59, 130, 246, 0.07)
  );
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.12);
}
.fb-o {
  background: rgba(14, 165, 233, 0.07);
  color: #0ea5e9;
  border-color: rgba(14, 165, 233, 0.12);
}
.fb-a {
  background: rgba(79, 70, 229, 0.07);
  color: #4f46e5;
  border-color: rgba(79, 70, 229, 0.12);
}
.fb-g {
  background: rgba(6, 182, 212, 0.07);
  color: #0891b2;
  border-color: rgba(6, 182, 212, 0.12);
}
.fb-b {
  background: rgba(37, 99, 235, 0.07);
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.12);
}
.feat-h {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.feat-p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 400;
  word-break: keep-all;
}
.feat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}
.feat-chip {
  font-size: 12px;
  color: var(--muted);
  background: var(--s1);
  border: 1px solid var(--bd);
  padding: 4px 11px;
  border-radius: 20px;
  font-weight: 500;
}
.feat-plan-row {
  display: flex;
  align-items: center;
  gap: 7px;
}
.feat-pl {
  font-size: 11px;
  color: var(--muted2);
  font-family: "DM Mono", monospace;
  letter-spacing: 0.08em;
  margin-right: 4px;
}
.pb {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 600;
  font-family: "DM Mono", monospace;
}
.pbs {
  background: #dcfce7;
  color: #15803d;
}
.pbg {
  background: #dbeafe;
  color: #1d4ed8;
}
.pbsc {
  background: #f3e8ff;
  color: #7c3aed;
}
/* screenshot mockup */
.feat-mockup {
  position: relative;
}
.mockup-shadow {
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.08),
    0 2px 4px rgba(10, 10, 20, 0.03),
    0 16px 40px rgba(37, 99, 235, 0.1);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s;
}
.feat-row:hover .mockup-shadow {
  transform: scale(1.015) translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.25),
    0 36px 80px rgba(37, 99, 235, 0.18);
}
.mockup-chrome {
  background: linear-gradient(180deg, #252538, #1e1e2e);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.md {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.md-r {
  background: #ff5f57;
}
.md-y {
  background: #febc2e;
}
.md-g {
  background: #28c840;
}
.mockup-shadow img {
  width: 100%;
  display: block;
}

/* ─ RACTIVE ─ */
.ractive {
  padding: 80px 0;
  background: var(--s2);
  border-top: 1px solid var(--bd);
}
.ractive-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ri-eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--muted2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ri-eyebrow::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
}
.ri-h {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
  word-break: keep-all;
}
.ri-p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 380px;
  word-break: keep-all;
}
.ri-link {
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--bd);
  padding: 11px 22px;
  border-radius: 9px;
  transition: all 0.2s;
}
.ri-link:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}
.ri-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.ri-link:hover svg {
  transform: translateX(3px);
}
.ri-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ri-stat {
  background: var(--bg);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--bd);
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.ri-stat:hover {
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.14);
  transform: translateY(-4px);
}
.ri-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
}
.ri-n {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.ri-l {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ─ PRICING ─ */
.pricing {
  padding: 100px 0;
  background: var(--bg);
}
.pricing-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.pricing-h {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -2px;
  line-height: 1.08;
}
.pricing-r {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  text-align: right;
  max-width: 250px;
  word-break: keep-all;
}
/* toggle */
.ptog-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
}
.ptog-lbl {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted2);
  transition: color 0.2s;
}
.ptog-lbl.on {
  color: var(--ink);
}
.ptog-sw {
  width: 50px;
  height: 27px;
  background: var(--bd);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.ptog-sw.on {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border-color: transparent;
}
.ptog-knob {
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.ptog-sw.on .ptog-knob {
  transform: translateX(23px);
}
.ptog-badge {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.08),
    rgba(249, 115, 22, 0.08)
  );
  border: 1px solid rgba(249, 115, 22, 0.18);
  color: var(--o);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  display: none;
}
/* cards */
.pg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.pc {
  background: var(--bg);
  border: 1.5px solid var(--bd);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: all 0.3s;
}
.pc:hover {
  box-shadow: 0 16px 48px rgba(10, 10, 20, 0.07);
}
.pc.feat {
  border-width: 2px;
  border-color: transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--tri-grad) border-box;
  background-size:
    auto,
    200% 200%;
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.18);
  animation: border-flow 4s ease infinite;
}
@keyframes border-flow {
  0%,
  100% {
    background-position:
      0 0,
      0% 50%;
  }
  50% {
    background-position:
      0 0,
      100% 50%;
  }
}
.pc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}
.pc-plan {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 4px;
  color: var(--muted);
}
.pc-who {
  font-size: 13px;
  color: var(--muted3);
  margin-bottom: 20px;
}
.pc-price {
  font-size: 46px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}
.pc.feat .pc-price {
  background: var(--warm-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pc-period {
  padding-top: 15px;
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 20px;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.05em;
}
.pc-hl {
  background: var(--s1);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--bd);
}
.pc-mods-l {
  font-size: 10px;
  color: var(--muted2);
  font-family: "DM Mono", monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pc-mods {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.pc-mod {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.on {
  color: var(--ink);
}
.on::before {
  content: "✓";
  color: var(--g);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
  width: 14px;
}
.off {
  color: var(--muted2);
}
.off::before {
  content: "—";
  color: var(--muted2);
  flex-shrink: 0;
  width: 14px;
  opacity: 0.4;
}
.pc-div {
  height: 1px;
  background: var(--bd);
  margin: 16px 0;
}
.pc-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.pc-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.pc-feat::before {
  content: "·";
  color: #3b82f6;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1;
}
.pc-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.pc-btn-w {
  background: var(--warm-grad);
  color: #fff;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.18);
}
.pc-btn-w:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.28);
}
.pc-btn-o {
  border: 1.5px solid var(--bd);
  color: var(--ink);
}
.pc-btn-o:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}
.pricing-ann {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05),
    rgba(14, 165, 233, 0.05)
  );
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 12px;
  padding: 18px 28px;
  text-align: center;
  font-size: 14px;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 10px;
}
.pricing-fn {
  text-align: center;
  font-size: 12px;
  color: var(--muted2);
  font-family: "DM Mono", monospace;
  letter-spacing: 0.05em;
}
/* SCALE 프리미엄 · 월간 리포트 */
.pc-scale {
  position: relative;
  overflow: hidden;
}
.pc-report {
  position: relative;
  margin: -36px -36px 24px;
  padding: 18px 22px 20px;
  background: linear-gradient(155deg, #0b1226 0%, #152360 52%, #1e1b4b 100%);
  overflow: hidden;
}
.pc-report::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(
    ellipse 90% 90% at 75% 5%,
    #000,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse 90% 90% at 75% 5%, #000, transparent 75%);
  pointer-events: none;
}
.pc-report-glow {
  position: absolute;
  top: -60px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.34),
    transparent 64%
  );
  pointer-events: none;
}
.pc-report-tag {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: #a5c8ff;
  letter-spacing: 0.16em;
  margin-bottom: 13px;
  text-transform: uppercase;
  font-weight: 500;
}
.pc-report-tag .rd {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
  animation: abd 2s infinite;
}
.pc-report-tag .pdf {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 700;
  color: #0b1226;
  background: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.32);
}
.pc-report-tag .pdf svg {
  width: 9px;
  height: 9px;
}
.pc-report-page {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 10px;
  padding: 13px 14px 11px;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}
.rp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.rp-title {
  display: flex;
  align-items: center;
  gap: 7px;
}
.rp-ico {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}
.rp-tls {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rp-tl {
  width: 56px;
  height: 5px;
  border-radius: 3px;
  background: #1e293b;
}
.rp-tl2 {
  width: 34px;
  height: 4px;
  border-radius: 3px;
  background: #cbd5e1;
}
.rp-up {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  padding: 3px 7px;
  border-radius: 5px;
  letter-spacing: 0.02em;
}
.rp-chart {
  width: 100%;
  height: 44px;
  display: block;
  margin-bottom: 11px;
}
.rp-foot {
  display: flex;
  gap: 6px;
  border-top: 1px solid #eef2f7;
  padding-top: 10px;
}
.rp-kpi {
  flex: 1;
}
.rp-kpi span {
  display: block;
  font-size: 7.5px;
  color: #94a3b8;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.rp-kpi b {
  font-size: 12px;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -0.4px;
  display: flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}
.rp-kpi b em {
  font-style: normal;
  font-size: 8px;
  color: #16a34a;
  font-weight: 700;
}
.pc-hl-report {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(14, 165, 233, 0.07)
  ) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
  color: #1d4ed8 !important;
  font-weight: 700 !important;
}
.pc-feat-star {
  color: var(--ink) !important;
  font-weight: 700;
}
.pc-feat-star::before {
  content: "★" !important;
  color: #2563eb !important;
  font-size: 11px !important;
}
/* START·GROW 미니 비주얼 (정렬 통일) */
.pc-vis {
  position: relative;
  margin: -36px -36px 24px;
  padding: 18px 22px 20px;
  overflow: hidden;
  border-bottom: 1px solid rgba(37, 99, 235, 0.07);
}
.pc-vis-start {
  background: linear-gradient(155deg, #f8fafc, #edf4ff);
}
.pc-vis-grow {
  background: linear-gradient(155deg, #eff5ff, #deebff);
}
.pcv-tag {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: #64748b;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.pcv-tag .vd {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.55);
  animation: abd 2s infinite;
}
.pcv-card {
  background: #fff;
  border-radius: 10px;
  padding: 13px 14px;
  box-shadow:
    0 12px 26px rgba(37, 99, 235, 0.1),
    0 0 0 1px rgba(37, 99, 235, 0.05) inset;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pcv-kpis {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.pcv-k span {
  display: block;
  font-size: 7.5px;
  color: #94a3b8;
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}
.pcv-k b {
  font-size: 15px;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.pcv-spark {
  width: 100%;
  height: 28px;
  display: block;
}
.pcv-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 70px;
}
.pcv-bars i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
}
.pcv-bars i:nth-child(even) {
  background: linear-gradient(180deg, #93c5fd, #3b82f6);
}

/* ─ FAQ ─ */
.faq {
  padding: 80px 0;
  background: var(--s1);
}
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px;
}
.faq-h {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 40px;
}
.faq-list {
  border-top: 1px solid var(--bd);
}
.faq-item {
  border-bottom: 1px solid var(--bd);
}
.faq-q {
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color 0.15s;
  letter-spacing: -0.2px;
  word-break: keep-all;
}
.faq-q:hover {
  color: #2563eb;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bd2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.faq-icon svg {
  width: 12px;
  height: 12px;
  color: var(--muted);
  transition: transform 0.25s;
}
.faq-item.open .faq-icon {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    rgba(14, 165, 233, 0.08)
  );
}
.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  color: #2563eb;
}
.faq-a {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.38s ease,
    padding 0.25s;
  word-break: keep-all;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 22px;
}

/* ─ CTA ─ */
.cta {
  padding: 80px 0 100px;
  background: var(--bg);
}
.cta-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.cta-inner {
  background: linear-gradient(135deg, #0f172a 0%, #172554 50%, #1e1b4b 100%);
  border-radius: 28px;
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(37, 99, 235, 0.2);
}
.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(
    ellipse 70% 80% at 70% 30%,
    #000,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 80% at 70% 30%,
    #000,
    transparent 70%
  );
  pointer-events: none;
}
.cta-glow1 {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 65%);
  pointer-events: none;
}
.cta-glow2 {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.12),
    transparent 65%
  );
  pointer-events: none;
}
.cta-eyebrow {
  /* font-family: "DM Mono", monospace; */
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  /* text-transform: uppercase; */
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: rgba(106, 139, 172, 0.945);
  /* background: var(--warm-grad); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* background-clip: text; */
}
.cta-h {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  word-break: keep-all;
}
.cta-h em {
  font-style: normal;
  background: var(--warm-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  word-break: keep-all;
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.cta-btn-p {
  background: var(--tri-grad);
  background-size: 150% auto;
  color: #fff;
  padding: 16px 28px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  box-shadow:
    0 8px 28px rgba(37, 99, 235, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  position: relative;
  overflow: hidden;
}
.cta-btn-p:hover {
  transform: translateY(-2px);
  background-position: right center;
  box-shadow:
    0 20px 48px rgba(37, 99, 235, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.cta-btn-s {
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.65);
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: all 0.2s;
}
.cta-btn-s:hover {
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}
.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.384);
  text-align: center;
  /* font-family: "DM Mono", monospace; */
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* ─ FOOTER ─ */
footer {
  background: #0a0a14;
  color: #fff;
  padding: 64px 0 36px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand {
  /* font-family: "DM Mono", monospace; */
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
  background: var(--warm-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(170, 200, 228, 0.589);
  line-height: 1.8;
  max-width: 210px;
  font-weight: 300;
  word-break: keep-all;
}
.footer-links-wrap {
  display: flex;
  gap: 64px;
}
.footer-col-title {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.459);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 400;
}
.footer-links a:hover {
  color: #60a5fa;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.493);
  font-family: "DM Mono", monospace;
  letter-spacing: 0.04em;
}

/* ─ EDIT BAR ─ */
#edit-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a14;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 40px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  box-shadow:
    0 8px 32px rgba(10, 10, 20, 0.4),
    0 0 0 1px rgba(59, 130, 246, 0.05);
  white-space: nowrap;
  backdrop-filter: blur(16px);
}
.eb-lbl {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.15em;
}
.eb-btn {
  border: none;
  padding: 7px 14px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  font-family: "Plus Jakarta Sans", sans-serif;
}
#btn-edit {
  background: var(--warm-grad);
  color: #fff;
}
#btn-edit:hover {
  opacity: 0.85;
}
#btn-save {
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}
#btn-save:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}
#font-ctrls {
  display: none;
  align-items: center;
  gap: 6px;
}
.fc-btn {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  padding: 0;
}
.fc-btn:hover {
  background: rgba(59, 130, 246, 0.18);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.3);
}
#fs-disp {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
  min-width: 34px;
  text-align: center;
}
#eb-hint {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.18);
  display: none;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.05em;
}
body.edit-mode [data-ed] {
  outline: none;
}
body.edit-mode [data-ed]:hover {
  outline: 1.5px dashed rgba(249, 115, 22, 0.45);
  outline-offset: 4px;
  border-radius: 3px;
  cursor: text;
}
body.edit-mode [data-ed]:focus {
  outline: 2px solid var(--o);
  outline-offset: 4px;
  border-radius: 3px;
  background: rgba(249, 115, 22, 0.02);
}

/* ─ AI BANNER (Hero 아래) ─ */
.ai-banner {
  background: linear-gradient(135deg, #0f172a 0%, #172554 55%, #1e1b4b 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.ai-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(37, 99, 235, 0.22),
    transparent 70%
  );
  pointer-events: none;
}
.ai-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(
    ellipse 60% 100% at 50% 50%,
    #000,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 60% 100% at 50% 50%,
    #000,
    transparent 75%
  );
  pointer-events: none;
}
.ai-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ai-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(37, 99, 235, 0.1);
  border-radius: 40px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.ai-banner-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 10px #3b82f6;
  animation: abd 2s infinite;
}
@keyframes abd {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.ai-banner-tag span {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: #93c5fd;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ai-banner-h {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -1.5px;
}
.ai-banner-h em {
  font-style: normal;
  background: linear-gradient(120deg, #60a5fa, #22d3ee, #818cf8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gw-shift 5s ease infinite;
}

/* ─ AI SECTION (풀스크린) ─ */
.ai-sec {
  background: linear-gradient(180deg, #0f172a 0%, #111e3d 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ai-sec-glow1 {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 65%);
  pointer-events: none;
  animation: hbm 12s ease-in-out infinite;
}
.ai-sec-glow2 {
  position: absolute;
  bottom: 5%;
  left: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12), transparent 65%);
  pointer-events: none;
  animation: hbm 15s ease-in-out infinite reverse;
}
.ai-sec-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    #000,
    transparent 72%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    #000,
    transparent 72%
  );
  pointer-events: none;
}
.ai-sec-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ai-sec-eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: #60a5fa;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.ai-orb {
  width: 80px;
  height: 80px;
  margin: 0 auto 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #818cf8);
  background-size: 200% 200%;
  position: relative;
  animation:
    gw-shift 5s ease infinite,
    orb-float 4s ease-in-out infinite;
  box-shadow:
    0 0 60px rgba(37, 99, 235, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.ai-orb::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}
.ai-orb::after {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
}
@keyframes orb-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.ai-sec-h {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.ai-sec-h em {
  font-style: normal;
  background: linear-gradient(120deg, #60a5fa, #22d3ee, #818cf8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gw-shift 5s ease infinite;
}
.ai-sec-lead {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 24px;
  word-break: keep-all;
}
.ai-sec-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.85;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  word-break: keep-all;
}
.ai-sec-body strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

/* ─ TESTIMONIALS ─ */
.testi {
  padding: 100px 0;
  background: var(--s1);
}
.testi-head {
  text-align: center;
  margin-bottom: 64px;
}
.testi-h {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.testi-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto;
  word-break: keep-all;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 18px;
  padding: 32px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.2);
}
.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.testi-stars svg {
  width: 16px;
  height: 16px;
}
.testi-body {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 24px;
  flex: 1;
  word-break: keep-all;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--bd2);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.testi-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* particles */
.pt-p {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: pt-fly 0.85s ease-out forwards;
}
@keyframes pt-fly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

/* ─────────────────────────────────────────────
   UI MOCKUP SYSTEM
   img 자리를 채우는 "제품 미리보기" UI.
   실제 스크린샷이 준비되면 각 .ui-mock 블록을
   <img src="..."> 한 줄로 교체하면 됩니다.
   ───────────────────────────────────────────── */
.ui-mock {
  background: linear-gradient(180deg, #fcfdff, #f5f8fe);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Plus Jakarta Sans", "Noto Sans KR", sans-serif;
  position: relative;
  min-height: 312px;
  isolation: isolate;
}
.ui-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.028) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, #000, transparent 90%);
  -webkit-mask-image: radial-gradient(
    ellipse 90% 90% at 50% 0%,
    #000,
    transparent 90%
  );
}
.um-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.um-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.um-title-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--tri-grad);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.um-sub {
  font-size: 9px;
  color: var(--muted2);
  font-weight: 600;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.04em;
  margin-top: 3px;
}
.um-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.08em;
  color: #15803d;
  text-transform: uppercase;
}
.um-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: abd 2s infinite;
}
.um-pill {
  font-size: 9px;
  font-weight: 700;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.05em;
  padding: 4px 9px;
  border-radius: 20px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--r);
  white-space: nowrap;
}
.um-tabs {
  display: flex;
  gap: 6px;
}
.um-tab {
  font-size: 9px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 7px;
  color: var(--muted2);
  background: transparent;
}
.um-tab.on {
  background: #fff;
  color: var(--r);
  box-shadow: var(--elev-1);
}
/* KPI cards */
.um-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.um-kpi {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: 11px;
  padding: 11px 12px;
  box-shadow: var(--elev-1);
  position: relative;
  overflow: hidden;
}
.um-kpi::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent, var(--tri-grad));
}
.um-kpi-l {
  font-size: 8.5px;
  font-weight: 600;
  color: var(--muted2);
  font-family: "DM Mono", monospace;
  letter-spacing: 0.03em;
  margin-bottom: 7px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.um-kpi-v {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.um-kpi-v small {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
}
.um-kpi-t {
  font-size: 9.5px;
  font-weight: 700;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.um-up {
  color: var(--ok);
}
.um-down {
  color: var(--bad);
}
.um-flat {
  color: var(--muted2);
}
/* panel */
.um-panel {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: 13px;
  padding: 13px 14px;
  box-shadow: var(--elev-1);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.um-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}
.um-panel-t {
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.um-legend {
  display: flex;
  gap: 11px;
}
.um-leg {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
}
.um-leg i {
  width: 9px;
  height: 3px;
  border-radius: 2px;
  background: var(--lg, #2563eb);
  display: block;
}
/* area / line chart */
.um-chart {
  width: 100%;
  display: block;
  overflow: visible;
}
.um-grid-l {
  stroke: #eef2f7;
  stroke-width: 1;
}
.um-axis {
  font-size: 7px;
  fill: var(--muted2);
  font-family: "DM Mono", monospace;
}
/* bar chart */
.um-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 132px;
  flex: none;
  margin-top: auto;
  padding-top: 6px;
}
.um-bcol {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}
.um-bwrap {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 3px;
  align-items: flex-end;
  flex: 1;
  min-height: 0;
}
.um-bar {
  width: 72%;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.um-bar.b2 {
  width: 36%;
  background: linear-gradient(180deg, #22d3ee, #0891b2);
}
.um-bx {
  font-size: 8px;
  color: var(--muted2);
  font-weight: 700;
}
/* list rows */
.um-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.um-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid var(--bd);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--elev-1);
}
.um-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.um-dot.g {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.um-dot.y {
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
.um-dot.r {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.um-rname {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.um-rsub {
  font-size: 8.5px;
  color: var(--muted2);
  font-weight: 600;
  font-family: "DM Mono", monospace;
  margin-top: 1px;
}
.um-rval {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin-left: auto;
}
.um-track {
  height: 6px;
  border-radius: 4px;
  background: var(--bd2);
  overflow: hidden;
  flex: 1;
  max-width: 120px;
}
.um-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--tri-grad);
}
/* donut */
.um-donut {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: conic-gradient(
    #2563eb 0 42%,
    #0ea5e9 42% 68%,
    #6366f1 68% 86%,
    #e2e8f0 86% 100%
  );
}
.um-donut::after {
  content: "";
  position: absolute;
  inset: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 1px 3px rgba(16, 24, 40, 0.06);
}
.um-donut-c {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.um-donut-v {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1;
}
.um-donut-l {
  font-size: 7.5px;
  color: var(--muted2);
  font-weight: 700;
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.um-keys {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.um-key {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink2);
}
.um-key i {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  flex-shrink: 0;
  background: var(--kc, #2563eb);
}
.um-key b {
  margin-left: auto;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.um-flex {
  display: flex;
  gap: 12px;
  align-items: center;
}
/* timeline (배달 구간) */
.um-tl {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.um-tlrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.um-tllabel {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--ink2);
  width: 52px;
  flex-shrink: 0;
  letter-spacing: -0.2px;
}
.um-tlbar {
  height: 18px;
  border-radius: 6px;
  background: var(--tlc, linear-gradient(90deg, #60a5fa, #2563eb));
  display: flex;
  align-items: center;
  padding: 0 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.um-tlbar span {
  font-size: 8.5px;
  font-weight: 800;
  color: #fff;
  font-family: "DM Mono", monospace;
}
/* alert feed */
.um-alert {
  display: flex;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 11px;
  border: 1px solid var(--bd);
  background: #fff;
  box-shadow: var(--elev-1);
  position: relative;
  overflow: hidden;
}
.um-alert::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ac, #94a3b8);
}
.um-aico {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--abg, rgba(148, 163, 184, 0.12));
}
.um-aico svg {
  width: 14px;
  height: 14px;
}
.um-atxt {
  flex: 1;
  min-width: 0;
}
.um-atitle {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.2px;
}
.um-ameta {
  font-size: 8.5px;
  color: var(--muted2);
  font-weight: 600;
  font-family: "DM Mono", monospace;
  margin-top: 2px;
}
.um-atag {
  font-size: 8px;
  font-weight: 800;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.05em;
  padding: 3px 7px;
  border-radius: 6px;
  align-self: flex-start;
  text-transform: uppercase;
}
.um-tag-r {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.um-tag-y {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}
.um-tag-b {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}
/* table (정산) */
.um-table {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: 13px;
  overflow: hidden;
  box-shadow: var(--elev-1);
}
.um-thead,
.um-trow {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  gap: 8px;
  padding: 10px 13px;
  align-items: center;
}
.um-thead {
  background: var(--s1);
  border-bottom: 1px solid var(--bd);
}
.um-th {
  font-size: 8.5px;
  font-weight: 700;
  color: var(--muted2);
  font-family: "DM Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.um-trow {
  border-bottom: 1px solid var(--bd2);
}
.um-trow:last-child {
  border-bottom: none;
}
.um-td {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink2);
}
.um-td.b {
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.um-badge {
  font-size: 8px;
  font-weight: 800;
  font-family: "DM Mono", monospace;
  padding: 3px 7px;
  border-radius: 6px;
  text-align: center;
}
.um-badge.ok {
  background: #dcfce7;
  color: #15803d;
}
.um-badge.wait {
  background: #fef3c7;
  color: #b45309;
}
.um-save {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 11px;
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.08),
    rgba(34, 197, 94, 0.05)
  );
  border: 1px solid rgba(22, 163, 74, 0.18);
}
.um-save-l {
  font-size: 10px;
  font-weight: 700;
  color: #15803d;
  display: flex;
  align-items: center;
  gap: 7px;
}
.um-save-v {
  font-size: 15px;
  font-weight: 800;
  color: #15803d;
  letter-spacing: -0.5px;
}
/* mini sidebar (종합 대시보드) */
.um-app {
  display: flex;
  gap: 0;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--bd);
  box-shadow: var(--elev-1);
  background: #fff;
}
.um-side {
  width: 48px;
  background: linear-gradient(180deg, #0f172a, #172554);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 14px;
}
.um-side-logo {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--tri-grad);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}
.um-side-i {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
}
.um-side-i.on {
  background: rgba(59, 130, 246, 0.22);
  color: #93c5fd;
}
.um-side-i svg {
  width: 14px;
  height: 14px;
}
.um-main {
  flex: 1;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 0;
}
/* flow mini visuals */
.flow-mini {
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--bd);
  background: linear-gradient(180deg, #fcfdff, #f2f7fe);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 11px;
  gap: 7px;
  box-shadow: var(--elev-1);
  margin-bottom: 14px;
}
.flow-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}
.fm-bar {
  height: 7px;
  border-radius: 4px;
  background: var(--bd2);
  position: relative;
  z-index: 1;
}
.fm-bar i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 4px;
  background: var(--tri-grad);
}
.fm-ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(14, 165, 233, 0.1)
  );
  position: relative;
  z-index: 1;
  margin-bottom: 1px;
}
.fm-ico svg {
  width: 16px;
  height: 16px;
}
.fm-row {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  flex: 1;
  position: relative;
  z-index: 1;
}
.fm-row span {
  flex: 1;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, #93c5fd, #2563eb);
}

/* ─────────────────────────────────────────────
   REAL PRODUCT SCREENSHOTS
   실제 제품 스크린샷 표시 시스템.
   .shot-tall = 세로로 긴 풀페이지 → 상단부터 보여주고
   하단 페이드 + 호버 시 전체 스크롤.
   ───────────────────────────────────────────── */
.shot {
  width: 100%;
  display: block;
  filter: blur(2px);
}
.shot-tall {
  position: relative;
  height: var(--sh, 360px);
  overflow: hidden;
  background: #fff;
}
.shot-tall .shot {
  transition: transform 7s cubic-bezier(0.33, 0, 0.25, 1);
}
.shot-tall::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 78px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 1;
}
.feat-row:hover .shot-tall .shot,
.prob2-visual:hover .shot-tall .shot {
  transform: translateY(calc(var(--sh, 360px) - 100%));
}
.feat-row:hover .shot-tall::after,
.prob2-visual:hover .shot-tall::after {
  opacity: 0;
}
.shot-scrollcue {
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--r);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 13px;
  border-radius: 20px;
  box-shadow: var(--elev-2);
  border: 1px solid rgba(37, 99, 235, 0.16);
  transition: opacity 0.4s;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.shot-scrollcue svg {
  width: 13px;
  height: 13px;
}
.feat-row:hover .shot-scrollcue,
.prob2-visual:hover .shot-scrollcue {
  opacity: 0;
}
.flow-shot {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 9px;
  border: 1px solid var(--bd);
  box-shadow: var(--elev-1);
  margin-bottom: 14px;
  background: #fff;
  position: relative;
}
.flow-shot .shot {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.flow-card:hover .flow-shot .shot {
  transform: scale(1.05);
}
/* 정산 갤러리 */
.gallery {
  padding: 92px 0;
  background: var(--s1);
  border-top: 1px solid var(--bd);
}
.gallery-head {
  text-align: center;
  margin-bottom: 52px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gcard {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--bd);
  box-shadow: var(--elev-1);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s;
}
.gcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--elev-4);
}
.gcard-chrome {
  background: linear-gradient(180deg, #252538, #1e1e2e);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gcard-chrome .md {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.gcard-shot {
  height: 210px;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--bd2);
}
.gcard-shot .shot {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: object-position 3s cubic-bezier(0.33, 0, 0.25, 1);
}
.gcard:hover .gcard-shot .shot {
  object-position: bottom center;
}
.gcard-body {
  padding: 16px 18px;
}
.gcard-n {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: 0.1em;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.gcard-n::before {
  content: "";
  width: 14px;
  height: 1.5px;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
}
.gcard-t {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin-bottom: 5px;
}
.gcard-d {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.65;
  word-break: keep-all;
}

/* ─ FADE ─ */
.fade {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade.in {
  opacity: 1;
  transform: none;
}
.fade-d1 {
  transition-delay: 0.1s;
}
.fade-d2 {
  transition-delay: 0.2s;
}
.fade-d3 {
  transition-delay: 0.3s;
}

/* ─ RESPONSIVE ─ */
@media (max-width: 1024px) {
  .inner,
  .nav-inner,
  .hero-inner,
  .ractive-inner,
  .cta-box,
  .faq-wrap,
  .footer-inner,
  .logos-inner {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 32px;
  }
  .hero-visual {
    display: none;
  }
  .feat-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feat-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0;
  }
  .feat-row.flip {
    direction: ltr;
  }
  .ractive-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .pricing-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .pricing-r {
    text-align: left;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 40px;
  }
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links-wrap {
    gap: 40px;
  }
  .pain-grid,
  .pg,
  .flow {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .prob2-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .prob2-card {
    display: none;
  }
}
@media (max-width: 640px) {
  .ai-banner {
    padding: 48px 0;
  }
  .ai-banner-inner,
  .ai-sec-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .ai-sec {
    padding: 80px 0;
  }
  .ai-orb {
    width: 64px;
    height: 64px;
  }
  .inner,
  .nav-inner,
  .hero-inner,
  .ractive-inner,
  .cta-box,
  .faq-wrap,
  .footer-inner,
  .logos-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-inner {
    height: 60px;
  }
  .nav-logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
  .nav-logo-mark svg {
    width: 17px;
    height: 17px;
  }
  .nav-logo-text {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .nav-cta-wrap {
    gap: 7px;
  }
  .nav-login {
    padding: 8px 11px;
    font-size: 12.5px;
  }
  .nav-cta {
    padding: 9px 15px;
    font-size: 13px;
    white-space: nowrap;
  }
  .hero {
    padding-top: 82px;
  }
  .hero-centered h1.hero-h {
    font-size: 31px;
    letter-spacing: -1.1px;
    line-height: 1.24;
    margin-bottom: 20px;
    word-break: keep-all;
  }
  .hero-h .nowrap {
    white-space: normal;
  }
  .hero-kicker {
    margin-bottom: 22px;
    padding: 5px 13px 5px 7px;
  }
  .kicker-text {
    font-size: 11px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-desc br {
    display: none;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
  }
  .hero-btns a {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    text-align: center;
  }
  .hero-btns a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  .hero-trust {
    gap: 10px 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pain-grid,
  .pg {
    grid-template-columns: 1fr;
  }
  .flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .feat-row {
    padding: 40px 0;
  }
  .ri-stats {
    grid-template-columns: 1fr 1fr;
  }
  .ri-n {
    font-size: 32px;
    white-space: nowrap;
  }
  .ri-stat {
    padding: 24px 18px;
  }
  .cta-inner {
    padding: 48px 32px;
  }
  .cta-h {
    font-size: 28px;
  }
  .footer-links-wrap {
    flex-direction: column;
    gap: 32px;
  }
  .hb-inner,
  .hero-screen-bottom .hb-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .float-card {
    display: none;
  }
}
