/* ============================================================
   Infordata Sistemi — Corporate site visual system
   Built on the Infordata Innovations brand DNA (heritage purple
   #964494 evolved). Hybrid: light institutional surfaces + dark
   "ink" feature bands. Bilingual IT/EN, light + dark theme.
   ============================================================ */

:root {
  /* brand (—brand-500 also set by JS tweak) */
  --brand-500: #964494;
  --brand-300: color-mix(in srgb, var(--brand-500) 52%, #ffffff);
  --brand-200: color-mix(in srgb, var(--brand-500) 32%, #ffffff);
  --brand-700: color-mix(in srgb, var(--brand-500) 72%, #000000);
  --violet: #7C4DEC;
  --grad: linear-gradient(102deg, var(--brand-300) 0%, var(--brand-500) 46%, var(--violet) 100%);

  /* domain accents (commercial pillars) */
  --ac-hr: #2BA8C4;     /* human resources */
  --ac-sec: #964494;    /* security */
  --ac-bld: #6366F1;    /* buildings */
  --ac-evt: #F0852B;    /* events */

  /* type */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  /* ink (always-dark feature bands) */
  --ink-bg: #0B0710;
  --ink-bg2: #110A18;
  --ink-surface: #170F20;
  --ink-surface2: #1E1428;
  --ink-border: rgba(255,255,255,.10);
  --ink-border2: rgba(255,255,255,.18);
  --ink-strong: #F6F1F8;
  --ink-text: #C9BFD4;
  --ink-dim: #9385A2;

  --maxw: 1240px;
  --radius: 16px;
  --radius-lg: 24px;
  --pad-card: 28px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* density tweak */
[data-density="compact"] { --pad-card: 22px; --maxw: 1180px; }
[data-density="spacious"] { --pad-card: 32px; }

/* themed surfaces */
[data-theme="light"] {
  --bg: #F5F1F8;
  --bg2: #FFFFFF;
  --surface: #FFFFFF;
  --surface2: #F2ECF7;
  --surface3: #EAE2F1;
  --border: rgba(26,12,32,.10);
  --border2: rgba(26,12,32,.16);
  --strong: #1A1222;
  --text: #463C50;
  --dim: #756A80;
  --shadow-sm: 0 2px 10px -4px rgba(50,20,60,.18);
  --shadow: 0 22px 50px -30px rgba(60,30,70,.42);
  color-scheme: light;
}
[data-theme="dark"] {
  --bg: #0B0710;
  --bg2: #110A18;
  --surface: #170F20;
  --surface2: #1E1428;
  --surface3: #241834;
  --border: rgba(255,255,255,.10);
  --border2: rgba(255,255,255,.18);
  --strong: #F6F1F8;
  --text: #C9BFD4;
  --dim: #9385A2;
  --shadow-sm: 0 2px 12px -4px rgba(0,0,0,.6);
  --shadow: 0 24px 60px -28px rgba(0,0,0,.8);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1,h2,h3,h4 { font-family: var(--font-display); margin: 0; letter-spacing: -.02em; }
::selection { background: color-mix(in srgb, var(--brand-500) 45%, transparent); color: #fff; }

/* ---------- shared primitives ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 99px; background: var(--brand-500);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-500) 22%, transparent);
}
.eyebrow--brand { color: color-mix(in srgb, var(--brand-700) 88%, var(--text)); }
[data-theme="dark"] .eyebrow--brand { color: color-mix(in srgb, var(--brand-300) 88%, var(--text)); }
.eyebrow--invert { color: var(--ink-dim); }
.eyebrow--invert .dot { background: var(--brand-300); box-shadow: 0 0 0 4px color-mix(in srgb,var(--brand-300) 25%, transparent); }

.sec-title {
  font-size: clamp(30px, 4.2vw, 50px); line-height: 1.05; color: var(--strong);
  margin-top: 16px; max-width: 20ch; text-wrap: balance; font-weight: 600;
}
.sec-title--sm { font-size: clamp(24px, 3vw, 34px); }
.sec-title--invert { color: var(--ink-strong); }
.sec-lead {
  font-size: clamp(16px, 1.4vw, 18.5px); line-height: 1.62; color: var(--text);
  margin-top: 16px; max-width: 60ch; text-wrap: pretty;
}
.sec-lead--invert { color: var(--ink-text); }
.sec-head { max-width: 760px; margin-bottom: 48px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* scroll-reveal */
@keyframes revealIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: revealIn .7s var(--ease) both; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn--lg { padding: 15px 26px; font-size: 16px; border-radius: 14px; }
.btn--primary {
  color: #fff; background: var(--brand-500); background-image: var(--grad);
  box-shadow: 0 10px 28px -12px color-mix(in srgb, var(--brand-500) 80%, transparent), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px color-mix(in srgb, var(--brand-500) 85%, transparent); }
.btn--primary:active { transform: translateY(0) scale(.99); }
.btn--secondary {
  color: var(--strong); background: var(--surface); border-color: var(--border2);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--brand-500) 55%, var(--border2)); color: var(--brand-700); }
[data-theme="dark"] .btn--secondary:hover { color: var(--brand-300); }
.btn--ghost {
  color: var(--ink-strong); background: rgba(255,255,255,.05);
  border-color: var(--ink-border2); backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn--link { background: none; padding: 0; color: var(--brand-700); font-weight: 650; }
[data-theme="dark"] .btn--link { color: var(--brand-300); }
.btn--link:hover { gap: 11px; }

/* ---------- header ---------- */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .3s, border-color .3s, padding .3s, box-shadow .3s;
  border-bottom: 1px solid transparent; padding: 12px 0;
}
.hdr--scrolled {
  background: color-mix(in srgb, var(--bg2) 86%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
/* over an ink hero the header reads light until scrolled */
.hdr--onInk:not(.hdr--scrolled) { --hdr-ink: 1; }
.hdr__in { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; gap: 18px; }
.hdr__nav { display: flex; gap: 2px; margin-left: 14px; }
.hdr__link {
  font-size: 14.5px; font-weight: 550; color: var(--text);
  padding: 9px 13px; border-radius: 10px; transition: color .2s, background .2s; cursor: pointer;
  border: 0; background: none;
}
.hdr__link:hover { color: var(--strong); background: var(--surface2); }
.hdr__link.is-active { color: var(--brand-700); background: color-mix(in srgb, var(--brand-500) 12%, transparent); }
[data-theme="dark"] .hdr__link.is-active { color: var(--brand-300); }
.hdr--onInk:not(.hdr--scrolled) .hdr__link { color: var(--ink-text); }
.hdr--onInk:not(.hdr--scrolled) .hdr__link:hover { color: var(--ink-strong); background: rgba(255,255,255,.07); }
.hdr--onInk:not(.hdr--scrolled) .if-logo__name { color: var(--ink-strong); }
.hdr--onInk:not(.hdr--scrolled) .if-logo__sub { color: var(--ink-dim); }
.hdr__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.lang-toggle { display: flex; background: var(--surface2); border: 1px solid var(--border); border-radius: 11px; padding: 3px; }
.hdr--onInk:not(.hdr--scrolled) .lang-toggle, .hdr--onInk:not(.hdr--scrolled) .icon-btn { background: rgba(255,255,255,.06); border-color: var(--ink-border); color: var(--ink-text); }
.lang-toggle__b {
  border: 0; background: transparent; color: var(--dim); font-family: var(--font-mono);
  font-size: 12px; font-weight: 700; padding: 6px 9px; border-radius: 8px; cursor: pointer; transition: .2s;
}
.lang-toggle__b.is-on { background: var(--brand-500); background-image: var(--grad); color: #fff; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center; cursor: pointer;
  border-radius: 11px; border: 1px solid var(--border); background: var(--surface2); color: var(--text);
  transition: .2s;
}
.icon-btn:hover { color: var(--strong); border-color: var(--border2); }
.hdr__burger { display: none; }

/* logo */
.if-logo { display: inline-flex; align-items: center; gap: 12px; cursor: pointer; }
.if-mark { display: block; filter: drop-shadow(0 4px 14px color-mix(in srgb, var(--brand-500) 38%, transparent)); }
.if-logo__words { display: flex; flex-direction: column; line-height: 1; }
.if-logo__name { font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -.03em; color: var(--strong); }
.if-logo__sub { font-family: var(--font-mono); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--dim); margin-top: 3px; }
.if-logo__dot { color: var(--brand-500); }
[data-theme="dark"] .if-logo__dot { color: var(--brand-300); }

/* ============================================================
   HERO — three directions (ink / light / split)
   ============================================================ */
.hero { position: relative; overflow: hidden; isolation: isolate; }

/* shared inner */
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 15px;
  border-radius: 99px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__title { font-weight: 600; letter-spacing: -.025em; }
.hero__line { display: block; }
.hero__cta { display: flex; gap: 13px; margin-top: 34px; flex-wrap: wrap; }

/* ---- ink hero ---- */
.hero--ink { min-height: 100svh; display: flex; align-items: center; background: radial-gradient(120% 90% at 50% -10%, var(--ink-bg2), var(--ink-bg) 60%); }
.hero--ink .hero__in { position: relative; z-index: 3; max-width: 1000px; margin: 0 auto; padding: 150px 28px 110px; text-align: center; }
.hero--ink .hero__eyebrow { border: 1px solid var(--ink-border2); background: rgba(255,255,255,.04); backdrop-filter: blur(8px); color: var(--ink-text); }
.hero--ink .hero__title { font-size: clamp(40px, 7vw, 84px); line-height: .99; color: var(--ink-strong); margin-top: 28px; }
.hero--ink .hero__lead { font-size: clamp(17px, 1.7vw, 20px); line-height: 1.6; color: var(--ink-text); max-width: 60ch; margin: 26px auto 0; text-wrap: pretty; }
.hero--ink .hero__cta { justify-content: center; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 880px; margin: 56px auto 0; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px;
  border-radius: 99px; border: 1px solid var(--ink-border); background: rgba(255,255,255,.035);
  color: var(--ink-text); font-size: 13.5px; font-weight: 600; transition: .22s var(--ease);
}
.hero-chip:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--ac, var(--brand-300)) 60%, transparent); color: var(--ink-strong); background: color-mix(in srgb, var(--ac, var(--brand-500)) 12%, transparent); }
.hero-chip .icon { color: var(--ac, var(--brand-300)); }

/* ---- light hero ---- */
.hero--light { background: var(--bg); min-height: 92svh; display: flex; align-items: center; }
.hero--light::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 70% at 88% 6%, color-mix(in srgb, var(--brand-500) 22%, transparent), transparent 60%);
}
.hero--light .hero__in { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 160px 28px 90px; }
.hero--light .hero__eyebrow { border: 1px solid var(--border2); background: var(--surface); color: var(--brand-700); box-shadow: var(--shadow-sm); }
[data-theme="dark"] .hero--light .hero__eyebrow { color: var(--brand-300); }
.hero--light .hero__title { font-size: clamp(40px, 6.4vw, 78px); line-height: 1.0; color: var(--strong); margin-top: 26px; max-width: 16ch; }
.hero--light .hero__lead { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6; color: var(--text); max-width: 56ch; margin-top: 24px; text-wrap: pretty; }

