
:root {
  --bg: #f6f7fb;
  --bg-2: #eef0f7;
  --surface: #ffffff;
  --surface-2: #fbfbfd;
  --ink: #0b0f1a;
  --ink-2: #1a2236;
  --muted: #5a6478;
  --muted-2: #8a93a6;
  --line: #e6e9f1;
  --line-2: #dde1ec;

  --indigo-50:  #eef1ff;
  --indigo-100: #dbe1ff;
  --indigo-200: #b8c2ff;
  --indigo-400: #7a89ff;
  --indigo-500: #5667ff;
  --indigo-600: #3d4eff;
  --indigo-700: #2a39e0;
  --indigo-900: #161e7a;

  --green: #16a34a;
  --amber: #d97706;
  --red:   #dc2626;

  --shadow-sm: 0 1px 2px rgba(11,15,26,.04), 0 1px 3px rgba(11,15,26,.04);
  --shadow-md: 0 4px 8px -2px rgba(11,15,26,.06), 0 12px 24px -8px rgba(11,15,26,.08);
  --shadow-lg: 0 10px 20px -6px rgba(11,15,26,.08), 0 30px 60px -20px rgba(11,15,26,.18);
  --shadow-xl: 0 20px 40px -10px rgba(11,15,26,.10), 0 50px 100px -30px rgba(43,57,224,.20);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;

  --sidebar-w: 248px;
  --topbar-h: 64px;

  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ───────── Layout ───────── */
.app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
}

/* dotted grid bg for hacker vibe */
.app::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(15,23,42,.06) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}

main { position: relative; z-index: 1; min-width: 0; }
.container { width: min(1180px, 100% - 48px); margin-inline: auto; }

/* ───────── Sidebar ───────── */
.sidebar {
  position: sticky; top: 0; align-self: start;
  height: 100vh;
  width: var(--sidebar-w);
  background: linear-gradient(180deg, #0b0f1a 0%, #0d1426 100%);
  color: #e6e9f1;
  display: flex; flex-direction: column;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.06);
  z-index: 30;
}
.sidebar::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 200px at 0% 0%, rgba(86,103,255,.18), transparent 60%),
    radial-gradient(500px 300px at 100% 100%, rgba(86,103,255,.12), transparent 60%);
  pointer-events: none;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px 22px;
  position: relative;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-700));
  display: grid; place-items: center;
  color: white; font-weight: 800;
  font-family: var(--font-display);
  box-shadow: 0 8px 24px -6px rgba(86,103,255,.55), inset 0 1px 0 rgba(255,255,255,.25);
  transform: rotate(-3deg);
}
.brand-mark i { font-size: 16px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
}
.brand-name span { color: var(--indigo-400); }
.brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(230,233,241,.5);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.nav-section {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(230,233,241,.4);
  padding: 14px 12px 8px;
  position: relative;
}
.nav-section::before {
  content: '//'; margin-right: 6px; color: var(--indigo-400);
}

.nav { list-style: none; padding: 0; margin: 0; position: relative; }
.nav li { margin: 2px 0; }
.nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(230,233,241,.78);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: background .2s, color .2s, transform .2s;
}
.nav a i { width: 18px; text-align: center; font-size: 14px; color: rgba(230,233,241,.5); }
.nav a:hover {
  background: rgba(255,255,255,.04);
  color: white;
  transform: translateX(2px);
}
.nav a.active {
  background: linear-gradient(90deg, rgba(86,103,255,.18), rgba(86,103,255,.04));
  color: white;
  box-shadow: inset 0 0 0 1px rgba(86,103,255,.25);
}
.nav a.active::before {
  content: '';
  position: absolute; left: -16px; top: 8px; bottom: 8px;
  width: 3px; border-radius: 0 3px 3px 0;
  background: var(--indigo-500);
  box-shadow: 0 0 12px rgba(86,103,255,.7);
}
.nav a.active i { color: var(--indigo-400); }
.nav a .pill {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(86,103,255,.18);
  color: var(--indigo-200);
  border: 1px solid rgba(86,103,255,.3);
  text-transform: uppercase;
}

