/* ============================================================
   VORELL — Premium Plugin Landing
   Author: Mavis
   ============================================================ */

:root {
  --bg: #07080d;
  --bg-2: #0b0e16;
  --bg-3: #10131c;
  --line: rgba(255,255,255,.06);
  --line-2: rgba(255,255,255,.10);
  --text: #e9ecf3;
  --text-dim: #9aa3b2;
  --text-mute: #6b7280;
  --accent: #3b82f6;
  --accent-2: #60a5fa;
  --accent-3: #1d4ed8;
  --green: #22c55e;
  --red: #ef4444;
  --yellow: #f59e0b;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 30px 80px -30px rgba(59,130,246,.35);
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--accent); color: #fff; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body { position: relative; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-2); }

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

input, textarea { font: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ----------------- background ----------------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.bg__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}
.bg__noise {
  position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.bg__glow {
  position: absolute; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  border-radius: 50%; filter: blur(120px); opacity: .35;
  animation: float 18s ease-in-out infinite alternate;
}
.bg__glow--a {
  background: radial-gradient(circle, #3b82f6, transparent 60%);
  top: -20%; left: -10%;
}
.bg__glow--b {
  background: radial-gradient(circle, #7c3aed, transparent 60%);
  bottom: -20%; right: -10%;
  animation-delay: -8s;
}
.bg__particles {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

@keyframes float {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,-30px) scale(1.1); }
}

/* ----------------- preloader ----------------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__logo {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600; letter-spacing: .25em; color: var(--text);
  font-size: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
}
.preloader__bracket { color: var(--accent-2); }
.preloader__bar {
  width: 220px; height: 2px; background: rgba(255,255,255,.08);
  border-radius: 2px; overflow: hidden; margin: 0 auto;
}
.preloader__bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent-3), var(--accent), var(--accent-2));
  box-shadow: 0 0 16px var(--accent);
  animation: preload 1.2s var(--ease) forwards;
}
@keyframes preload { to { width: 100%; } }

/* ----------------- header ----------------- */
.header {
  position: sticky; top: 0; z-index: 50;
  padding: 14px 0;
  background: rgba(7,8,13,.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7,8,13,.78);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; letter-spacing: .12em; font-size: 16px;
}
.logo__mark {
  width: 24px; height: 24px;
  display: grid; grid-template: repeat(2,1fr) / repeat(2,1fr);
  gap: 2px;
}
.logo__mark span {
  background: var(--accent-2);
  border-radius: 2px;
  animation: mark 3s ease-in-out infinite;
}
.logo__mark span:nth-child(2) { animation-delay: .2s; background: var(--accent); }
.logo__mark span:nth-child(3) { animation-delay: .4s; background: #1d4ed8; }
.logo__mark span:nth-child(4) { animation-delay: .6s; background: #7c3aed; }
@keyframes mark {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.85); opacity: .55; }
}
.nav {
  display: flex; gap: 28px;
  font-size: 14px; color: var(--text-dim);
}
.nav a { position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--accent-2); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }

.burger { display: none; width: 36px; height: 36px; position: relative; }
.burger span {
  position: absolute; left: 8px; right: 8px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.burger span:nth-child(1) { top: 12px; }
.burger span:nth-child(2) { top: 17px; }
.burger span:nth-child(3) { top: 22px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

.header__auth {
  display: inline-flex; align-items: center; gap: 10px;
}
.header__user {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-dim);
}
.header__user svg { flex-shrink: 0; }

/* modal */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none;
}
.modal.is-open { display: block; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__content {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 20px;
}
.modal__close {
  position: absolute; top: 18px; right: 22px;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line-2);
  color: var(--text); font-size: 22px; line-height: 1;
  display: grid; place-items: center;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.modal__close:hover { background: rgba(255,255,255,.12); border-color: var(--accent-2); }

.auth {
  width: 100%; max-width: 400px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.7);
}
.auth__tabs {
  display: flex; gap: 4px; padding: 4px;
  background: rgba(255,255,255,.04); border-radius: 10px;
  margin-bottom: 18px;
}
.auth__tab {
  flex: 1; padding: 10px; border-radius: 8px;
  background: transparent; color: var(--text-mute);
  font-weight: 600; font-size: 14px;
  transition: all .2s var(--ease);
}
.auth__tab.active { background: var(--accent); color: #fff; }
.auth__form { display: grid; gap: 12px; }
.auth__form.is-hidden { display: none; }
.auth__form label {
  display: grid; gap: 6px;
}
.auth__form label span {
  font-size: 12px; color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .12em; text-transform: uppercase;
}
.auth__form input {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2);
  border-radius: 10px; color: var(--text);
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.auth__form input:focus { border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(59,130,246,.15); }
.auth__error {
  font-size: 13px; color: var(--red); min-height: 18px;
}
.auth__user {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; font-size: 14px; color: var(--text-dim);
}
.auth__user b { color: var(--text); }
.nav__auth {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

/* ----------------- buttons ----------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600; font-size: 14px;
  letter-spacing: .01em;
  transition: transform .2s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-3) 100%);
  box-shadow: 0 10px 30px -10px rgba(59,130,246,.6), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 18px 40px -10px rgba(59,130,246,.7), inset 0 1px 0 rgba(255,255,255,.2); color: #fff; }
.btn--primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
}
.btn--primary:hover::before { transform: translateX(100%); }
.btn--ghost {
  color: var(--text);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.07); border-color: var(--accent-2); color: #fff; }

/* ----------------- section heads ----------------- */
.section__head {
  text-align: center; max-width: 760px; margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent-2);
  padding: 6px 12px; border-radius: 999px;
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(59,130,246,.25);
  margin-bottom: 18px;
}
.section__title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.grad {
  background: linear-gradient(120deg, #93c5fd, #3b82f6 35%, #7c3aed 75%, #ec4899);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: grad 8s linear infinite;
}
@keyframes grad {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.section__sub {
  font-size: 17px; color: var(--text-dim); line-height: 1.6;
}

/* ----------------- HERO ----------------- */
.hero {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}
.hero__inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
}
.hero__title {
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero__sub {
  font-size: 18px; color: var(--text-dim);
  max-width: 540px; margin-bottom: 30px;
  line-height: 1.6;
}
.hero__cta { display: flex; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.hero__bullets {
  list-style: none; display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-dim);
}
.hero__bullets li { display: inline-flex; align-items: center; gap: 6px; }
.hero__bullets span {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(34,197,94,.15); color: #4ade80;
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2);
  font-size: 12px; color: var(--text-dim);
  margin-bottom: 22px;
  font-family: 'JetBrains Mono', monospace;
}
.badge__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.badge__sep { color: var(--text-mute); }

/* mockup */
.hero__mock {
  position: relative;
  perspective: 1500px;
}
.hero__halo {
  position: absolute; inset: -10% -10% -10% -10%;
  background: radial-gradient(circle at 50% 50%, rgba(59,130,246,.35), transparent 60%);
  filter: blur(40px); z-index: -1;
  animation: float 8s ease-in-out infinite alternate;
}
.mock {
  position: relative;
  background: linear-gradient(180deg, #0e1320 0%, #0a0d15 100%);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 16px;
  box-shadow:
    0 60px 120px -40px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.04) inset;
  transform: rotateY(-6deg) rotateX(2deg);
  animation: mockFloat 7s ease-in-out infinite;
  overflow: hidden;
}
.mock::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(59,130,246,.08) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: shimmer 6s linear infinite;
  pointer-events: none;
}
@keyframes shimmer { to { transform: translateX(100%); } }
@keyframes mockFloat {
  0%, 100% { transform: rotateY(-6deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-4deg) rotateX(1deg) translateY(-8px); }
}
.mock__bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 4px 14px; border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.mock__title {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600; font-size: 12px; letter-spacing: .25em; color: var(--text-dim);
}
.mock__gear { color: var(--text-mute); }
.mock__tabs { display: flex; gap: 18px; padding: 0 0 10px; font-size: 12px; }
.mock__tab { color: var(--text-mute); position: relative; padding-bottom: 4px; }
.mock__tab.active { color: var(--text); }
.mock__tab.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.mock__switch {
  display: grid; grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,.04); border-radius: 8px; padding: 3px;
  margin-bottom: 8px; font-size: 12px;
}
.mock__switch-item {
  text-align: center; padding: 8px; border-radius: 6px;
  color: var(--text-mute); transition: all .25s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.mock__switch-item.active { background: var(--accent); color: #fff; box-shadow: 0 4px 12px -4px rgba(59,130,246,.5); }
.mock__switch-item em {
  display: inline-block; width: 14px; height: 14px; border-radius: 3px;
  background: linear-gradient(135deg, #93c5fd, #3b82f6);
}
.mock__chips { display: flex; gap: 6px; margin: 14px 0; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 8px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  font-size: 12px; color: var(--text-dim);
}
.chip--on { background: rgba(59,130,246,.15); border-color: rgba(59,130,246,.4); color: #fff; }
.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.dot--blue { background: #3b82f6; box-shadow: 0 0 8px #3b82f6; }
.dot--red { background: #ef4444; box-shadow: 0 0 8px #ef4444; }
.dot--yellow { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }

.mock__panel {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  margin-top: 10px;
}
.mock__row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px; font-size: 12px;
}
.mock__row--col { flex-direction: column; align-items: stretch; gap: 4px; }
.mock__param { display: flex; justify-content: space-between; }
.mock__param b { color: var(--text); font-weight: 600; }
.mock__slider {
  position: relative; height: 4px; background: rgba(255,255,255,.08);
  border-radius: 2px; margin: 6px 0 10px;
}
.mock__slider i {
  position: absolute; top: 50%; transform: translate(-50%,-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 4px var(--accent), 0 0 16px var(--accent);
}
.mock__toggle {
  width: 36px; height: 20px; border-radius: 999px;
  background: rgba(255,255,255,.10); position: relative; transition: background .2s;
}
.mock__toggle::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; transition: transform .2s var(--ease);
}
.mock__toggle.on { background: var(--accent); }
.mock__toggle.on::after { transform: translateX(16px); }
.mock__cta {
  width: 100%; padding: 12px; border-radius: 8px; margin-top: 6px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff; font-weight: 600; font-size: 13px;
  box-shadow: 0 8px 24px -8px rgba(59,130,246,.5);
}

.mock__float {
  position: absolute;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(20,24,36,.85); border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
  font-size: 12px; line-height: 1.4;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,.5);
  animation: float 5s ease-in-out infinite;
}
.mock__float b { color: var(--text); }
.mock__float--1 { top: 10%; left: -8%; }
.mock__float--2 { bottom: 18%; right: -10%; animation-delay: -2.5s; }
.lf {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); margin-right: 6px; box-shadow: 0 0 8px var(--accent);
}
.lf--green { background: var(--green); box-shadow: 0 0 8px var(--green); }

/* hero marquee */
.hero__marquee {
  margin-top: 70px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.hero__marquee::before, .hero__marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.hero__marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.hero__marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee { overflow: hidden; }
.marquee__track {
  display: inline-flex; gap: 36px; align-items: center;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: .2em; color: var(--text-mute);
  font-weight: 500;
}
.marquee__track span { display: inline-block; }
.marquee__track span:nth-child(odd) { color: var(--text-dim); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ----------------- STATS ----------------- */
.stats { padding: 80px 0; border-bottom: 1px solid var(--line); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.stat { text-align: center; position: relative; }
.stat::after {
  content: ""; position: absolute; top: 50%; right: 0; transform: translateY(-50%);
  width: 1px; height: 60%; background: var(--line);
}
.stat:last-child::after { display: none; }
.stat__num {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800; line-height: 1;
  background: linear-gradient(180deg, #fff, #94a3b8);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.stat__label { font-size: 14px; color: var(--text-dim); line-height: 1.5; }

/* ----------------- FEATURES ----------------- */
.features { padding: 120px 0; }
.features__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.feature {
  grid-column: span 2;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.feature::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(59,130,246,.08), transparent 40%);
  opacity: 0; transition: opacity .3s var(--ease);
  pointer-events: none;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(59,130,246,.4); }
.feature:hover::before { opacity: 1; }
.feature--big { grid-column: span 3; padding: 32px; }
.feature__num {
  position: absolute; top: 22px; right: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: .2em;
  color: var(--text-mute);
}
.feature__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(180deg, rgba(59,130,246,.18), rgba(59,130,246,.05));
  border: 1px solid rgba(59,130,246,.25);
  display: grid; place-items: center;
  color: var(--accent-2); margin-bottom: 18px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
.feature--big h3 { font-size: 28px; }
.feature p { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; margin-bottom: 14px; }
.feature__list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px 10px;
  font-size: 12px; color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}
.feature__list li {
  padding: 4px 8px; border-radius: 6px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
}
.feature__viz {
  position: absolute; bottom: 0; right: 0; left: 0;
  display: flex; gap: 2px; align-items: flex-end;
  height: 60px; padding: 0 26px 20px;
  opacity: .5; pointer-events: none;
}
.feature__viz .wave {
  flex: 1; height: 100%;
  background: linear-gradient(180deg, transparent, var(--accent));
  -webkit-mask: linear-gradient(180deg, #000 30%, transparent 100%);
  animation: wave 2s ease-in-out infinite;
  border-radius: 2px;
  opacity: .6;
}
.feature__viz .wave:nth-child(2) { animation-delay: .3s; opacity: .4; }
.feature__viz .wave:nth-child(3) { animation-delay: .6s; opacity: .8; }
@keyframes wave {
  0%, 100% { transform: scaleY(.3); }
  50% { transform: scaleY(1); }
}

/* ----------------- WORKFLOW ----------------- */
.workflow { padding: 120px 0; position: relative; }
.steps {
  list-style: none; display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; counter-reset: step;
  position: relative;
}
.steps::before {
  content: ""; position: absolute; top: 36px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .4;
}
.step {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: rgba(59,130,246,.4); }
.step__num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--accent-2);
  padding: 4px 10px; border-radius: 999px;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.3);
  margin-bottom: 18px;
}
.step h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--text-dim); margin-bottom: 20px; }
.step__viz { height: 60px; }
.step__bar {
  height: 6px; background: rgba(255,255,255,.06);
  border-radius: 3px; margin-bottom: 6px; width: 80%;
}
.step__bar--a { width: 50%; background: linear-gradient(90deg, var(--accent), transparent); }
.mini-slider {
  height: 4px; background: rgba(255,255,255,.08);
  border-radius: 2px; margin-bottom: 14px; position: relative;
}
.mini-slider i {
  position: absolute; top: 50%; transform: translate(-50%,-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 4px var(--accent);
}
.mini-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px;
  background: rgba(255,255,255,.04);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  margin-bottom: 6px;
}
.mini-row b { margin-left: auto; color: var(--text); }
.mini-row__tag { width: 8px; height: 8px; border-radius: 50%; }
.tag--pause { background: var(--accent); }
.tag--word { background: var(--yellow); }
.tag--ok { background: var(--green); }

/* ----------------- CUSTOMIZATION ----------------- */
.custom { padding: 120px 0; }
.custom__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.custom__copy .section__title { text-align: left; margin-bottom: 18px; }
.custom__copy .section__sub { text-align: left; }
.custom__list {
  list-style: none; margin-top: 26px;
  display: grid; gap: 12px;
}
.custom__list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14.5px; color: var(--text-dim);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.custom__list li:hover { border-color: var(--accent-2); transform: translateX(4px); color: var(--text); }
.custom__list span {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-2), var(--accent-3));
  display: grid; place-items: center;
  font-size: 12px; color: #fff;
  position: relative; flex-shrink: 0;
}
.custom__list span::before {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  border: 1px solid rgba(59,130,246,.4);
  animation: pulse 2.4s infinite;
}

.custom__panel {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.6);
  position: relative; overflow: hidden;
}
.custom__panel::before {
  content: ""; position: absolute; top: -50%; right: -20%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, rgba(124,58,237,.15), transparent 60%);
  filter: blur(40px);
}
.custom__panel-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; position: relative;
}
.custom__panel-head > span {
  font-size: 13px; color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}
