@charset "UTF-8";
/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #07081a;
  --ink2: #0b0d20;
  --ink3: #0e1028;
  --ac: #00b8e6;
  --ac2: #6929c4;
  --white: #ffffff;
  --tx: #d8ddf2;
  --sub: #9299bc;
  --mute: #555d80;
  --rule: rgba(255, 255, 255, .065);
  --cbg: rgba(255, 255, 255, .025);
  --cbo: rgba(255, 255, 255, .07) ;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--tx);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── AMBIENT BACKGROUND ─── */
.amb {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.amb-1 {
  position: absolute;
  top: -18%;
  left: -12%;
  width: 58%;
  height: 64%;
  background: radial-gradient(ellipse, rgba(8, 80, 160, 0.2) 0%, transparent 60%);
  animation: drift1 20s ease-in-out infinite alternate;
  will-change: transform;
}

.amb-2 {
  position: absolute;
  bottom: -22%;
  right: -12%;
  width: 55%;
  height: 62%;
  background: radial-gradient(ellipse, rgba(85, 20, 160, 0.16) 0%, transparent 60%);
  animation: drift2 26s ease-in-out infinite alternate;
  will-change: transform;
}

.amb-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 40%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(0, 80, 120, 0.07) 0%, transparent 65%);
  animation: drift3 32s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes drift1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(36px, 28px) scale(1.08);
  }
}
@keyframes drift2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-30px, -26px) scale(1.1);
  }
}
@keyframes drift3 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-40px, 30px);
  }
}
/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── CONTENT ABOVE BACKGROUND ─── */
nav,
section,
footer,
#stats {
  position: relative;
  z-index: 2;
}

/* ─── NAV ─── */
.nav-toggle {
  display: none;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s ease;
}

nav.on {
  background: rgba(7, 8, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  padding: 14px 56px;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.45);
}

.logo {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.logo span {
  background: linear-gradient(135deg, var(--ac), #7eb6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-r a {
  color: var(--sub);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-r a:hover {
  color: var(--tx);
}

.nav-btn {
  background: transparent;
  border: 1px solid rgba(0, 184, 230, 0.45);
  color: var(--ac) !important;
  padding: 8px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none !important;
}

.nav-btn:hover {
  background: rgba(0, 184, 230, 0.1);
  border-color: var(--ac);
  color: var(--white) !important;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 96px;
}
#hero .hero-bg {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.2;
  mix-blend-mode: difference;
}

.hero-inner {
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 30px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  width: 36px;
  background: linear-gradient(90deg, transparent, rgba(155, 165, 210, 0.35));
}

.hero-eyebrow::after {
  background: linear-gradient(90deg, rgba(155, 165, 210, 0.35), transparent);
}

h1 {
  font-size: clamp(36px, 5.2vw, 66px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.h1-accent {
  background: linear-gradient(135deg, var(--ac) 0%, #8ab4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--sub);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
  font-weight: 400;
}

.ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ac);
  color: #06070f;
  padding: 14px 30px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: -0.1px;
  white-space: nowrap;
}

.btn-main:hover {
  background: #1ac9f0;
  box-shadow: 0 0 40px rgba(0, 184, 230, 0.5), 0 8px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sub);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.btn-ghost:hover {
  color: var(--tx);
  border-bottom-color: rgba(146, 153, 188, 0.4);
}

.chev-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.25;
  animation: bobdown 2.4s ease-in-out infinite;
}

@keyframes bobdown {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(9px);
  }
}
.chev-down svg {
  color: var(--sub);
}

/* ─── STATS ─── */
#stats {
  background: rgba(255, 255, 255, 0.018);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 64px 56px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 880px;
  margin: 0 auto;
}

.sitem {
  text-align: center;
  padding: 8px 32px;
  border-right: 1px solid var(--rule);
}

.sitem:last-child {
  border-right: none;
}

.snum {
  font-size: clamp(46px, 6vw, 62px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), rgba(200, 216, 255, 0.75));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.slbl {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: -0.1px;
}

.ssrc {
  font-size: 11.5px;
  color: var(--mute);
}

/* ─── SECTION BASE ─── */
section {
  padding: 100px 56px;
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 18px;
}

