/* NYJL — B2C technology studio. Bright, modern, vivid-gradient system.
   Visual language adapted from the Ackworth Flowers v2 template. */
:root {
  --bg: #ffffff;
  --bg-2: #f6f4fe;
  --panel: #ffffff;
  --panel-2: #faf8ff;
  --line: rgba(26,20,48,.09);
  --line-2: rgba(26,20,48,.16);
  --text: #1a1430;
  --muted: #645c7d;
  --muted-2: #9a93ad;
  --teal: #7b2ff7;          /* primary accent */
  --teal-2: #f5489b;        /* secondary accent */
  --grad: linear-gradient(120deg, #7b2ff7 0%, #f5489b 100%);
  --max: 1120px;
  --r: 14px;
  --disp: 'Sora', 'Inter', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* bright atmosphere: soft colour blooms + faint grid */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(620px 420px at 86% -10%, rgba(123,47,247,.14), transparent 60%),
    radial-gradient(520px 380px at 6% 4%, rgba(245,72,155,.12), transparent 60%),
    linear-gradient(rgba(26,20,48,.022) 1px, transparent 1px) 0 0 / 100% 44px,
    var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--disp); font-weight: 600; line-height: 1.06; letter-spacing: -.01em; color: var(--text); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--disp); font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal); font-weight: 600; margin-bottom: 16px;
}
.kicker::before { content: ''; width: 18px; height: 2px; background: var(--grad); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--disp); font-weight: 600; font-size: 14.5px; letter-spacing: .02em;
  padding: 12px 24px; border-radius: 40px;
  background: var(--grad); color: #fff; border: 1px solid transparent;
  transition: transform .16s, box-shadow .16s, opacity .16s; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(123,47,247,.32); }
.btn-line { background: transparent; color: var(--text); border: 1px solid var(--line-2); }
.btn-line:hover { border-color: var(--teal); color: var(--teal); box-shadow: none; }
.btn-arrow::after { content: '›'; font-size: 18px; line-height: 0; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .6; pointer-events: none; }