.sidebar-foot {
  margin-top: auto;
  padding: 12px;
  position: relative;
}
.user-card {
  display: flex; align-items: center; gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
}
.user-avatar {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, #6b7cff, #2a39e0);
  display: grid; place-items: center;
  color: white; font-weight: 700; font-size: 13px;
}
.user-card .meta { font-size: 12px; line-height: 1.3; }
.user-card .meta b { display: block; color: white; font-weight: 600; }
.user-card .meta span { color: rgba(230,233,241,.5); font-family: var(--font-mono); font-size: 10px; }
.user-card .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-left: auto; box-shadow: 0 0 8px var(--green); }

/* ───────── Top bar (mobile) ───────── */
.topbar {
  display: none;
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 40;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
}
.topbar .brand-row { display: flex; align-items: center; gap: 10px; }
.topbar .brand-mark { width: 32px; height: 32px; border-radius: 9px; }
.topbar .brand-name { color: var(--ink); font-size: 16px; }
.topbar .brand-name span { color: var(--indigo-600); }
.menu-btn {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--bg-2);
  color: var(--ink);
  border: 1px solid var(--line);
}
.menu-btn:hover { background: var(--indigo-50); color: var(--indigo-700); }

.mobile-menu {
  position: fixed; top: 0; bottom: 0; left: 0;
  width: 280px; max-width: 84vw;
  background: linear-gradient(180deg, #0b0f1a 0%, #0d1426 100%);
  color: #e6e9f1;
  box-shadow: 20px 0 60px -20px rgba(11,15,26,.5);
  padding: 20px 16px;
  transform: translateX(-110%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  z-index: 50;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 200px at 0% 0%, rgba(86,103,255,.18), transparent 60%),
    radial-gradient(400px 280px at 100% 100%, rgba(86,103,255,.10), transparent 60%);
  pointer-events: none;
}
.mobile-menu .mm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 6px 18px;
  position: relative;
}
.mobile-menu .mm-head .brand-row { display: flex; align-items: center; gap: 10px; }
.mobile-menu .mm-head .brand-mark { width: 32px; height: 32px; border-radius: 9px; }
.mobile-menu .mm-head .brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 16px; color: white;
}
.mobile-menu .mm-head .brand-name span { color: var(--indigo-400); }
.mobile-menu .mm-close {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  color: rgba(230,233,241,.8);
  border: 1px solid rgba(255,255,255,.08);
}
.mobile-menu .mm-section {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(230,233,241,.4);
  padding: 12px 12px 8px;
  position: relative;
}
.mobile-menu .mm-section::before { content: '//'; margin-right: 6px; color: var(--indigo-400); }
.mobile-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  color: rgba(230,233,241,.82);
  font-weight: 500;
  font-size: 14.5px;
  position: relative;
  transition: background .2s, color .2s, transform .2s;
}
.mobile-menu a:hover, .mobile-menu a:focus {
  background: rgba(255,255,255,.05); color: white; transform: translateX(2px);
}
.mobile-menu a i { width: 18px; text-align: center; font-size: 14px; color: rgba(230,233,241,.55); }
.mobile-menu a:hover i { color: var(--indigo-400); }
.mobile-menu .mm-cta {
  margin-top: 18px; padding: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-700));
  color: white; font-weight: 600; font-size: 14px;
  border-radius: 10px;
  box-shadow: 0 8px 18px -6px rgba(86,103,255,.5);
}
.mobile-menu .mm-cta:hover { transform: translateY(-1px); }

.mm-backdrop {
  position: fixed; inset: 0;
  background: rgba(11,15,26,.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  z-index: 45;
}
.mm-backdrop.open { opacity: 1; pointer-events: auto; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-700));
  color: white;
  box-shadow: 0 6px 14px -4px rgba(86,103,255,.5), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 22px -6px rgba(86,103,255,.6), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-ghost {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--indigo-200); color: var(--indigo-700); }