.custom__tabs {
  display: flex; gap: 4px; padding: 4px;
  background: rgba(255,255,255,.04); border-radius: 10px;
  font-size: 12px;
}
.custom__tabs span {
  padding: 6px 10px; border-radius: 6px; color: var(--text-mute);
  transition: all .2s var(--ease);
}
.custom__tabs span.active {
  background: var(--accent); color: #fff;
}
.custom__panel-body { display: grid; gap: 14px; position: relative; }
.custom__row {
  display: grid; grid-template-columns: 130px 1fr;
  align-items: center; gap: 16px;
}
.custom__row label { font-size: 13px; color: var(--text-dim); }
.slider {
  position: relative; height: 6px;
  background: linear-gradient(90deg, var(--accent-3) 0%, var(--accent-2) var(--val, 50%), rgba(255,255,255,.08) var(--val, 50%));
  border-radius: 3px;
}
.slider i {
  position: absolute; top: 50%; transform: translate(-50%,-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 4px rgba(59,130,246,.4), 0 4px 12px rgba(59,130,246,.4);
  cursor: grab;
}
.slider b {
  position: absolute; right: 0; top: -22px;
  font-size: 12px; color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}
.custom__toggle {
  width: 44px; height: 24px; border-radius: 999px;
  background: rgba(255,255,255,.1); position: relative;
  transition: background .25s var(--ease);
  justify-self: start;
}
.custom__toggle span {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; transition: transform .25s var(--ease);
  box-shadow: 0 2px 4px rgba(0,0,0,.3);
}
.custom__toggle.on { background: var(--accent); }
.custom__toggle.on span { transform: translateX(20px); }

/* ----------------- RESULTS (Vorell results panel) ----------------- */
.results { padding: 120px 0; }

.rwrap {
  background: linear-gradient(180deg, #0c0f17 0%, #0a0c13 100%);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,.7);
  position: relative;
}
.rwrap::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(59,130,246,.08), transparent 60%);
  pointer-events: none;
}