.tag-line {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--sub);
  opacity: 0.5;
}

h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.7px;
  line-height: 1.14;
  margin-bottom: 16px;
}

.lede {
  font-size: 17px;
  color: var(--sub);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 56px;
  font-weight: 400;
}

/* ─── PROBLEM ─── */
#problem {
  background: var(--ink2);
}

.p3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 0;
}

.pitem {
  background: var(--ink2);
  padding: 36px 32px;
  transition: background 0.25s;
}

.pitem:hover {
  background: rgba(255, 255, 255, 0.025);
}

.pnum {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.pitem h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.1px;
  line-height: 1.3;
}

.pitem p {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.72;
}

/* ─── PROCESS ─── */
#process {
  background: var(--ink);
}

.proc-hd {
  max-width: 600px;
  margin-bottom: 56px;
}

.proc-hd .lede {
  margin-bottom: 0;
}

.steps-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
}

.step5 {
  background: var(--cbg);
  padding: 28px 22px;
  text-align: center;
  transition: background 0.25s;
}

.step5:hover {
  background: rgba(0, 184, 230, 0.04);
}

.s5n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(0, 184, 230, 0.25), rgba(105, 41, 196, 0.2));
  color: var(--ac);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 184, 230, 0.25);
}

.s5t {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.1px;
}

.s5d {
  font-size: 12px;
  color: var(--sub);
  line-height: 1.65;
}

.proc-meta {
  margin-top: 32px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 28px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  flex-wrap: wrap;
  gap: 12px;
}

.pm-item {
  font-size: 12.5px;
  color: var(--sub);
}

.pm-item strong {
  color: var(--white);
  font-weight: 600;
}

.pm-divider {
  width: 1px;
  height: 18px;
  background: var(--rule);
  flex-shrink: 0;
}

/* ─── WHY ─── */
#why {
  background: var(--ink2);
}

.w4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.witem {
  background: var(--cbg);
  border: 1px solid var(--cbo);
  border-radius: 14px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.witem:hover {
  border-color: rgba(0, 184, 230, 0.18);
  transform: translateY(-2px);
}

.witem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 184, 230, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.witem:hover::before {
  opacity: 1;
}

.w-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 14px;
}

.witem h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.15px;
}

.witem p {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.72;
}

/* ─── SERVE ─── */
#serve {
  background: var(--ink);
}

.serve2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 4px;
}

.sc {
  border-radius: 16px;
  padding: 40px 36px;
  transition: transform 0.25s;
}

.sc:hover {
  transform: translateY(-3px);
}

.sc.ent {
  background: rgba(0, 120, 180, 0.065);
  border: 1px solid rgba(0, 184, 230, 0.14);
}

.sc.pe {
  background: rgba(100, 35, 180, 0.065);
  border: 1px solid rgba(105, 41, 196, 0.18);
}

.sc-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 20px;
}

.sc h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.sc p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.75;
  margin-bottom: 22px;
}

.sc-rule {
  height: 1px;
  background: var(--rule);
  margin-bottom: 18px;
}

.sc-detail {
  font-size: 12.5px;
  color: var(--mute);
  line-height: 1.7;
}

.sc-detail strong {
  color: var(--sub);
}

.sc-insight {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.55;
}

.ent .sc-insight {
  background: rgba(0, 184, 230, 0.06);
  color: rgba(0, 184, 230, 0.75);
}

.pe .sc-insight {
  background: rgba(105, 41, 196, 0.1);
  color: #b99cee;
}

.sc-titles {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sc-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 5px;
  font-weight: 500;
}

.ent .sc-tag {
  background: rgba(0, 184, 230, 0.08);
  color: var(--ac);
}

.pe .sc-tag {
  background: rgba(105, 41, 196, 0.1);
  color: #a37ce0;
}

/* ─── PARTNER ─── */
#partner {
  background: var(--ink2);
  border-top: 1px solid var(--rule);
}

.partner-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

.avatar-wrap {
  width: 180px;
  height: 180px;
  position: relative;
  margin-bottom: 22px;
}