.btn-sm { padding: 7px 12px; font-size: 13px; border-radius: 8px; }

/* ───────── Hero ───────── */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--indigo-700);
  background: var(--indigo-50);
  border: 1px solid var(--indigo-100);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .4; } }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 0 0 18px;
  font-weight: 700;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--indigo-600) 0%, #8b5cf6 50%, var(--indigo-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .mono {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .55em;
  display: inline-block;
  padding: 2px 10px;
  background: var(--ink);
  color: var(--indigo-200);
  border-radius: 8px;
  vertical-align: middle;
  transform: translateY(-6px) rotate(-2deg);
  box-shadow: 4px 4px 0 var(--indigo-500);
}
.hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; font-size: 13px; color: var(--muted); }
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta i { color: var(--green); }
.whatsapp-button {
	position: fixed;
	bottom: 15px;
	right: 15px;
	left: 15px;
	z-index: 99;
	background-color: #4fce5d;
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	width: 50px;
	height: 50px;
	font-size: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	-webkit-box-shadow: 0 0 25px -6px #000;
	-moz-box-shadow: 0 0 25px -6px #000;
	box-shadow: 0 0 25px -6px #000;
	animation: effect 5s infinite ease-in
}

@keyframes effect {

	100%,
	20% {
		width: 60px;
		height: 60px;
		font-size: 40px
	}

	0%,
	10% {
		width: 60px;
		height: 60px;
		font-size: 35px
	}

	5% {
		width: 50px;
		height: 50px;
		font-size: 30px
	}
}
/* hero 3D stack */
.hero-art {
  position: relative;
  perspective: 1400px;
  height: 460px;
}
.hero-card {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  transform-style: preserve-3d;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.hero-card.terminal {
  inset: 30px 60px 80px 0;
  background: #0b0f1a;
  color: #e6e9f1;
  border: 1px solid #1c2438;
  transform: rotateY(-12deg) rotateX(8deg) translateZ(0);
  box-shadow: 0 40px 80px -20px rgba(11,15,26,.35), 0 0 0 1px rgba(86,103,255,.15);
  overflow: hidden;
}
.terminal-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid #1c2438;
  background: linear-gradient(180deg, #11172a, #0d1322);
}
.terminal-bar .dot-r { width: 11px; height: 11px; border-radius: 50%; background: #ff5f56; }
.terminal-bar .dot-y { width: 11px; height: 11px; border-radius: 50%; background: #ffbd2e; }
.terminal-bar .dot-g { width: 11px; height: 11px; border-radius: 50%; background: #27c93f; }
.terminal-bar .title {
  margin-left: 12px; font-family: var(--font-mono); font-size: 11px; color: rgba(230,233,241,.5);
}
.terminal-body {
  padding: 18px 18px 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.7;
}
.t-line { white-space: nowrap; overflow: hidden; }
.t-prompt { color: var(--indigo-400); }
.t-cmd { color: #e6e9f1; }
.t-out { color: rgba(230,233,241,.65); }
.t-ok { color: #4ade80; }
.t-warn { color: #fbbf24; }
.t-key { color: #c084fc; }
.cursor { display: inline-block; width: 7px; height: 14px; background: var(--indigo-400); vertical-align: -2px; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero-card.stat {
  width: 220px; padding: 14px 16px;
  right: 0; top: 0;
  transform: rotate(4deg) translateZ(40px);
}
.hero-card.stat .label { font-family: var(--font-mono); font-size: 10px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .12em; }
.hero-card.stat .num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ink); margin-top: 4px; }
.hero-card.stat .delta { font-size: 12px; color: var(--green); display: inline-flex; align-items: center; gap: 4px; }
.hero-card.stat .spark {
  margin-top: 10px; height: 36px;
  background:
    linear-gradient(180deg, rgba(86,103,255,.18), transparent),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 36' preserveAspectRatio='none'><path d='M0,28 L12,22 L24,26 L36,18 L48,20 L60,12 L72,14 L84,6 L100,8' stroke='%235667ff' stroke-width='2' fill='none' stroke-linejoin='round' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}

.hero-card.license {
  width: 240px; padding: 14px;
  right: 30px; bottom: 0;
  transform: rotate(-5deg) translateZ(60px);
}
.lic-row { display: flex; align-items: center; gap: 10px; }
.lic-icon { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; background: var(--indigo-50); color: var(--indigo-700); }
.lic-name { font-weight: 600; font-size: 13px; }
.lic-key { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: .04em; }
.lic-status {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(22,163,74,.1);
  color: var(--green);
  border: 1px solid rgba(22,163,74,.2);
}
.lic-bar { margin-top: 12px; height: 6px; border-radius: 3px; background: var(--bg-2); overflow: hidden; }
.lic-bar > div { height: 100%; background: linear-gradient(90deg, var(--indigo-500), var(--indigo-700)); border-radius: 3px; }
.lic-meta { margin-top: 8px; display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); font-family: var(--font-mono); }

/* floating shapes */
.float-shape { position: absolute; pointer-events: none; }
.float-shape.cube {
  width: 60px; height: 60px;
  top: 10%; right: -10px;
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-700));
  border-radius: 12px;
  transform: rotate(35deg) skew(-10deg, -5deg);
  box-shadow: -10px 10px 0 #c084fc, var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.float-shape.ring {
  width: 80px; height: 80px;
  bottom: 6%; left: -20px;
  border-radius: 50%;
  border: 8px solid var(--indigo-200);
  animation: float 7s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}
.hero-art > .float-shape.cube { animation-delay: 0s; }

/* ───────── Marquee logos ───────── */
.logos {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--surface-2);
  overflow: hidden;
}
.logos-track {
  display: flex; gap: 56px; align-items: center;
  font-family: var(--font-mono); color: var(--muted-2); font-size: 13px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}
@keyframes scroll { to { transform: translateX(-50%); } }
.logos-track span { display: inline-flex; align-items: center; gap: 8px; }
.logos-track i { color: var(--indigo-500); }

/* ───────── Section ───────── */
.section { padding: 90px 0; position: relative; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--indigo-700);
  background: var(--indigo-50);
  border: 1px solid var(--indigo-100);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 14px;
  font-weight: 700;
}
.section h2 .grad {
  background: linear-gradient(135deg, var(--indigo-600), #8b5cf6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section .lede { color: var(--muted); font-size: 16px; max-width: 580px; margin: 0 auto; text-wrap: pretty; }

/* ───────── Product grid (tilt cards) ───────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.p-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform .25s ease, box-shadow .25s, border-color .25s;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.p-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(86,103,255,.08), transparent 60%);
  opacity: 0; transition: opacity .25s;
  pointer-events: none;
}
.p-card:hover { box-shadow: var(--shadow-lg); border-color: var(--indigo-200); }
.p-card:hover::before { opacity: 1; }

.p-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
  position: relative;
  transform: translateZ(40px);
  background: linear-gradient(135deg, var(--indigo-50), white);
  border: 1px solid var(--indigo-100);
  color: var(--indigo-700);
  box-shadow: 0 8px 16px -6px rgba(86,103,255,.25), inset 0 1px 0 white;
}
.p-icon::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--indigo-500), transparent 60%);
  z-index: -1; filter: blur(8px); opacity: .35;
}

.p-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 6px;
  letter-spacing: -.01em;
  transform: translateZ(30px);
}
.p-card .p-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--indigo-700);
  background: var(--indigo-50);
  padding: 2px 8px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.p-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  transform: translateZ(20px);
}
.p-card .p-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  transform: translateZ(20px);
}
.p-card .p-from { font-size: 12px; color: var(--muted); }
.p-card .p-from b { font-family: var(--font-display); font-size: 16px; color: var(--ink); display: block; }
.p-card .p-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--indigo-700);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.p-card:hover .p-link { gap: 10px; }

/* ───────── Pricing ───────── */
.pricing-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  margin-bottom: 44px;
}
.toggle {
  display: inline-flex;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px;
  box-shadow: var(--shadow-sm);
}
.toggle button {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  color: var(--muted);
  position: relative;
  font-family: var(--font-mono);
  letter-spacing: .02em;
}
.toggle button.active {
  background: var(--ink);
  color: white;
  box-shadow: 0 4px 10px -3px rgba(11,15,26,.35);
}
.toggle button .save {
  font-size: 9px;
  background: var(--indigo-500);
  color: white;
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 6px;
  letter-spacing: .04em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.price-card::after {
  content: '';
  position: absolute; inset: -1px -1px auto -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--indigo-500), #8b5cf6, var(--indigo-700));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: 0;
  transition: opacity .25s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--indigo-200);
}
.price-card:hover::after { opacity: 1; }

.price-card.featured {
  background: linear-gradient(180deg, #0b0f1a 0%, #11172a 100%);
  color: #e6e9f1;
  border: 1px solid #1c2438;
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}
.price-card.featured::after { opacity: 1; }
.price-card.featured .p-name { color: white; }
.price-card.featured .p-desc { color: rgba(230,233,241,.6); }
.price-card.featured .price-amount { color: white; }
.price-card.featured .price-period { color: rgba(230,233,241,.5); }
.price-card.featured ul li { color: rgba(230,233,241,.85); border-bottom-color: rgba(255,255,255,.06); }
.price-card.featured ul li i { color: #4ade80; }
.price-card.featured .btn-buy { background: white; color: var(--ink); }
.price-card.featured .btn-buy:hover { background: var(--indigo-100); color: var(--indigo-700); }

.featured-badge {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  background: linear-gradient(135deg, var(--indigo-500), #8b5cf6);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px -4px rgba(86,103,255,.5);
}

.p-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.p-head .p-icon-sm {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--indigo-50);
  color: var(--indigo-700);
  font-size: 18px;
}
.price-card.featured .p-head .p-icon-sm {
  background: rgba(86,103,255,.15); color: var(--indigo-200);
  border: 1px solid rgba(86,103,255,.25);
}
.p-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 0; }
.p-desc { font-size: 12.5px; color: var(--muted); margin: 0; }

.price-row {
  display: flex; align-items: baseline; gap: 6px;
  margin: 18px 0 6px;
  font-family: var(--font-display);
}
.price-amount { font-size: 38px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.price-currency { font-size: 18px; font-weight: 600; color: var(--muted); }
.price-period { font-size: 13px; color: var(--muted); font-family: var(--font-sans); }
.price-old {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted-2);
  text-decoration: line-through;
  margin-bottom: 18px;
}
.price-card ul {
  list-style: none; padding: 0; margin: 18px 0 22px;
  font-size: 13.5px;
}
.price-card ul li {
  padding: 9px 0;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li i { color: var(--green); font-size: 12px; flex-shrink: 0; }
.btn-buy {
  width: 100%; justify-content: center;
  padding: 12px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  margin-top: auto;
  transition: background .2s, transform .15s;
}
.btn-buy:hover { background: var(--indigo-700); transform: translateY(-1px); }

/* ───────── Licenses compact grid ───────── */
.licenses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.lic-card {
  display: flex; align-items: center; gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
.lic-card:hover { transform: translateY(-2px); border-color: var(--indigo-200); box-shadow: var(--shadow-md); }
.lic-card-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--indigo-50), white);
  border: 1px solid var(--indigo-100);
  color: var(--indigo-700);
  font-size: 17px;
  flex-shrink: 0;
}
.lic-card-body { flex: 1; min-width: 0; }
.lic-card-body h4 { margin: 0; font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.lic-card-from { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); }
.lic-card-from .suffix { color: var(--muted-2); }
.lic-card-cta {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--bg-2);
  color: var(--ink);
  font-size: 12px;
  transition: background .2s, color .2s;
}
.lic-card:hover .lic-card-cta { background: var(--ink); color: white; }

/* ───────── Features ───────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.feature {
  position: relative;
  padding: 26px;
  border-radius: var(--r-lg);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.feature .num {
  position: absolute; top: 14px; right: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: .08em;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 18px;
  background: linear-gradient(135deg, var(--ink), #1a2236);
  color: var(--indigo-200);
  margin-bottom: 18px;
  box-shadow: 0 8px 18px -6px rgba(11,15,26,.35), inset 0 1px 0 rgba(255,255,255,.1);
}
.feature h3 { font-family: var(--font-display); font-size: 17px; margin: 0 0 6px; }
.feature p { margin: 0; color: var(--muted); font-size: 13.5px; }

/* ───────── FAQ ───────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--indigo-200); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 14.5px;
}
.faq-q .ix {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--indigo-600);
  background: var(--indigo-50);
  padding: 3px 7px;
  border-radius: 6px;
  flex-shrink: 0;
}
.faq-q i { margin-left: auto; transition: transform .25s; color: var(--muted); }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--indigo-700); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 18px 18px 50px; }

/* ───────── CTA banner ───────── */
.cta {
  position: relative;
  padding: 60px 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0b0f1a 0%, #1a2236 60%, #2a39e0 130%);
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size: 18px 18px;
}
.cta::after {
  content: ''; position: absolute;
  width: 420px; height: 420px; border-radius: 50%;
  right: -120px; top: -120px;
  background: radial-gradient(circle, rgba(86,103,255,.5), transparent 70%);
  filter: blur(20px);
}
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr .6fr; gap: 32px; align-items: center; }
.cta h3 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); margin: 0 0 10px; letter-spacing: -.02em; }
.cta p { color: rgba(230,233,241,.7); margin: 0 0 18px; max-width: 480px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta .btn-ghost { background: rgba(255,255,255,.08); color: white; border-color: rgba(255,255,255,.15); backdrop-filter: blur(8px); }
.cta .btn-ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); }
.cta-side { font-family: var(--font-mono); font-size: 12px; color: rgba(230,233,241,.7); }
.cta-side .row { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.cta-side .row:last-child { border-bottom: 0; }
.cta-side i { color: #4ade80; }

/* ───────── Footer ───────── */
footer {
  background: var(--ink);
  color: rgba(230,233,241,.7);
  padding: 56px 0 28px;
  margin-top: 60px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.foot-col h4 { font-family: var(--font-display); font-size: 13px; color: white; margin: 0 0 14px; text-transform: uppercase; letter-spacing: .08em; }
.foot-col a { display: block; padding: 5px 0; font-size: 13.5px; }
.foot-col a:hover { color: var(--indigo-200); }
.foot-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; font-family: var(--font-mono); }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 34px; height: 34px; border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(230,233,241,.7);
  transition: all .2s;
}
.socials a:hover { background: var(--indigo-700); color: white; border-color: var(--indigo-700); }

/* ───────── Responsive ───────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { height: 420px; max-width: 480px; margin: 0 auto; }
  .cta-inner { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .app { grid-template-columns: 1fr; padding-top: var(--topbar-h); }
  .sidebar { display: none; }
  .topbar { display: flex; }
  .container { width: min(100% - 32px, 1180px); }
  .hero { padding: 36px 0 60px; }
  .section { padding: 64px 0; }
  .cta { padding: 40px 24px; border-radius: 18px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-card.stat { width: 180px; }
  .hero-card.license { width: 200px; right: 10px; }
  .float-shape.cube { display: none; }
}

@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bot { flex-direction: column; gap: 14px; text-align: center; }
  .hero h1 .mono { font-size: .5em; }
  .hero-art { height: 360px; }
  .pricing-grid, .products-grid { grid-template-columns: 1fr; }
}