/* top bar */
.rbar {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 20px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.2);
  position: relative;
}
.rbar__back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-dim); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: color .2s var(--ease);
  justify-self: start;
}
.rbar__back:hover { color: var(--text); }
.rbar__back--r { visibility: hidden; }
.rbar__title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: .3em;
  color: var(--text-dim);
  text-transform: uppercase;
  white-space: nowrap;
}

/* body grid */
.rbody {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 0;
}

/* summary sidebar */
.rsummary {
  padding: 22px 22px;
  border-right: 1px solid var(--line);
  background: rgba(0,0,0,.15);
}
.rsummary__head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .25em;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.rsummary__head--mt { margin-top: 26px; }
.rsummary__total {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 18px;
}
.rsummary__num {
  font-size: 44px; font-weight: 800; line-height: 1;
  background: linear-gradient(180deg, #fff, #94a3b8);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.rsummary__all {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: .2em; color: var(--text-mute);
  text-transform: uppercase;
}
.rsummary__list { list-style: none; display: grid; gap: 10px; }
.rsummary__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}
.rsummary__list b {
  color: var(--text); font-weight: 700;
  margin-left: 4px; min-width: 22px;
}
.rsummary__list .dot { box-shadow: none; }

/* right column */
.rlist { padding: 18px 22px 22px; min-width: 0; }