.avatar-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 184, 230, 0.18), rgba(105, 41, 196, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.avatar-ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  z-index: -1;
  background: conic-gradient(from 0deg, rgba(0, 184, 230, 0.3), rgba(105, 41, 196, 0.3), transparent, rgba(0, 184, 230, 0.15), transparent);
  animation: spin 12s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.avatar-mono {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  /*  background:linear-gradient(145deg,#0d1030,#1a1446); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  background-size: cover;
  background-position: center center;
  /*   background:linear-gradient(135deg,var(--ac),#8ab4ff);
   -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
   */
  border: none;
}

.avatar-inner-bg {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  /*
   background:linear-gradient(145deg,#0c0f28,#141840);
   display:flex;align-items:center;justify-content:center;
   position:absolute;
   */
}

.p-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.p-role {
  font-size: 12.5px;
  color: var(--sub);
  margin-bottom: 18px;
}

.p-li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--sub);
  text-decoration: none;
  border: 1px solid var(--rule);
  border-radius: 7px;
  padding: 7px 14px;
  transition: all 0.2s;
}

.p-li:hover {
  color: var(--ac);
  border-color: rgba(0, 184, 230, 0.3);
  background: rgba(0, 184, 230, 0.05);
}

.p-bio p {
  font-size: 14.5px;
  color: var(--sub);
  line-height: 1.78;
  margin-bottom: 16px;
}

.p-bio p:last-of-type {
  margin-bottom: 0;
}

.p-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.pcred {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule);
  color: var(--sub);
  transition: all 0.2s;
}

.pcred:hover {
  border-color: rgba(0, 184, 230, 0.25);
  color: var(--tx);
}

/* ─── CTA ─── */
#cta {
  background: var(--ink);
  text-align: center;
  border-top: 1px solid var(--rule);
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 100, 160, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 18px;
}

.cta-inner h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 16.5px;
  color: var(--sub);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  margin-top: 22px;
  font-size: 12px;
  color: var(--mute);
}

.cta-note a {
  color: var(--sub);
  text-decoration: none;
}

.cta-note a:hover {
  color: var(--tx);
}

/* AMBIENT */
.amb {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.a1 {
  position: absolute;
  top: -20%;
  left: -15%;
  width: 55%;
  height: 65%;
  background: radial-gradient(ellipse, rgba(8, 75, 155, 0.18) 0%, transparent 62%);
  animation: d1 22s ease-in-out infinite alternate;
}

.a2 {
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 52%;
  height: 62%;
  background: radial-gradient(ellipse, rgba(80, 18, 155, 0.15) 0%, transparent 62%);
  animation: d2 28s ease-in-out infinite alternate;
}

@keyframes d1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(32px, 26px) scale(1.07);
  }
}
@keyframes d2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-28px, -24px) scale(1.09);
  }
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.036;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ─── NAV ─── */
.nav-toggle {
  display: none;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s ease;
}
nav a.on {
  color: var(--ac);
  border-bottom: 1px solid var(--ac);
}

nav.on {
  background: rgba(7, 8, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  padding: 14px 56px;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.45);
}

