/* ============================================================
   LAND AND EXPAND — Landing page
   Brand: font Hk Modular (fallback Chakra Petch / Inter)
   Viola #8c52ff · gradient #5170ff → #ab5de8 · #616cfb → #cb6ce6
   ============================================================ */

:root {
  --bg:        #08060f;
  --bg-2:      #0b0817;
  --panel:     #100c1e;
  --panel-2:   #17122b;
  --panel-3:   #1d1735;
  --border:    rgba(140, 82, 255, .16);
  --border-2:  rgba(140, 82, 255, .30);

  --violet:    #8c52ff;
  --violet-2:  #ab5de8;
  --blue:      #5170ff;
  --pink:      #cb6ce6;

  --grad:      linear-gradient(135deg, #5170ff 0%, #ab5de8 100%);
  --grad-2:    linear-gradient(135deg, #616cfb 0%, #cb6ce6 100%);
  --grad-soft: linear-gradient(135deg, rgba(81,112,255,.18), rgba(171,93,232,.18));

  --text:      #ecebf3;
  --muted:     #a49dbb;
  --muted-2:   #7d768f;
  --white:     #ffffff;

  --maxw: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-display: "Chakra Petch", "Hk Modular", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Ambient background glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 40% at 80% -5%, rgba(140, 82, 255, .18), transparent 60%),
    radial-gradient(50% 40% at 0% 20%, rgba(81, 112, 255, .12), transparent 60%),
    radial-gradient(70% 50% at 50% 110%, rgba(171, 93, 232, .10), transparent 60%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(140, 82, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 82, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
  pointer-events: none;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 88px 0; position: relative; }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: .74rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--violet-2);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--grad);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 6.2vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.lead { color: var(--muted); font-size: clamp(1rem, 3.4vw, 1.12rem); max-width: 62ch; margin-top: 16px; }

.h2 .nowrap-lg { display: inline-block; white-space: nowrap; }
/* keep the coloured line on ONE row even on small phones by fitting its size to the viewport */
.manifesto .h2 { font-size: clamp(1.5rem, 5.6vw, 2.9rem); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 600; font-size: .92rem; letter-spacing: .02em;
  padding: 14px 26px; border-radius: 100px;
  cursor: pointer; border: 0; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 10px 30px -8px rgba(140, 82, 255, .6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(140, 82, 255, .75); }
.btn--ghost {
  background: rgba(255, 255, 255, .04); color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--ghost:hover { background: rgba(140, 82, 255, .14); transform: translateY(-2px); }
.btn--sm { padding: 11px 20px; font-size: .85rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, backdrop-filter .35s, border-color .35s, padding .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 6, 15, .72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.nav__logo img { height: 21px; width: auto; }
@media (min-width: 620px) { .nav__inner { padding: 15px 22px; } .nav__logo img { height: 26px; } }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__links { display: none; gap: 28px; }
.nav__links a {
  font-family: var(--font-display); font-size: .84rem; font-weight: 500;
  letter-spacing: .04em; color: var(--muted); transition: color .25s; text-transform: uppercase;
}
.nav__links a:hover { color: var(--white); }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--border-2);
  transition: background .25s, transform .25s;
}
@media (min-width: 620px) { .icon-btn { width: 42px; height: 42px; } }
.icon-btn:hover { background: rgba(140, 82, 255, .2); transform: translateY(-2px); }
.icon-btn svg { width: 19px; height: 19px; fill: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 70px;
  overflow: hidden;
}
.hero__orbit {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%);
  width: min(120vw, 900px); aspect-ratio: 1; z-index: -1; opacity: .5;
  pointer-events: none;
}
.hero__orbit span {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(140, 82, 255, .16);
}
.hero__orbit span:nth-child(1) { inset: 0; animation: spin 46s linear infinite; }
.hero__orbit span:nth-child(2) { inset: 12%; border-color: rgba(81,112,255,.14); animation: spin 34s linear infinite reverse; }
.hero__orbit span:nth-child(3) { inset: 26%; border-color: rgba(203,108,230,.13); animation: spin 26s linear infinite; }
.hero__orbit span::before {
  content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px;
  border-radius: 50%; background: var(--violet); box-shadow: 0 0 16px 2px var(--violet);
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px; border-radius: 100px;
  background: rgba(140, 82, 255, .08); border: 1px solid var(--border-2);
  font-size: .78rem; color: var(--muted); margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero__badge b { color: var(--white); font-weight: 600; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #37e29a; box-shadow: 0 0 10px #37e29a; }

.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.9rem, 13vw, 6.2rem); line-height: .96; letter-spacing: -.02em;
  text-transform: uppercase;
}
.hero__sub {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.05rem, 4.6vw, 1.9rem); letter-spacing: .01em;
  margin-top: 18px; color: var(--white);
}
.hero__sub span { color: var(--violet-2); }
.hero p.hero__desc {
  color: var(--muted); font-size: clamp(1rem, 3.6vw, 1.16rem);
  max-width: 44ch; margin-top: 20px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__scroll {
  margin-top: 54px; display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2);
  font-family: var(--font-display);
}
.hero__scroll i {
  width: 24px; height: 38px; border: 1.5px solid var(--border-2); border-radius: 12px;
  position: relative; display: inline-block;
}
.hero__scroll i::before {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 3px; background: var(--violet);
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0%{opacity:0;top:6px} 40%{opacity:1} 80%{opacity:0;top:20px} 100%{opacity:0} }

