/* ============================================================
   VSECTER — marketing site  ·  premium design system
   ============================================================ */
:root {
  --primary: #3498db;
  --primary-dark: #2c80b4;
  --primary-darker: #1f5f88;
  --indigo: #5b6cf0;
  --cyan: #22d3ee;
  --accent: #f1c40f;
  --ink: #0e1b2a;
  --body: #41546a;
  --muted: #76889d;
  --line: #e7eef5;
  --bg: #ffffff;
  --bg-soft: #f3f8fc;
  --bg-dark: #0c1722;
  --surface: #ffffff;        /* cards / panels (themable) */
  --surface-2: #f3f8fc;
  --nav-bg: rgba(255,255,255,.65);
  --nav-bg-scrolled: rgba(255,255,255,.92);
  --footer-bg: #0c1722;
  --disclaimer-bg: #fff7e0;
  --disclaimer-line: #f3e0a3;
  --disclaimer-ink: #7a5b00;
  --logo-slate: #2c3e50;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 30px;
  --shadow-sm: 0 2px 10px rgba(14, 27, 42, .06);
  --shadow-md: 0 14px 38px rgba(14, 27, 42, .10);
  --shadow-lg: 0 30px 70px rgba(14, 27, 42, .18);
  --glow: 0 10px 40px rgba(52, 152, 219, .45);
  --maxw: 1160px;
  --grad-brand: linear-gradient(120deg, #3498db 0%, #5b6cf0 60%, #22d3ee 120%);
  --grad-brand-soft: linear-gradient(120deg, rgba(52,152,219,.14), rgba(91,108,240,.14));
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font);
}

/* ---------- dark theme ---------- */
html[data-theme="dark"] {
  --ink: #eef4fa;
  --body: #aebfcf;
  --muted: #8194a8;
  --line: rgba(255,255,255,.10);
  --bg: #0b1521;
  --bg-soft: #0e1b29;
  --surface: #14222f;
  --surface-2: #19293a;
  --nav-bg: rgba(11,21,33,.72);
  --nav-bg-scrolled: rgba(11,21,33,.93);
  --footer-bg: #081019;
  --disclaimer-bg: #2a2410;
  --disclaimer-line: #5c4d1e;
  --disclaimer-ink: #e8cf86;
  --logo-slate: #aeb9c8;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.35);
  --shadow-md: 0 14px 38px rgba(0,0,0,.45);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.55);
  --grad-brand-soft: linear-gradient(120deg, rgba(52,152,219,.22), rgba(91,108,240,.22));
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  transition: background-color .3s ease, color .3s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.12; font-weight: 800; letter-spacing: -.025em; }
::selection { background: rgba(52,152,219,.22); }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 6px; }

/* skip link */
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 200; background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 10px; font-weight: 700; }
.skip-link:focus { left: 12px; }

/* scroll progress bar */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100; background: var(--grad-brand); box-shadow: 0 0 12px rgba(52,152,219,.6); transition: width .08s linear; }

/* back to top */
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer; background: var(--grad-brand); color: #fff; box-shadow: var(--glow); display: grid; place-items: center; opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top svg { width: 22px; height: 22px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 16px;
  padding: 6px 14px; border-radius: var(--radius-pill); background: var(--grad-brand-soft);
}
.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); margin-bottom: 16px; }
.section-head p { font-size: 1.12rem; color: var(--muted); }
.grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 1rem; padding: 14px 26px; border-radius: 13px;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .2s ease;
  white-space: nowrap; font-family: var(--font);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--glow); background-size: 160% 160%; }
.btn--primary:hover { background-position: 100% 0; box-shadow: 0 16px 50px rgba(52,152,219,.55); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--white { background: #fff; color: var(--primary-darker); }
.btn--accent { background: var(--accent); color: #2a2000; box-shadow: 0 10px 30px rgba(241,196,15,.45); }
.btn--lg { padding: 17px 36px; font-size: 1.08rem; }
/* unique light-sheen sweep on primary buttons */
.btn--primary { overflow: hidden; }
.btn--primary::after { content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-20deg); pointer-events: none; }
.btn--primary:hover::after { animation: sheen .75s ease; }
@keyframes sheen { to { left: 130%; } }
/* compact, distinctive nav CTA with a sliding arrow (overrides the sheen ::after) */
.btn--nav { padding: 9px 18px; font-size: .92rem; overflow: visible; gap: 7px; }
.btn--nav::after { content: '→'; position: static; width: auto; height: auto; background: none; transform: none; animation: none !important; font-weight: 700; transition: transform .2s ease; }
.btn--nav:hover::after { transform: translateX(4px); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60; transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  background: var(--nav-bg); backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid transparent;
}
.nav.scrolled { background: var(--nav-bg-scrolled); border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(14,27,42,.06); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 1.3rem; letter-spacing: -.02em; }
.brand { gap: 9px; }
.brand img { width: 38px; height: 38px; filter: drop-shadow(0 3px 8px rgba(52,152,219,.28)); transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.brand:hover img { transform: rotate(-8deg) scale(1.06); }
.brand__name { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- animated logo (recreated from the app's AnimatedLogo) ---------- */
.logo-anim { display: block; overflow: visible; transform-origin: 50% 58%; animation: lgSway 6s ease-in-out infinite; }
.brand:hover .logo-anim { animation-duration: 3s; }
@keyframes lgSway { 0%,100% { transform: rotate(0deg); } 28% { transform: rotate(2deg); } 72% { transform: rotate(-2deg); } }
/* base = drawn (dashoffset 0) so the logo is NEVER invisible; animate FROM hidden */
.logo-anim .lg-stroke { stroke-dasharray: 320; animation: lgDraw 1.5s cubic-bezier(.4,0,.2,1) both; }
.logo-anim .lg-s2 { animation-delay: .2s; }
@keyframes lgDraw { from { stroke-dashoffset: 320; } to { stroke-dashoffset: 0; } }
.logo-anim .lg-vhead { transform-box: fill-box; transform-origin: center; animation: lgBounce 2.2s ease-in-out infinite; }
@keyframes lgBounce { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-1.6px) scale(1.08); } }
.logo-anim .lg-shead { transform-box: fill-box; transform-origin: center; animation: lgOrbit 5s ease-in-out infinite; }
@keyframes lgOrbit { 0%,100% { transform: translateX(-3px); } 50% { transform: translateX(3px); } }
@media (prefers-reduced-motion: reduce) { .logo-anim .lg-stroke { stroke-dashoffset: 0 !important; } }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-weight: 600; color: var(--body); font-size: .97rem; position: relative; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--grad-brand); border-radius: 2px; transition: width .25s ease; }
.nav__links a:hover { color: var(--primary); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; background: var(--surface); }
.lang-toggle button { border: 0; background: transparent; padding: 8px 14px; font-weight: 700; font-size: .82rem; color: var(--muted); cursor: pointer; transition: all .15s ease; font-family: var(--font); }
.lang-toggle button.active { background: var(--grad-brand); color: #fff; }
.theme-toggle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: transform .2s ease, border-color .2s ease; }
.theme-toggle:hover { transform: translateY(-2px); border-color: var(--primary); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .moon { display: none; }
html[data-theme="dark"] .theme-toggle .sun { display: none; }
html[data-theme="dark"] .theme-toggle .moon { display: block; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 92px 0 110px; background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%); }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__bg::before, .hero__bg::after { content: ''; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; animation: float 14s ease-in-out infinite; }
.hero__bg::before { width: 520px; height: 520px; background: radial-gradient(circle, rgba(52,152,219,.55), transparent 70%); top: -160px; right: -120px; }
.hero__bg::after { width: 460px; height: 460px; background: radial-gradient(circle, rgba(91,108,240,.45), transparent 70%); bottom: -180px; left: -120px; animation-delay: -6s; }
.hero__grid-pattern { position: absolute; inset: -12%; z-index: 0; background:
    radial-gradient(38% 48% at 18% 28%, rgba(91,108,240,.20), transparent 62%),
    radial-gradient(34% 44% at 82% 22%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(46% 54% at 62% 82%, rgba(52,152,219,.18), transparent 62%);
  filter: blur(16px); animation: meshDrift 22s ease-in-out infinite alternate; }
@keyframes meshDrift { 0% { transform: scale(1) rotate(0deg); } 100% { transform: scale(1.14) rotate(5deg); } }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-26px) scale(1.06); } }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); margin-bottom: 22px; }
.hero p.lead { font-size: 1.22rem; color: var(--body); margin-bottom: 32px; max-width: 530px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__note { margin-top: 20px; font-size: .92rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__note svg { width: 18px; height: 18px; color: #2ecc71; }

/* phone mockup (screen kept light intentionally — it depicts the app UI) */
.mockup { position: relative; display: flex; justify-content: center; perspective: 1200px; }
.phone { width: 296px; background: linear-gradient(160deg,#16263a,#0a1420); border-radius: 44px; padding: 13px; box-shadow: var(--shadow-lg); position: relative; animation: phoneFloat 6s ease-in-out infinite; transform-style: preserve-3d; transition: transform .2s ease; }
@keyframes phoneFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1deg); } }
.phone::before { content: ''; position: absolute; top: 17px; left: 50%; transform: translateX(-50%); width: 112px; height: 24px; background: #0a1420; border-radius: 0 0 18px 18px; z-index: 3; }
.phone__screen { background: #f3f8fc; border-radius: 32px; overflow: hidden; height: 588px; }
.app-top { background: var(--grad-brand); color: #fff; padding: 34px 18px 20px; }
.app-top small { opacity: .9; font-size: .78rem; }
.app-top h4 { color: #fff; font-size: 1.35rem; margin-top: 3px; }
.app-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
.app-card { background: #fff; border-radius: 16px; padding: 14px; box-shadow: 0 2px 10px rgba(14,27,42,.06); }
.app-card .ic { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 8px; }
.app-card .n { font-size: 1.55rem; font-weight: 800; color: #0e1b2a; font-family: var(--font-display); }
.app-card .l { font-size: .75rem; color: #76889d; }
.app-list { padding: 4px 16px; }
.app-row { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 13px; padding: 12px; margin-bottom: 10px; box-shadow: 0 2px 10px rgba(14,27,42,.06); }
.app-row .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex: none; }
.app-row .t { font-size: .82rem; color: #0e1b2a; font-weight: 600; }
.app-row .s { font-size: .72rem; color: #76889d; }
.float-badge { position: absolute; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-radius: 15px; box-shadow: var(--shadow-md); padding: 12px 16px; font-weight: 700; color: #0e1b2a; display: flex; align-items: center; gap: 10px; font-size: .9rem; z-index: 4; }
.float-badge svg { width: 22px; height: 22px; }
.float-badge--1 { top: 64px; left: -18px; animation: float 7s ease-in-out infinite; }
.float-badge--2 { bottom: 78px; right: -22px; animation: float 7s ease-in-out infinite; animation-delay: -3.5s; }

/* ---------- marquee (industries) ---------- */
.marquee-wrap { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.marquee-label { text-align: center; color: var(--muted); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 26px; }
.marquee { display: flex; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 56px; padding-right: 56px; animation: scrollx 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.marquee__item { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-weight: 800; font-size: 1.25rem; color: var(--muted); opacity: .8; font-family: var(--font-display); }
.marquee__item svg { width: 26px; height: 26px; color: var(--primary); }

/* ---------- bento features ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.feature {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px;
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .25s ease;
}
/* cursor spotlight */
.feature::after { content: ''; position: absolute; inset: 0; background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(52,152,219,.14), transparent 55%); opacity: 0; transition: opacity .3s; pointer-events: none; }
/* gradient border ring on hover */
.feature::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: var(--grad-brand); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s; pointer-events: none; }
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature:hover::after { opacity: 1; }
.feature:hover::before { opacity: 1; }
.feature--lg { grid-column: span 3; }
.feature--sm { grid-column: span 2; }
.feature__ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px; background: var(--grad-brand); color: #fff; box-shadow: var(--glow); }
.feature__ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.22rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .99rem; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: 16%; right: 16%; height: 2px; background: linear-gradient(90deg, var(--primary), var(--indigo)); opacity: .25; }
.step { text-align: center; padding: 0 10px; position: relative; }
.step__num { width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; font-weight: 800; font-size: 1.35rem; box-shadow: var(--glow); font-family: var(--font-display); position: relative; z-index: 1; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ---------- comparison (why VSECTER) ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; }
.compare__card { border-radius: var(--radius-lg); padding: 34px; border: 1px solid var(--line); background: var(--surface); }
.compare__card--bad { background: var(--surface-2); }
.compare__card--good { border: 0; position: relative; background: var(--surface); box-shadow: var(--shadow-md); }
.compare__card--good::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 2px; background: var(--grad-brand); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.compare__card h3 { font-size: 1.3rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.compare__card ul { list-style: none; display: grid; gap: 14px; }
.compare__card li { display: flex; align-items: flex-start; gap: 11px; font-size: 1rem; color: var(--body); }
.compare__card li svg { width: 20px; height: 20px; flex: none; margin-top: 3px; }
.compare__card--bad li svg { color: #e05a5a; }
.compare__card--good li svg { color: #1aa362; }

/* ---------- stats band ---------- */
.stat-band { background: var(--grad-brand); border-radius: var(--radius-lg); padding: 54px 40px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.stat-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px); background-size: 22px 22px; opacity: .4; }
.stats__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .n { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.stat .l { color: rgba(255,255,255,.85); font-weight: 600; font-size: .95rem; }

/* ---------- testimonials ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tcard .stars { color: var(--accent); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.tcard p { color: var(--body); font-size: 1.02rem; margin-bottom: 22px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-family: var(--font-display); background: var(--grad-brand); }
.who .nm { font-weight: 700; color: var(--ink); font-size: .96rem; }
.who .rl { font-size: .84rem; color: var(--muted); }

/* ---------- pricing ---------- */
.pricing__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 390px)); gap: 26px; justify-content: center; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 34px; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card--featured { border: 0; box-shadow: var(--shadow-lg); }
.price-card--featured::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 2px; background: var(--grad-brand); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.price-card__tag { position: absolute; top: -15px; right: 30px; background: var(--grad-brand); color: #fff; font-weight: 800; font-size: .76rem; padding: 7px 15px; border-radius: var(--radius-pill); letter-spacing: .03em; box-shadow: var(--glow); }
.price-card h3 { font-size: 1.28rem; margin-bottom: 6px; }
.price-card .sub { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }
.price-card .amount { font-size: 3.1rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; font-family: var(--font-display); }
.price-card .amount span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-card .save { color: #1aa362; font-weight: 700; font-size: .9rem; margin-top: 4px; min-height: 22px; }
.price-card ul { list-style: none; margin: 24px 0 30px; display: grid; gap: 13px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: .98rem; }
.price-card li svg { width: 20px; height: 20px; color: var(--primary); flex: none; margin-top: 2px; }
.price-card .btn { width: 100%; margin-top: auto; }

/* ---------- languages ---------- */
.langs__row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.lang-pill { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 12px 22px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.lang-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lang-pill .flag { display: none; }

/* ---------- faq ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; background: var(--surface); overflow: hidden; transition: box-shadow .2s ease; }
.faq__item.open { box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 24px; font-size: 1.08rem; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-display); }
.faq__q span.ic { transition: transform .25s ease; color: var(--primary); font-size: 1.5rem; line-height: 1; }
.faq__item.open .faq__q span.ic { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--muted); padding: 0 24px; }
.faq__item.open .faq__a { max-height: 260px; padding-bottom: 22px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-brand); border-radius: var(--radius-lg); padding: 70px 40px; text-align: center; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px); background-size: 24px 24px; opacity: .4; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 2.8rem); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.18rem; margin-bottom: 30px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- footer ---------- */
.footer { background: var(--footer-bg); color: #b7c6d6; padding: 70px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 46px; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: .04em; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer p { font-size: .92rem; color: #8fa3b6; max-width: 290px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { font-size: .93rem; color: #b7c6d6; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #7e93a7; }

/* ---------- legal / content pages ---------- */
.page-hero { background: linear-gradient(180deg, var(--bg-soft), var(--bg)); padding: 72px 0 44px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 8px; }
.page-hero .updated { color: var(--muted); font-size: .92rem; }
.legal { max-width: 820px; margin: 0 auto; padding: 56px 0 84px; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--body); margin-bottom: 12px; font-size: 1.02rem; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--primary); font-weight: 600; }
.legal .disclaimer { background: var(--disclaimer-bg); border: 1px solid var(--disclaimer-line); border-radius: 14px; padding: 16px 18px; font-size: .92rem; color: var(--disclaimer-ink); margin-bottom: 30px; }
.about-lead { font-size: 1.3rem; color: var(--body); max-width: 720px; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
.about-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.about-card .n { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.about-card .l { color: var(--muted); }
[data-lang-content] { display: none; }
[data-lang-content].show { display: block; }

/* ---------- billing / 404 pages ---------- */
.billing-wrap { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(800px circle at 50% 0%, rgba(52,152,219,.12), transparent 60%), var(--bg-soft); }
.billing-card { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 50px 42px; max-width: 480px; text-align: center; }
.billing-icon { width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px; }
.billing-icon svg { width: 46px; height: 46px; }
.billing-card h1 { font-size: 1.75rem; margin-bottom: 12px; }
.billing-card .big404 { font-family: var(--font-display); font-size: 4.5rem; font-weight: 800; line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 8px; }
.billing-card p { color: var(--muted); margin-bottom: 28px; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero__cta, .hero__note { justify-content: center; }
  .mockup { margin-top: 34px; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .feature--lg, .feature--sm { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .nav__links { display: none; position: absolute; top: 74px; left: 0; right: 0; background: var(--surface); flex-direction: column; padding: 18px 24px; gap: 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .nav__links.open { display: flex; }
  .nav__burger { display: block; }
  .bento, .steps, .pricing__grid, .tgrid, .footer__grid, .about-grid, .stats__grid, .compare { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .feature--lg, .feature--sm { grid-column: span 1; }
  .pricing__grid { max-width: 410px; margin: 0 auto; }
  .steps::before { display: none; }
  .float-badge { display: none; }
}

/* ---------- interactive product tour ---------- */
.tour__grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: center; }
.tour__tabs { display: grid; gap: 14px; }
.tour__tab { display: flex; align-items: flex-start; gap: 16px; text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; font-family: var(--font); }
.tour__tab:hover { transform: translateX(4px); }
.tour__tab.active { border-color: transparent; box-shadow: var(--shadow-md); }
.tour__tab.active::before { content: ''; position: absolute; }
.tour__tab .tic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex: none; background: var(--grad-brand-soft); color: var(--primary); transition: all .2s ease; }
.tour__tab.active .tic { background: var(--grad-brand); color: #fff; box-shadow: var(--glow); }
.tour__tab .tic svg { width: 22px; height: 22px; }
.tour__tab strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.06rem; margin-bottom: 2px; }
.tour__tab span { color: var(--muted); font-size: .92rem; }
.tour__device { display: flex; justify-content: center; }
.tour-panel { display: none; }
.tour-panel.show { display: block; }
/* opacity-only so rapid scroll-driven swaps never reveal a gap at the top of the phone */
@keyframes tourIn { from { opacity: 0; } to { opacity: 1; } }
.tour-head { padding: 30px 18px 16px; color: #fff; }
.tour-head small { opacity: .9; font-size: .76rem; }
.tour-head h4 { color: #fff; font-size: 1.25rem; margin-top: 2px; }
.tour-body { padding: 12px 16px; }
.tpill { display: inline-block; font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; margin-bottom: 8px; }

/* ---------- ROI calculator ---------- */
.calc__card { max-width: 720px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.calc__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.calc__top label { font-weight: 700; color: var(--ink); font-family: var(--font-display); }
.calc__emp { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.calc__range { width: 100%; -webkit-appearance: none; appearance: none; height: 8px; border-radius: 8px; background: var(--surface-2); outline: none; margin: 14px 0 6px; }
.calc__range::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-brand); box-shadow: var(--glow); cursor: pointer; border: 3px solid #fff; }
.calc__range::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: #3498db; cursor: pointer; border: 3px solid #fff; }
.calc__hint { display: flex; justify-content: space-between; color: var(--muted); font-size: .82rem; margin-bottom: 28px; }
.calc__results { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.calc__res { background: var(--surface-2); border-radius: var(--radius); padding: 24px; text-align: center; }
.calc__res .v { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.calc__res .k { color: var(--muted); font-size: .92rem; margin-top: 2px; }
.calc__note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 20px; }

/* ---------- cookie banner ---------- */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 95; max-width: 560px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 18px 20px; display: none; align-items: center; gap: 16px; }
.cookie.show { display: flex; }
.cookie p { font-size: .9rem; color: var(--body); flex: 1; margin: 0; }
.cookie p a { color: var(--primary); font-weight: 600; }
.cookie .btn { padding: 10px 22px; font-size: .92rem; }

@media (max-width: 760px) {
  .tour__grid { grid-template-columns: 1fr; gap: 32px; }
  .tour__device { order: -1; }
  .calc__results { grid-template-columns: 1fr; }
  .calc__card { padding: 28px; }
  .cookie { flex-direction: column; text-align: center; align-items: stretch; }
}

/* ---------- kinetic rotating headline ---------- */
/* Own line so width changes never shift neighbours; two layers crossfade so it's never blank. */
.rotator { display: block; position: relative; height: 1.14em; margin: 2px 0; }
.rotator .word { position: absolute; left: 0; right: 0; top: 0; opacity: 0; transform: translateY(16px); transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .55s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rotator .word.active { opacity: 1; transform: none; }

/* ---------- interactive particle hero canvas ---------- */
.hero__canvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none; }

/* ---------- draw-on-scroll step connector ---------- */
.steps::before { transform: scaleX(0); transform-origin: left; transition: transform 1.1s cubic-bezier(.4,0,.2,1); }
.steps.drawn::before { transform: scaleX(1); }

/* ---------- scroll-pinned product tour (desktop only) ---------- */
@media (min-width: 961px) {
  /* The sticky element's *parent* must be the tall one for sticky to travel. */
  .tour--pinned .container { min-height: 240vh; }
  .tour--pinned .tour__grid { position: sticky; top: 12vh; }
}