.logo {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.logo span {
  background: linear-gradient(135deg, var(--ac), #7eb6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-r a {
  color: var(--sub);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-r a:hover {
  color: var(--tx);
}

.nav-btn {
  background: transparent;
  border: 1px solid rgba(0, 184, 230, 0.45);
  color: var(--ac) !important;
  padding: 8px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none !important;
}

.nav-btn:hover {
  background: rgba(0, 184, 230, 0.1);
  border-color: var(--ac);
  color: var(--white) !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  nav {
    padding: 16px 22px;
  }
  nav.on {
    padding: 12px 22px;
  }
  /* Stile hamburger */
  .nav-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
  }
  /* Il menu diventa a tendina */
  .nav-r {
    display: none;
    /* Nascosto di default */
    position: absolute;
    top: 100%;
    /* Subito sotto la nav */
    left: 0;
    right: 0;
    background: rgba(7, 8, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }
  /* Mostra il menu quando attivato dal JS */
  .nav-r.open {
    display: flex;
  }
  /* Riadatta i link per il mobile */
  .nav-r a {
    font-size: 16px;
    text-align: center;
    width: 100%;
  }
  .nav-btn {
    padding: 14px;
    margin-top: 8px;
  }
}
/* NAV *
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(7, 8, 26, .9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  padding: 0 48px;
  display: flex;
  align-items: stretch;
  height: 58px
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 40px;
  flex-shrink: 0;
  border-right: 1px solid var(--rule);
  padding-right: 28px
}

.nav-logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--white);
  text-decoration: none
}

.nav-logo span {
  background: linear-gradient(135deg, var(--ac), #7eb6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.nav-back {
  font-size: 12px;
  color: var(--mute);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s
}

.nav-back:hover {
  color: var(--sub)
}

.nav-tabs {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1
}

.ntab {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sub);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .18s;
  white-space: nowrap;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
  text-decoration: none;
}

.ntab:hover {
  color: var(--tx)
}

.ntab.on {
  color: var(--ac);
  border-bottom-color: var(--ac)
}

.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center
}

.ncta {
  background: var(--ac);
  color: #06070f;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 7px;
  text-decoration: none;
  transition: all .22s;
  white-space: nowrap
}

.ncta:hover {
  background: #1ac9f0;
  box-shadow: 0 0 22px rgba(0, 184, 230, .45)
}

.nav-menu {
  display: flex;
  flex: 1;
  align-items: stretch;
}

.nav-toggle {
  display: none;
}

*/
/* PAGES */
.page {
  display: block;
  padding-top: 58px;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

body.contact .page {
  min-height: auto;
}

/* SHARED LAYOUT */
.pw {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 48px;
}

.pg-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--rule);
}

.pg-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 16px;
}

.pg-hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.8px;
  line-height: 1.12;
  margin-bottom: 16px;
}

.pg-hero p {
  font-size: 16.5px;
  color: var(--sub);
  max-width: 580px;
  line-height: 1.75;
}

.sec {
  padding: 64px 0;
  border-bottom: 1px solid var(--rule);
}

.sec:last-of-type {
  border-bottom: none;
}

.sec-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec-tag::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--mute);
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}

h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.body-text {
  font-size: 14.5px;
  color: var(--sub);
  line-height: 1.78;
}

/* PHASE CARDS */
.phases {
  display: grid;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 32px;
}

.ph {
  background: var(--ink2);
  padding: 28px 28px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  transition: background 0.2s;
  cursor: pointer;
  align-items: start;
}

.ph:hover {
  background: rgba(0, 184, 230, 0.03);
}

.ph-n {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
}

.ph-wk {
  font-size: 12px;
  color: var(--sub);
  margin-bottom: 12px;
}

.ph-del {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(0, 184, 230, 0.08);
  border: 1px solid rgba(0, 184, 230, 0.2);
  border-radius: 5px;
  color: var(--ac);
  display: inline-block;
  line-height: 1.4;
}

.ph-right h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.ph-right p {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.7;
  margin-bottom: 12px;
}

.ph-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ph-bullets li {
  font-size: 12.5px;
  color: var(--sub);
  padding-left: 14px;
  position: relative;
}

.ph-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--mute);
}

/* DELIVERABLES TABLE */
.dtable {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 28px;
}

.dtable th {
  padding: 10px 16px;
  background: rgba(0, 184, 230, 0.07);
  color: var(--ac);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
  text-align: left;
}

.dtable td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
  color: var(--sub);
  vertical-align: top;
}

.dtable td strong {
  color: var(--tx);
}

.dtable tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

.tick {
  color: #00e59b;
  font-weight: 700;
}

.cross {
  color: var(--mute);
}

/* COMPARISON */
.comp {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 28px;
}

.comp th {
  padding: 12px 18px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}

.comp th:first-child {
  text-align: left;
  color: var(--sub);
}

.comp th.hl {
  background: rgba(0, 184, 230, 0.08);
  color: var(--ac);
  border-left: 1px solid rgba(0, 184, 230, 0.2);
  border-right: 1px solid rgba(0, 184, 230, 0.2);
}

.comp td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--rule);
  color: var(--sub);
  text-align: center;
}

.comp td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--tx);
}