/* ---- split hero ---- */
.hero--split { background: var(--bg); padding: 150px 0 80px; }
.hero--split .hero__in { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero--split .hero__eyebrow { border: 1px solid var(--border2); background: var(--surface); color: var(--brand-700); }
[data-theme="dark"] .hero--split .hero__eyebrow { color: var(--brand-300); }
.hero--split .hero__title { font-size: clamp(36px, 4.6vw, 62px); line-height: 1.02; color: var(--strong); margin-top: 22px; }
.hero--split .hero__lead { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; color: var(--text); max-width: 52ch; margin-top: 22px; }
.hero__panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; isolation: isolate;
  background: radial-gradient(120% 100% at 80% 0%, var(--ink-bg2), var(--ink-bg)); border: 1px solid var(--ink-border);
  min-height: 460px; padding: 30px; box-shadow: var(--shadow);
}
.hero__panel-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; height: 100%; align-content: center; }
.hpcard {
  border-radius: 14px; border: 1px solid var(--ink-border); background: var(--ink-surface);
  padding: 18px; display: flex; flex-direction: column; gap: 10px; transition: .25s var(--ease);
}
.hpcard:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--ac) 55%, var(--ink-border)); }
.hpcard__ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: var(--ac); background: color-mix(in srgb, var(--ac) 16%, transparent); border: 1px solid color-mix(in srgb, var(--ac) 32%, transparent); }
.hpcard__t { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink-strong); }
.hpcard__d { font-size: 12.5px; color: var(--ink-dim); line-height: 1.45; }

.hero__scroll { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; color: var(--dim); font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.hero--ink .hero__scroll { color: var(--ink-dim); }

/* aurora / grid / meteors (shared with innovations) */
.aurora { position: absolute; inset: -20% -10% auto -10%; height: 120%; z-index: 1; pointer-events: none; filter: blur(60px); opacity: .8; }
.aurora::before, .aurora::after { content: ""; position: absolute; border-radius: 50%; }
.aurora::before { width: 60vw; height: 60vw; left: -5vw; top: -10vw; background: radial-gradient(circle, color-mix(in srgb, var(--brand-500) 58%, transparent), transparent 65%); animation: drift1 22s ease-in-out infinite; }
.aurora::after { width: 50vw; height: 50vw; right: -5vw; top: -5vw; background: radial-gradient(circle, color-mix(in srgb, var(--violet) 52%, transparent), transparent 65%); animation: drift2 26s ease-in-out infinite; }
.aurora--soft { opacity: .4; }
@keyframes drift1 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(8vw,4vw) scale(1.15);} }
@keyframes drift2 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-7vw,5vw) scale(1.1);} }
@media (prefers-reduced-motion: reduce) { .aurora::before, .aurora::after { animation: none; } }
.grid-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.grid-bg__lines { position: absolute; inset: 0; background-image: linear-gradient(var(--ink-border) 1px, transparent 1px), linear-gradient(90deg, var(--ink-border) 1px, transparent 1px); background-size: 58px 58px; opacity: .5; }
.grid-bg__fade { position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% 30%, transparent 30%, var(--ink-bg) 80%); }
.meteors { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.meteor { position: absolute; width: 2px; height: 2px; border-radius: 99px; background: #fff; box-shadow: 0 0 0 1px rgba(255,255,255,.1); animation-name: meteor; animation-timing-function: linear; animation-iteration-count: infinite; }
.meteor::before { content: ""; position: absolute; top: 50%; transform: translateY(-50%); width: 70px; height: 1px; background: linear-gradient(90deg, color-mix(in srgb, var(--brand-300) 90%, transparent), transparent); }
@keyframes meteor { 0%{ transform: rotate(215deg) translateX(0); opacity: 0;} 8%{opacity:1;} 100%{ transform: rotate(215deg) translateX(-900px); opacity: 0;} }
@media (prefers-reduced-motion: reduce) { .meteors { display: none; } }

/* ---------- trust / stats band ---------- */
.trust { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust__in { max-width: var(--maxw); margin: 0 auto; padding: 44px 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 14%; height: 72%; width: 1px; background: var(--border); }
.stat__v { font-family: var(--font-display); font-size: clamp(34px, 4.4vw, 52px); font-weight: 600; line-height: 1; color: var(--strong); letter-spacing: -.03em; }
.stat__v .grad-text { font-weight: 700; }
.stat__l { margin-top: 9px; font-size: 13.5px; color: var(--dim); font-weight: 500; }

/* ---------- section shell ---------- */
.section { padding: 104px 0; }
.section--tight { padding: 80px 0; }
.section--alt { background: var(--bg2); }
.section__in { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- pillar / solution cards ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillars--3 { grid-template-columns: repeat(3, 1fr); }
.pcard {
  position: relative; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); padding: var(--pad-card); overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.pcard:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--ac, var(--brand-500)) 55%, var(--border)); box-shadow: var(--shadow); }
.pcard__halo { position: absolute; top: -50%; right: -30%; width: 80%; height: 100%; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--ac, var(--brand-500)) 16%, transparent), transparent 70%); pointer-events: none; opacity: .9; }
.pcard__ic {
  position: relative; z-index: 1; width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  color: var(--ac, var(--brand-500)); background: color-mix(in srgb, var(--ac, var(--brand-500)) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--ac, var(--brand-500)) 30%, transparent); margin-bottom: 20px;
}
[data-theme="light"] .pcard__ic { color: color-mix(in srgb, var(--ac, var(--brand-500)) 78%, #000); }
.pcard__num { position: absolute; top: 22px; right: 24px; font-family: var(--font-mono); font-size: 12px; color: var(--dim); opacity: .55; }
.pcard__t { position: relative; z-index: 1; font-size: 20px; color: var(--strong); margin-bottom: 9px; font-weight: 600; }
.pcard__d { position: relative; z-index: 1; font-size: 14.5px; line-height: 1.58; color: var(--text); }
.pcard__list { position: relative; z-index: 1; margin: 16px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pcard__list li { font-size: 13px; color: var(--dim); display: flex; align-items: center; gap: 8px; }
.pcard__list li .icon { color: var(--ac, var(--brand-500)); flex: none; }

/* ---------- ecosystem (product brands) bento ---------- */
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.eco {
  position: relative; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); padding: 24px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; min-height: 192px;
}
.eco:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--ac) 55%, var(--border)); box-shadow: var(--shadow); }
.eco__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.eco__mark { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; color: var(--ac); background: color-mix(in srgb, var(--ac) 14%, transparent); border: 1px solid color-mix(in srgb, var(--ac) 30%, transparent); }
[data-theme="light"] .eco__mark { color: color-mix(in srgb, var(--ac) 80%, #000); }
.eco__host { font-family: var(--font-mono); font-size: 11px; color: var(--dim); }
.eco__name { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--strong); }
.eco__d { font-size: 13.5px; line-height: 1.55; color: var(--text); margin-top: 7px; }
.eco__foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 650; color: var(--ac); }
[data-theme="light"] .eco__foot { color: color-mix(in srgb, var(--ac) 80%, #000); }
.eco:hover .eco__foot { gap: 9px; }

/* ---------- innovation band (ink) ---------- */
.inno { position: relative; background: radial-gradient(120% 100% at 78% 0%, var(--ink-bg2), var(--ink-bg)); padding: 110px 0; overflow: hidden; isolation: isolate; }
.inno__in { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.inno-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(180px, auto); gap: 16px; }
.icard {
  position: relative; border-radius: var(--radius); border: 1px solid var(--ink-border);
  background: var(--ink-surface); padding: 26px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s; --mx:50%; --my:50%;
}
.icard:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--ac) 55%, var(--ink-border)); }
.icard--xl { grid-column: span 3; grid-row: span 2; padding: 32px; }
.icard--wide { grid-column: span 3; }
.icard--md { grid-column: span 2; }
.icard__halo { position: absolute; top: -40%; right: -20%; width: 70%; height: 90%; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--ac) 22%, transparent), transparent 70%); filter: blur(28px); pointer-events: none; }
.icard__top { position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.icard__ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex: none; color: var(--ac); background: color-mix(in srgb, var(--ac) 15%, transparent); border: 1px solid color-mix(in srgb, var(--ac) 34%, transparent); }
.icard__dom { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-dim); flex: 1; }
.icard__status { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; padding: 4px 9px; border-radius: 99px; background: color-mix(in srgb, var(--ac) 14%, transparent); color: color-mix(in srgb, var(--ac) 82%, #fff); border: 1px solid color-mix(in srgb, var(--ac) 26%, transparent); }
.pulse { width: 7px; height: 7px; border-radius: 99px; background: var(--ac); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 color-mix(in srgb, var(--ac) 60%, transparent);} 70%{ box-shadow: 0 0 0 8px transparent;} 100%{ box-shadow: 0 0 0 0 transparent;} }
.icard__name { position: relative; z-index: 1; font-size: 22px; color: var(--ink-strong); font-weight: 600; }
.icard--xl .icard__name { font-size: 30px; }
.icard__name .hi { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.icard__tag { position: relative; z-index: 1; font-size: 14px; line-height: 1.45; color: var(--ink-text); margin-top: 8px; font-weight: 550; }
.icard--xl .icard__tag { font-size: 16px; }
.icard__body { position: relative; z-index: 1; font-size: 13.5px; line-height: 1.55; color: var(--ink-dim); margin-top: 12px; }
.icard__chips { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 18px; }
.ichip { font-size: 11.5px; font-weight: 550; padding: 4px 10px; border-radius: 8px; background: var(--ink-surface2); color: var(--ink-text); border: 1px solid var(--ink-border); }

/* ---------- benefit band ---------- */
.benefit { background: var(--bg2); position: relative; overflow: hidden; }
.benefit__in { max-width: var(--maxw); margin: 0 auto; padding: 104px 28px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.benefit__visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; background: linear-gradient(150deg, color-mix(in srgb, var(--brand-500) 90%, #000), var(--violet)); display: grid; place-items: center; box-shadow: var(--shadow); }
.benefit__seal { width: 200px; height: 200px; display: grid; place-items: center; }
.benefit__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.bpill { border-radius: 13px; border: 1px solid var(--border); background: var(--surface); padding: 18px; }
.bpill__ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; color: var(--brand-700); background: color-mix(in srgb, var(--brand-500) 13%, transparent); border: 1px solid color-mix(in srgb, var(--brand-500) 26%, transparent); margin-bottom: 12px; }
[data-theme="dark"] .bpill__ic { color: var(--brand-300); }
.bpill__t { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--strong); margin-bottom: 5px; }
.bpill__d { font-size: 13px; line-height: 1.5; color: var(--dim); }

/* ---------- certifications strip ---------- */
.certs { background: var(--bg); border-top: 1px solid var(--border); }
.certs__in { max-width: var(--maxw); margin: 0 auto; padding: 56px 28px; }
.certs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.cert {
  border-radius: 13px; border: 1px solid var(--border); background: var(--surface); padding: 20px 18px;
  display: flex; flex-direction: column; gap: 10px; transition: .22s var(--ease);
}
.cert:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--brand-500) 45%, var(--border)); box-shadow: var(--shadow-sm); }
.cert--link { cursor: pointer; }
.cert__ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: var(--brand-700); background: color-mix(in srgb, var(--brand-500) 12%, transparent); }
[data-theme="dark"] .cert__ic { color: var(--brand-300); }
.cert__t { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--strong); line-height: 1.2; }
.cert__d { font-size: 12px; color: var(--dim); line-height: 1.4; }
.cert__link { margin-top: 4px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .03em; color: var(--brand-700); transition: gap .2s var(--ease); }
[data-theme="dark"] .cert__link { color: var(--brand-300); }
.cert--link:hover .cert__link { gap: 9px; }

/* ---------- clients marquee ---------- */
.clients { background: var(--bg2); border-top: 1px solid var(--border); padding: 70px 0; overflow: hidden; }
.clients__head { max-width: var(--maxw); margin: 0 auto 36px; padding: 0 28px; text-align: center; }
.marquee { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; gap: 14px; width: max-content; animation: marquee linear infinite; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
.client {
  display: inline-flex; align-items: center; gap: 11px; padding: 16px 26px; border-radius: 13px;
  border: 1px solid var(--border); background: var(--surface); color: var(--strong);
  font-family: var(--font-display); font-weight: 600; font-size: 16px; white-space: nowrap;
}
.client .icon { color: var(--brand-500); }
[data-theme="dark"] .client .icon { color: var(--brand-300); }

/* ---------- CTA / contact (ink) ---------- */
.cta { position: relative; background: radial-gradient(110% 120% at 50% 0%, var(--ink-bg2), var(--ink-bg)); padding: 120px 0; overflow: hidden; isolation: isolate; text-align: center; }
.cta__in { position: relative; z-index: 3; max-width: 820px; margin: 0 auto; padding: 0 28px; }
.cta__title { font-size: clamp(32px, 5vw, 60px); line-height: 1.04; margin-top: 20px; color: var(--ink-strong); font-weight: 600; }
.cta__lead { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: var(--ink-text); margin: 20px auto 0; max-width: 54ch; }
.cta__row { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.cta__contacts { display: flex; gap: 26px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.cta__contact { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 14px; color: var(--ink-text); }
.cta__contact:hover { color: var(--ink-strong); }

/* ---------- footer ---------- */
.footer { background: var(--ink-bg); color: var(--ink-text); padding: 70px 0 28px; border-top: 1px solid var(--ink-border); }
.footer__in { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1.5fr 2.4fr; gap: 50px; }
.footer__tag { font-size: 15px; line-height: 1.6; color: var(--ink-text); margin: 20px 0 16px; max-width: 36ch; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; border: 1px solid var(--ink-border); color: var(--ink-text); transition: .2s; }
.footer__social a:hover { color: var(--ink-strong); border-color: var(--ink-border2); background: rgba(255,255,255,.05); }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer__col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 14px; font-weight: 700; }
.footer__col a { display: block; font-size: 14px; color: var(--ink-text); padding: 6px 0; transition: color .2s; cursor: pointer; }
.footer__col a:hover { color: var(--ink-strong); }
.footer__bar { max-width: var(--maxw); margin: 48px auto 0; padding: 24px 28px 0; border-top: 1px solid var(--ink-border); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 12.5px; color: var(--ink-dim); flex-wrap: wrap; }

/* ---------- inner page header ---------- */
.phead { position: relative; padding: 150px 0 64px; background: radial-gradient(80% 120% at 85% 0%, color-mix(in srgb, var(--brand-500) 16%, transparent), transparent 55%); overflow: hidden; }
.phead__in { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.phead__title { font-size: clamp(36px, 5.2vw, 64px); line-height: 1.02; color: var(--strong); margin-top: 16px; font-weight: 600; max-width: 18ch; }
.phead__lead { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: var(--text); margin-top: 18px; max-width: 60ch; }
.crumbs { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--dim); }
.crumbs a { cursor: pointer; }
.crumbs a:hover { color: var(--brand-700); }

/* prose */
.prose { max-width: 760px; }
.prose p { font-size: 16.5px; line-height: 1.72; color: var(--text); margin: 0 0 18px; }
.prose p strong { color: var(--strong); font-weight: 600; }
.prose h3 { font-size: 24px; color: var(--strong); margin: 36px 0 14px; }

/* timeline */
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 12px; }
.tl { display: grid; grid-template-columns: 110px 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--border); }
.tl:last-child { border-bottom: 1px solid var(--border); }
.tl__year { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--brand-700); }
[data-theme="dark"] .tl__year { color: var(--brand-300); }
.tl__t { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--strong); margin-bottom: 6px; }
.tl__d { font-size: 14.5px; line-height: 1.6; color: var(--text); }

/* team grid */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.member { border-radius: 14px; border: 1px solid var(--border); background: var(--surface); padding: 22px; }
.member__av { width: 56px; height: 56px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 14px; }
.member__n { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--strong); }
.member__r { font-size: 12.5px; color: var(--dim); margin-top: 3px; }

/* contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--strong); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 15px; color: var(--strong); background: var(--surface);
  border: 1px solid var(--border2); border-radius: 11px; padding: 12px 14px; transition: .2s; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-500) 24%, transparent); }
.field textarea { resize: vertical; min-height: 120px; }
.info-card { border-radius: 14px; border: 1px solid var(--border); background: var(--surface); padding: 26px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-top: 1px solid var(--border); }
.info-row:first-of-type { border-top: 0; }
.info-row__ic { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center; color: var(--brand-700); background: color-mix(in srgb, var(--brand-500) 12%, transparent); }
[data-theme="dark"] .info-row__ic { color: var(--brand-300); }
.info-row__l { font-size: 12px; color: var(--dim); text-transform: uppercase; letter-spacing: .06em; }
.info-row__v { font-size: 15.5px; color: var(--strong); font-weight: 550; margin-top: 2px; }

.icon { display: inline-flex; vertical-align: middle; }

/* skip-to-content (a11y) */
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 200; padding: 10px 16px; border-radius: 10px; background: var(--brand-500); color: #fff; font-weight: 600; font-size: 14px; transform: translateY(-220%); transition: transform .2s var(--ease); }
.skip-link:focus { transform: translateY(0); outline: 3px solid color-mix(in srgb, var(--brand-500) 45%, #fff); outline-offset: 2px; }
main:focus { outline: none; }

/* contact map embed */
.map-embed { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); line-height: 0; }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; filter: saturate(.9); }
[data-theme="dark"] .map-embed iframe { filter: invert(.92) hue-rotate(180deg) saturate(.8); }

/* fade between routed views */
@media (prefers-reduced-motion: no-preference) { .view { animation: viewIn .4s var(--ease) both; } }
@keyframes viewIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hdr__nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 2px; padding: 14px; background: color-mix(in srgb, var(--bg2) 96%, transparent); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); margin: 0; }
  .hdr__nav.is-open { display: flex; }
  .hdr__burger { display: grid; }
  .hdr__cta { display: none; }
  .hero--split .hero__in { grid-template-columns: 1fr; gap: 36px; }
  .hero__panel { min-height: 380px; }
  .trust__in { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .stat:not(:last-child)::after { display: none; }
  .pillars, .pillars--3 { grid-template-columns: repeat(2, 1fr); }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .inno-grid { grid-template-columns: 1fr; }
  .icard--xl, .icard--wide, .icard--md { grid-column: 1; grid-row: auto; }
  .benefit__in { grid-template-columns: 1fr; gap: 36px; }
  .certs__grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__in { grid-template-columns: 1fr; gap: 36px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .wrap, .hdr__in, .section__in, .trust__in, .inno__in, .benefit__in, .certs__in, .cta__in, .footer__in, .phead__in { padding-left: 20px; padding-right: 20px; }
  .pillars, .pillars--3, .eco-grid, .certs__grid, .team-grid { grid-template-columns: 1fr; }
  .hero--ink .hero__in, .hero--light .hero__in { padding-left: 20px; padding-right: 20px; }
}

/* ============================================================
   Company page — interactive timeline, manifesto, policies, news
   ============================================================ */

/* ---------- interactive timeline (accordion) ---------- */
.tline { margin-top: 16px; border-top: 1px solid var(--border); }
.tline__item { border-bottom: 1px solid var(--border); }
.tline__head {
  width: 100%; display: grid; grid-template-columns: 44px 94px 1fr 26px; align-items: center; gap: 16px;
  background: none; border: 0; padding: 20px 6px; cursor: pointer; text-align: left; color: inherit;
  font-family: inherit; border-radius: 12px; transition: background .2s var(--ease);
}
.tline__head:hover { background: color-mix(in srgb, var(--brand-500) 5%, transparent); }
.tline__head:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand-500) 55%, transparent); outline-offset: 2px; }
.tline__node {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  color: var(--brand-700); background: color-mix(in srgb, var(--brand-500) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-500) 26%, transparent); transition: .25s var(--ease);
}
[data-theme="dark"] .tline__node { color: var(--brand-300); }
.tline__item.is-open .tline__node { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--brand-500) 80%, transparent); }
.tline__year { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--brand-700); }
[data-theme="dark"] .tline__year { color: var(--brand-300); }
.tline__title { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--strong); line-height: 1.25; }
.tline__chev { color: var(--dim); display: grid; place-items: center; transition: transform .28s var(--ease), color .2s; }
.tline__item.is-open .tline__chev { transform: rotate(180deg); color: var(--brand-700); }
[data-theme="dark"] .tline__item.is-open .tline__chev { color: var(--brand-300); }
.tline__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); }
.tline__item.is-open .tline__panel { grid-template-rows: 1fr; }
.tline__panelin { overflow: hidden; }
.tline__desc { margin: 0; padding: 2px 6px 14px 154px; font-size: 15.5px; line-height: 1.65; color: var(--text); max-width: 78ch; }
.tline__tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 6px 22px 154px; }
.ttag { font-family: var(--font-mono); font-size: 11px; padding: 5px 11px; border-radius: 999px; background: var(--surface2); color: var(--brand-700); border: 1px solid var(--border); }
[data-theme="dark"] .ttag { color: var(--brand-300); }
@media (prefers-reduced-motion: reduce) {
  .tline__panel, .tline__chev, .tline__node, .tline__head { transition: none; }
}

/* ---------- sustainability manifesto (ink band) ---------- */
.manifesto { position: relative; background: radial-gradient(120% 130% at 50% -10%, var(--ink-bg2), var(--ink-bg)); padding: 110px 0; overflow: hidden; isolation: isolate; }
.manifesto__in { position: relative; z-index: 3; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.manifesto__title { font-size: clamp(30px, 4.2vw, 50px); line-height: 1.05; color: var(--ink-strong); font-weight: 600; margin-top: 16px; max-width: 17ch; }
.manifesto__lead { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.65; color: var(--ink-text); margin: 20px 0 0; max-width: 64ch; }
.manifesto__statement { position: relative; font-size: 16px; line-height: 1.7; color: var(--ink-text); margin: 26px 0 0; max-width: 72ch; padding-left: 42px; }
.manifesto__quote { position: absolute; left: 0; top: 1px; color: var(--brand-300); opacity: .85; }
.manifesto__pHead { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-200); margin: 56px 0 18px; }
.manifesto__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mpurpose { border-radius: var(--radius); border: 1px solid var(--ink-border); background: var(--ink-surface); padding: 24px 20px; height: 100%; transition: .22s var(--ease); }
.mpurpose:hover { border-color: var(--ink-border2); transform: translateY(-4px); }
.mpurpose__n { font-family: var(--font-mono); font-size: 12px; color: var(--ink-dim); }
.mpurpose__ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; color: var(--brand-300); background: color-mix(in srgb, var(--brand-500) 22%, transparent); border: 1px solid color-mix(in srgb, var(--brand-300) 24%, transparent); margin: 14px 0; }
.mpurpose__t { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink-strong); margin-bottom: 8px; line-height: 1.25; }
.mpurpose__d { font-size: 13px; line-height: 1.55; color: var(--ink-text); }
.manifesto__foot { display: flex; flex-wrap: wrap; gap: 22px 44px; align-items: center; margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--ink-border); }
.manifesto__gov { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.55; color: var(--ink-text); max-width: 50ch; }
.manifesto__gov .icon { color: var(--brand-300); flex: none; margin-top: 2px; }
.manifesto__vision { flex: 1; min-width: 280px; font-family: var(--font-display); font-size: clamp(17px, 2vw, 22px); line-height: 1.35; color: var(--ink-strong); font-weight: 500; font-style: italic; margin: 0; }

/* ---------- company policies ---------- */
.pol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.pol { display: flex; align-items: center; gap: 14px; padding: 18px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); transition: .2s var(--ease); }
.pol:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--brand-500) 45%, var(--border)); box-shadow: var(--shadow-sm); }
.pol__ic { width: 42px; height: 42px; flex: none; border-radius: 11px; display: grid; place-items: center; color: var(--brand-700); background: color-mix(in srgb, var(--brand-500) 12%, transparent); }
[data-theme="dark"] .pol__ic { color: var(--brand-300); }
.pol__txt { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.pol__t { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--strong); line-height: 1.2; }
.pol__d { font-size: 12.5px; color: var(--dim); line-height: 1.35; }
.pol__arrow { color: var(--dim); flex: none; transition: .2s var(--ease); }
.pol:hover .pol__arrow { color: var(--brand-700); transform: translate(2px, -2px); }
[data-theme="dark"] .pol:hover .pol__arrow { color: var(--brand-300); }

