/* © NXAPP Limited. All rights reserved. */
/* NXAPP.ai — design system + page styles. Palette mirrors the NX mark:
   cyan → blue → violet. Change tokens here only. */

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url(../fonts/inter-latin-ext-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url(../fonts/inter-latin-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

:root {
  --ink: #0a1030;
  --ink-2: #1c2550;
  --muted: #4d5778;
  --soft: #7a84a3;
  --line: #e3e8f4;
  --bg: #fbfcff;
  --panel: #ffffff;
  --cyan: #12c2f0;
  --blue: #1677ff;
  --blue-2: #2f5bea;
  --violet: #7b3fe8;
  --navy: #070b2a;
  --grad: linear-gradient(90deg, #0fa8f5 0%, #2563eb 50%, #7c3aed 100%);
  --grad-text: linear-gradient(90deg, #1b8cf5 0%, #3f5ff0 45%, #8b3fe6 100%);
  --radius: 18px;
  --shadow: 0 1px 2px rgba(10,16,48,.04), 0 10px 30px -12px rgba(22,60,160,.18);
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 16px/1.6 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 10px; z-index: 100; }
.skip:focus { top: 12px; }

.eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--blue-2); margin: 0 0 14px;
}
.grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
h1, h2, h3 { margin: 0; letter-spacing: -.025em; line-height: 1.12; font-weight: 700; }
h2 { font-size: clamp(28px, 3.4vw, 40px); }
p { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  height: 46px; padding: 0 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: linear-gradient(90deg, #0b9cf5, #2563eb); color: #fff; box-shadow: 0 8px 22px -8px rgba(22,119,255,.6); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(22,119,255,.7); }
.btn-ghost { background: #fff; color: var(--ink); border-color: #cfd6e8; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { height: 38px; padding: 0 18px; font-size: 14px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--blue-2); }
.link-arrow svg { width: 15px; height: 15px; transition: transform .2s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,252,255,.82); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(10,16,48,.35); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand img { width: 50px; height: auto; }
.wordmark { font-weight: 600; font-size: 20px; letter-spacing: .28em; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-2); position: relative; padding: 6px 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 12px; align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .25s, background .25s; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; isolation: isolate; padding-block: clamp(40px, 6vw, 72px) clamp(56px, 7vw, 90px); }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(30% 50% at 70% 44%, rgba(255,255,255,.95), transparent 70%),
    radial-gradient(52% 70% at 76% 40%, rgba(124,92,255,.20), transparent 64%),
    radial-gradient(38% 45% at 100% 0%, rgba(56,189,248,.18), transparent 62%),
    radial-gradient(60% 38% at 72% 100%, rgba(59,130,246,.24), transparent 66%),
    radial-gradient(40% 60% at 0% 100%, rgba(186,206,255,.35), transparent 70%),
    linear-gradient(180deg, #fdfdff 0%, #f2f5ff 62%, #e6edff 100%);
}
.hero::after {
  content: ''; position: absolute; z-index: -1; top: -25%; right: -8%; width: 70%; height: 150%; pointer-events: none;
  background:
    linear-gradient(112deg, transparent 43%, rgba(255,255,255,.85) 46.5%, transparent 50%),
    linear-gradient(112deg, transparent 57%, rgba(255,255,255,.55) 59%, transparent 62%),
    linear-gradient(112deg, transparent 28%, rgba(190,204,255,.40) 31%, transparent 35%);
  filter: blur(7px);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 32px; }
.hero h1 { font-size: clamp(38px, 5.6vw, 64px); line-height: 1.06; letter-spacing: -.035em; margin-bottom: 24px; }
.hero .lede { font-size: clamp(16px, 1.5vw, 18px); color: var(--muted); max-width: 30em; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-art { position: relative; min-height: 380px; display: flex; align-items: center; justify-content: center; padding-right: 120px; padding-bottom: 60px; }
.hero-art::after { content: ''; position: absolute; left: -15%; right: -25%; bottom: 58px; height: 1px; background: linear-gradient(90deg, transparent, rgba(120,140,255,.35) 40%, rgba(255,255,255,.9) 55%, transparent); }
.hero-stage { position: relative; width: min(100%, 440px); }
.hero-mark { position: relative; z-index: 1; display: block; width: 100%; animation: float 7s ease-in-out infinite; filter: drop-shadow(0 34px 36px rgba(60,50,200,.30)) drop-shadow(0 8px 12px rgba(20,60,160,.18)); }
.hero-reflect {
  position: absolute; left: 0; top: 100%; width: 100%; margin-top: -30px; opacity: .2; filter: blur(1.5px);
  transform: scaleY(-1); animation: float-rev 7s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,.9), transparent 42%); mask-image: linear-gradient(to top, rgba(0,0,0,.9), transparent 42%);
}
.hero-floor { position: absolute; bottom: 36px; left: 4%; right: 18%; height: 56px; border-radius: 50%; background: radial-gradient(closest-side, rgba(90,80,230,.34), rgba(90,150,255,.14) 60%, transparent); filter: blur(8px); animation: floor 7s ease-in-out infinite; }
@keyframes float-rev { 0%,100% { transform: scaleY(-1) translateY(0); } 50% { transform: scaleY(-1) translateY(-14px); } }
.hero-words { position: absolute; right: 0; top: 50%; transform: translateY(-50%); list-style: none; margin: 0; padding: 0; font-size: 12.5px; letter-spacing: .42em; line-height: 2.1; color: var(--ink-2); font-weight: 500; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floor { 0%,100% { opacity: 1; transform: scaleX(1); } 50% { opacity: .65; transform: scaleX(.9); } }

/* ---------- TechButler band ---------- */
.band-section { padding-block: 16px 20px; }
.band-section .wrap { max-width: 1400px; }
.band {
  position: relative; overflow: hidden; isolation: isolate; border-radius: 22px; border: 1px solid rgba(203,214,246,.9);
  background:
    radial-gradient(30% 70% at 80% 55%, rgba(255,255,255,.95), transparent 70%),
    radial-gradient(28% 60% at 99% 8%, rgba(139,92,246,.24), transparent 70%),
    radial-gradient(34% 70% at 72% 112%, rgba(56,152,255,.24), transparent 70%),
    radial-gradient(40% 90% at 0% 0%, rgba(255,255,255,.85), transparent 70%),
    linear-gradient(100deg, #e5edff 0%, #edf2ff 38%, #f2efff 68%, #e3e9ff 100%);
  box-shadow: 0 30px 60px -42px rgba(40,60,160,.4), inset 0 1px 0 rgba(255,255,255,.95);
  display: grid; grid-template-columns: 1.22fr 1.25fr .95fr; align-items: center; gap: 28px;
  padding: clamp(28px, 4vw, 48px);
}
.band::before {
  content: ''; position: absolute; z-index: -1; top: -40%; bottom: -40%; left: 45%; right: -10%; pointer-events: none;
  background:
    linear-gradient(115deg, transparent 46%, rgba(255,255,255,.9) 49%, transparent 52%),
    linear-gradient(115deg, transparent 60%, rgba(255,255,255,.6) 61.5%, transparent 64%),
    linear-gradient(115deg, transparent 72%, rgba(200,210,255,.5) 73.5%, transparent 76%);
  filter: blur(5px);
}
.band h2 { font-size: clamp(24px, 2.2vw, 30px); margin-bottom: 18px; }
.band .copy p { font-size: 14px; color: var(--muted); margin-bottom: 22px; max-width: 30em; }
.pillars4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.pillars4 > div { text-align: center; padding: 6px 8px; border-left: 1px solid rgba(160,176,220,.45); }
.pillars4 > div:first-child { border-left: 0; }
.ico { width: 44px; height: 44px; margin: 0 auto 14px; color: var(--blue-2); display: grid; place-items: center; }
.ico svg { width: 30px; height: 30px; stroke-width: 1.6; }
.pillars4 h3 { font-size: 13.5px; letter-spacing: -.01em; margin-bottom: 8px; }
.pillars4 p { font-size: 11px; color: var(--muted); line-height: 1.55; text-wrap: balance; }

/* device mockup */
.device { position: relative; height: 250px; z-index: 1; }
.glass { position: absolute; border-radius: 16px; border: 1px solid rgba(255,255,255,.95); background: linear-gradient(135deg, rgba(255,255,255,.75), rgba(170,190,255,.22)); box-shadow: 0 24px 40px -26px rgba(40,60,170,.4), inset 0 0 30px rgba(255,255,255,.5); }
.glass.g1 { left: 0; top: 16px; width: 44%; height: 176px; transform: perspective(700px) rotateY(32deg); opacity: .85; }
.glass.g2 { left: 22%; top: -8px; width: 52%; height: 150px; transform: perspective(700px) rotateY(20deg); opacity: .55; }
.laptop { position: absolute; left: 14%; top: 26px; width: 68%; }
.laptop .screen {
  position: relative; aspect-ratio: 16 / 10.2; padding: 6px; border-radius: 12px 12px 3px 3px; display: grid; place-items: center;
  background: radial-gradient(70% 90% at 55% 35%, #4b4ff2 0%, #1b2090 45%, #080c33 100%) content-box, linear-gradient(145deg, #f3f5fb, #aeb8d2) border-box;
  box-shadow: 0 26px 40px -22px rgba(30,40,140,.65);
}
.laptop .screen::after { content: ''; position: absolute; inset: 6px; border-radius: 7px 7px 0 0; background: linear-gradient(125deg, rgba(255,255,255,.22), transparent 38%); pointer-events: none; }
.laptop .screen img { width: 30%; filter: drop-shadow(0 0 18px rgba(120,170,255,.7)); }
.laptop .deck {
  position: relative; height: 30px; margin: 0 -11%; border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #edf0f7 0%, #d3dae9 65%, #a9b4ce 100%);
  clip-path: polygon(7% 0, 93% 0, 100% 72%, 100% 100%, 0 100%, 0 72%);
}
.laptop .deck::before {
  content: ''; position: absolute; left: 16%; right: 16%; top: 4px; height: 13px;
  background: repeating-linear-gradient(90deg, rgba(90,100,140,.32) 0 6px, transparent 6px 8px);
  -webkit-mask-image: repeating-linear-gradient(180deg, #000 0 3px, transparent 3px 5px); mask-image: repeating-linear-gradient(180deg, #000 0 3px, transparent 3px 5px);
  clip-path: polygon(2% 0, 98% 0, 100% 100%, 0 100%);
}
.laptop .deck::after { content: ''; position: absolute; left: 43%; right: 43%; bottom: 5px; height: 4px; border-radius: 3px; background: rgba(110,120,160,.3); }
.phone {
  position: absolute; left: 6%; bottom: -2px; width: 60px; aspect-ratio: 9 / 19; padding: 3px; border-radius: 13px; z-index: 1;
  background: radial-gradient(120% 80% at 30% 15%, #7482ff, #3340d8 40%, #151a6e 100%) content-box, linear-gradient(145deg, #f4f6fb, #9aa6c4) border-box;
  box-shadow: 0 20px 30px -12px rgba(30,40,140,.55);
}
.phone span { position: absolute; top: 7px; left: 50%; width: 16px; height: 4px; margin-left: -8px; border-radius: 4px; background: rgba(8,12,50,.8); }
.device-floor { position: absolute; left: -4%; right: 6%; bottom: -22px; height: 44px; border-radius: 50%; z-index: -1; background: radial-gradient(closest-side, rgba(80,90,220,.35), rgba(120,160,255,.14) 60%, transparent); filter: blur(6px); }
.status-card { position: absolute; right: -6px; top: -6px; width: 58%; min-width: 170px; z-index: 2; background: rgba(255,255,255,.84); backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%); border: 1px solid rgba(255,255,255,.95); border-radius: 12px; padding: 14px 16px; box-shadow: 0 24px 50px -22px rgba(30,50,150,.5); }
.status-card li svg { width: 13px; height: 13px; color: var(--blue-2); flex: none; }
.status-card strong { display: block; font-size: 13.5px; margin-bottom: 10px; }
.status-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.status-card li { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--muted); }
.status-card li span:first-child { display: inline-flex; align-items: center; gap: 7px; }
.ok { color: #1a9b5c; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.ok::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.18); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 5px rgba(34,197,94,.05); } }

/* ---------- Ecosystem ---------- */
.section { padding-block: clamp(56px, 7vw, 88px); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.section-head h2 { margin-bottom: 14px; }
.section-head h2 b { font-weight: 800; }
.section-head p { color: var(--muted); max-width: 30em; }
.cards4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pcard {
  position: relative; overflow: hidden; isolation: isolate; color: #fff; border-radius: 12px;
  min-height: 250px; padding: 30px 24px 22px; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.pcard:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -24px rgba(20,40,150,.6); }
.pcard::before, .pcard::after { content: ''; position: absolute; z-index: -1; pointer-events: none; }
.pcard::before { inset: -20%; background: linear-gradient(118deg, transparent 38%, rgba(255,255,255,.42) 46%, transparent 50%, transparent 54%, rgba(255,255,255,.2) 58%, transparent 64%); filter: blur(3px); transition: transform .8s; }
.pcard:hover::before { transform: translateX(6%); }
.pcard .picon { width: 42px; height: 42px; margin-bottom: 26px; }
.pcard .picon svg { width: 42px; height: 42px; stroke-width: 1.5; }
.pcard h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.pcard p { font-size: 14px; opacity: .9; max-width: 14em; line-height: 1.45; }
.pcard .go { margin-top: auto; padding-top: 20px; }
.pcard .go svg { width: 18px; height: 18px; transition: transform .25s; }
.pcard:hover .go svg { transform: translateX(5px); }
.c-tb { background: linear-gradient(145deg, #0a3cc2 0%, #0c6ae6 55%, #1a2c9a 100%); }
.c-cy { background: linear-gradient(150deg, #0a1245 0%, #16227a 60%, #2b1b8a 100%); }
.c-cy::after { right: -30%; top: 20%; width: 90%; height: 90%; background: radial-gradient(closest-side, rgba(168,85,247,.55), transparent); }
.c-cl { background: linear-gradient(160deg, #2a8ef0 0%, #4cb2ff 55%, #2d88ea 100%); }
.c-cl::after { right: -18%; top: 18%; width: 80%; height: 50%; border-radius: 50%; background: radial-gradient(closest-side, rgba(255,255,255,.55), transparent 70%); filter: blur(8px); }
.c-dg { background: linear-gradient(150deg, #1c2a95 0%, #3b2bb8 55%, #6a2fe0 100%); }
.c-dg::after { left: -20%; bottom: -30%; width: 90%; height: 80%; background: radial-gradient(closest-side, rgba(56,189,248,.35), transparent); }

/* ---------- Products ---------- */
.products-grid h2 { font-size: clamp(26px, 2.5vw, 32px); }
.products-grid { display: grid; grid-template-columns: .9fr 2.2fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.products-grid h2 { margin-bottom: 26px; }
.products-grid .copy p { color: var(--muted); font-size: 15px; margin-bottom: 24px; max-width: 26em; }
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr) 1.45fr; grid-template-rows: 1fr 1fr; gap: 10px; }
.prod {
  background: var(--panel); border: 1px solid var(--line); border-radius: 8px; text-align: center;
  padding: 20px 10px 16px; display: flex; flex-direction: column; align-items: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.prod:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c8d4f2; }
.prod .ico { margin-bottom: 12px; width: 34px; height: 34px; }
.prod .ico svg { width: 28px; height: 28px; }
.prod h3 { font-size: 13px; letter-spacing: -.01em; line-height: 1.25; margin-bottom: 6px; }
.prod p { font-size: 11px; color: var(--soft); line-height: 1.4; }
.family {
  grid-column: 5; grid-row: 1 / span 2; position: relative; overflow: hidden; isolation: isolate;
  border-radius: 8px; color: #fff; padding: 24px 20px; display: flex; flex-direction: column;
  background: linear-gradient(160deg, #0a1245 0%, #16207a 45%, #3a2cc2 100%);
}
.family::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(125deg, transparent 50%, rgba(56,189,248,.55) 62%, rgba(168,85,247,.5) 74%, transparent 86%); filter: blur(4px); }
.family h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.family p { font-size: 12.5px; opacity: .78; margin-bottom: 18px; }
.family .link-arrow { color: #fff; font-size: 13px; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.cta canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 120% at 85% 60%, rgba(90,60,230,.35), transparent 70%); }
.cta-inner { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; padding-block: clamp(40px, 5vw, 60px); }
.cta .eyebrow { color: #38bdf8; }
.cta h2 { font-size: clamp(26px, 2.8vw, 34px); margin-bottom: 16px; }
.cta p { color: #c3cbe6; font-size: 15px; max-width: 28em; }
.cta-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-right: clamp(0px, 16vw, 260px); }
.cta .link-arrow { color: #d7defa; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; }
.foot-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 26px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.foot-links { display: flex; gap: clamp(16px, 2.6vw, 34px); list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.foot-links a { font-size: 13px; color: var(--ink-2); }
.foot-links a:hover { color: var(--blue-2); }
.foot-legal { display: flex; align-items: center; gap: 22px; font-size: 12.5px; color: var(--soft); }
.foot-legal a:hover { color: var(--ink); }
.foot-legal .li { width: 26px; height: 26px; border-radius: 6px; background: var(--ink-2); color: #fff; display: grid; place-items: center; }
.foot-legal .li svg { width: 14px; height: 14px; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 22px 30px; flex-wrap: wrap; }
.foot-bottom .tag { font-size: 14px; color: var(--muted); }
.foot-bottom small { display: block; font-size: 12px; color: var(--soft); margin-top: 4px; }
.badges { display: flex; gap: 28px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 10px; font-size: 10.5px; line-height: 1.25; color: var(--ink-2); font-weight: 500; }
.badge svg { width: 34px; height: 34px; flex: none; }

/* ---------- Legal pages ---------- */
.doc { max-width: 760px; padding-block: clamp(48px, 7vw, 90px); }
.doc h1 { font-size: clamp(32px, 4.4vw, 46px); margin-bottom: 12px; }
.doc .meta { color: var(--soft); font-size: 14px; margin-bottom: 36px; }
.doc h2 { font-size: 21px; margin: 34px 0 10px; }
.doc p, .doc li { color: var(--muted); }
.doc p + p { margin-top: 12px; }
.doc ul { padding-left: 20px; }
.doc a { color: var(--blue-2); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Reveal (fail-safe: visible unless html.js-anim) ---------- */
.js-anim .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js-anim .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal { opacity: 1; transform: none; transition: none; }
  .hero-mark, .hero-reflect, .hero-floor, .ok::before { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1300px) {
  .band { grid-template-columns: 1fr 1.3fr; }
  .band .device { grid-column: 1 / -1; max-width: 460px; width: 100%; margin-inline: auto; }
}
@media (max-width: 1080px) {
  .pgrid { grid-template-columns: repeat(4, 1fr); grid-template-rows: auto; }
  .family { grid-column: 1 / -1; grid-row: auto; }
  .products-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav .btn { display: none; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 76px; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 18px;
    box-shadow: 0 20px 30px -20px rgba(10,16,48,.3);
    display: none;
  }
  .nav-open .nav-links { display: flex; }
  .nav-links a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav-links a::after { display: none; }
  .nav-links .mobile-cta { display: block; padding-top: 16px; }
  .nav-links .mobile-cta a { border: 0; justify-content: center; display: flex; color: #fff; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 0; padding-block: 8px 28px; order: -1; padding-right: 90px; }
  .hero-floor { bottom: 6px; }
  .hero-stage { width: min(70%, 340px); }
  .hero-words { font-size: 10.5px; }
  .band { grid-template-columns: 1fr; }
  .cards4 { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { margin-right: 0; }
}
@media (min-width: 901px) { .nav-links .mobile-cta { display: none; } }
@media (max-width: 600px) {
  .pillars4 { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .pillars4 > div:nth-child(3) { border-left: 0; }
  .cards4 { grid-template-columns: 1fr; }
  .pcard { min-height: 210px; }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .status-card { width: 70%; }
  .wordmark { font-size: 17px; }
  .brand img { width: 42px; }
  .foot-top, .foot-bottom { flex-direction: column; align-items: flex-start; }
}