.comp td.hl {
  background: rgba(0, 184, 230, 0.04);
  border-left: 1px solid rgba(0, 184, 230, 0.1);
  border-right: 1px solid rgba(0, 184, 230, 0.1);
}

.comp tr:hover td {
  background: rgba(255, 255, 255, 0.012);
}

.comp tr:hover td.hl {
  background: rgba(0, 184, 230, 0.06);
}

/* SEARCH TYPES */
.stypes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stype {
  background: var(--cbg);
  border: 1px solid var(--cbo);
  border-radius: 12px;
  padding: 24px;
}

.stype-n {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
}

.stype h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.stype p {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
}

.stype-when {
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 7px;
  font-size: 12px;
  color: var(--mute);
}

.stype-when strong {
  color: var(--sub);
}

/* FAQ */
.faqs {
  margin-top: 28px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  transition: background 0.18s;
  gap: 16px;
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.025);
}

.faq-qt {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.faq-ico {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  color: var(--sub);
}

.faq-item.open .faq-ico {
  background: var(--ac);
  color: #07081a;
  border-color: var(--ac);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-ac {
  padding: 0 22px 20px;
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.75;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
  padding: 40px 0;
}

.av-wrap {
  width: 190px;
  height: 190px;
  position: relative;
  margin-bottom: 22px;
}

.av-ring {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 184, 230, 0.15), rgba(105, 41, 196, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.av-ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  z-index: -1;
  background: conic-gradient(from 0deg, rgba(0, 184, 230, 0.28), rgba(105, 41, 196, 0.25), transparent, rgba(0, 184, 230, 0.12), transparent);
  animation: sp 14s linear infinite;
}

@keyframes sp {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.av-inner {
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0c0f28, #141840);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--ac), #8ab4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
}

.av-inner-bg {
  width: 178px;
  height: 178px;
  border-radius: 50%;
  position: absolute;
  background-size: cover;
  background-position: center center;
}

.t-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.t-role {
  font-size: 13px;
  color: var(--sub);
  margin-bottom: 6px;
}

.t-loc {
  font-size: 12px;
  color: var(--mute);
  margin-bottom: 18px;
}

.t-li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--sub);
  text-decoration: none;
  border: 1px solid var(--rule);
  border-radius: 7px;
  padding: 7px 14px;
  transition: all 0.2s;
}

.t-li:hover {
  color: var(--ac);
  border-color: rgba(0, 184, 230, 0.3);
  background: rgba(0, 184, 230, 0.05);
}

.team-bio p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.8;
  margin-bottom: 16px;
}

.t-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.tcred {
  font-size: 11.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule);
  color: var(--sub);
  transition: border-color 0.2s;
}

.tcred:hover {
  border-color: rgba(0, 184, 230, 0.25);
  color: var(--tx);
}

/* FUNCTIONS */
.funcs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 12px;
}

.func {
  background: var(--cbg);
  border: 1px solid var(--cbo);
  border-radius: 12px;
  padding: 26px;
}

.func-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
}

.func h3 {
  font-size: 15.5px;
  margin-bottom: 10px;
}

.func p {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.72;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.scall-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cstep {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}

.cstep:last-child {
  border-bottom: none;
}

.cstep-n {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(0, 184, 230, 0.2), rgba(105, 41, 196, 0.18));
  border: 1px solid rgba(0, 184, 230, 0.25);
  color: var(--ac);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cstep-t {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.cstep-d {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
}

.contact-card {
  background: var(--cbg);
  border: 1px solid var(--cbo);
  border-radius: 16px;
  padding: 32px;
  position: sticky;
  top: 78px;
}

.cc-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 20px;
}

.cc-opt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cc-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  width: 100%;
  text-align: left;
}

.cc-btn.pri {
  background: var(--ac);
  color: #06070f;
}

.cc-btn.pri:hover {
  background: #1ac9f0;
  box-shadow: 0 0 28px rgba(0, 184, 230, 0.45);
  transform: translateY(-1px);
}

.cc-btn.sec {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule);
  color: var(--tx);
}

.cc-btn.sec:hover {
  border-color: rgba(0, 184, 230, 0.3);
  background: rgba(0, 184, 230, 0.05);
}