/* ---------- news & press ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.ncard { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 24px 22px; border-radius: 16px; border: 1px solid var(--border); background: var(--surface); transition: .22s var(--ease); overflow: hidden; --nc: var(--brand-500); }
.ncard::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--nc); opacity: 0; transition: opacity .22s var(--ease); }
.ncard:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--nc) 45%, var(--border)); box-shadow: var(--shadow); }
.ncard:hover::before { opacity: 1; }
.ncard--news { --nc: var(--ac-evt); }
.ncard--sustainability { --nc: #16B8A6; }
.ncard__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ncat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; font-weight: 700; padding: 5px 10px; border-radius: 999px; color: var(--nc); background: color-mix(in srgb, var(--nc) 12%, transparent); border: 1px solid color-mix(in srgb, var(--nc) 26%, transparent); }
.ncard__date { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 12px; color: var(--dim); white-space: nowrap; }
.ncard__t { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.25; color: var(--strong); }
.ncard__d { font-size: 13.5px; line-height: 1.55; color: var(--text); flex: 1; margin: 0; }
.ncard__read { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--brand-700); margin-top: 2px; transition: gap .2s var(--ease); }
[data-theme="dark"] .ncard__read { color: var(--brand-300); }
.ncard:hover .ncard__read { gap: 10px; }

/* news filter chips (/notizie) */
.news-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.nfilter { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 14px; font-weight: 600; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--border2); background: var(--surface); color: var(--text); cursor: pointer; transition: .18s var(--ease); }
.nfilter:hover { border-color: color-mix(in srgb, var(--brand-500) 50%, var(--border2)); color: var(--strong); }
.nfilter.is-on { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 10px 24px -12px color-mix(in srgb, var(--brand-500) 80%, transparent); }
.nfilter__n { font-family: var(--font-mono); font-size: 11px; opacity: .65; }
.nfilter.is-on .nfilter__n { opacity: .85; }

/* ---------- sectors / features grid (solutions) ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.feat { display: flex; gap: 14px; align-items: flex-start; padding: 20px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); transition: .2s var(--ease); }
.feat:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--brand-500) 45%, var(--border)); box-shadow: var(--shadow-sm); }
.feat__ic { width: 42px; height: 42px; flex: none; border-radius: 11px; display: grid; place-items: center; color: var(--brand-700); background: color-mix(in srgb, var(--brand-500) 12%, transparent); }
[data-theme="dark"] .feat__ic { color: var(--brand-300); }
.feat__txt { display: flex; flex-direction: column; gap: 4px; }
.feat__t { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--strong); line-height: 1.2; }
.feat__d { font-size: 13px; color: var(--dim); line-height: 1.5; }

/* ---------- approach steps (solutions) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.step { position: relative; padding: 24px 20px; border-radius: 16px; border: 1px solid var(--border); background: var(--surface); transition: .2s var(--ease); }
.step:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand-500) 40%, var(--border)); box-shadow: var(--shadow-sm); }
.step__n { font-family: var(--font-mono); font-size: 12px; color: var(--brand-700); }
[data-theme="dark"] .step__n { color: var(--brand-300); }
.step__ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--brand-700); background: color-mix(in srgb, var(--brand-500) 12%, transparent); border: 1px solid color-mix(in srgb, var(--brand-500) 24%, transparent); margin: 12px 0 14px; }
[data-theme="dark"] .step__ic { color: var(--brand-300); }
.step__t { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--strong); margin-bottom: 6px; }
.step__d { font-size: 13px; line-height: 1.55; color: var(--dim); }

/* ---------- R&D research themes (innovation) ---------- */
.rtheme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.rtheme { position: relative; overflow: hidden; padding: 28px 24px; border-radius: 18px; border: 1px solid var(--border); background: var(--surface); transition: .22s var(--ease); }
.rtheme:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--ac, var(--brand-500)) 50%, var(--border)); box-shadow: var(--shadow); }
.rtheme__halo { position: absolute; top: -40%; right: -30%; width: 70%; height: 80%; background: radial-gradient(circle, color-mix(in srgb, var(--ac) 22%, transparent), transparent 70%); pointer-events: none; }
.rtheme__ic { position: relative; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; color: #fff; background: color-mix(in srgb, var(--ac) 92%, #000); box-shadow: 0 10px 24px -10px var(--ac); }
.rtheme__t { position: relative; font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--strong); margin: 18px 0 8px; }
.rtheme__d { position: relative; font-size: 14px; line-height: 1.6; color: var(--text); margin: 0 0 16px; }
.rtheme__chips { position: relative; display: flex; flex-wrap: wrap; gap: 7px; }
.ichip--light { background: var(--surface2); color: var(--brand-700); border-color: var(--border); }
[data-theme="dark"] .ichip--light { color: var(--brand-300); }

/* responsive (solutions/innovation new sections) */
@media (max-width: 980px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .rtheme-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .feat-grid, .steps { grid-template-columns: 1fr; }
}

/* ---------- responsive (new company-page sections) ---------- */
@media (max-width: 980px) {
  .manifesto__grid { grid-template-columns: repeat(2, 1fr); }
  .pol-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .tline__desc, .tline__tags { padding-left: 120px; }
}
@media (max-width: 560px) {
  .manifesto { padding: 80px 0; }
  .manifesto__grid, .pol-grid, .news-grid { grid-template-columns: 1fr; }
  .tline__head { grid-template-columns: 40px 1fr 22px; gap: 6px 12px; }
  .tline__node { grid-row: 1 / span 2; align-self: center; }
  .tline__year { grid-column: 2; grid-row: 1; font-size: 18px; }
  .tline__title { grid-column: 2; grid-row: 2; }
  .tline__chev { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
  .tline__desc, .tline__tags { padding-left: 52px; }
}