/* Phase chips under hero */
.hero__steps {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin-top: 38px; max-width: 440px;
}
.hstep {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 16px; border-radius: 100px;
  border: 1px solid var(--border-2); background: rgba(255, 255, 255, .035);
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; font-size: 1rem; color: var(--white);
  backdrop-filter: blur(4px);
}
.hstep i {
  width: 28px; height: 28px; flex: none; border-radius: 50%; font-style: normal;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad); color: #fff; font-weight: 700; font-size: .9rem;
  box-shadow: 0 4px 14px -4px var(--violet);
}
@media (min-width: 620px) {
  .hero__steps { display: flex; flex-wrap: wrap; max-width: none; gap: 12px; }
  .hstep { font-size: .95rem; }
}

/* ============================================================
   MANIFESTO / INTRO
   ============================================================ */
.manifesto .h2 { max-width: 20ch; }
.manifesto__grid {
  display: grid; gap: 16px; margin-top: 40px;
  grid-template-columns: 1fr;
}
.stat {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  padding: 26px 22px;
}
.stat b {
  font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; line-height: 1;
  display: block;
}
.stat span { color: var(--muted); font-size: .92rem; margin-top: 6px; display: block; }

/* ============================================================
   PERCORSO OPERATIVO (timeline)
   ============================================================ */
.path { position: relative; }
.path__track { position: relative; margin-top: 46px; }
/* vertical line for mobile */
.path__track::before {
  content: ""; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--violet-2), transparent);
  border-radius: 2px;
}
.step {
  position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 14px 0 40px;
}
.step:last-child { padding-bottom: 0; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%; position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff;
  background: var(--bg); border: 2px solid var(--border-2);
}
.step.reveal-on .step__num { border-color: transparent; background: var(--grad); box-shadow: 0 0 26px -4px var(--violet); }
.step__card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23,18,43,.7), rgba(16,12,30,.5));
  padding: 22px; transition: border-color .35s, transform .35s;
  display: flex; flex-direction: column;
}
.step__card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.step__head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.step__ic {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-soft); border: 1px solid var(--border-2);
}
.step__ic svg { width: 24px; height: 24px; stroke: var(--violet-2); fill: none; stroke-width: 1.6; }
.step__kicker { font-family: var(--font-display); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; color: var(--violet-2); }
.step__title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; text-transform: uppercase; line-height: 1.1; }
.step__card p { color: var(--muted); font-size: .95rem; margin-top: 4px; }
.step__logo { margin-top: auto; padding-top: 28px; height: 34px; box-sizing: content-box; display: flex; align-items: center; }
.step__logo img { height: 100%; width: auto; opacity: .92; }
.step__logo small { color: var(--muted-2); font-size: .78rem; margin-left: 10px; font-family: var(--font-display); letter-spacing: .05em; }

/* Bridging note under the timeline (iOT365 vs Crytica complementarity) */
.path__note {
  margin: 28px auto 0; max-width: 780px; text-align: center;
  padding: 16px 22px; border-radius: 14px;
  background: rgba(140, 82, 255, .08); border: 1px solid var(--border-2);
  color: var(--muted); font-size: .96rem; line-height: 1.55;
}
.path__note b { color: var(--violet-2); font-weight: 600; }
@media (min-width: 860px) { .path__note { margin-top: 44px; } }

/* ============================================================
   TECH PILLARS
   ============================================================ */
.pillars { overflow-x: clip; }
.swipe-hint { display: none; }
/* Mobile: horizontal swipeable carousel that bleeds to the screen edges */
.pillars__grid {
  display: grid; grid-auto-flow: column; grid-auto-columns: 82%;
  gap: 14px; margin: 16px -22px 0; padding: 6px 22px 18px;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory; scroll-padding-left: 22px;
  -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
  scrollbar-width: thin; scrollbar-color: var(--border-2) transparent;
}
.pillars__grid > .pillar { scroll-snap-align: start; }
.pillars__grid::-webkit-scrollbar { height: 6px; }
.pillars__grid::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 6px; }
.pillars__grid::-webkit-scrollbar-track { background: transparent; }
@media (max-width: 859px) {
  .swipe-hint {
    display: inline-flex; align-items: center; margin-top: 16px;
    font-family: var(--font-display); font-size: .74rem; letter-spacing: .14em;
    text-transform: uppercase; color: var(--violet-2);
  }
}
.pillar {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(23,18,43,.6), rgba(12,9,23,.6));
  padding: 30px 26px; overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s;
  display: flex; flex-direction: column;
}
.pillar::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(120% 80% at 50% 0%, rgba(140,82,255,.14), transparent 60%);
}
.pillar:hover { transform: translateY(-5px); border-color: var(--border-2); }
.pillar:hover::before { opacity: 1; }
.pillar__tag { position: relative; font-family: var(--font-display); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--violet-2); }
.pillar__logo { position: relative; height: 56px; margin: 20px 0 24px; display: flex; align-items: center; }
.pillar__logo img { height: 100%; width: auto; max-width: 100%; object-fit: contain; object-position: left; }
.pillar h3 { position: relative; font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; text-transform: uppercase; line-height: 1.15; }
.pillar > p { position: relative; color: var(--muted); font-size: .96rem; margin-top: 10px; }
.pillar__list { position: relative; list-style: none; margin-top: 20px; display: grid; gap: 12px; flex: 1; align-content: start; }
.pillar__list li { display: flex; gap: 11px; font-size: .93rem; color: var(--text); align-items: flex-start; }
.pillar__list svg { width: 18px; height: 18px; flex: none; margin-top: 2px; stroke: var(--violet); fill: none; stroke-width: 2; }
.pillar__result {
  position: relative; margin-top: 24px; padding: 15px 16px; border-radius: 14px;
  background: rgba(140, 82, 255, .09); border: 1px solid var(--border-2);
  font-size: .9rem; display: flex; gap: 11px; align-items: flex-start;
}
@media (min-width: 860px) { .pillar__result { min-height: 152px; align-items: center; } }
.pillar__result b { color: var(--white); font-family: var(--font-display); text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; }
.pillar__result svg { width: 20px; height: 20px; flex: none; stroke: var(--violet-2); fill: none; stroke-width: 1.6; }
.pillar__link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-family: var(--font-display); font-size: .8rem;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--violet-2);
  transition: color .2s, gap .2s;
}
.pillar__link:hover { color: var(--white); gap: 9px; }

/* ============================================================
   DETECT — two complementary detection layers
   ============================================================ */
