:root {
  --bg: #07090d;
  --bg-soft: #0d1118;
  --surface: rgba(16, 21, 31, .78);
  --surface-strong: #111722;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.15);
  --text: #f4f7ff;
  --muted: #9ca8bc;
  --muted-2: #738096;
  --cyan: #12efd4;
  --blue: #2d8cff;
  --violet: #7d52ff;
  --purple: #b55cff;
  --pink: #ee5fd9;
  --green: #4be39b;
  --amber: #f7bd58;
  --shadow: 0 30px 80px rgba(0,0,0,.35);
  --radius: 28px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% -10%, rgba(18,239,212,.08), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(125,82,255,.12), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
body.is-preloading { overflow: hidden; }
body.is-preloading .site-header,
body.is-preloading main,
body.is-preloading .site-footer,
body.is-preloading .ambient,
body.is-preloading .noise { opacity: 0; }
body.is-ready .site-header,
body.is-ready main,
body.is-ready .site-footer,
body.is-ready .ambient,
body.is-ready .noise { opacity: 1; transition: opacity .7s var(--ease); }
body.is-leaving { overflow: hidden; }

.splash-screen {
  position: fixed; inset: 0; z-index: 120; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 20%, rgba(18,239,212,.10), transparent 28%),
              radial-gradient(circle at 50% 80%, rgba(125,82,255,.12), transparent 30%),
              rgba(6, 8, 13, .98);
  overflow: hidden; transition: opacity .55s var(--ease), visibility .55s var(--ease);
}
.splash-screen.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-content { position: relative; z-index: 2; display: grid; justify-items: center; gap: 14px; text-align: center; opacity: 0; transform: translateY(18px) scale(.97); animation: splashSequence 2s var(--ease) forwards; }
.splash-logo { width: clamp(110px, 18vw, 170px); height: clamp(110px, 18vw, 170px); object-fit: cover; border-radius: 32px; box-shadow: 0 30px 80px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.08); }
.splash-wordmark { font-size: clamp(34px, 5vw, 60px); line-height: 1; letter-spacing: .35em; font-weight: 800; padding-left: .35em; }
.splash-tagline { font-size: clamp(12px, 1.6vw, 18px); color: #cbd6e7; letter-spacing: .34em; text-transform: uppercase; padding-left: .34em; }
.splash-glow { position: absolute; width: 24rem; height: 24rem; border-radius: 999px; filter: blur(95px); opacity: .22; }
.splash-glow-a { background: var(--cyan); left: calc(50% - 24rem); top: calc(50% - 12rem); animation: floatGlowA 5s ease-in-out infinite; }
.splash-glow-b { background: var(--violet); right: calc(50% - 24rem); bottom: calc(50% - 13rem); animation: floatGlowB 5.6s ease-in-out infinite; }
.page-transition { position: fixed; inset: 0; z-index: 110; pointer-events: none; opacity: 0; background: radial-gradient(circle at center, rgba(18,239,212,.08), transparent 35%), rgba(6, 8, 13, 0); transition: opacity .5s var(--ease), background .5s var(--ease); }
body.is-leaving .page-transition { opacity: 1; background: radial-gradient(circle at center, rgba(18,239,212,.08), transparent 35%), rgba(6, 8, 13, .98); }

@keyframes splashSequence {
  0% { opacity: 0; transform: translateY(18px) scale(.96); }
  14% { opacity: 1; transform: translateY(0) scale(1); }
  72% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-10px) scale(1.02); }
}
@keyframes floatGlowA {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(18px,-20px,0) scale(1.08); }
}
@keyframes floatGlowB {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-20px,18px,0) scale(1.1); }
}