/* Status bar */
.statusbar { border-bottom: 1px solid var(--line); background: var(--bg-2); }
.sb-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 7px 0; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.sb-live { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.sb-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 9px var(--teal); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px); background: rgba(255,255,255,.78); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 12px 24px; max-width: var(--max); margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo img { width: 34px; height: 34px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text b { font-family: var(--disp); font-weight: 700; font-size: 17px; letter-spacing: .02em; color: var(--text); }
.logo-text i { font-style: normal; font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted-2); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 13.5px; font-weight: 500; color: var(--muted); }
.nav-links a { transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { font-family: var(--disp); font-weight: 600; font-size: 13.5px; letter-spacing: .02em; padding: 9px 18px; border-radius: 40px; color: #fff; background: var(--grad); }
.nav-links a.nav-cta:hover { color: #fff; }
.nav-burger { display: none; }

/* Section frame */
section { padding: clamp(48px, 7vw, 78px) 0; position: relative; }
.sec-head { max-width: 600px; margin-bottom: 38px; }
.sec-head h2 { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 12px; }
.sec-head p { color: var(--muted); font-size: 15.5px; }
.tab-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--disp); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 14px; }
.tab-eyebrow::before { content: '//'; color: var(--teal-2); }

/* Hero */
.hero { padding: clamp(44px,6vw,72px) 0 clamp(40px,6vw,64px); }
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 46px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5.2vw, 62px); margin-bottom: 18px; }
.hero .lede { color: var(--muted); font-size: 16.5px; max-width: 480px; margin-bottom: 26px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.kpis { display: flex; gap: 28px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 22px; }
.kpi b { font-family: var(--disp); font-weight: 700; font-size: 30px; display: block; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kpi span { font-size: 12px; letter-spacing: .04em; color: var(--muted-2); text-transform: uppercase; }

/* Rotating word in hero */
.rotator { display: inline-grid; vertical-align: bottom; height: 1.1em; overflow: hidden; }
.rotator > em { grid-area: 1 / 1; font-style: normal; opacity: 0; animation: rotate-words 9s infinite; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; white-space: nowrap; }
.rotator > em:nth-child(1) { animation-delay: 0s; }
.rotator > em:nth-child(2) { animation-delay: 2.25s; }
.rotator > em:nth-child(3) { animation-delay: 4.5s; }
.rotator > em:nth-child(4) { animation-delay: 6.75s; }
@keyframes rotate-words {
  0% { opacity: 1; transform: none; }
  21% { opacity: 1; transform: none; }
  25% { opacity: 0; transform: translateY(-26%); }
  96% { opacity: 0; transform: translateY(26%); }
  100% { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .rotator > em { animation: none; opacity: 0; }
  .rotator > em:nth-child(1) { opacity: 1; }
}

/* Spec-sheet panel (hero right) */
.specsheet {
  background: var(--panel);
  border: 1px solid var(--line-2); border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(123,47,247,.14);
  align-self: start; margin-top: 44px;
}
.spec-top { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; font-family: var(--disp); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.spec-top::after { content: '◍'; color: var(--teal); }
.spec-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec-row span { color: var(--muted-2); letter-spacing: .04em; text-transform: uppercase; font-size: 11.5px; }
.spec-row b { font-family: var(--disp); font-weight: 600; font-size: 15.5px; }
.spec-row b em { font-style: normal; color: var(--teal); }
.spec-foot { display: flex; align-items: center; gap: 10px; padding: 14px 18px; font-size: 12.5px; color: var(--muted); }
.spec-foot svg { width: 18px; height: 18px; }

/* Orbit (hero visual — pulsing rings + NYJL core + orbiting product nodes) */
.orbit { position: relative; width: 100%; max-width: 430px; aspect-ratio: 1 / 1; margin: 0 auto; }
.orbit::before { content: ''; position: absolute; top: 50%; left: 50%; width: 64%; height: 64%; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(123,47,247,.16), rgba(245,72,155,.06) 55%, transparent 72%); }
.orbit > * { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.orbit-ring { border-radius: 50%; border: 1.5px solid; }
.orbit-ring--1 { width: 42%; height: 42%; border-color: rgba(123,47,247,.30); animation: orbit-pulse 5s ease-in-out infinite; }
.orbit-ring--2 { width: 70%; height: 70%; border-color: rgba(123,47,247,.18); animation: orbit-pulse 5s ease-in-out 1s infinite; }
.orbit-ring--3 { width: 100%; height: 100%; border: 1.5px dashed rgba(245,72,155,.22); animation: orbit-spin 80s linear infinite; }
@keyframes orbit-pulse { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; } 50% { transform: translate(-50%,-50%) scale(1.05); opacity: .6; } }
@keyframes orbit-spin { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes orbit-spin-rev { from { transform: rotate(0); } to { transform: rotate(-360deg); } }

.orbit-spin { width: 70%; height: 70%; border-radius: 50%; animation: orbit-spin 24s linear infinite; }
.orbit-spin--a { animation-delay: 0s; }
.orbit-spin--b { animation-delay: -6s; }
.orbit-spin--c { animation-delay: -12s; }
.orbit-spin--d { animation-delay: -18s; }
.orbit-node { position: absolute; top: 0; left: 50%; width: 46px; height: 46px; margin: -23px 0 0 -23px; border-radius: 13px; background: var(--panel); border: 1px solid var(--line-2); box-shadow: 0 12px 26px rgba(123,47,247,.16); display: grid; place-items: center; animation: orbit-spin-rev 24s linear infinite; }
.orbit-node svg { width: 22px; height: 22px; stroke: var(--teal); }
.orbit-spin--a .orbit-node { animation-delay: 0s; }
.orbit-spin--b .orbit-node { animation-delay: -6s; }
.orbit-spin--c .orbit-node { animation-delay: -12s; }
.orbit-spin--d .orbit-node { animation-delay: -18s; }

.orbit-core { z-index: 2; width: 116px; height: 116px; border-radius: 30px; background: var(--grad); display: grid; place-items: center; box-shadow: 0 26px 60px rgba(123,47,247,.42); animation: orbit-pulse 5s ease-in-out infinite; }
.orbit-core img { width: 116px; height: 116px; border-radius: 30px; }
@media (prefers-reduced-motion: reduce) {
  .orbit-ring, .orbit-spin, .orbit-node, .orbit-core { animation: none !important; }
}

/* Telemetry ticker */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.ticker-track { display: inline-flex; white-space: nowrap; will-change: transform; animation: ticker 34s linear infinite; }
.ticker-track span { display: inline-flex; align-items: center; font-family: var(--disp); font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 12px 0; }
.ticker-track span::after { content: '✦'; color: var(--teal); margin: 0 28px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Capabilities (editorial, numbered) — used for "What we build" */
.caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.cap { padding: 26px 26px 30px; border-top: 2px solid var(--line-2); position: relative; }
.cap + .cap { border-left: 1px solid var(--line); }
.cap::before { content: ''; position: absolute; top: -2px; left: 0; width: 46px; height: 2px; background: var(--grad); }
.cap-ix { font-family: var(--disp); font-weight: 700; font-size: 14px; letter-spacing: .1em; color: var(--teal); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.cap-ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(123,47,247,.08); border: 1px solid var(--line-2); display: grid; place-items: center; flex: none; }
.cap-ic svg { width: 20px; height: 20px; stroke: var(--teal); }
.cap h3 { font-size: 21px; margin-bottom: 9px; }
.cap > p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.cap ul { list-style: none; }
.cap li { position: relative; padding-left: 18px; color: var(--muted); font-size: 13.5px; margin-bottom: 7px; }
.cap li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--grad); transform: rotate(45deg); }

/* Workflow steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; list-style: none; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; box-shadow: 0 14px 34px rgba(123,47,247,.07); position: relative; overflow: hidden; }
.step::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.step:hover::after { transform: scaleX(1); }
.step-num { font-family: var(--disp); font-weight: 700; font-size: 30px; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 14px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 13.5px; }

/* Expertise grid (2 columns) */
.xgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.xcard { display: flex; gap: 18px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: 0 14px 34px rgba(123,47,247,.06); transition: transform .18s, box-shadow .18s, border-color .18s; }
.xcard:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(123,47,247,.12); border-color: var(--line-2); }
.xcard-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; flex: none; }
.xcard-ic svg { width: 22px; height: 22px; stroke: #fff; }
.xcard h3 { font-size: 19px; margin-bottom: 8px; }
.xcard p { color: var(--muted); font-size: 14px; }

/* Metrics strip (stats with counters) */
.metrics-sec { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.metric { padding: 8px 26px; border-left: 1px solid var(--line); }
.metric:first-child { border-left: none; padding-left: 0; }
.metric b { font-family: var(--disp); font-weight: 700; font-size: clamp(30px, 4vw, 44px); display: block; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric span { font-size: 12.5px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; margin-top: 8px; display: block; }

/* Product tabs */
.tabs { display: inline-flex; position: relative; gap: 4px; padding: 6px; border: 1px solid var(--line-2); border-radius: 40px; background: var(--panel); margin-bottom: 30px; }
.tabs-indicator { position: absolute; top: 6px; left: 6px; height: calc(100% - 12px); border-radius: 40px; background: var(--grad); transition: transform .3s cubic-bezier(.4,0,.2,1), width .3s cubic-bezier(.4,0,.2,1); z-index: 0; }
.tab-btn { position: relative; z-index: 1; font-family: var(--disp); font-weight: 600; font-size: 13.5px; padding: 9px 18px; border-radius: 40px; border: none; background: transparent; color: var(--muted); cursor: pointer; transition: color .2s; white-space: nowrap; }
.tab-btn.is-active { color: #fff; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade-in .4s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product { display: block; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: 0 12px 30px rgba(123,47,247,.06); transition: transform .18s, box-shadow .18s, border-color .18s; }
.product:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(123,47,247,.12); border-color: var(--line-2); }
.product-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.product-tag { font-family: var(--disp); font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); background: rgba(123,47,247,.08); border: 1px solid var(--line-2); border-radius: 30px; padding: 4px 10px; }
.product-arrow { color: var(--muted-2); font-size: 16px; transition: transform .2s, color .2s; }
.product:hover .product-arrow { transform: translate(2px,-2px); color: var(--teal); }
.product h4 { font-family: var(--disp); font-size: 17px; margin-bottom: 6px; }
.product p { color: var(--muted); font-size: 13px; }

/* Split (about how-we-operate) */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.split h2 { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 14px; }
.split > div > p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.check { list-style: none; margin-bottom: 24px; }
.check li { position: relative; padding-left: 26px; margin-bottom: 11px; color: var(--muted); font-size: 14.5px; }
.check li::before { content: '›'; position: absolute; left: 4px; top: -1px; color: var(--teal); font-size: 18px; font-family: var(--disp); }
.spec-panel { background: var(--panel); border: 1px solid var(--line-2); border-radius: 16px; overflow: hidden; box-shadow: 0 18px 44px rgba(123,47,247,.1); }
.spec-panel .row { display: flex; justify-content: space-between; gap: 12px; padding: 15px 22px; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec-panel .row:last-child { border-bottom: none; }
.spec-panel .row .lbl { color: var(--muted-2); letter-spacing: .04em; text-transform: uppercase; font-size: 11.5px; }
.spec-panel .row .val { font-family: var(--disp); font-weight: 600; font-size: 15px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 46px; align-items: start; }
.contact-info h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.contact-info > p { color: var(--muted); font-size: 16px; margin-bottom: 26px; }
.info-list { list-style: none; }
.info-list li { display: flex; gap: 13px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(123,47,247,.08); border: 1px solid var(--line-2); display: grid; place-items: center; flex: none; }
.info-list .ic svg { width: 19px; height: 19px; stroke: var(--teal); }
.info-list .k { font-size: 11.5px; color: var(--muted-2); letter-spacing: .08em; text-transform: uppercase; }
.info-list .val { font-family: var(--disp); font-size: 16px; font-weight: 600; }
.info-list a.val:hover { color: var(--teal); }
.form-card { background: var(--panel); border: 1px solid var(--line-2); border-radius: 18px; padding: 30px; box-shadow: 0 18px 44px rgba(123,47,247,.1); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 7px; }
.field .req { color: var(--teal-2); }
.field input, .field select, .field textarea { width: 100%; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 10px; padding: 12px 14px; color: var(--text); font-family: inherit; font-size: 14.5px; transition: border-color .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-note { font-size: 13px; margin-top: 12px; min-height: 18px; color: var(--muted-2); }
.form-note.is-success { color: #1f9d55; }
.form-note.is-error { color: #d23b6b; }

/* CTA */
.cta-sec { text-align: center; }
.cta { border: 1px solid var(--line-2); border-radius: 24px; padding: clamp(40px,5vw,60px) 28px; background: radial-gradient(90% 150% at 50% 0%, rgba(245,72,155,.12), rgba(123,47,247,.08) 50%, transparent 70%); }
.cta h2 { font-size: clamp(28px, 4.2vw, 46px); margin-bottom: 12px; }
.cta p { color: var(--muted); font-size: 16px; max-width: 480px; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 50px 0 28px; background: var(--bg-2); }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 38px; }
.foot-brand .logo { margin-bottom: 14px; }
.foot-brand p { color: var(--muted); font-size: 13.5px; max-width: 280px; margin-bottom: 12px; }
.foot-brand .addr { color: var(--muted-2); font-size: 12.5px; }
.foot-col h4 { font-family: var(--disp); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 13px; font-weight: 600; }
.foot-col a { display: block; color: var(--muted); font-size: 13.5px; margin-bottom: 9px; transition: color .2s; }
.foot-col a:hover { color: var(--teal); }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--muted-2); font-size: 12.5px; }

/* Page hero (subpages) */
.page-hero { padding: clamp(44px,6vw,64px) 0 clamp(22px,3vw,32px); }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 14px; }
.page-hero p { color: var(--muted); font-size: 16.5px; max-width: 620px; }

/* Legal */
.legal { max-width: 820px; margin: 0 auto; padding: clamp(40px,6vw,64px) 24px; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--disp); font-size: 13px; font-weight: 600; color: var(--teal); margin-bottom: 26px; }
.legal .back:hover { text-decoration: underline; }
.legal h1 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 8px; }
.legal .updated { color: var(--muted-2); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 30px; }
.legal h2 { font-size: 22px; margin: 34px 0 12px; }
.legal h3 { font-size: 18px; margin: 26px 0 10px; }
.legal h4 { font-size: 16px; margin: 24px 0 10px; letter-spacing: .02em; }
.legal p { color: var(--muted); margin-bottom: 14px; font-size: 15px; }
.legal ul { list-style: none; margin: 0 0 16px; }
.legal ol { margin: 0 0 16px 20px; color: var(--muted); font-size: 15px; }
.legal ol li { margin-bottom: 9px; }
.legal ul li { position: relative; padding-left: 22px; color: var(--muted); margin-bottom: 9px; font-size: 15px; }
.legal ul li::before { content: ''; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; background: var(--grad); transform: rotate(45deg); }
.legal a { color: var(--teal); word-break: break-word; }
.legal a:hover { text-decoration: underline; }
.legal b { color: var(--text); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Cookie banner */
.cookie-banner { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(140%); z-index: 80; width: min(620px, calc(100% - 36px)); display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--panel); border: 1px solid var(--line-2); border-radius: 16px; box-shadow: 0 24px 60px rgba(26,20,48,.18); transition: transform .4s cubic-bezier(.4,0,.2,1); }
.cookie-banner.is-visible { transform: translateX(-50%) translateY(0); }
.cookie-banner p { font-size: 13px; color: var(--muted); }
.cookie-banner a { color: var(--teal); }
.cookie-banner .btn { flex: none; padding: 9px 18px; font-size: 13px; }

/* Responsive */
@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .specsheet { max-width: 460px; }
  .caps { grid-template-columns: 1fr; }
  .cap { border-top: 2px solid var(--line-2); }
  .cap + .cap { border-left: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .xgrid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; gap: 1px; }
  .metric { padding: 18px 20px; border-left: 1px solid var(--line); }
  .metric:first-child { padding-left: 20px; }
  .metric:nth-child(odd) { border-left: none; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .nav-burger { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 9px; border: 1px solid var(--line-2); background: transparent; cursor: pointer; }
  .nav-burger span { position: relative; display: block; width: 17px; height: 2px; background: var(--text); border-radius: 2px; }
  .nav-burger span::before, .nav-burger span::after { content: ''; position: absolute; left: 0; width: 17px; height: 2px; background: var(--text); border-radius: 2px; }
  .nav-burger span::before { top: -5.5px; } .nav-burger span::after { top: 5.5px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; align-items: stretch; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 10px 24px 16px; gap: 2px; box-shadow: 0 20px 40px rgba(26,20,48,.16); }
  .nav-links.open a { padding: 12px 2px; font-size: 15px; color: var(--text); border-bottom: 1px solid var(--line); }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open .nav-cta { margin-top: 10px; padding: 13px; text-align: center; justify-content: center; color: #fff; border-radius: 40px; }
  .sb-meta { display: none; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
  .kpis { gap: 20px; }
  .steps { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .tabs { display: flex; width: 100%; }
  .tab-btn { flex: 1; padding: 9px 8px; font-size: 12px; }
  .foot-grid { grid-template-columns: 1fr; gap: 22px; }
  .foot-bottom { flex-direction: column; gap: 6px; }
  .field-row { grid-template-columns: 1fr; }
  .cta-actions .btn { flex: 1 1 100%; justify-content: center; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
}