.detect__grid {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 44px;
  align-items: stretch;
}
.detect__link { display: flex; align-items: center; justify-content: center; color: var(--violet-2); }
.detect__link svg { width: 32px; height: 32px; transform: rotate(90deg); opacity: .8; }
.dcard {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(23,18,43,.6), rgba(12,9,23,.6));
  padding: 28px 24px; display: flex; flex-direction: column;
}
.dcard__badge {
  align-self: flex-start; margin-bottom: 16px;
  font-family: var(--font-display); font-size: .66rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: #9fb4ff;
  padding: 6px 13px; border-radius: 100px;
  background: rgba(81,112,255,.14); border: 1px solid rgba(81,112,255,.45);
}
.dcard__head { display: flex; align-items: center; gap: 14px; }
.dcard__ic {
  width: 46px; height: 46px; flex: none; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-soft); border: 1px solid var(--border-2);
}
.dcard__ic svg { width: 24px; height: 24px; stroke: var(--violet-2); fill: none; stroke-width: 1.7; }
.dcard__ic--hl { background: rgba(81,112,255,.18); border-color: rgba(81,112,255,.5); }
.dcard__ic--hl svg { stroke: #8ea4ff; }
.dcard h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; text-transform: uppercase; line-height: 1.12; }
.dcard__sub { font-family: var(--font-display); font-size: .82rem; letter-spacing: .03em; color: var(--violet-2); margin-top: 4px; font-weight: 600; }
.dcard > p { color: var(--muted); font-size: .95rem; margin-top: 14px; }
.dcard__lead { color: var(--white) !important; font-weight: 600; margin-top: 16px !important; }
.dcard__list { list-style: none; margin-top: 18px; display: grid; gap: 11px; flex: 1; align-content: start; }
.dcard__list li { display: flex; gap: 11px; align-items: center; font-size: .94rem; color: var(--text); }
.dcard__list svg { width: 18px; height: 18px; flex: none; stroke: var(--violet); fill: none; stroke-width: 2.2; }
.dcard__logo { height: 30px; box-sizing: content-box; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; align-items: center; }
.dcard__logo img { height: 100%; width: auto; max-width: 100%; object-fit: contain; object-position: left; }
/* highlighted specialist card */
.dcard--hl {
  border-color: rgba(81,112,255,.5);
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(81,112,255,.20), transparent 58%),
    linear-gradient(180deg, rgba(24,21,50,.78), rgba(12,10,26,.72));
  box-shadow: 0 0 0 1px rgba(81,112,255,.22), 0 22px 55px -24px rgba(81,112,255,.65);
}
.dcard--hl .dcard__sub { color: #8ea4ff; }
.dcard--hl .dcard__list svg { stroke: #8ea4ff; }
.dcard--hl .dcard__logo { border-top-color: rgba(81,112,255,.25); }
.detect__note {
  display: flex; gap: 14px; align-items: flex-start; margin-top: 22px;
  padding: 18px 22px; border-radius: 16px;
  background: rgba(140,82,255,.08); border: 1px solid var(--border-2);
  color: var(--muted); font-size: .96rem; line-height: 1.6;
}
.detect__note svg { width: 30px; height: 30px; flex: none; stroke: var(--violet-2); fill: none; stroke-width: 1.5; margin-top: 1px; }
.detect__note b { color: var(--violet-2); font-weight: 600; }
@media (min-width: 860px) {
  .detect__grid { grid-template-columns: 1fr auto 1fr; gap: 10px; }
  .detect__link svg { transform: none; }
  .dcard { height: 100%; }
}

/* ---- Detect pair embedded in the operational timeline (step 3) ---- */
.detect-pair { display: flex; flex-direction: column; gap: 14px; }
.detect-pair > .step__card { position: relative; }
/* bullets inside the timeline detect cards */
.sc-detect .dcard__list { margin-top: 14px; gap: 9px; }
.sc-detect .dcard__list li { font-size: .84rem; gap: 9px; color: var(--text); display: flex; align-items: center; }
.sc-detect .dcard__list svg { width: 16px; height: 16px; flex: none; stroke: var(--violet); fill: none; stroke-width: 2.2; }
/* highlighted specialist card */
.sc-detect--hl {
  border-color: rgba(81,112,255,.55) !important;
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(81,112,255,.20), transparent 58%),
    linear-gradient(180deg, rgba(24,21,50,.82), rgba(12,10,26,.75)) !important;
  box-shadow: 0 0 0 1px rgba(81,112,255,.25), 0 22px 55px -24px rgba(81,112,255,.65);
}
.sc-detect--hl .step__kicker { color: #8ea4ff; }
.sc-detect--hl .dcard__list svg { stroke: #8ea4ff; }
.sc-ic--hl { background: rgba(81,112,255,.2) !important; border-color: rgba(81,112,255,.5) !important; }
.sc-ic--hl svg { stroke: #8ea4ff !important; }
/* vivid, high-contrast badge that stands out */
.sc-badge {
  display: inline-block; margin-bottom: 13px;
  font-family: var(--font-display); font-size: .58rem; font-weight: 700;
  letter-spacing: .09em; line-height: 1.25; text-transform: uppercase;
  color: #1a1300; padding: 6px 12px; border-radius: 100px;
  background: linear-gradient(135deg, #ffe14d, #ffb020);
  box-shadow: 0 5px 18px -3px rgba(255,190,40,.75); border: 1px solid rgba(255,255,255,.35);
}
@media (min-width: 860px) {
  .sc-badge { position: absolute; top: 14px; right: 14px; z-index: 3; max-width: 50%; margin-bottom: 0; font-size: .5rem; text-align: center; }
}
@media (min-width: 860px) {
  .detect-pair { flex-direction: row; flex: 1; gap: 10px; align-items: stretch; }
  .detect-pair > .step__card { flex: 1; min-width: 0; padding: 22px 16px; }
  .detect-pair > .detect__link { flex: 0 0 auto; }
  .detect-pair > .detect__link svg { width: 26px; height: 26px; }
  /* keep icon / kicker / title / description-start / logo aligned across all 5 cards */
  .path__track .step__kicker { letter-spacing: .05em; line-height: 1.25; min-height: 1.25em; white-space: nowrap; }
  .path__track .step__title { font-size: 1.02rem; line-height: 1.12; min-height: 2.24em; }
}

/* ============================================================
   VALORE PER I PARTNER
   ============================================================ */
.value { background: var(--bg-2); }
.value__grid { display: grid; gap: 16px; margin-top: 44px; grid-template-columns: 1fr; }
.vcard {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.025), transparent);
  padding: 26px 22px; transition: transform .35s, border-color .35s;
}
.vcard:hover { transform: translateY(-4px); border-color: var(--border-2); }
.vcard__ic {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-soft); border: 1px solid var(--border-2);
}
.vcard__ic svg { width: 27px; height: 27px; stroke: var(--violet-2); fill: none; stroke-width: 1.5; }
.vcard h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; text-transform: uppercase; line-height: 1.15; }
.vcard p { color: var(--muted); font-size: .93rem; margin-top: 9px; }

/* ============================================================
   SETTORI TARGET
   ============================================================ */
.sectors__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 40px; }
.sector {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: rgba(255,255,255,.02); padding: 24px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .3s, border-color .3s, background .3s;
}
.sector:hover { transform: translateY(-4px); border-color: var(--border-2); background: rgba(140,82,255,.07); }
.sector svg { width: 34px; height: 34px; stroke: var(--violet-2); fill: none; stroke-width: 1.5; }
.sector span { font-family: var(--font-display); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--text); line-height: 1.2; }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--bg-2); }
.team__grid { display: grid; gap: 18px; margin-top: 44px; grid-template-columns: 1fr; }
.member {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(23,18,43,.55), rgba(12,9,23,.55));
  padding: 28px 24px; display: flex; gap: 20px; align-items: flex-start;
  transition: transform .35s, border-color .35s;
}
.member:hover { transform: translateY(-4px); border-color: var(--border-2); }
.member__avatar {
  width: 84px; height: 84px; flex: none; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: #fff;
  box-shadow: 0 8px 26px -8px var(--violet);
}
.member h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; }
.member .role { color: var(--violet-2); font-family: var(--font-display); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }
.member p { color: var(--muted); font-size: .9rem; margin-top: 8px; }
.member__li { margin-top: 10px; display: inline-flex; }
.member__li svg { width: 20px; height: 20px; fill: var(--muted); transition: fill .25s; }
.member__li:hover svg { fill: var(--violet-2); }

/* ============================================================
   ALTRE SOLUZIONI
   ============================================================ */
.more__grid { display: grid; gap: 14px; margin-top: 36px; grid-template-columns: 1fr; }
.more__card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: rgba(255,255,255,.02); padding: 24px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color .3s, transform .3s;
}
.more__card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.more__logo { height: 42px; display: flex; align-items: center; }
.more__logo img { height: 100%; width: auto; opacity: .9; }
.more__card p { color: var(--muted); font-size: .92rem; }

/* ============================================================
   CTA / CONTATTI
   ============================================================ */
.cta { position: relative; overflow: hidden; }
.cta__box {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-2);
  background:
    radial-gradient(90% 120% at 15% 0%, rgba(140,82,255,.28), transparent 55%),
    radial-gradient(80% 120% at 100% 100%, rgba(81,112,255,.22), transparent 55%),
    linear-gradient(180deg, rgba(23,18,43,.9), rgba(12,9,23,.9));
  padding: clamp(34px, 7vw, 64px);
  text-align: center;
}
.cta__box .h2 { max-width: 20ch; margin: 0 auto; }
.cta__box p { color: var(--muted); margin: 16px auto 0; max-width: 52ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.cta__mail {
  display: inline-block; margin-top: 22px; font-family: var(--font-display);
  color: var(--violet-2); letter-spacing: .04em; font-size: .95rem;
}
.cta__mail:hover { color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 56px 0 40px; }
.footer__top { display: flex; flex-direction: column; gap: 30px; }
.footer__brand img { height: 40px; width: auto; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: .92rem; max-width: 40ch; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.footer__col h4 { font-family: var(--font-display); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.footer__col a { display: block; color: var(--muted); font-size: .93rem; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--white); }
.footer__partners { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; margin-top: 42px; padding-top: 30px; border-top: 1px solid var(--border); }
.footer__partners a { display: inline-flex; opacity: .78; transition: opacity .2s; }
.footer__partners a:hover { opacity: 1; }
.footer__partners img { height: 30px; width: auto; }
.more__logo a { display: inline-flex; align-items: center; height: 100%; transition: opacity .2s; }
.more__logo a:hover { opacity: .8; }
.footer__legal { text-align: center; }
.footer__legal a { color: var(--muted-2); }
.footer__legal a:hover { color: var(--violet-2); }
.footer__bar { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: .82rem; }
.footer__bar a { color: var(--muted-2); }
.footer__bar a:hover { color: var(--violet-2); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.reveal-on { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__orbit span, .hero__scroll i::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 620px) {
  .manifesto__grid { grid-template-columns: repeat(3, 1fr); }
  .sectors__grid { grid-template-columns: repeat(3, 1fr); }
  .more__grid { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 860px) {
  .nav__links { display: flex; }
  .value__grid { grid-template-columns: repeat(4, 1fr); }
  .pillars__grid {
    display: grid; grid-auto-flow: row; grid-template-columns: repeat(3, 1fr);
    grid-auto-columns: auto; gap: 18px; margin: 46px 0 0; padding: 0;
    overflow: visible;
  }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .sectors__grid { grid-template-columns: repeat(6, 1fr); }
  .footer__top { flex-direction: row; justify-content: space-between; }
  .footer__brand { max-width: 340px; }
  .footer__cols { flex: 1; max-width: 560px; }

  /* Desktop horizontal timeline */
  .path__track { display: grid; grid-template-columns: 1fr 1fr 2.4fr 1fr; gap: 22px; margin-top: 60px; align-items: stretch; }
  .path__track::before { left: 9%; right: 9%; top: 27px; bottom: auto; width: auto; height: 2px; }
  .step { display: flex; flex-direction: column; padding: 0; gap: 0; }
  .step__num { margin: 0 auto 22px; }
  .step__card { flex: 1; }
  .step__head { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (min-width: 1024px) {
  .section { padding: 110px 0; }
  .hero__desc { font-size: 1.2rem; }
}