button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.ambient {
  position: fixed;
  width: 38rem;
  height: 38rem;
  border-radius: 999px;
  filter: blur(100px);
  opacity: .11;
  pointer-events: none;
  z-index: -2;
}
.ambient-a { top: 20rem; left: -18rem; background: var(--cyan); }
.ambient-b { top: 52rem; right: -18rem; background: var(--violet); }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 22px auto 0;
  height: 74px;
  padding: 10px 12px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(9,12,18,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: sticky;
  top: 14px;
  z-index: 20;
  box-shadow: 0 16px 44px rgba(0,0,0,.18);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo { width: 48px; height: 48px; border-radius: 14px; object-fit: cover; border: 1px solid rgba(255,255,255,.09); }
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: 15px; letter-spacing: .26em; }
.brand-copy small { color: var(--muted); font-size: 12px; }
.top-nav { display: flex; align-items: center; gap: 8px; }
.top-nav a { color: #b9c3d4; font-size: 13px; padding: 11px 14px; border-radius: 12px; transition: .22s var(--ease); }
.top-nav a:hover { color: white; background: rgba(255,255,255,.06); }
.top-nav .nav-site { color: white; border: 1px solid var(--line); display: inline-flex; align-items: center; gap: 8px; }
.top-nav svg { width: 15px; height: 15px; }

main { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hero { padding: 112px 0 86px; max-width: 920px; }
.hero-kicker, .eyebrow { color: #aebbd0; font-weight: 700; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-kicker span { width: 28px; height: 1px; background: linear-gradient(90deg, var(--cyan), var(--violet)); box-shadow: 0 0 18px rgba(18,239,212,.55); }
.hero h1 { margin: 0; font-size: clamp(50px, 7.2vw, 92px); line-height: .98; letter-spacing: -.055em; font-weight: 760; max-width: 900px; }
.hero h1 span { color: transparent; background: linear-gradient(100deg, var(--cyan) 5%, #48c2ff 42%, var(--violet) 76%, #d36bff); -webkit-background-clip: text; background-clip: text; }
.hero-lead { margin: 30px 0 0; max-width: 720px; font-size: 18px; line-height: 1.72; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { border: 0; cursor: pointer; display: inline-flex; justify-content: center; align-items: center; gap: 9px; border-radius: 14px; padding: 13px 17px; font-weight: 720; font-size: 13px; transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease); }
.btn svg { width: 17px; height: 17px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #06100f; background: linear-gradient(110deg, var(--cyan), #4ab6ff 54%, #8a68ff); box-shadow: 0 10px 30px rgba(40,196,225,.18); }
.btn-primary:hover { box-shadow: 0 14px 36px rgba(40,196,225,.28); }
.btn-ghost { background: rgba(255,255,255,.045); border: 1px solid var(--line); color: #d8e0ed; }
.btn-ghost:hover { background: rgba(255,255,255,.075); border-color: var(--line-strong); }
.hero-stats { display: inline-flex; align-items: stretch; gap: 22px; margin-top: 58px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.025); }
.hero-stats div { display: flex; align-items: baseline; gap: 9px; }
.hero-stats strong { font-size: 22px; letter-spacing: -.03em; }
.hero-stats span { color: var(--muted); font-size: 12px; }
.hero-stats i { width: 1px; background: var(--line); }

.solutions { padding: 38px 0 96px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 30px; }
.section-heading h2 { margin: 8px 0 10px; font-size: clamp(34px, 4.4vw, 56px); letter-spacing: -.045em; line-height: 1.03; }
.section-heading p { margin: 0; max-width: 620px; color: var(--muted); line-height: 1.65; }
.filters { display: inline-flex; padding: 5px; gap: 4px; border-radius: 15px; border: 1px solid var(--line); background: rgba(255,255,255,.025); flex-shrink: 0; }
.filter { border: 0; background: transparent; color: var(--muted); padding: 9px 12px; border-radius: 10px; font-size: 12px; font-weight: 700; cursor: pointer; transition: .2s var(--ease); }
.filter:hover { color: white; }
.filter.is-active { color: white; background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }

.product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.product-card { grid-column: span 2; min-height: 465px; padding: 25px; position: relative; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(150deg, rgba(21,27,39,.92), rgba(12,16,24,.84)); box-shadow: 0 22px 64px rgba(0,0,0,.17); transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease); }
.product-card::before { content: ""; position: absolute; width: 220px; height: 220px; right: -100px; bottom: -105px; border-radius: 50%; background: radial-gradient(circle, rgba(61,144,255,.13), transparent 67%); pointer-events: none; }
.product-card::after { content: ""; position: absolute; left: 22px; right: 22px; top: 0; height: 1px; opacity: .65; background: linear-gradient(90deg, transparent, rgba(18,239,212,.7), rgba(125,82,255,.75), transparent); }
.product-card:hover { transform: translateY(-6px); border-color: rgba(109,167,255,.25); box-shadow: 0 30px 76px rgba(0,0,0,.29); }
.product-card.is-hidden { display: none; }
.product-card-dev { background: linear-gradient(150deg, rgba(26,22,39,.88), rgba(12,16,24,.84)); }
.product-card-dev::before { background: radial-gradient(circle, rgba(181,92,255,.12), transparent 67%); }
.card-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.product-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.product-icon svg { width: 25px; height: 25px; }
.icon-blue { color: #6eaeff; background: rgba(45,140,255,.12); }
.icon-cyan { color: #43eed8; background: rgba(18,239,212,.105); }
.icon-purple { color: #b083ff; background: rgba(125,82,255,.14); }
.icon-violet { color: #bd8cff; background: rgba(181,92,255,.12); }
.icon-pink { color: #f48ae4; background: rgba(238,95,217,.105); }
.status-group { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.status { white-space: nowrap; display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 999px; padding: 7px 10px; font-size: 10px; line-height: 1; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.status i { width: 6px; height: 6px; border-radius: 50%; }
.status-online { color: #8cf1bf; background: rgba(75,227,155,.06); border-color: rgba(75,227,155,.18); }
.status-online i { background: var(--green); box-shadow: 0 0 10px rgba(75,227,155,.7); }
.status-dev { color: #ffd88d; background: rgba(247,189,88,.06); border-color: rgba(247,189,88,.18); }
.status-dev i { background: var(--amber); box-shadow: 0 0 10px rgba(247,189,88,.6); }
.mini-badge { font-size: 10px; color: #bdb0ff; }
.card-copy { margin-top: 34px; }
.product-family { color: #8795aa; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; font-weight: 750; }
.card-copy h3 { font-size: 30px; margin: 7px 0 12px; letter-spacing: -.035em; }
.card-copy p { margin: 0; min-height: 76px; color: var(--muted); font-size: 14px; line-height: 1.72; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.chips span { font-size: 10.5px; color: #bdc8d8; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.055); padding: 7px 9px; border-radius: 9px; }
.coming-line { margin-top: 15px; padding: 10px 11px; border-radius: 11px; background: rgba(125,82,255,.08); color: #b8c2d2; font-size: 10.5px; line-height: 1.45; }
.coming-line span { color: #c6b8ff; text-transform: uppercase; font-size: 9px; letter-spacing: .09em; font-weight: 850; margin-right: 5px; }
.card-actions { display: grid; grid-template-columns: .76fr 1.24fr; gap: 9px; margin-top: auto; padding-top: 25px; position: relative; z-index: 1; }
.card-actions-single { grid-template-columns: 1fr; }
.btn-card-secondary { color: #ced7e5; background: rgba(255,255,255,.035); border: 1px solid var(--line); }
.btn-card-secondary:hover { background: rgba(255,255,255,.065); }
.btn-card-primary { color: white; background: rgba(53,117,255,.15); border: 1px solid rgba(77,145,255,.23); }
.btn-card-primary:hover { background: rgba(53,117,255,.24); border-color: rgba(95,159,255,.36); }

.company-cta { margin: 0 0 94px; padding: 22px; min-height: 180px; display: grid; grid-template-columns: 124px 1fr auto; align-items: center; gap: 28px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(100deg, rgba(18,239,212,.05), rgba(45,140,255,.055) 45%, rgba(125,82,255,.08)); overflow: hidden; position: relative; }
.company-cta::after { content: ""; position: absolute; width: 300px; height: 300px; right: 5%; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(125,82,255,.12), transparent 66%); pointer-events: none; }
.company-logo-wrap { width: 124px; height: 124px; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); }
.company-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.company-cta-copy { position: relative; z-index: 1; }
.company-cta h2 { margin: 7px 0 8px; font-size: 31px; letter-spacing: -.035em; }
.company-cta p { margin: 0; max-width: 610px; color: var(--muted); line-height: 1.6; font-size: 14px; }
.btn-company { position: relative; z-index: 1; white-space: nowrap; }

.site-footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 26px 0 36px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 12px; }
.site-footer div { display: flex; gap: 10px; }
.site-footer strong { color: #cfd7e5; letter-spacing: .16em; }
.site-footer p { margin: 0; }

.modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 24px; visibility: hidden; opacity: 0; transition: opacity .22s var(--ease), visibility .22s; }
.modal.is-open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(2,4,8,.76); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.modal-panel { position: relative; width: min(680px, 100%); max-height: min(760px, calc(100vh - 48px)); overflow-y: auto; padding: 30px; border: 1px solid var(--line-strong); border-radius: 28px; background: linear-gradient(155deg, #151b27, #0d1119 72%); box-shadow: var(--shadow); transform: translateY(12px) scale(.985); transition: transform .25s var(--ease); scrollbar-width: thin; scrollbar-color: rgba(122,137,160,.5) transparent; }
.modal.is-open .modal-panel { transform: none; }
.modal-close { position: absolute; right: 20px; top: 20px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.04); cursor: pointer; }
.modal-close:hover { background: rgba(255,255,255,.08); }
.modal-close svg { width: 17px; height: 17px; }
.modal-head { display: flex; align-items: center; gap: 17px; padding-right: 44px; }
.modal-head .product-icon { flex: 0 0 auto; }
.modal-head .status { margin-bottom: 9px; }
.modal-family { display: block; color: var(--muted-2); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; }
.modal-head h2 { margin: 4px 0 0; font-size: 34px; letter-spacing: -.035em; }
.modal-description { color: var(--muted); line-height: 1.75; margin: 24px 0 0; font-size: 14px; }
.modal-feature-title { margin-top: 27px; color: #d9e0ec; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.feature-list { list-style: none; padding: 0; margin: 13px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.feature-list li { position: relative; padding: 11px 12px 11px 35px; border-radius: 12px; border: 1px solid rgba(255,255,255,.055); background: rgba(255,255,255,.026); color: #bcc7d8; font-size: 12px; line-height: 1.4; }
.feature-list li::before { content: "✓"; position: absolute; left: 12px; top: 10px; width: 16px; height: 16px; display: grid; place-items: center; border-radius: 50%; background: rgba(75,227,155,.1); color: #76eab0; font-size: 9px; font-weight: 900; }
.modal-highlight { margin-top: 18px; padding: 14px 15px; border-radius: 14px; border: 1px solid rgba(125,82,255,.17); background: rgba(125,82,255,.07); color: #bfc8d9; font-size: 12px; line-height: 1.55; }
.modal-highlight strong { color: #d7cbff; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.modal-actions .btn { flex: 1 1 190px; }


.product-card {
  isolation: isolate;
  cursor: default;
  background: linear-gradient(160deg, rgba(18, 24, 37, .95), rgba(9, 13, 21, .88));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.product-card::before {
  width: 260px; height: 260px; right: -120px; bottom: -125px; opacity: .85;
  transform: scale(.92); transition: transform .45s var(--ease), opacity .45s var(--ease), filter .45s var(--ease);
}
.product-card::after { left: 24px; right: 24px; opacity: .86; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.product-card .product-icon,
.product-card .chips span,
.product-card .coming-line,
.product-card .btn,
.product-card .card-copy h3,
.product-card .card-copy p { transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), opacity .3s var(--ease); }
.product-card:hover { transform: translateY(-10px) scale(1.012); border-color: rgba(119,176,255,.30); box-shadow: 0 34px 90px rgba(0,0,0,.34), 0 0 0 1px rgba(104,151,255,.08), 0 0 42px rgba(46,140,255,.10); }
.product-card:hover::before { transform: scale(1.18); opacity: 1; filter: saturate(1.15); }
.product-card:hover::after { opacity: 1; transform: scaleX(1.02); }
.product-card:hover .product-icon { transform: translateY(-4px) scale(1.07); box-shadow: 0 18px 36px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.04) inset; }
.product-card:hover .card-copy h3 { transform: translateX(3px); }
.product-card:hover .card-copy p { color: #b6c3d7; }
.product-card:hover .chips span { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.09); color: #e3e9f3; }
.product-card:hover .coming-line { background: rgba(125,82,255,.12); border-color: rgba(125,82,255,.18); }
.product-card:hover .btn-card-primary svg, .product-card:hover .btn-primary svg { transform: translateX(3px); }
.btn svg { transition: transform .25s var(--ease); }
.product-card::selection { background: transparent; }
.company-cta, .site-header { transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease); }
.company-cta:hover { transform: translateY(-4px); border-color: rgba(109,167,255,.22); box-shadow: 0 24px 70px rgba(0,0,0,.24); }
.top-nav .nav-site:hover, .btn-company:hover { box-shadow: 0 16px 34px rgba(45,140,255,.16); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .product-card { grid-column: span 3; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .company-cta { grid-template-columns: 100px 1fr; }
  .company-logo-wrap { width: 100px; height: 100px; }
  .btn-company { grid-column: 1 / -1; width: max-content; }
}

@media (max-width: 760px) {
  .site-header { width: min(100% - 24px, 1180px); margin-top: 12px; height: 68px; top: 8px; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-copy small { display: none; }
  .top-nav a:not(.nav-site) { display: none; }
  .top-nav .nav-site { padding: 9px 11px; }
  main { width: min(100% - 24px, 1180px); }
  .hero { padding: 74px 0 62px; }
  .hero h1 { font-size: clamp(43px, 14vw, 68px); }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-stats { width: 100%; display: grid; grid-template-columns: 1fr; gap: 12px; }
  .hero-stats i { height: 1px; width: 100%; }
  .solutions { padding-top: 24px; }
  .filters { width: 100%; overflow-x: auto; }
  .filter { flex: 1 0 auto; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { grid-column: auto; min-height: auto; }
  .card-copy p { min-height: 0; }
  .card-actions { margin-top: 24px; grid-template-columns: 1fr; }
  .company-cta { grid-template-columns: 72px 1fr; padding: 18px; gap: 17px; }
  .company-logo-wrap { width: 72px; height: 72px; border-radius: 17px; }
  .company-cta h2 { font-size: 26px; }
  .company-cta p { grid-column: 1 / -1; }
  .btn-company { width: 100%; }
  .site-footer { width: min(100% - 24px, 1180px); flex-direction: column; }
  .site-footer div { flex-direction: column; gap: 4px; }
  .modal { padding: 12px; }
  .modal-panel { padding: 24px 18px 20px; border-radius: 22px; max-height: calc(100vh - 24px); }
  .modal-close { right: 14px; top: 14px; }
  .modal-head { align-items: flex-start; gap: 13px; }
  .modal-head h2 { font-size: 28px; }
  .feature-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .splash-content, .splash-glow { animation: none !important; }
}


/* ===== Central Notrix V3 — premium interactions ===== */
.splash-screen { transition: opacity .62s cubic-bezier(.2,.8,.2,1), visibility .62s; }
.splash-content { animation: notrixSplashIn 2.15s cubic-bezier(.2,.8,.2,1) both; }
.splash-logo { animation: notrixLogoPulse 2.15s cubic-bezier(.2,.8,.2,1) both; }
.splash-wordmark, .splash-tagline { animation: notrixCopyIn 2.15s cubic-bezier(.2,.8,.2,1) both; }
@keyframes notrixSplashIn {
  0% { opacity:0; transform:translateY(18px) scale(.96); }
  18% { opacity:1; transform:translateY(0) scale(1); }
  72% { opacity:1; transform:translateY(0) scale(1); }
  100% { opacity:0; transform:translateY(-8px) scale(1.02); }
}
@keyframes notrixLogoPulse {
  0% { opacity:0; transform:scale(.9); filter:blur(6px); }
  20% { opacity:1; transform:scale(1); filter:blur(0); }
  55% { transform:scale(1.035); }
  78% { opacity:1; transform:scale(1); }
  100% { opacity:0; transform:scale(1.04); }
}
@keyframes notrixCopyIn {
  0%,10% { opacity:0; transform:translateY(8px); }
  27%,72% { opacity:1; transform:translateY(0); }
  100% { opacity:0; transform:translateY(-5px); }
}

.product-card {
  --mx: 50%; --my: 50%;
  transform-style: preserve-3d;
  will-change: transform;
}
.product-card::before {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(70,171,255,.20), rgba(35,95,170,.08) 30%, transparent 64%);
  width: 100%; height: 100%; inset: 0; border-radius: inherit; opacity: 0;
  transform: none; transition: opacity .32s ease; z-index: -1;
}
.product-card:hover::before { opacity: 1; transform: none; }
.product-card::after { z-index: 2; }
.product-card:hover {
  transform: translateY(-10px) scale(1.018);
  border-color: rgba(95,164,255,.42);
  box-shadow: 0 34px 85px rgba(0,0,0,.38), 0 0 45px rgba(45,140,255,.10), inset 0 1px 0 rgba(255,255,255,.05);
}
.product-card[data-product="nexio"]:hover { border-color: rgba(18,239,212,.34); box-shadow:0 34px 85px rgba(0,0,0,.38),0 0 45px rgba(18,239,212,.09); }
.product-card[data-product="flux"]:hover,
.product-card[data-product="contabweb"]:hover,
.product-card[data-product="menu"]:hover { border-color: rgba(148,103,255,.38); box-shadow:0 34px 85px rgba(0,0,0,.38),0 0 45px rgba(125,82,255,.10); }
.product-card .card-topline,
.product-card .card-copy,
.product-card .chips,
.product-card .coming-line,
.product-card .card-actions { position: relative; z-index: 3; }
.product-card:hover .product-icon { transform: translateY(-5px) scale(1.09) rotate(-2deg); }
.product-card:hover .btn-card-primary { transform: translateY(-2px); box-shadow:0 12px 30px rgba(45,140,255,.16); }
.product-card:hover .btn-card-secondary { transform: translateY(-2px); }
.product-card .chips span { transition-delay: 0s; }
.product-card:hover .chips span:nth-child(1){transform:translateY(-2px);transition-delay:.02s}
.product-card:hover .chips span:nth-child(2){transform:translateY(-2px);transition-delay:.04s}
.product-card:hover .chips span:nth-child(3){transform:translateY(-2px);transition-delay:.06s}
.product-card:hover .chips span:nth-child(4){transform:translateY(-2px);transition-delay:.08s}
.product-card:hover .chips span:nth-child(5){transform:translateY(-2px);transition-delay:.10s}

.page-transition { z-index: 2147482990; }
body.is-leaving .site-header,
body.is-leaving main,
body.is-leaving .site-footer { opacity:0; transform:scale(.992); transition:opacity .42s ease,transform .42s ease; }

@media (hover: none), (pointer: coarse) {
  .product-card:hover { transform:none; }
}