.cc-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-btn.pri .cc-btn-icon {
  background: rgba(0, 0, 0, 0.15);
}

.cc-btn.sec .cc-btn-icon {
  background: rgba(255, 255, 255, 0.06);
}

.cc-btn-t {
  font-size: 14px;
  font-weight: 700;
}

.cc-btn-s {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 1px;
}

.cc-divider {
  height: 1px;
  background: var(--rule);
  margin: 16px 0;
}

.cc-detail {
  font-size: 12.5px;
  color: var(--mute);
  line-height: 1.7;
}

.cc-detail a {
  color: var(--sub);
  text-decoration: none;
}

.cc-detail a:hover {
  color: var(--ac);
}

/* MANDATE BOX */
.mandate-box {
  background: linear-gradient(135deg, rgba(0, 184, 230, 0.06), rgba(105, 41, 196, 0.06));
  border: 1px solid rgba(0, 184, 230, 0.18);
  border-radius: 14px;
  padding: 28px;
  margin-top: 40px;
}

.mandate-box h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.mandate-box p {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.7;
  margin-bottom: 18px;
}

.mandate-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.mandate-items li {
  font-size: 13px;
  color: var(--sub);
  padding-left: 16px;
  position: relative;
}

.mandate-items li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--ac);
  font-weight: 700;
}

/* CTA SECTION */
.pg-cta {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--rule);
  padding: 56px 0;
  text-align: center;
}

.pg-cta h2 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.pg-cta p {
  font-size: 15px;
  color: var(--sub);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ac);
  color: #06070f;
  padding: 13px 26px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-p:hover {
  background: #1ac9f0;
  box-shadow: 0 0 34px rgba(0, 184, 230, 0.5);
  transform: translateY(-2px);
}

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sub);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 12px;
  transition: color 0.2s;
}

.btn-g:hover {
  color: var(--tx);
}

/* ADVISORY ROW */
.adv-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.adv-item {
  background: var(--cbg);
  border: 1px solid var(--cbo);
  border-radius: 11px;
  padding: 22px;
}

.adv-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.adv-item p {
  font-size: 12.5px;
  color: var(--sub);
  line-height: 1.7;
}

/* PILLS */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  font-size: 12px;
  padding: 5px 13px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule);
  color: var(--sub);
}

/* QUOTE */
.quote-box {
  background: linear-gradient(135deg, rgba(0, 100, 160, 0.07), rgba(80, 20, 150, 0.07));
  border-left: 3px solid var(--ac);
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
  margin: 28px 0;
}

.quote-box p {
  font-size: 15px;
  color: var(--tx);
  font-style: italic;
  line-height: 1.72;
  margin-bottom: 0;
}

#footerquote {
  background: var(--ink2);
  border-top: 1px solid var(--rule);
  flex-flow: column wrap;
  text-align: center;
  align-content: center;
  padding: 7px auto;
  margin: 0 auto;
}
#footerquote p {
  font-size: 16.5px;
  color: var(--sub);
}
#footerquote .astdivider {
  display: block;
  /*
  font-size: 1.75rem;
  line-height: 2rem;
  padding: 24px 0 10px;
  opacity: .5;
  */
}
#footerquote .astdivider hr {
  opacity: 0.25;
  width: 17rem;
  max-width: 50%;
  margin: 3rem auto;
}

/* ─── FOOTER ─── */
footer {
  background: #040510;
  border-top: 1px solid var(--rule);
  padding: 44px 56px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  color: var(--mute);
  font-size: 12px;
}

.footer-brand strong {
  font-size: 16px;
}

footer .hours {
  font-size: 12px;
  color: var(--mute);
}

footer .hours .day {
  display: inline-block;
  min-width: 40px;
}

.ft {
  max-width: 1040px;
  margin: 0 auto;
}

.ft-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.ft-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 6px;
}

.ft-logo span {
  background: linear-gradient(135deg, var(--ac), #7eb6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ft-tagline {
  font-size: 12px;
  color: var(--mute);
}

.ft-nav {
  display: flex;
  gap: 40px;
}

.ft-col-t {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 14px;
}

.ft-col a {
  display: block;
  font-size: 13px;
  color: var(--sub);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.ft-col a:hover {
  color: var(--tx);
}

.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--mute);
}

