/* ============================================================
   neXon — main stylesheet
   Hand-written utility + component CSS matching the original
   Vite/Tailwind class names so markup ports 1:1.
   ============================================================ */

/* ---------------- Reset ---------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0 solid hsl(var(--border));
}
* {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1.5;
  scroll-behavior: smooth;
}
body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: inherit;
}
img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol { list-style: none; }
[hidden] { display: none !important; }

/* ---------------- Custom utilities (from src/index.css) ---------------- */
.text-gradient {
  background-image: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.border-glow { border-color: hsl(var(--primary) / 0.15); }
.bg-hero-glow {
  background: radial-gradient(ellipse 80% 60% at 50% 120%, hsl(var(--primary) / 0.08) 0%, hsl(var(--primary) / 0.03) 40%, transparent 70%);
}
.glow-orange { box-shadow: 0 0 80px -20px hsl(var(--primary) / 0.18); }
.bg-dot-grid {
  background-image: radial-gradient(circle, hsl(220 10% 78% / 0.35) 1px, transparent 1px);
  background-size: 24px 24px;
}
.bg-geo-lines {
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 30px, hsl(220 10% 80% / 0.12) 30px, hsl(220 10% 80% / 0.12) 31px);
}
.bg-mesh-blobs { position: relative; overflow: hidden; }
.bg-mesh-blobs::before,
.bg-mesh-blobs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.bg-mesh-blobs::before {
  width: 500px; height: 500px;
  background: hsl(var(--primary));
  top: -10%; right: -5%;
}
.bg-mesh-blobs::after {
  width: 400px; height: 400px;
  background: hsl(var(--nexon-glow));
  bottom: -8%; left: -3%;
}

/* ---------------- Keyframes ---------------- */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 30px -10px hsl(var(--primary) / 0.25); }
  50% { box-shadow: 0 0 50px -10px hsl(var(--primary) / 0.4); }
}
@keyframes bounce-up {
  0%, 100% { transform: translateY(0); }
  15% { transform: translateY(-12px); }
  30% { transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-fade-in { animation: fade-in 0.5s ease-out forwards; }
.animate-fade-in-up { animation: fade-in-up 0.7s ease-out forwards; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.animate-bounce-up { animation: bounce-up 3s ease-in-out infinite; }
.animate-spin { animation: spin 1s linear infinite; }

/* ---------------- Container ---------------- */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1400px;
}

/* ---------------- Display ---------------- */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.contents { display: contents; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.static { position: static; }

.inset-0 { inset: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-full { top: 100%; }
.top-2 { top: 0.5rem; }
.top-24 { top: 6rem; }
.right-3 { right: 0.75rem; }
.left-1\/2 { left: 50%; }
.top-1\/2 { top: 50%; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ---------------- Flexbox / Grid ---------------- */
.flex-1 { flex: 1 1 0%; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0, .shrink-0 { flex-shrink: 0; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.self-stretch { align-self: stretch; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-10 { row-gap: 2.5rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* ---------------- Sizing ---------------- */
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.w-auto { width: auto; }
.w-px { width: 1px; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-40 { width: 10rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-px { height: 1px; }
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }

.min-h-0 { min-height: 0; }
.min-h-screen { min-height: 100vh; }

.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-full { max-width: 100%; }

.aspect-square { aspect-ratio: 1 / 1; }

/* ---------------- Margin & padding ---------------- */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.-mt-1 { margin-top: -0.25rem; }
.-mt-0\.5 { margin-top: -0.125rem; }
.-my-1 { margin-top: -0.25rem; margin-bottom: -0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.p-1 { padding: 0.25rem; }
.p-1\.5 { padding: 0.375rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-0 { padding-top: 0; }
.pt-2 { padding-top: 0.5rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-\[100px\] { padding-bottom: 100px; }

/* ---------------- Typography ---------------- */
.font-heading { font-family: 'Outfit', system-ui, sans-serif; }
.font-body { font-family: 'Source Sans 3', system-ui, sans-serif; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }
.text-\[16px\] { font-size: 16px; }
.text-xs { font-size: var(--text-xs); line-height: 1rem; }
.text-sm { font-size: 1rem; line-height: 1.5rem; }
.text-base { font-size: var(--text-base); line-height: 1.5rem; }
.text-lg { font-size: var(--text-lg); line-height: 1.75rem; }
.text-xl { font-size: var(--text-xl); line-height: 1.75rem; }
.text-2xl { font-size: var(--text-2xl); line-height: 2rem; }
.text-3xl { font-size: var(--text-3xl); line-height: 2.25rem; }
.text-4xl { font-size: var(--text-4xl); line-height: 2.5rem; }
.text-5xl { font-size: var(--text-5xl); line-height: 1; }
.text-6xl { font-size: var(--text-6xl); line-height: 1; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.1\] { line-height: 1.1; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.italic { font-style: italic; }

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre-line { white-space: pre-line; }
.tabular-nums { font-variant-numeric: tabular-nums; }

/* ---------------- Colors ---------------- */
.text-foreground { color: hsl(var(--foreground)); }
.text-foreground\/70 { color: hsl(var(--foreground) / 0.7); }
.text-background { color: hsl(var(--background)); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-primary-foreground\/80 { color: hsl(var(--primary-foreground) / 0.8); }
.text-primary\/60 { color: hsl(var(--primary) / 0.6); }
.text-primary\/50 { color: hsl(var(--primary) / 0.5); }
.text-primary\/80 { color: hsl(var(--primary) / 0.8); }
.text-primary\/40 { color: hsl(var(--primary) / 0.4); }
.text-primary\/30 { color: hsl(var(--primary) / 0.3); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-muted-foreground\/60 { color: hsl(var(--muted-foreground) / 0.6); }
.text-muted-foreground\/50 { color: hsl(var(--muted-foreground) / 0.5); }
.text-destructive { color: hsl(var(--destructive)); }
.text-nexon-orange { color: hsl(var(--nexon-orange)); }
.text-nexon-orange\/60 { color: hsl(var(--nexon-orange) / 0.6); }
.text-nexon-orange\/70 { color: hsl(var(--nexon-orange) / 0.7); }
.text-nexon-teal { color: hsl(var(--nexon-teal)); }
.text-white { color: #fff; }
.text-transparent { color: transparent; }

.bg-background { background-color: hsl(var(--background)); }
.bg-background\/80 { background-color: hsl(var(--background) / 0.8); }
.bg-background\/90 { background-color: hsl(var(--background) / 0.9); }
.bg-foreground { background-color: hsl(var(--foreground)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-primary-foreground { background-color: hsl(var(--primary-foreground)); }
.bg-primary\/5 { background-color: hsl(var(--primary) / 0.05); }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-muted\/30 { background-color: hsl(var(--muted) / 0.3); }
.bg-muted\/40 { background-color: hsl(var(--muted) / 0.4); }
.bg-muted\/50 { background-color: hsl(var(--muted) / 0.5); }
.bg-white { background-color: #fff; }
.bg-nexon-teal\/5 { background-color: hsl(var(--nexon-teal) / 0.05); }

/* ---------------- Borders ---------------- */
.border { border-width: 1px; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.border-border { border-color: hsl(var(--border)); }
.border-border\/30 { border-color: hsl(var(--border) / 0.3); }
.border-border\/40 { border-color: hsl(var(--border) / 0.4); }
.border-border\/60 { border-color: hsl(var(--border) / 0.6); }
.border-primary { border-color: hsl(var(--primary)); }
.border-primary\/20 { border-color: hsl(var(--primary) / 0.2); }
.border-primary\/30 { border-color: hsl(var(--primary) / 0.3); }
.border-primary\/40 { border-color: hsl(var(--primary) / 0.4); }
.border-primary\/50 { border-color: hsl(var(--primary) / 0.5); }
.border-dashed { border-style: dashed; }
.border-nexon-teal\/30 { border-color: hsl(var(--nexon-teal) / 0.3); }

.rounded-none { border-radius: 0; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: var(--radius); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-sm { border-radius: calc(var(--radius) - 4px); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[14px\] { border-radius: 14px; }

/* ---------------- Effects / shadows ---------------- */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-primary\/10 { --tw-shadow-color: hsl(var(--primary) / 0.1); }
.shadow-primary\/20 { --tw-shadow-color: hsl(var(--primary) / 0.2); }
.shadow-primary\/25 { --tw-shadow-color: hsl(var(--primary) / 0.25); }
.shadow-\[0_-4px_30px_-10px_hsl\(var\(--primary\)\/0\.1\)\] {
  box-shadow: 0 -4px 30px -10px hsl(var(--primary) / 0.1);
}

.backdrop-blur-xl { -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); }
.backdrop-blur-lg { -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-100 { opacity: 1; }

.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }
.outline-none { outline: none; }
.invisible { visibility: hidden; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* ---------------- Transitions ---------------- */
.transition-all { transition: all 0.15s ease; }
.transition-colors { transition: color 0.15s, background-color 0.15s, border-color 0.15s; }
.transition-transform { transition: transform 0.15s; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }

/* ---------------- Transforms ---------------- */
.translate-x-0 { transform: translateX(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-y-full { transform: translateY(-100%); }
.rotate-90 { transform: rotate(90deg); }

/* ---------------- Hover / focus ---------------- */
.hover\:brightness-110:hover { filter: brightness(1.1); }
.hover\:bg-muted:hover { background-color: hsl(var(--muted)); }
.hover\:bg-secondary:hover { background-color: hsl(var(--secondary)); }
.hover\:border-primary\/20:hover { border-color: hsl(var(--primary) / 0.2); }
.hover\:border-primary\/30:hover { border-color: hsl(var(--primary) / 0.3); }
.hover\:border-primary\/40:hover { border-color: hsl(var(--primary) / 0.4); }
.hover\:text-foreground:hover { color: hsl(var(--foreground)); }
.hover\:text-primary\/90:hover { color: hsl(var(--primary) / 0.9); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.hover\:shadow-primary\/10:hover { box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.1), 0 8px 10px -6px hsl(var(--primary) / 0.1); }
.hover\:scale-\[1\.03\]:hover { transform: scale(1.03); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:scale-\[1\.03\].hover\:-translate-y-1:hover { transform: scale(1.03) translateY(-0.25rem); }

/* Combined hover (Tailwind cascades them as a chain) */
.hover\:border-primary\/40:hover.hover\:shadow-xl,
.transition-all:hover { transition: all 0.3s ease-out; }
.transition-all { transition: all 0.3s ease-out; }

.focus\:border-primary:focus { border-color: hsl(var(--primary)); }
.focus\:outline-none:focus { outline: none; }

.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:opacity-70:disabled { opacity: 0.7; }

/* ---------------- Responsive breakpoints ---------------- */
/* sm: 640px, md: 768px, lg: 1024px, xl: 1280px, 2xl: 1536px */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:inline { display: inline; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:max-w-md { max-width: 28rem; }
  .sm\:text-\[40px\] { font-size: 40px; }
  .sm\:text-4xl { font-size: var(--text-4xl); line-height: 2.5rem; }
  .sm\:text-5xl { font-size: var(--text-5xl); line-height: 1; }
  .sm\:text-lg { font-size: var(--text-lg); line-height: 1.75rem; }
}
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:inline { display: inline; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-\[2fr_1fr\] { grid-template-columns: 2fr 1fr; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-start { align-items: flex-start; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }
  .md\:text-left { text-align: left; }
  .md\:min-h-0 { min-height: 0; }
  .md\:gap-4 { gap: 1rem; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:flex { display: flex; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:text-5xl { font-size: var(--text-5xl); line-height: 1; }
  .lg\:text-6xl { font-size: var(--text-6xl); line-height: 1; }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ============================================================
   COMPONENT-SCOPED CSS — appended per section in subsequent
   build phases (Nav, Hero, BlindSpot, Benefits, Steps, Growth,
   Integrations, CTA, Footer, StickyCta, Modal, Pricing).
   ============================================================ */

/* ---------------- Navbar ---------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid hsl(var(--border));
  background-color: hsl(var(--background) / 0.8);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav__logo img { height: 52px; }
.nav__desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  background: transparent;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: background-color 0.2s, color 0.2s;
}
.nav__link:hover {
  background-color: hsl(var(--muted));
}
.nav__link svg {
  transition: transform 0.25s ease-out;
}
.nav__link:hover svg {
  transform: rotate(-30deg);
}
.nav__link--mobile {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
}
.nav__burger {
  display: flex;
  align-items: center;
}
.nav__burger button {
  border-radius: var(--radius);
  padding: 0.5rem;
  color: hsl(var(--foreground));
  transition: background-color 0.2s;
}
.nav__burger button:hover { background-color: hsl(var(--muted)); }
@media (min-width: 768px) {
  .nav__desktop { display: flex; }
  .nav__burger { display: none; }
}
.nav__dropdown {
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  padding: 1rem 1.5rem;
  animation: fade-in 0.5s ease-out forwards;
}
.nav__dropdown[hidden] { display: none; }

/* Primary CTA button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: filter 0.2s;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-primary--lg {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}
.btn-primary--hero {
  padding: 0.75rem 1.5rem;
  animation: pulse-glow 3s ease-in-out infinite;
}
.btn-inverted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background-color: hsl(var(--primary-foreground));
  color: hsl(var(--primary));
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: filter 0.2s;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}
.btn-inverted:hover { filter: brightness(1.1); }

/* ---------------- Hero ---------------- */
.hero { position: relative; overflow: hidden; padding-top: 4rem; }
.hero__grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 1fr; }
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero__badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--nexon-teal) / 0.3);
  background-color: hsl(var(--nexon-teal) / 0.05);
  padding: 0.375rem 1rem;
  font-weight: 500;
  color: hsl(var(--nexon-teal));
  font-size: 0.875rem;
}
.hero__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) {
  .hero__title { font-size: var(--text-5xl); }
}
@media (min-width: 1024px) {
  .hero__title { font-size: var(--text-6xl); }
}
.hero__sub {
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}
.hero__pills {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.hero__pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__pills svg { color: hsl(var(--primary)); }
@media (min-width: 768px) {
  .hero__pills { display: flex; }
}
.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hero__art svg { width: 100%; height: auto; }

/* ---------------- Footer ---------------- */
.footer__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
@media (min-width: 768px) {
  .footer__legal { align-items: flex-end; }
}
.footer__legal .text-primary\/80 { color: hsl(var(--primary) / 0.8); }
.footer__link {
  color: hsl(var(--primary) / 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: hsl(var(--primary));
  text-decoration: underline;
}
.footer__link--center {
  font-size: 0.875rem;
  margin: 0 auto;
}

/* ---------------- Contact Support Page ---------------- */
.contact-page {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: radial-gradient(circle, hsl(var(--muted-foreground) / 0.30) 1px, transparent 1px);
  background-size: 24px 24px;
}
.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(var(--background)) 0%, hsl(var(--background) / 0.85) 25%, transparent 60%);
  pointer-events: none;
}
.contact-page > .container {
  position: relative;
  z-index: 1;
}
.contact-page__header {
  margin-bottom: 2rem;
  text-align: center;
}
.contact-page__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.contact-page__desc {
  font-size: var(--text-base);
  color: hsl(var(--muted-foreground));
}
.contact-page__panel {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  padding: 2rem;
}

/* ---------------- Privacy Policy Page ---------------- */
.privacy-policy {
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.privacy-policy__header {
  margin-bottom: 3rem;
  text-align: center;
}
.privacy-policy__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.privacy-policy__date {
  font-size: var(--text-base);
  color: hsl(var(--muted-foreground));
}
.privacy-policy__section {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
.privacy-policy__section h2 {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}
.privacy-policy__section h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: var(--text-xl);
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}
.privacy-policy__section p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: hsl(var(--foreground) / 0.85);
  margin-bottom: 1rem;
}
.privacy-policy__section a {
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-policy__section a:hover {
  color: hsl(var(--primary) / 0.8);
}
.privacy-policy__list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.privacy-policy__list li {
  font-size: var(--text-base);
  line-height: 1.75;
  color: hsl(var(--foreground) / 0.85);
  margin-bottom: 0.5rem;
}
.privacy-policy__callout {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.privacy-policy__callout h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: var(--text-lg);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.privacy-policy__callout p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: hsl(var(--foreground) / 0.85);
  margin-bottom: 0;
}

/* ---------------- Sticky CTA ---------------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  animation: fade-in 0.5s ease-out forwards;
}
.sticky-cta[hidden] { display: none; }
.sticky-cta__bar {
  position: relative;
  border-top: 1px solid hsl(var(--border) / 0.6);
  background-color: hsl(var(--background) / 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 -4px 30px -10px hsl(var(--primary) / 0.1);
}
.sticky-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .sticky-cta__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }
}
.sticky-cta__text-desktop {
  display: none;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}
.sticky-cta__text-mobile {
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}
@media (min-width: 640px) {
  .sticky-cta__text-desktop { display: block; }
  .sticky-cta__text-mobile { display: none; }
}
.sticky-cta__actions { display: flex; flex-shrink: 0; align-items: center; gap: 0.5rem; }
.sticky-cta__label-desktop { display: none; }
.sticky-cta__label-mobile { display: inline; }
@media (min-width: 640px) {
  .sticky-cta__label-desktop { display: inline; }
  .sticky-cta__label-mobile { display: none; }
}
.sticky-cta__close {
  flex-shrink: 0;
  border-radius: 9999px;
  padding: 0.25rem;
  color: hsl(var(--muted-foreground));
  transition: background-color 0.2s, color 0.2s;
}
.sticky-cta__close:hover { background-color: hsl(var(--muted)); color: hsl(var(--foreground)); }
.sticky-cta__close--mobile {
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}
.sticky-cta__close--desktop { display: none; margin-left: 0.25rem; }
@media (min-width: 768px) {
  .sticky-cta__close--mobile { display: none; }
  .sticky-cta__close--desktop { display: block; }
}

/* ---------------- Modal (native <dialog>) ---------------- */
.modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(28rem, 100vw - 2rem);
  width: 100%;
  margin: auto;
  inset: 0;
}
.modal::backdrop {
  background: rgb(0 0 0 / 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.modal[open] {
  animation: fade-in 0.2s ease-out;
}
.modal__panel {
  position: relative;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  padding: 2rem;
}
.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: hsl(var(--muted-foreground));
  transition: background-color 0.2s, color 0.2s;
}
.modal__close:hover {
  background-color: hsl(var(--muted));
  color: hsl(var(--foreground));
}
.modal__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  padding-bottom: 1.5rem;
}
.modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}
.modal__desc { color: hsl(var(--muted-foreground)); }
.modal__form { display: flex; flex-direction: column; gap: 1rem; }
.modal__field { display: flex; flex-direction: column; gap: 0.375rem; }
.modal__field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}
.modal__field input {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--secondary));
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  transition: border-color 0.2s;
}
.modal__field input::placeholder { color: hsl(var(--muted-foreground)); }
.modal__field input:focus { border-color: hsl(var(--primary)); outline: none; }
.modal__field input:disabled { opacity: 0.5; }
.modal__phone-row { display: flex; gap: 0.5rem; }
.modal__country { position: relative; }
.modal__country-trigger {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  height: 46px;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--secondary));
  padding: 0 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  transition: border-color 0.2s;
  white-space: nowrap;
}
.modal__country-trigger:hover { border-color: hsl(var(--primary)); }
.modal__country-flag {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", system-ui, sans-serif;
  line-height: 1;
}
.modal__country-list {
  position: absolute;
  left: 0; top: 100%;
  z-index: 50;
  margin-top: 0.25rem;
  max-height: 12rem;
  width: 14rem;
  overflow-y: auto;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}
.modal__country-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  text-align: left;
  transition: background-color 0.15s;
}
.modal__country-item:hover { background-color: hsl(var(--secondary)); }
.modal__country-item-code { color: hsl(var(--muted-foreground)); }
.modal__submit {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
}
.modal__submit [data-submit-label] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary svg,
.btn-inverted svg,
.pricing__cta svg {
  display: inline-block;
  vertical-align: middle;
}
.modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  animation: fade-in 0.5s ease-out forwards;
}
.modal__check {
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.modal__success p {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-align: center;
}

/* ---------------- Pricing page ---------------- */
.pricing__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .pricing__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.pricing__tier {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing__tier:not(.pricing__tier--featured):hover {
  border-color: hsl(var(--primary) / 0.2);
}
.pricing__tier--featured {
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 0 80px -20px hsl(var(--primary) / 0.18);
}
.pricing__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background-color: hsl(var(--primary));
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
}
.pricing__price {
  margin-top: 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}
.pricing__features {
  margin-top: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.pricing__features svg {
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: hsl(var(--primary));
}
.pricing__cta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: filter 0.2s, border-color 0.2s;
  text-decoration: none;
}
.pricing__cta--primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.pricing__cta--primary:hover { filter: brightness(1.1); }
.pricing__cta--secondary {
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}
.pricing__cta--secondary:hover { border-color: hsl(var(--primary) / 0.3); }
.pricing__cta-block {
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 32rem;
  text-align: center;
}

/* ---------------- Growth Engine flip cards ---------------- */
.growth__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .growth__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
  .growth__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.flip-card {
  position: relative;
  height: 300px;
  perspective: 1000px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  border: 1px solid hsl(var(--border));
  transition: transform 0.5s ease-out;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner,
.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.1);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 14px;
  background-color: hsl(var(--background));
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.flip-card-front { padding: 1rem; }
.flip-card-back {
  padding: 2rem;
  transform: rotateY(180deg);
}
.flip-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  line-height: 1.375;
}
@media (min-width: 640px) {
  .flip-card-title { font-size: 1.125rem; }
}
.flip-card-tagline {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
}
.flip-card-image {
  margin-top: 0.75rem;
  min-height: 0;
  flex: 1;
  overflow: hidden;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: -1rem;
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--muted));
}
.flip-card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.flip-card-back h4 {
  margin-bottom: 1rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
}
.flip-card-back p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

/* ---------------- Integrations (RadialView) ---------------- */
.integrations__wrap { margin-top: 2rem; margin-bottom: 3rem; max-width: 64rem; margin-left: auto; margin-right: auto; }
.integrations__mobile { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.integrations__desktop { display: none; position: relative; height: 440px; }
@media (min-width: 768px) {
  .integrations__mobile { display: none; }
  .integrations__desktop { display: block; }
}
.integrations__label {
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--nexon-orange) / 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.integrations__pill {
  display: flex;
  width: 100%;
  max-width: 24rem;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  padding: 0.75rem 1rem;
}
.integrations__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  background-color: hsl(var(--primary) / 0.1);
}
.integrations__arrow { color: hsl(var(--primary) / 0.4); transform: rotate(90deg); }
.integrations__hub-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  width: 5rem;
  overflow: hidden;
  border-radius: 9999px;
  border: 2px solid hsl(var(--primary) / 0.4);
  background-color: #fff;
  box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.2);
}
.integrations__hub-mini img { height: 3rem; width: 3rem; object-fit: contain; }
.integrations__svg { pointer-events: none; position: absolute; inset: 0; height: 100%; width: 100%; }
.integrations__label-abs {
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: hsl(var(--nexon-orange) / 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.integrations__hub {
  position: absolute;
  left: 50%;
  top: 162px;
  z-index: 20;
  transform: translate(-50%, -50%);
}
.integrations__hub > div { position: relative; display: flex; height: 96px; width: 96px; align-items: center; justify-content: center; }
.integrations__hub-pulse {
  display: none;
}
.integrations__hub-inner {
  position: relative;
  display: flex;
  height: 72px;
  width: 72px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 9999px;
  border: 2px solid hsl(var(--primary) / 0.4);
  background-color: #fff;
  box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.25);
}
.integrations__hub-inner img { height: 3rem; width: 3rem; object-fit: contain; }
.integrations__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  padding: 1rem 1.25rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  width: 280px;
}
.integrations__card:hover {
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.1);
  transform: scale(1.03) translateY(-0.25rem);
}
.integrations__card--pos { left: 0; top: 116px; }
.integrations__card--right { right: 0; }
.integrations__card--meta { left: 50%; transform: translateX(-50%); top: 370px; padding: 1rem 1.5rem; }
.integrations__card--meta:hover { transform: translateX(-50%) scale(1.03) translateY(-0.25rem); }
.integrations__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  background-color: hsl(var(--primary) / 0.1);
}
.integrations__card--pos .integrations__card-icon { height: 3rem; width: 3rem; border-radius: 0.75rem; }
.integrations__card--meta .integrations__card-icon { height: 3rem; width: 3rem; border-radius: 0.5rem; }
.integrations__card-title {
  font-size: 16px;
  font-weight: 600;
  color: hsl(var(--foreground));
  line-height: 1.25;
}
.integrations__card-desc {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
}

/* ---------------- Retail Blind Spot Funnel ---------------- */
.blindspot__funnel {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: 56rem;
  flex-direction: column;
  align-items: center;
  /* Funnel scroll-pin uses min-height = cards * 180 + 200 */
  min-height: 920px;
}
.blindspot__sticky {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
}
.blindspot__stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.blindspot__stroke {
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
  display: none;
  width: auto;
}
@media (min-width: 768px) {
  .blindspot__stroke { display: block; }
}
.blindspot__stroke--left { left: -180px; }
.blindspot__stroke--right { right: -180px; }
.blindspot__card {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  padding: 1.25rem;
  max-width: var(--card-width, 100%);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.blindspot__card:hover {
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.1);
}
@media (max-width: 767px) {
  .blindspot__card { max-width: 100%; }
}
.blindspot__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .blindspot__card-inner { flex-direction: row; align-items: flex-start; }
}
.blindspot__card-inner img {
  flex-shrink: 0;
  border-radius: 0.5rem;
}
.blindspot__card-copy { flex: 1; text-align: center; }
@media (min-width: 768px) {
  .blindspot__card-copy { text-align: left; }
}
.blindspot__card-copy h3 {
  font-size: 1rem;
  font-weight: 600;
}
.blindspot__card-copy p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}
.blindspot__cycle {
  margin-top: 5rem;
  margin-bottom: 3rem;
  width: 100%;
}
.blindspot__cycle-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
}
.blindspot__cycle-value {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 67px;
  line-height: 1;
}
.blindspot__cycle-value.is-negative { color: #FF3C00; }
.blindspot__cycle-label {
  font-weight: 400;
  color: hsl(var(--muted-foreground));
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
}

/* ---------------- Benefits Carousel ---------------- */
.benefits__mobile { padding-left: 1.5rem; padding-right: 1.5rem; display: block; }
.benefits__desktop { display: none; position: relative; padding-top: 12px; padding-bottom: 62px; overflow: visible; }
@media (min-width: 768px) {
  .benefits__mobile { display: none; }
  .benefits__desktop { display: block; }
}
.benefits__intro {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
  text-align: center;
  margin-bottom: 50px;
}
.benefits__stack { display: flex; flex-direction: column; gap: 1.5rem; }
.benefits__card {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.benefits__card:hover {
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.1);
}
.benefits__card img { width: 100%; object-fit: contain; display: block; }
.benefits__card-body { padding: 1.25rem; }
.benefits__card-sub { font-size: 0.875rem; font-weight: 600; color: hsl(var(--primary)); }
.benefits__card-title { margin-top: 0.375rem; font-size: 1.125rem; font-weight: 700; line-height: 1.375; color: hsl(var(--foreground)); }
.benefits__card-desc { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.625; color: hsl(var(--muted-foreground)); }
.benefits__terminal {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(2rem + 40px);
  padding-bottom: 2rem;
}
.benefits__terminal span {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.15;
  text-align: center;
}
.benefits__viewport { position: relative; }
.benefits__track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-left: var(--benefits-pad-left, 50vw);
  padding-right: 394px;
  position: relative;
}
.benefits__card-d {
  flex-shrink: 0;
  width: 370px;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.benefits__card-d:hover {
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.1);
  transform: scale(1.03) translateY(-0.25rem);
}
.benefits__card-d img { width: 100%; object-fit: contain; display: block; }
.benefits__terminal-d {
  flex-shrink: 0;
  width: 370px;
  margin-left: 40px;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.benefits__terminal-d span {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 46px;
  line-height: 1.15;
  text-align: center;
}
.benefits__fade {
  pointer-events: none;
  position: absolute;
  top: -90px;
  bottom: -90px;
  left: 0;
  right: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0) 25%,
    rgba(255,255,255,0) 75%,
    rgba(255,255,255,1) 100%
  );
  z-index: 30;
}

/* ---------------- How neXon Works ---------------- */
.how {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
}
.how__tabs {
  display: flex;
  gap: 0.5rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  padding: 0.375rem;
  background-color: hsl(var(--background));
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  position: relative;
  z-index: 10;
}
.how__tab {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: background-color 0.2s, color 0.2s;
}
.how__tab:hover { background-color: hsl(var(--muted)); color: hsl(var(--foreground)); }
.how__tab.is-active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}
.how__tab span {
  display: none;
}
@media (min-width: 640px) {
  .how__tab span { display: inline; }
}
.how__panel {
  margin-top: 1.5rem;
  display: grid;
  align-items: center;
  gap: 2rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  padding: 2rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .how__panel { grid-template-columns: 2fr 1fr; }
}
.how__art {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background-color: #fff;
  overflow: hidden;
  align-self: stretch;
  min-height: 360px;
}
@media (min-width: 768px) {
  .how__art { min-height: 0; }
}
.how__art-poster {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.how__copy { position: relative; }
.how__step {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}
.how__step.is-active { display: flex; }
.how__step-icon {
  display: none;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 2px solid hsl(var(--primary) / 0.2);
  background-color: hsl(var(--primary) / 0.05);
  color: hsl(var(--primary));
}
@media (min-width: 768px) {
  .how__step-icon { display: flex; }
}
.how__step-label {
  display: none;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--primary));
}
@media (min-width: 768px) {
  .how__step-label { display: inline; }
}
.how__step-headline {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}
.how__bullets { display: flex; flex-direction: column; gap: 0.5rem; }
.how__bullets > div {
  border-radius: var(--radius);
  background-color: hsl(var(--muted) / 0.5);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

/* ---------------- Step animation: CONNECT ---------------- */
.connect-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.connect-svg {
  width: 100%;
  height: auto;
  overflow: visible;
  max-width: 48rem;
}
.connect-toast {
  visibility: hidden;
  display: flex;
  justify-content: center;
  width: 100%;
}
.connect-toast-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border-radius: 999px;
  background: #FFF4EE;
  white-space: nowrap;
}
.connect-toast-pill img { width: 23px; height: 23px; flex-shrink: 0; }
.connect-toast-pill span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FF3C00;
  line-height: 1.3;
}
.connect-card-wrap {
  visibility: hidden;
  cursor: default;
}
.connect-card-inner {
  height: 125px;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid hsl(var(--border));
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.connect-card-wrap[data-card="2"] .connect-card-inner,
.connect-card-wrap[data-card="4"] .connect-card-inner {
  height: 70px;
}
.connect-card-wrap[data-card="4"] .connect-card-inner {
  height: 125px;
}
.connect-card-inner:hover {
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.1);
  transform: scale(1.03) translateY(-0.25rem);
}
.connect-card-inner img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.connect-card-label {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
  line-height: 1.25;
}

/* ---------------- Step animation: IDENTIFY ---------------- */
.identify-wrap {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
}
.identify-frame {
  position: relative;
  height: 100%;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  min-height: 320px;
}
.identify-prompt {
  position: absolute;
  left: 50%;
  top: 1.25rem;
  z-index: 20;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  display: flex;
  justify-content: center;
  visibility: hidden;
}
.identify-prompt-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 10px;
  white-space: nowrap;
  max-width: 100%;
  background: hsl(20 100% 97%);
}
.identify-prompt-pill img { height: 1.25rem; width: 1.25rem; flex-shrink: 0; }
.identify-prompt-pill span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3;
  color: hsl(14 100% 50%);
  font-family: 'Source Sans 3', sans-serif;
}
.identify-section {
  position: absolute;
  inset: 0;
  visibility: hidden;
}
.identify-section img { height: 100%; width: 100%; object-fit: cover; }
.identify-screen {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0 1.25rem 0;
  padding-top: 50px;
  visibility: hidden;
}
.identify-screen-svg {
  height: 92%;
  width: auto;
  overflow: visible;
}
.identify-reset {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 30;
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background) / 0.95);
  transition: transform 0.2s;
}
.identify-reset:hover { transform: scale(1.05); }
.identify-reset img { height: 1.25rem; width: 1.25rem; }

/* ---------------- Step animation: UNIFY ---------------- */
.unify-wrap {
  position: relative;
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.unify-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.unify-card-wrap {
  position: relative;
  visibility: hidden;
  overflow: visible;
}
.unify-card-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 0.75rem;
  filter: drop-shadow(0px 4px 13px rgba(0, 0, 0, 0.05));
}
.unify-card-avatar {
  position: absolute;
  bottom: -0.25rem;
  right: -0.25rem;
  height: 2rem;
  width: 2rem;
  overflow: hidden;
  border-radius: 9999px;
  border: 2px solid hsl(var(--primary));
  background: hsl(var(--background));
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.unify-card-avatar img { height: 100%; width: 100%; object-fit: cover; }
.unify-reset {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 30;
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background) / 0.95);
  transition: transform 0.2s;
}
.unify-reset:hover { transform: scale(1.05); }
.unify-reset img { height: 1.25rem; width: 1.25rem; }

/* ---------------- Step animation: GROW ---------------- */
.grow-wrap {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
}
.grow-frame {
  position: relative;
  height: 100%;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid hsl(var(--border));
  background: #F3F3F3;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.grow-half {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grow-prompt { position: absolute; z-index: 10; visibility: hidden; }
.grow-prompt-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: #fff;
  padding: 0.625rem 1rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.grow-prompt-pill span {
  font-size: 0.875rem;
  font-weight: 400;
  white-space: nowrap;
  color: #F07529;
  font-family: 'Source Sans 3', sans-serif;
}
.grow-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  visibility: hidden;
}
.grow-group-img { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.grow-img {
  border-radius: 0.75rem;
  height: 118px;
  object-fit: cover;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}
.grow-channel-pill {
  display: flex;
  align-items: center;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  padding: 4px 8px;
  gap: 6px;
}
.grow-channel-pill img { height: 12px; }
.grow-roi { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.grow-roi-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: #F07529;
  line-height: 1;
  margin-bottom: -4px;
}
.grow-roi-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 58px;
  color: #F07529;
  line-height: 1;
}
.grow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2px;
  padding: 0 5%;
}
.grow-divider-stroke {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #F07529, #FFC037);
  border-radius: 1px;
}
.grow-final {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
}
.grow-final-top {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 36px;
  color: #F07529;
}
.grow-final-bottom {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 76px;
  color: #F07529;
  line-height: 1;
}
.grow-reset {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 30;
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background) / 0.95);
  transition: transform 0.2s;
}
.grow-reset:hover { transform: scale(1.05); }
.grow-reset img { height: 1.25rem; width: 1.25rem; }