/* filter chips */
.rfilter {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px;
}
.rchip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  font-size: 13px; color: var(--text-dim);
  cursor: pointer; transition: all .2s var(--ease);
}
.rchip:hover { color: var(--text); border-color: var(--line-2); }
.rchip--on { background: rgba(59,130,246,.15); border-color: var(--accent); color: #fff; box-shadow: 0 4px 12px -4px rgba(59,130,246,.4); }
.rchip .dot { box-shadow: none; }

/* action bar */
.ract {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.ract__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2);
  color: var(--text-dim);
  font-size: 13px; font-weight: 500;
  transition: all .2s var(--ease);
}
.ract__btn:hover { background: rgba(255,255,255,.08); color: var(--text); border-color: var(--accent-2); }
.ract__btn--add { color: var(--accent-2); border-color: rgba(59,130,246,.3); background: rgba(59,130,246,.08); }
.ract__btn--add:hover { background: rgba(59,130,246,.18); color: #fff; }
.ract__info {
  margin-left: auto; display: flex; align-items: center; gap: 18px;
  font-size: 12px; color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}
.ract__info b { color: var(--text); font-weight: 600; }
.ract__time { padding-left: 18px; border-left: 1px solid var(--line); }

/* segment rows */
.rsegments {
  list-style: none; display: grid; gap: 6px;
  margin-bottom: 18px;
  max-height: 540px; overflow-y: auto;
  padding-right: 4px;
}
.rsegments::-webkit-scrollbar { width: 6px; }
.rsegments::-webkit-scrollbar-track { background: transparent; }
.rsegments::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 3px; }
.rsegments::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.16); }

.rsegments li {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center; gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all .2s var(--ease);
}
.rsegments li:hover {
  background: rgba(255,255,255,.04);
  border-color: var(--line-2);
}
.rsegments__retake {
  border-color: rgba(239,68,68,.25);
  background: rgba(239,68,68,.04);
}
.rsegments__retake:hover { border-color: rgba(239,68,68,.4); }

/* checkbox */
.cbx { position: relative; display: inline-flex; cursor: pointer; }
.cbx input { position: absolute; opacity: 0; pointer-events: none; }
.cbx__b {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--accent);
  border: 1px solid var(--accent-3);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px -4px rgba(59,130,246,.5);
  transition: all .2s var(--ease);
}
.cbx__b svg { width: 14px; height: 14px; opacity: 0; transform: scale(.5); transition: all .2s var(--ease); }
.cbx input:checked + .cbx__b svg { opacity: 1; transform: scale(1); }
.cbx:hover .cbx__b { box-shadow: 0 4px 16px -2px rgba(59,130,246,.7); }

/* icon */
.ric {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 6px;
  flex-shrink: 0;
}
.ric svg { width: 14px; height: 14px; }
.ric--pause { background: rgba(59,130,246,.15); color: #93c5fd; }
.ric--retake { background: rgba(239,68,68,.15); color: #fca5a5; }
.ric--word { background: rgba(245,158,11,.15); color: #fbbf24; }

.rname {
  font-size: 14px; color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  min-width: 0;
}
.rsegments__retake .rname { color: #fecaca; }

/* action buttons per row */
.ractions { display: flex; gap: 6px; }
.rbtn {
  width: 32px; height: 28px; border-radius: 6px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2);
  color: var(--text-dim);
  transition: all .2s var(--ease);
}
.rbtn svg { width: 13px; height: 13px; }
.rbtn--ok { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 4px 10px -3px rgba(59,130,246,.5); }
.rbtn--ok:hover { background: var(--accent-2); transform: translateY(-1px); }
.rbtn--play:hover { background: rgba(255,255,255,.08); color: var(--text); }
.rbtn--x:hover { background: var(--red); color: #fff; border-color: var(--red); }

.rtime {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--text-dim);
  white-space: nowrap;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  min-width: 170px; text-align: right;
}

/* apply button */
.rapply {
  position: sticky; bottom: 0;
  padding-top: 8px;
}
.rapply__btn {
  width: 100%; padding: 16px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent-3));
  color: #fff;
  font-size: 15px; font-weight: 600;
  border-radius: 12px;
  letter-spacing: .01em;
  box-shadow: 0 10px 30px -8px rgba(59,130,246,.5), inset 0 1px 0 rgba(255,255,255,.2);
  transition: all .25s var(--ease);
  position: relative; overflow: hidden;
}
.rapply__btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
}
.rapply__btn:hover { transform: translateY(-1px); box-shadow: 0 18px 40px -10px rgba(59,130,246,.7); }
.rapply__btn:hover::before { transform: translateX(100%); }

@media (max-width: 860px) {
  .rbody { grid-template-columns: 1fr; }
  .rsummary { border-right: 0; border-bottom: 1px solid var(--line); }
  .ract__info { width: 100%; justify-content: space-between; margin-left: 0; padding-top: 4px; border-top: 1px solid var(--line); }
  .rtime { font-size: 11px; min-width: 130px; }
  .rsegments li { gap: 8px; padding: 10px; }
  .rname { font-size: 13px; }
}
@media (max-width: 540px) {
  .rbar { grid-template-columns: auto 1fr auto; }
  .rbar__title { font-size: 11px; letter-spacing: .2em; }
  .rsegments__retake .rname { font-size: 12px; }
  .ractions { display: none; }
  .rtime { min-width: auto; border: 0; padding: 0; font-size: 11px; }
  .ric { width: 22px; height: 22px; }
}

/* ----------------- LOGOS ----------------- */
.logos { padding: 80px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos__title { text-align: center; font-size: 13px; color: var(--text-mute); margin-bottom: 30px; font-family: 'JetBrains Mono', monospace; letter-spacing: .15em; text-transform: uppercase; }
.logos__row {
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 30px;
}
.logos__row span {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600; font-size: 18px;
  color: var(--text-dim); letter-spacing: .1em;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.logos__row span:hover { color: var(--text); transform: translateY(-2px); }

/* ----------------- PRICING ----------------- */
.pricing { padding: 120px 0; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 20px; padding: 30px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.price:hover { transform: translateY(-4px); border-color: var(--line-2); }
.price__name { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .2em; color: var(--text-mute); text-transform: uppercase; }
.price__cost { margin: 14px 0 22px; }
.price__cost b {
  font-size: 48px; font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(180deg, #fff, #94a3b8);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.price__cost i { display: block; font-style: normal; font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.price ul { list-style: none; display: grid; gap: 10px; margin-bottom: 24px; }
.price li { font-size: 14px; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
.price li::before { content: ""; width: 16px; height: 16px; border-radius: 50%; background: rgba(59,130,246,.15); display: inline-block; flex-shrink: 0; }

.price--hot {
  background: linear-gradient(180deg, rgba(59,130,246,.15), rgba(124,58,237,.04));
  border-color: rgba(59,130,246,.4);
  transform: scale(1.03);
  box-shadow: 0 40px 80px -30px rgba(59,130,246,.5);
}
.price--hot:hover { transform: scale(1.03) translateY(-4px); }
.price__tag {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 10px; border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #7c3aed);
  font-size: 11px; color: #fff; font-weight: 600;
  font-family: 'JetBrains Mono', monospace; letter-spacing: .1em;
}

/* ----------------- FAQ ----------------- */
.faq { padding: 120px 0; }
.faq__grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
  align-items: start;
}
.acc { list-style: none; display: grid; gap: 10px; }
.acc li {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
  transition: border-color .25s var(--ease);
}
.acc li:hover { border-color: var(--line-2); }
.acc li.is-open { background: rgba(59,130,246,.05); border-color: rgba(59,130,246,.3); }
.acc__head {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 22px;
  text-align: left; font-size: 15px; font-weight: 500;
  color: var(--text);
}
.acc__head i {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  position: relative; flex-shrink: 0;
  transition: background .25s var(--ease);
}
.acc__head i::before, .acc__head i::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 10px; height: 2px;
  background: var(--text); border-radius: 1px;
  transform: translate(-50%,-50%);
  transition: transform .3s var(--ease);
}
.acc__head i::after { transform: translate(-50%,-50%) rotate(90deg); }
.acc li.is-open .acc__head i { background: var(--accent); }
.acc li.is-open .acc__head i::before, .acc li.is-open .acc__head i::after { background: #fff; }
.acc li.is-open .acc__head i::after { transform: translate(-50%,-50%) rotate(0deg); }
.acc__body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.acc__body p { padding: 0 22px 20px; color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

/* ----------------- CTA ----------------- */
.cta { padding: 100px 0 120px; }
.cta__box {
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(59,130,246,.3), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(124,58,237,.25), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--line-2);
  border-radius: 32px;
  padding: 80px 40px;
  position: relative; overflow: hidden;
}
.cta__box::before {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='1' cy='1' r='1' fill='%23ffffff' opacity='.05'/></svg>");
  pointer-events: none;
}
.cta__box h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  position: relative;
}
.cta__box p { color: var(--text-dim); font-size: 17px; max-width: 540px; margin: 0 auto 30px; position: relative; }
.cta__row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta__rating {
  margin-top: 30px; display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-dim);
  position: relative;
}
.stars { color: #fbbf24; letter-spacing: .15em; }

/* ----------------- FOOTER ----------------- */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(7,8,13,.5);
}
.footer__grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px; margin-bottom: 40px;
}
.footer__brand p { color: var(--text-dim); font-size: 14px; margin-top: 14px; max-width: 280px; }
.footer h4 { font-size: 12px; color: var(--text); margin-bottom: 14px; font-family: 'JetBrains Mono', monospace; letter-spacing: .15em; text-transform: uppercase; }
.footer a { display: block; font-size: 14px; color: var(--text-dim); padding: 4px 0; }
.footer a:hover { color: var(--accent-2); }
.footer__bot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--text-mute);
  font-family: 'JetBrains Mono', monospace;
}

/* ----------------- reveal animations ----------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ----------------- responsive ----------------- */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .features__grid { grid-template-columns: repeat(4, 1fr); }
  .feature, .feature--big { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .custom__grid { grid-template-columns: 1fr; }
  .results__layout { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price--hot { transform: none; }
  .price--hot:hover { transform: translateY(-4px); }
  .faq__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat:nth-child(2)::after { display: none; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .header__auth { display: none; }
  .burger { display: block; }
  .nav.is-open .nav__auth { display: flex; }
  .nav.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-2); padding: 20px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }
  .features__grid { grid-template-columns: 1fr; }
  .feature, .feature--big { grid-column: span 1; }
  .feature--big { padding: 26px; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta__box { padding: 50px 20px; }
  .hero { padding: 50px 0 30px; }
  .hero__bullets { font-size: 12px; gap: 14px; }
  .rbar { grid-template-columns: auto 1fr auto; }
  .rbar__title { font-size: 11px; letter-spacing: .2em; }
  .ractions { display: none; }
  .rtime { min-width: auto; border: 0; padding: 0; font-size: 11px; }
  .ric { width: 22px; height: 22px; }
}