.ft-bottom a {
  color: var(--mute);
  text-decoration: none;
}

.ft-bottom a:hover {
  color: var(--sub);
}

.ft-links {
  display: flex;
  gap: 20px;
}

/* ─── FADE IN ─── */
.fi {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fi.v {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  nav {
    padding: 16px 22px;
  }
  nav.on {
    padding: 12px 22px;
  }
  /* Rimuove il bordo e spinge l'hamburger a destra */
  .nav-brand {
    border-right: none;
    margin-right: auto;
    padding-right: 0;
  }
  /* Stile pulsante hamburger */
  .nav-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
  }
  /* Il menu diventa a tendina */
  .nav-r {
    display: none;
    /* Nascosto di default */
    position: absolute;
    top: 100%;
    /* Subito sotto la nav */
    left: 0;
    right: 0;
    background: rgba(7, 8, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }
  /* Mostra il menu quando attivato dal JS */
  .nav-r.open {
    display: flex;
  }
  /* Riadatta i link per il mobile */
  .nav-r a {
    font-size: 16px;
    text-align: center;
    width: 100%;
  }
  .nav-btn {
    padding: 14px;
    margin-top: 8px;
  }
  section {
    padding: 72px 22px;
  }
  #stats {
    padding: 48px 22px;
  }
  .stats-row,
  .p3,
  .steps-5,
  .w4,
  .serve2,
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .sitem {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 20px 0;
  }
  .sitem:last-child {
    border-bottom: none;
  }
  .pitem {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .step5 {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .proc-meta {
    justify-content: left;
  }
  .pm-divider {
    display: none;
  }
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .avatar-wrap {
    margin: 0 auto 20px;
  }
  .partner-left {
    text-align: center;
  }
  .ft-top {
    flex-direction: column;
    gap: 28px;
  }
  .ft-nav {
    flex-wrap: wrap;
    gap: 24px;
  }
  .ft-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .serve2 {
    grid-template-columns: 1fr;
  }
  h2 {
    font-size: 28px;
  }
  /* Le tue regole mobile originali restano invariate */
  .pw {
    padding: 0 20px;
  }
  .ph {
    grid-template-columns: 1fr;
  }
  .stypes,
  .funcs,
  .adv-row {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .av-wrap {
    margin: 0 auto 20px;
  }
  .team-photo {
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    position: static;
  }
}
/* ─── PRIVACY & TERMS ─── */
body.privacy .space-gap {
  height: 90px;
}
body.privacy .pw a {
  color: var(--ac);
}
body.privacy .pw a:hover {
  color: var(--white);
}
body.privacy hr {
  margin: 2rem auto;
  opacity: 0.2;
}

/* ─── CONTACT FORM ─── */
.contact-form-container {
  background: var(--cbg);
  border: 1px solid var(--cbo);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.contact-form-container h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.v1-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sub);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 14.5px;
  transition: all 0.2s ease;
}

.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: var(--mute);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mute);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ac);
  background: rgba(0, 184, 230, 0.02);
  box-shadow: 0 0 0 3px rgba(0, 184, 230, 0.15);
}

.v1-form .btn-p {
  align-self: flex-start;
  cursor: pointer;
  border: none;
  font-family: inherit;
  margin-top: 8px;
}

/* ─── FORM FEEDBACK MESSAGES ─── */
.form-message {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  display: none;
  /* Hidden by default */
}

.form-message.success {
  background: rgba(0, 229, 155, 0.1);
  border: 1px solid rgba(0, 229, 155, 0.3);
  color: #00e59b;
  /* A nice neon green */
}

.form-message.error {
  background: rgba(255, 75, 75, 0.1);
  border: 1px solid rgba(255, 75, 75, 0.3);
  color: #ff4b4b;
  /* A soft neon red */
}

/* Mobile adjustments for the form */
@media (max-width: 780px) {
  .contact-form-container {
    padding: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .v1-form .btn-p {
    width: 100%;
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */