/* ============================================================
   EvoSlot — landing styles  ·  Modern SaaS / gradient bold
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

:root {
  --bg: #08080c;
  --bg-2: #0c0c14;
  --text: #f4f5fb;
  --muted: #9c9cb0;
  --muted-2: #71718a;

  --g1: #7c3aed;   /* violet */
  --g2: #ec4899;   /* fuchsia */
  --g3: #22d3ee;   /* cyan */
  --grad: linear-gradient(120deg, var(--g1), var(--g2) 52%, var(--g3));
  --grad-soft: linear-gradient(120deg, rgba(124,58,237,.18), rgba(236,72,153,.16) 52%, rgba(34,211,238,.16));

  --card: rgba(255,255,255,.035);
  --card-2: rgba(255,255,255,.06);
  --brd: rgba(255,255,255,.09);
  --brd-2: rgba(255,255,255,.14);

  --radius: 18px;
  --radius-lg: 26px;
  --container: 1180px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --glow: 0 24px 70px -28px rgba(124,58,237,.65);
}

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.container.narrow { max-width: 820px; }

/* ---------- Ambient gradient background ---------- */
.bg-field { position: fixed; inset: 0; z-index: -1; overflow: hidden; background:
  radial-gradient(1200px 700px at 80% -10%, rgba(124,58,237,.10), transparent 60%),
  radial-gradient(900px 600px at 0% 100%, rgba(34,211,238,.08), transparent 55%),
  var(--bg); }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; will-change: transform; }
.blob-1 { width: 520px; height: 520px; top: -140px; left: -80px; background: radial-gradient(circle, #7c3aed, transparent 70%); animation: drift1 22s ease-in-out infinite; }
.blob-2 { width: 460px; height: 460px; top: 18%; right: -120px; background: radial-gradient(circle, #ec4899, transparent 70%); animation: drift2 26s ease-in-out infinite; }
.blob-3 { width: 560px; height: 560px; bottom: -180px; left: 38%; background: radial-gradient(circle, #22d3ee, transparent 70%); opacity: .35; animation: drift3 30s ease-in-out infinite; }
.grain { position: absolute; inset: 0; opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

@keyframes drift1 { 50% { transform: translate(60px, 40px) scale(1.08); } }
@keyframes drift2 { 50% { transform: translate(-50px, 60px) scale(1.1); } }
@keyframes drift3 { 50% { transform: translate(40px, -50px) scale(1.05); } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 600; font-size: .95rem; padding: .72em 1.25em; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .25s ease, background .25s ease; white-space: nowrap; }
.btn-lg { padding: .92em 1.7em; font-size: 1.02rem; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 28px 80px -26px rgba(236,72,153,.75); }
.btn-ghost { background: var(--card-2); border-color: var(--brd-2); color: var(--text); backdrop-filter: blur(8px); }
.btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(8,8,12,.72); backdrop-filter: blur(14px) saturate(140%); border-bottom-color: var(--brd); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--grad); color: #fff; font-weight: 700; box-shadow: var(--glow); }
.brand-name { font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; }
.brand-by { font-family: var(--font); font-size: .72rem; color: var(--muted-2); letter-spacing: .02em; align-self: flex-end; padding-bottom: 3px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; margin-left: auto; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 20px 22px; background: rgba(8,8,12,.96); border-bottom: 1px solid var(--brd); }
.mobile-menu:not([hidden]) { display: flex; }
.mobile-menu a { padding: 12px 6px; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,.05); }
.mobile-menu a.btn { margin-top: 10px; color: #fff; border-bottom: 0; justify-content: center; }

/* ---------- Hero ---------- */
.hero { padding: 76px 0 40px; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); padding: 6px 14px; border: 1px solid var(--brd); border-radius: 999px; background: var(--card); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 12px var(--g2); }
.hero-title { font-size: clamp(2.5rem, 5.4vw, 4.1rem); font-weight: 700; margin: 22px 0 18px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 33ch; }
.hero-actions { display: flex; gap: 14px; margin: 30px 0 22px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }
.hero-points { list-style: none; padding: 0; display: flex; gap: 20px; flex-wrap: wrap; color: var(--muted); font-size: .92rem; }

.hero-visual { position: relative; }
.glow-ring { position: absolute; inset: -8% -6% -10% -6%; background: var(--grad); filter: blur(70px); opacity: .35; border-radius: 50%; z-index: -1; }
.glow-ring.small { inset: -14%; opacity: .3; }

/* ---------- Device frames ---------- */
.browser { border-radius: 14px; overflow: hidden; border: 1px solid var(--brd-2); background: #0e0e16; box-shadow: 0 40px 90px -40px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.03) inset; }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: rgba(255,255,255,.04); border-bottom: 1px solid var(--brd); }
.browser-bar span { width: 11px; height: 11px; border-radius: 50%; background: #3a3a48; }
.browser-bar span:nth-child(1) { background: #ff5f57; }
.browser-bar span:nth-child(2) { background: #febc2e; }
.browser-bar span:nth-child(3) { background: #28c840; }
.browser-bar em { margin-left: 12px; font-style: normal; font-size: .78rem; color: var(--muted-2); background: rgba(255,255,255,.05); padding: 3px 12px; border-radius: 999px; }

.phone { width: 230px; border-radius: 34px; padding: 9px; background: linear-gradient(160deg, #1b1b26, #0c0c12); border: 1px solid var(--brd-2); box-shadow: 0 40px 80px -30px rgba(0,0,0,.85); overflow: hidden; }
.phone img { border-radius: 26px; }
.phone-float { position: absolute; right: -14px; bottom: -46px; width: 196px; box-shadow: var(--glow), 0 40px 80px -30px rgba(0,0,0,.85); }
.phone.sm { width: 200px; }

/* ---------- Trust band ---------- */
.band { padding: 30px 0; border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd); margin-top: 64px; }
.band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.band-label { color: var(--muted-2); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.band-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.band-chips span { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--muted); padding: 6px 16px; border: 1px solid var(--brd); border-radius: 999px; background: var(--card); }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.kicker { display: inline-block; font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.section-title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.section-title.xl { font-size: clamp(2rem, 4vw, 3rem); }
.lead { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }
.lead.center { margin-inline: auto; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.two-col.align { align-items: center; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--card); border: 1px solid var(--brd); border-radius: var(--radius-lg); padding: 28px; position: relative; overflow: hidden; transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad); -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 ease; }
.card:hover { transform: translateY(-4px); background: var(--card-2); }
.card:hover::before { opacity: .6; }
.bento-wide { grid-column: span 2; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }
.ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--grad-soft); border: 1px solid var(--brd); margin-bottom: 18px; color: #fff; }
.ic svg { width: 24px; height: 24px; }
.ic.sm { width: 42px; height: 42px; margin-bottom: 14px; }

/* ---------- Feature rows ---------- */
.feature-row .reverse { direction: rtl; }
.feature-row .reverse > * { direction: ltr; }
.media-center { display: flex; justify-content: center; position: relative; }
.steps { list-style: none; padding: 0; margin-top: 22px; counter-reset: s; display: grid; gap: 14px; }
.steps li { position: relative; padding-left: 44px; color: var(--muted); }
.steps li b { color: var(--text); }
.steps li::before { counter-increment: s; content: counter(s); position: absolute; left: 0; top: -1px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--brd-2); color: var(--text); font-family: var(--font-display); font-weight: 600; font-size: .9rem; }
.ticks { list-style: none; padding: 0; margin-top: 20px; display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 30px; color: var(--muted); }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--g3); font-weight: 700; }

/* ---------- Admin mock ---------- */
.mock-dash { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid var(--brd-2); border-radius: var(--radius-lg); padding: 22px; box-shadow: 0 40px 90px -45px rgba(0,0,0,.8); }
.mock-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mock-title { font-family: var(--font-display); font-weight: 600; }
.mock-pill { font-size: .82rem; color: var(--muted); border: 1px solid var(--brd); border-radius: 999px; padding: 4px 12px; }
.mock-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
.mock-kpi { background: var(--card); border: 1px solid var(--brd); border-radius: 14px; padding: 12px; text-align: center; }
.mock-kpi .k { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mock-kpi .l { font-size: .72rem; color: var(--muted-2); }
.mock-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mock-col { display: grid; gap: 8px; }
.mc-name { font-size: .76rem; color: var(--muted); text-align: center; margin-bottom: 2px; }
.slot { height: 26px; border-radius: 8px; background: rgba(255,255,255,.05); border: 1px solid var(--brd); }
.slot.s1 { background: linear-gradient(120deg, rgba(124,58,237,.5), rgba(124,58,237,.25)); border-color: transparent; }
.slot.s2 { background: linear-gradient(120deg, rgba(236,72,153,.5), rgba(236,72,153,.25)); border-color: transparent; }
.slot.s3 { background: linear-gradient(120deg, rgba(34,211,238,.45), rgba(34,211,238,.2)); border-color: transparent; }

/* ---------- Trust grid ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust { background: var(--card); border: 1px solid var(--brd); border-radius: var(--radius); padding: 24px; }
.trust h4 { font-size: 1.05rem; margin-bottom: 6px; }
.trust p { color: var(--muted); font-size: .92rem; }

/* ---------- Apps ---------- */
.apps { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.app-block { display: flex; flex-direction: column; gap: 22px; align-items: center; text-align: center; padding: 36px 28px; }
.app-phones { position: relative; display: flex; justify-content: center; min-height: 300px; align-items: flex-start; }
.app-phones .phone { position: relative; }
.app-phones .phone-back { position: absolute; left: 50%; top: 30px; transform: translateX(-30%) rotate(6deg) scale(.92); opacity: .9; z-index: -1; }
.app-phones .phone:first-child { transform: translateX(8%); z-index: 2; }
.app-text h3 { font-size: 1.35rem; margin-bottom: 8px; }
.app-text p { color: var(--muted); }
.app-mock { min-height: 300px; display: flex; align-items: center; justify-content: center; width: 100%; }
.mock-staff { width: 240px; background: linear-gradient(170deg, #14141d, #0b0b11); border: 1px solid var(--brd-2); border-radius: 26px; padding: 22px; display: grid; gap: 12px; box-shadow: 0 40px 80px -34px rgba(0,0,0,.85); }
.ms-row { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--muted); text-align: left; }
.ms-row i { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); flex: none; }
.ms-title { font-family: var(--font-display); font-weight: 600; color: var(--text); font-size: 1rem; }
.ms-cta { margin-top: 6px; font-size: .85rem; color: var(--g3); font-weight: 600; }

/* ---------- Flow ---------- */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.flow-step { background: var(--card); border: 1px solid var(--brd); border-radius: var(--radius); padding: 24px 18px; position: relative; }
.flow-step .fn { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 700; margin-bottom: 14px; box-shadow: var(--glow); }
.flow-step h4 { font-size: 1.02rem; margin-bottom: 6px; }
.flow-step p { color: var(--muted); font-size: .9rem; }

/* ---------- Benefits ---------- */
.benefits { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.benefits span { font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; padding: 12px 20px; border-radius: 14px; background: var(--card); border: 1px solid var(--brd); color: var(--text); transition: border-color .25s, background .25s; }
.benefits span:hover { border-color: var(--brd-2); background: var(--card-2); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--brd); border-radius: var(--radius); overflow: hidden; }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; cursor: pointer; list-style: none; padding: 20px 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq .chev { font-size: 1.4rem; color: var(--muted); transition: transform .25s; line-height: 1; }
.faq details[open] .chev { transform: rotate(45deg); color: var(--g2); }
.faq details p { padding: 0 22px 20px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta-section { padding-bottom: 110px; }
.cta-card { position: relative; text-align: center; padding: 64px 32px; border-radius: var(--radius-lg); border: 1px solid var(--brd-2); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); overflow: hidden; }
.cta-card h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 14px; }
.cta-card > p { color: var(--muted); font-size: 1.1rem; max-width: 48ch; margin-inline: auto; }
.cta-card .hero-actions { margin: 30px 0 0; }
.cta-contact { margin-top: 20px; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; }
.cta-contact a { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-contact a:hover { opacity: .82; }
.cta-fine { margin-top: 12px; font-size: .85rem; color: var(--muted-2); }

/* CTA grid + demo form */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; align-items: start; }
.cta-intro h2 { margin-bottom: 14px; }
.cta-intro > p { color: var(--muted); }
.cta-points { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; color: var(--muted); }
.demo-form { display: grid; gap: 14px; background: rgba(255,255,255,.03); border: 1px solid var(--brd); border-radius: var(--radius-lg); padding: 26px; }
.field { display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: .82rem; color: var(--muted); font-weight: 500; }
.demo-form input, .demo-form select, .demo-form textarea {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--brd-2);
  border-radius: 12px; padding: 12px 14px; color: var(--text); font: inherit; outline: none;
  transition: border-color .2s, background .2s;
}
.demo-form input::placeholder, .demo-form textarea::placeholder { color: var(--muted-2); }
.demo-form select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.demo-form input:focus, .demo-form select:focus, .demo-form textarea:focus { border-color: var(--g2); background: rgba(255,255,255,.06); }
.demo-form textarea { resize: vertical; min-height: 76px; }
.demo-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-submit { width: 100%; margin-top: 4px; }
.form-note { font-size: .88rem; color: var(--muted); margin: 0; min-height: 1.2em; }
.form-note.err { color: #ff9b9b; }
.form-note a { color: inherit; text-decoration: underline; }
.form-success { text-align: center; padding: 28px 8px; }
.form-success .fs-ic { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 14px; background: var(--grad); color: #fff; font-size: 1.6rem; box-shadow: var(--glow); }
.form-success h3 { font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* Custom dropdown (themed, always readable) */
.select { position: relative; }
.select-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--brd-2); border-radius: 12px; padding: 12px 14px; color: var(--text); font: inherit; cursor: pointer; transition: border-color .2s, background .2s; }
.select-btn:hover { background: rgba(255,255,255,.06); }
.select.open .select-btn { border-color: var(--g2); background: rgba(255,255,255,.06); }
.select-caret { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: .7; transition: transform .2s; flex: none; }
.select.open .select-caret { transform: rotate(180deg); }
.select-list { position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 30; margin: 0; padding: 6px; list-style: none; background: #14141d; border: 1px solid var(--brd-2); border-radius: 12px; box-shadow: 0 26px 60px -22px rgba(0,0,0,.85); display: none; max-height: 260px; overflow: auto; }
.select.open .select-list { display: block; }
.select-list li { padding: 11px 12px; border-radius: 8px; cursor: pointer; color: var(--text); transition: background .15s; }
.select-list li:hover, .select-list li.is-active { background: rgba(255,255,255,.09); }
.select-list li.is-selected { background: var(--grad-soft); }

@media (max-width: 820px) { .cta-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Zoomable images + lightbox */
#galerie img, .feature-row .phone img, .feature-row .browser img { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(5,5,9,.92); backdrop-filter: blur(10px); padding: 4vh 4vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; border-radius: 14px; border: 1px solid var(--brd-2); box-shadow: 0 50px 130px -30px rgba(0,0,0,.9); }
.lb-btn { position: absolute; background: rgba(255,255,255,.08); border: 1px solid var(--brd-2); color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 1.7rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .2s, transform .2s; }
.lb-btn:hover { background: rgba(255,255,255,.18); transform: scale(1.06); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 600px) { .lb-prev, .lb-next { top: auto; bottom: 22px; transform: none; } .lb-prev:hover, .lb-next:hover { transform: scale(1.06); } .lb-prev { left: 24px; } .lb-next { right: 24px; } }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--brd); padding: 44px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand strong { font-family: var(--font-display); display: block; }
.foot-by { font-size: .8rem; color: var(--muted-2); }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); font-size: .92rem; }
.foot-links a:hover { color: var(--text); }
.copy { color: var(--muted-2); font-size: .85rem; }

/* ---------- Video showcase ---------- */
.showcase { position: relative; display: grid; grid-template-columns: 1.5fr .62fr; gap: 34px; align-items: center; }
.showcase .browser video { display: block; width: 100%; }
.showcase .phone { width: 250px; justify-self: center; box-shadow: var(--glow), 0 40px 80px -30px rgba(0,0,0,.85); }
.showcase .phone video { display: block; width: 100%; border-radius: 26px; }
@media (max-width: 860px) { .showcase { grid-template-columns: 1fr; gap: 28px; } .showcase .phone { width: 220px; } }

/* ---------- Gallery ---------- */
.gallery { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.gallery .phone.sm { width: 166px; }
.gallery-sub { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--muted); text-align: center; margin: 6px 0 22px; }
.gallery-web { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 46px; }
.shot { border: 1px solid var(--brd-2); border-radius: 16px; overflow: hidden; background: #0e0e16; box-shadow: 0 30px 70px -42px rgba(0,0,0,.85); transition: transform .3s ease; }
.shot:hover { transform: translateY(-4px); }
.shot img { display: block; width: 100%; }
.shot figcaption { padding: 12px 16px; font-size: .88rem; color: var(--muted); border-top: 1px solid var(--brd); }
@media (max-width: 760px) { .gallery-web { grid-template-columns: 1fr; } }

/* ---------- Scroll progress + active nav ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad); z-index: 60; transition: width .12s linear; box-shadow: 0 0 12px rgba(236,72,153,.6); }
.nav-links a { position: relative; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; border-radius: 2px; background: var(--grad); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 70px; }
  .hero-sub { max-width: none; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .feature-row .reverse { direction: ltr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr 1fr; }
  .apps { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .bento, .bento-wide, .trust-grid, .flow { grid-template-columns: 1fr; }
  .bento-wide { grid-column: auto; }
  .hero { padding-top: 48px; }
  .phone-float { right: 0; bottom: -30px; width: 150px; }
  .band-inner { justify-content: center; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob { animation: none; }
  html { scroll-behavior: auto; }
}
