/* ============================================================
   DRONUS — sito temporaneo · shared design system (v5 language)
   Usato da: /applications /milestones /about /contact
   Home (/) e /infrastructure hanno CSS inline (approvate, non toccare).
   ============================================================ */

:root {
  --navy-darkest: #111a2d;
  --navy-dark: #172c45;
  --navy: #1d2c45;
  --navy-light: #2a3d5e;
  --teal: #0caeb6;
  --teal-bright: #27ccc0;
  --teal-dark: #016b77;
  --accent-red: #ff1053;
  --white: #ffffff;
  --gray-light: #e8eaef;
  --gray: #6b7480;
  --gray-dark: #4a5468;
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --text-on-dark-muted: rgba(255, 255, 255, 0.65);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400; font-size: 16px; line-height: 1.6;
  color: var(--navy); background: var(--white);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }

/* === HEADER === */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(17, 26, 45, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 1000; padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 36px; width: auto; display: block; }
.footer .logo img { height: 32px; margin-bottom: 16px; }
.nav { display: flex; gap: 32px; align-items: center; flex: 1; justify-content: flex-end; margin-right: 28px; }
.nav a { color: var(--text-on-dark); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
.nav a:hover { color: var(--teal-bright); }
.nav a.active { color: var(--teal-bright); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn { display: inline-block; padding: 12px 24px; font-family: inherit; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border-radius: 4px; cursor: pointer; transition: all 0.25s ease; border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--teal); color: var(--navy-darkest); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-bright); border-color: var(--teal-bright); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(12, 174, 182, 0.35); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-secondary-dark { background: transparent; color: var(--navy); border-color: var(--navy-light); }
.btn-secondary-dark:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-large { padding: 16px 32px; font-size: 14px; }

/* === HERO (typographic) === */
.hero {
  position: relative; min-height: 72vh;
  display: flex; align-items: center; justify-content: flex-start;
  color: var(--white); padding: 160px 80px 90px; overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(12, 174, 182, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 8% 92%, rgba(39, 204, 192, 0.10) 0%, transparent 50%),
    linear-gradient(135deg, #0a1424 0%, #111a2d 55%, #172c45 100%);
}
.hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px); background-size: 60px 60px; z-index: 1; pointer-events: none; opacity: 0.6; }
.hero-inner { position: relative; z-index: 2; max-width: 1080px; margin: 0; text-align: left; }
.hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--teal-bright); margin-bottom: 22px; }
.hero h1 { font-size: clamp(38px, 5.6vw, 84px); font-weight: 800; line-height: 1.03; letter-spacing: -0.02em; margin-bottom: 26px; }
.hero h1 .accent { color: var(--teal-bright); }
.hero-sub { font-size: clamp(16px, 1.6vw, 20px); font-weight: 300; line-height: 1.6; max-width: 760px; margin: 0 0 36px; color: var(--text-on-dark); }
.trust-badge { display: flex; align-items: center; justify-content: flex-start; gap: 18px; flex-wrap: wrap; margin-bottom: 40px; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-dark-muted); }
.trust-badge .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }
.cta-row { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }

/* hero 2-col variant (about) */
.hero.hero-split { padding-top: 150px; padding-bottom: 90px; }
.hero-grid { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-quote { border-left: 3px solid var(--teal); padding-left: 22px; }
.hero-quote p { font-size: clamp(17px, 1.7vw, 21px); font-weight: 300; font-style: italic; line-height: 1.5; color: var(--text-on-dark); margin-bottom: 14px; }
.hero-quote .attr { font-size: 13px; font-weight: 600; font-style: normal; letter-spacing: 0.04em; color: var(--teal-bright); text-transform: uppercase; }
.hero-photo img { width: 100%; border-radius: 14px; border: 1px solid rgba(12, 174, 182, 0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.35); aspect-ratio: 4/5; object-fit: cover; }

/* === SECTIONS BASE === */
.section { padding: 100px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 16px; }
.section-title { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; color: var(--navy-darkest); margin-bottom: 24px; }
.section-title .accent { color: var(--teal-dark); }
.section-sub { font-size: 18px; font-weight: 400; line-height: 1.6; color: var(--gray-dark); max-width: 720px; margin-bottom: 32px; }
.section-head-center { text-align: center; max-width: 760px; margin: 0 auto 8px; }
.section-head-center .section-sub { margin-left: auto; margin-right: auto; text-align: center; }
.section-cta-row { margin-top: 44px; }
.section-cta { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dark); text-decoration: none; }
.section-cta::after { content: ' →'; transition: padding 0.15s; }
.section-cta:hover { color: var(--teal-dark); }
.section-cta:hover::after { padding-left: 4px; }

.media-placeholder { width: 100%; aspect-ratio: 21/9; border-radius: 12px; background: radial-gradient(circle at 70% 30%, rgba(12, 174, 182, 0.12) 0%, transparent 55%), linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy) 60%, var(--navy-light) 100%); border: 1px dashed rgba(12, 174, 182, 0.3); display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; color: rgba(255,255,255,0.5); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.6; position: relative; overflow: hidden; }
.media-placeholder::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(12, 174, 182, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 174, 182, 0.04) 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; }

/* === PILLAR CARDS (icon + body) === */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 10px; padding: 40px 32px 32px; text-align: left; transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal) 0%, var(--teal-bright) 100%); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.pillar-card:hover { border-color: transparent; transform: translateY(-6px); box-shadow: 0 20px 48px rgba(17, 26, 45, 0.14); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, rgba(12, 174, 182, 0.1) 0%, rgba(39, 204, 192, 0.08) 100%); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: all 0.3s; }
.pillar-card:hover .pillar-icon { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%); }
.pillar-icon svg { width: 28px; height: 28px; stroke: var(--teal-dark); stroke-width: 1.8; fill: none; transition: stroke 0.3s; }
.pillar-card:hover .pillar-icon svg { stroke: var(--white); }
.pillar-card .num { font-size: 11px; font-weight: 700; color: var(--teal-dark); letter-spacing: 0.18em; margin-bottom: 8px; text-transform: uppercase; }
.pillar-card h3 { font-size: 22px; font-weight: 700; color: var(--navy-darkest); margin-bottom: 14px; letter-spacing: -0.01em; line-height: 1.2; }
.pillar-card p.body { font-size: 14px; line-height: 1.65; color: var(--gray-dark); flex-grow: 1; }

/* === CONTEXTS (dark image cards) === */
.contexts { background: linear-gradient(135deg, #0a1424 0%, #172c45 60%, #1d3956 100%); color: var(--white); position: relative; overflow: hidden; }
.contexts::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 90% 30%, rgba(12, 174, 182, 0.18) 0%, transparent 45%), radial-gradient(circle at 10% 80%, rgba(39, 204, 192, 0.10) 0%, transparent 50%); pointer-events: none; }
.contexts::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px); background-size: 50px 50px; pointer-events: none; opacity: 0.4; }
.contexts .container { position: relative; z-index: 2; }
.contexts .section-eyebrow { color: var(--teal-bright); }
.contexts .section-title { color: var(--white); margin-bottom: 56px; max-width: 880px; }
.contexts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contexts-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.context-card { background: rgba(10, 20, 36, 0.5); border: 1px solid rgba(12, 174, 182, 0.18); border-radius: 10px; padding: 20px 18px; position: relative; transition: all 0.3s; display: flex; flex-direction: column; }
.context-card:hover { border-color: rgba(12, 174, 182, 0.4); transform: translateY(-4px); }
.context-asset { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, rgba(12, 174, 182, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%); border: 1px dashed rgba(12, 174, 182, 0.25); display: flex; align-items: center; justify-content: center; font-size: 10px; color: rgba(255, 255, 255, 0.5); text-align: center; padding: 12px; margin-bottom: 16px; border-radius: 6px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.context-asset.has-image { border: none; padding: 0; background-size: cover; background-position: center; position: relative; }
.context-asset.has-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 20, 36, 0.7) 0%, transparent 50%); }
.context-card h4 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -0.005em; }
.context-line { font-size: 12px; line-height: 1.55; color: rgba(255, 255, 255, 0.82); }
.contexts-cta { text-align: left; margin-top: 56px; }

/* === TEAL-ACCENT CARD (defensible / moat / generic proof card) === */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proof-card { padding: 36px 32px; background: var(--white); border-radius: 12px; border-top: 3px solid var(--teal); text-align: left; transition: all 0.3s; display: flex; flex-direction: column; }
.proof-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(17, 26, 45, 0.10); }
.proof-card .pc-num { font-size: 11px; font-weight: 700; color: var(--teal-dark); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px; }
.proof-card .pc-headline { font-size: 32px; font-weight: 800; color: var(--navy-darkest); line-height: 1; letter-spacing: -0.02em; margin-bottom: 12px; }
.proof-card h4 { font-size: 16px; font-weight: 700; color: var(--navy-darkest); line-height: 1.3; margin-bottom: 12px; }
.proof-card p { font-size: 13px; line-height: 1.6; color: var(--gray-dark); margin-bottom: 18px; flex-grow: 1; }
.proof-card .pc-source { font-size: 10px; font-weight: 600; color: var(--gray); letter-spacing: 0.12em; text-transform: uppercase; padding-top: 14px; border-top: 1px dashed var(--gray-light); display: flex; align-items: center; gap: 8px; }
.proof-card .pc-source::before { content: '✓'; color: var(--teal-dark); font-weight: 800; }

/* === CAPABILITIES (→ list) === */
.caps-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy-darkest); margin-bottom: 22px; }
.caps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 36px; }
.cap-item { position: relative; padding-left: 28px; font-size: 14px; line-height: 1.55; color: var(--navy-darkest); }
.cap-item::before { content: '→'; position: absolute; left: 0; top: 0; color: var(--teal-dark); font-weight: 800; }
.cap-item b { font-weight: 700; }

/* === CAPITAL PARTNERS + FUNDING TIMELINE === */
.capital { background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%); position: relative; overflow: hidden; padding: 90px 40px; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.capital::before { content: ''; position: absolute; top: -50px; right: -50px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(12, 174, 182, 0.06) 0%, transparent 70%); pointer-events: none; }
.capital .container { position: relative; z-index: 2; }
.capital-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.capital-content { text-align: left; }
.capital-content .section-title { margin-bottom: 14px; font-size: clamp(26px, 3vw, 38px); }
.partners-row-left { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 20px; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.partner-cell-left { padding: 18px 20px 18px 0; border-right: 1px solid var(--gray-light); }
.partner-cell-left:last-child { border-right: none; padding-left: 20px; padding-right: 0; }
.partner-cell-left .partner-logo { height: 36px; width: auto; max-width: 200px; display: block; margin-bottom: 10px; object-fit: contain; object-position: left center; }
.partner-cell-left .partner-role { font-size: 9px; font-weight: 600; color: var(--teal-dark); letter-spacing: 0.16em; text-transform: uppercase; }
.partner-extra { font-size: 13px; color: var(--navy-darkest); font-weight: 600; margin-bottom: 4px; }
.partner-extra .pe-role { font-size: 9px; font-weight: 600; color: var(--teal-dark); letter-spacing: 0.16em; text-transform: uppercase; display: block; margin-top: 2px; }
.partners-note-left { font-size: 12px; color: var(--gray-dark); font-style: italic; margin-top: 10px; }
.capital-press-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 14px; }
.funding-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; position: relative; margin: 8px 0 24px 0; padding-top: 20px; }
.funding-timeline::before { content: ''; position: absolute; left: 12px; right: 12px; top: 27px; height: 2px; background: linear-gradient(90deg, var(--gray-light) 0%, var(--gray-light) 25%, var(--teal) 50%, var(--teal) 70%, rgba(12, 174, 182, 0.3) 100%); z-index: 1; }
.funding-step { position: relative; text-align: left; padding: 0; }
.step-dot { position: relative; margin-bottom: 12px; width: 16px; height: 16px; border-radius: 50%; background: var(--white); border: 2px solid var(--gray); z-index: 2; transition: all 0.3s; }
.funding-step.past .step-dot { background: var(--gray); border-color: var(--gray); }
.funding-step.current .step-dot { background: var(--teal); border-color: var(--teal); box-shadow: 0 0 0 4px rgba(12, 174, 182, 0.18), 0 0 16px rgba(12, 174, 182, 0.4); }
.funding-step.future .step-dot { background: var(--white); border-color: var(--teal); border-style: dashed; }
.step-content { padding: 4px 0; }
.step-year { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.funding-step.current .step-year { color: var(--teal-dark); }
.funding-step.future .step-year { color: var(--gray); font-style: italic; }
.step-label { font-size: 13px; font-weight: 800; color: var(--navy-darkest); letter-spacing: -0.005em; margin-bottom: 4px; line-height: 1.2; }
.funding-step.past .step-label { color: var(--gray-dark); font-weight: 700; }
.step-desc { font-size: 11px; color: var(--gray-dark); line-height: 1.35; }
.funding-step.future .step-desc { color: var(--gray); font-style: italic; }
.funding-cta { margin-top: 16px; }

/* === MANIFESTO (founder split) === */
.manifesto { background: var(--white); position: relative; overflow: hidden; }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 600px; }
.manifesto-visual { position: relative; background: linear-gradient(135deg, #0a1424 0%, #172c45 60%, #1d3956 100%); display: flex; align-items: flex-end; padding: 56px; overflow: hidden; min-height: 600px; }
.manifesto-visual::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 25%, rgba(12, 174, 182, 0.18) 0%, transparent 55%), radial-gradient(circle at 70% 75%, rgba(39, 204, 192, 0.10) 0%, transparent 50%); }
.manifesto-visual::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 50px 50px; opacity: 0.5; }
.marco-photo { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%); width: 300px; height: 300px; border-radius: 50%; background-image: url('marco-ballerini.jpg'); background-size: cover; background-position: center 25%; border: 2px solid rgba(12, 174, 182, 0.4); box-shadow: 0 0 0 14px rgba(12, 174, 182, 0.08), 0 0 0 28px rgba(12, 174, 182, 0.04), 0 24px 60px rgba(0,0,0,0.5); z-index: 2; }
.manifesto-meta-overlay { position: relative; z-index: 3; width: 100%; color: var(--white); }
.manifesto-meta-eyebrow { font-size: 11px; font-weight: 700; color: var(--teal-bright); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; }
.manifesto-meta-name { font-size: 28px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 12px; }
.manifesto-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.manifesto-chip { font-size: 11px; font-weight: 600; color: var(--text-on-dark); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 6px 12px; border-radius: 100px; letter-spacing: 0.04em; }
.manifesto-content { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%); }
.manifesto-content blockquote { font-size: clamp(18px, 1.9vw, 24px); font-weight: 600; line-height: 1.45; color: var(--navy-darkest); margin: 14px 0 24px; letter-spacing: -0.01em; }
.manifesto-content blockquote strong { color: var(--teal-dark); font-weight: 700; }
.manifesto-content p.lead { font-size: 15px; line-height: 1.7; color: var(--gray-dark); margin-bottom: 16px; }
.manifesto-tagline { font-size: clamp(26px, 3.2vw, 40px); font-weight: 800; line-height: 1; letter-spacing: -0.02em; color: var(--teal-dark); margin: 8px 0 28px; text-transform: uppercase; }
.manifesto-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* === STAT CARDS (about company) === */
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 10px; padding: 28px 24px; transition: all 0.3s; position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal) 0%, var(--teal-bright) 100%); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(17,26,45,0.10); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-card .stat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 12px; }
.stat-card .stat-value { font-size: 17px; font-weight: 700; color: var(--navy-darkest); line-height: 1.35; letter-spacing: -0.005em; }

/* === LOGO STRIP (tech / capital simple) === */
.logo-strip { display: grid; gap: 0; border: 1px solid var(--gray-light); border-radius: 12px; overflow: hidden; background: var(--white); }
.logo-strip.cols-3 { grid-template-columns: repeat(3, 1fr); }
.logo-strip.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
.logo-cell { padding: 36px 28px; text-align: center; border-right: 1px solid var(--gray-light); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 150px; }
.logo-cell:last-child { border-right: none; }
.logo-cell img { height: 34px; width: auto; max-width: 180px; object-fit: contain; margin-bottom: 16px; }
.logo-cell .logo-text { font-size: 22px; font-weight: 800; color: var(--navy-darkest); letter-spacing: -0.01em; margin-bottom: 16px; }
.logo-cell .logo-role { font-size: 11px; font-weight: 600; color: var(--teal-dark); letter-spacing: 0.06em; line-height: 1.5; text-transform: uppercase; }
.partners-header { text-align: center; margin-bottom: 44px; }
.partners-header .section-title { margin-bottom: 0; }
.partners-note { text-align: center; font-size: 13px; color: var(--gray-dark); margin-top: 24px; font-style: italic; }

/* === ABOUT v2 — founder split · roadmap+partners unified · compact CTA === */
.founder-split { padding: 0; background: var(--white); }
.founder-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; min-height: 560px; }
.founder-visual { background: #1a2b39; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; padding: 64px 40px; }
.founder-photo { width: 300px; height: 300px; border-radius: 50%; background-image: url('marco-ballerini.jpg'); background-size: cover; background-position: center 25%; border: 2px solid rgba(12,174,182,0.4); box-shadow: 0 0 0 14px rgba(12,174,182,0.08), 0 0 0 28px rgba(12,174,182,0.04), 0 24px 60px rgba(0,0,0,0.5); }
.founder-id { text-align: center; }
.founder-id .founder-name { font-size: 14px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-bright); margin-bottom: 6px; }
.founder-id .founder-role { font-size: 13px; font-weight: 400; color: var(--text-on-dark-muted); letter-spacing: 0.02em; }
.founder-content { padding: 76px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.founder-content .section-title { font-size: clamp(24px, 2.4vw, 32px); margin-bottom: 24px; }
.founder-content p.lead { font-size: 15px; line-height: 1.7; color: var(--gray-dark); margin-bottom: 16px; }
.founder-content p.lead:last-child { margin-bottom: 0; }

.about-block { background: transparent; }
.about-block .funding-timeline { margin: 8px 0 0; }
.funding-step.highlight .step-dot { background: var(--teal); border-color: var(--teal); border-style: solid; }
.funding-step.highlight .step-year { color: var(--teal-dark); font-style: normal; font-weight: 800; }
.funding-step.highlight .step-label { color: var(--teal-dark); }
.funding-step.highlight .step-desc { color: var(--teal-dark); font-style: normal; }
.about-block-divider { border-top: 1px solid #e0ded8; margin: 32px 0; }
.partners-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.partner-block { background: transparent; border: none; border-radius: 0; padding: 0 44px; }
.partner-block:first-child { padding-left: 0; border-right: 1px solid #d3d7de; }
.partner-block:last-child { padding-right: 0; }
.partner-block > .section-eyebrow { margin-bottom: 10px; }
.partner-block h3 { font-size: 19px; font-weight: 700; color: var(--navy-darkest); letter-spacing: -0.01em; margin-bottom: 20px; }
.partner-line { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-top: 1px solid var(--gray-light); }
.partner-line img { height: 28px; width: auto; max-width: 150px; object-fit: contain; object-position: left center; flex-shrink: 0; }
.partner-line .pl-name { font-size: 16px; font-weight: 800; color: var(--navy-darkest); letter-spacing: -0.01em; min-width: 96px; flex-shrink: 0; }
.partner-line .pl-role { font-size: 12px; font-weight: 500; color: var(--gray-dark); line-height: 1.45; }

.cta-compact { background: #0d1e2c; border-radius: 8px; padding: 52px 32px; text-align: center; max-width: 760px; margin: 0 auto; position: relative; overflow: hidden; }
.cta-compact::before { content: ''; position: absolute; top: 0; right: 0; width: 220px; height: 220px; background: radial-gradient(circle, rgba(12,174,182,0.16) 0%, transparent 70%); pointer-events: none; }
.cta-compact > * { position: relative; z-index: 2; }
.cta-compact .cta-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-bright); margin-bottom: 14px; display: block; }
.cta-compact h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 700; color: var(--white); letter-spacing: -0.01em; margin-bottom: 16px; }
.cta-compact p { font-size: 15px; line-height: 1.6; color: var(--text-on-dark-muted); max-width: 540px; margin: 0 auto 28px; }

.footer-grid.foot-3 { grid-template-columns: 2fr 1fr 1fr 1fr; }

/* === APPLICATIONS — SECTOR (long-form) === */
.app-sector { padding: 96px 40px; background: var(--white); border-top: 1px solid var(--gray-light); scroll-margin-top: 80px; }
.app-sector.alt { background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%); }
.app-sector-head { max-width: 860px; margin-bottom: 40px; }
.app-sector-head .section-title { margin-bottom: 0; }
.app-banner { margin-bottom: 48px; }
.app-sector-cta-row { border-top: 1px solid var(--gray-light); padding-top: 36px; margin-top: 8px; }

/* === MILESTONES === */
.ms-section { padding: 96px 40px; background: var(--white); border-top: 1px solid var(--gray-light); scroll-margin-top: 80px; }
.ms-section.alt { background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%); }
.ms-head { max-width: 820px; margin-bottom: 44px; }
.ms-head .section-title { margin-bottom: 16px; }
.ms-head .ms-intro { font-size: 17px; line-height: 1.65; color: var(--gray-dark); }
.ms-cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
.ms-card { background: var(--white); border: 1px solid var(--gray-light); border-left: 4px solid var(--teal); border-radius: 10px; padding: 32px 34px; transition: all 0.3s; }
.ms-card:hover { box-shadow: 0 16px 40px rgba(17,26,45,0.08); transform: translateY(-3px); }
.ms-card .ms-geo { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 10px; }
.ms-card h3 { font-size: 22px; font-weight: 700; color: var(--navy-darkest); letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 14px; }
.ms-card p { font-size: 15px; line-height: 1.7; color: var(--gray-dark); }
.next { background: linear-gradient(135deg, #0a1424 0%, #172c45 60%, #1d3956 100%); color: var(--white); position: relative; overflow: hidden; }
.next::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 85% 25%, rgba(12, 174, 182, 0.16) 0%, transparent 50%); pointer-events: none; }
.next::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px); background-size: 50px 50px; opacity: 0.4; pointer-events: none; }
.next .container { position: relative; z-index: 2; }
.next .section-eyebrow { color: var(--teal-bright); }
.next .section-title { color: var(--white); }
.next-group { margin-top: 44px; }
.next-group-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-bright); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.next-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.next-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 26px 28px; }
.next-item .ni-head { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -0.005em; }
.next-item .ni-head .ni-status { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-bright); margin-left: 8px; }
.next-item p { font-size: 14px; line-height: 1.6; color: var(--text-on-dark-muted); }

/* === OPERATIONAL MILESTONE (dark image) === */
.op-milestone { background: linear-gradient(135deg, #0a1424 0%, #172c45 60%, #1d3956 100%); color: var(--white); position: relative; overflow: hidden; }
.op-milestone::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 85% 30%, rgba(12, 174, 182, 0.16) 0%, transparent 50%); pointer-events: none; }
.op-milestone .container { position: relative; z-index: 2; }
.op-milestone-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.op-milestone .section-eyebrow { color: var(--teal-bright); }
.op-milestone .section-title { color: var(--white); }
.op-milestone-copy p { font-size: 15px; line-height: 1.7; color: var(--text-on-dark); margin-bottom: 28px; }
.op-milestone-image { width: 100%; aspect-ratio: 4/3; border-radius: 12px; background-size: cover; background-position: center; border: 1px solid rgba(12, 174, 182, 0.25); position: relative; overflow: hidden; }
.op-milestone-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,36,0.55) 0%, transparent 55%); }
.op-milestone-image .live-tag { position: absolute; bottom: 14px; left: 14px; z-index: 2; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #22c55e; background: rgba(10,20,36,0.9); border: 1px solid rgba(34,197,94,0.4); padding: 5px 12px; border-radius: 100px; display: inline-flex; align-items: center; gap: 6px; }
.op-milestone-image .live-tag::before { content: ''; width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); } }

/* === CONTACT FORM === */
.contact-form-section { background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%); }
.form-card { max-width: 680px; margin: 0 auto; background: var(--white); border: 1px solid var(--gray-light); border-radius: 16px; padding: 48px 48px 44px; box-shadow: 0 18px 50px rgba(17, 26, 45, 0.08); }
.form-card .form-intro-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 22px; display: block; }
.form-field { margin-bottom: 22px; }
.form-field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy-darkest); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; font-family: inherit; font-size: 15px; color: var(--navy-darkest); padding: 13px 15px; border: 1px solid var(--gray-light); border-radius: 8px; background: #fbfcfe; transition: border-color 0.2s, box-shadow 0.2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(12, 174, 182, 0.12); background: var(--white); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select { cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2386909d' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.profile-fields { display: none; }
.profile-fields.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.form-divider { height: 1px; background: var(--gray-light); margin: 6px 0 24px; }
.form-submit-row { margin-top: 28px; }
.form-submit-row .btn { width: 100%; text-align: center; }
.form-legal { font-size: 12px; color: var(--gray-dark); margin-top: 16px; text-align: center; }
.form-legal a { color: var(--teal-dark); }
.form-response { font-size: 13px; color: var(--gray-dark); text-align: center; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--gray-light); }
.form-thanks { display: none; text-align: center; padding: 20px 0 4px; }
.form-thanks.active { display: block; }
.form-thanks h3 { font-size: 22px; font-weight: 700; color: var(--navy-darkest); margin-bottom: 10px; letter-spacing: -0.01em; }
.form-thanks p { font-size: 14px; color: var(--gray-dark); }
.company-info { background: var(--white); border-top: 1px solid var(--gray-light); text-align: center; padding: 60px 40px; }
.company-info .ci-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 14px; display: block; }
.company-info h3 { font-size: 20px; font-weight: 700; color: var(--navy-darkest); margin-bottom: 10px; }
.company-info p { font-size: 14px; line-height: 1.7; color: var(--gray-dark); }
.company-info a { color: var(--teal-dark); text-decoration: none; }
.company-info a:hover { color: var(--teal-dark); }

/* === FINAL CTA === */
.final-cta { background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%); text-align: center; padding-top: 100px; padding-bottom: 120px; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; bottom: -150px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(12, 174, 182, 0.06) 0%, transparent 70%); pointer-events: none; }
.final-cta .container { position: relative; z-index: 2; }
.final-cta .fc-sub { font-size: 18px; color: var(--gray-dark); margin-bottom: 8px; }
.final-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1100px; margin: 48px auto 0; }
.final-cta-grid.single { grid-template-columns: 1fr; max-width: 720px; }
.cta-card { padding: 48px 40px 40px; border-radius: 14px; text-align: left; transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.cta-card.investor { background: linear-gradient(135deg, #0a1424 0%, #172c45 60%, #1d3956 100%); color: var(--white); border: 1px solid rgba(12, 174, 182, 0.25); box-shadow: 0 8px 24px rgba(17, 26, 45, 0.12); }
.cta-card.investor::before { content: ''; position: absolute; top: 0; right: 0; width: 240px; height: 240px; background: radial-gradient(circle, rgba(12, 174, 182, 0.18) 0%, transparent 70%); pointer-events: none; }
.cta-card.investor::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; opacity: 0.5; }
.cta-card.operator { background: var(--white); color: var(--navy-darkest); border: 1px solid var(--gray-light); box-shadow: 0 8px 24px rgba(17, 26, 45, 0.04); }
.cta-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(17, 26, 45, 0.18); }
.cta-card > * { position: relative; z-index: 2; }
.cta-card-icon { width: 56px; height: 56px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.cta-card.investor .cta-card-icon { background: rgba(12, 174, 182, 0.15); border: 1px solid rgba(12, 174, 182, 0.3); }
.cta-card.operator .cta-card-icon { background: rgba(12, 174, 182, 0.08); }
.cta-card-icon svg { width: 26px; height: 26px; fill: none; stroke-width: 1.8; }
.cta-card.investor .cta-card-icon svg { stroke: var(--teal-bright); }
.cta-card.operator .cta-card-icon svg { stroke: var(--teal-dark); }
.cta-card .label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; display: inline-block; }
.cta-card.investor .label { color: var(--teal-bright); }
.cta-card.operator .label { color: var(--teal-dark); }
.cta-card h3 { font-size: 24px; font-weight: 700; line-height: 1.25; margin-bottom: 16px; letter-spacing: -0.012em; }
.cta-card p { font-size: 15px; line-height: 1.6; margin-bottom: 28px; flex-grow: 1; }
.cta-card.investor p { color: var(--text-on-dark); }
.cta-card.operator p { color: var(--gray-dark); }
.cta-card .btn { align-self: flex-start; }

/* === FOOTER === */
.footer { background: #0a1424; color: var(--text-on-dark-muted); padding: 60px 40px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
.footer-brand .logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 320px; }
.footer-tagline { font-size: 18px; font-weight: 800; color: var(--white); line-height: 1.2; margin-top: 16px; letter-spacing: -0.01em; }
.footer-tagline .accent { color: var(--teal); }
.footer-col h5 { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-on-dark-muted); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 12px; color: var(--text-on-dark-muted); max-width: 1200px; margin: 0 auto; }

/* === DEV BANNER === */
.dev-banner { position: fixed; bottom: 16px; right: 16px; background: var(--accent-red); color: var(--white); padding: 8px 14px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; z-index: 9999; box-shadow: 0 8px 24px rgba(255, 16, 83, 0.4); }

/* === RESPONSIVE === */
/* === A11Y: focus-visible + reduced-motion (audit fix) === */
a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(12, 174, 182, 0.28);
  border-radius: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

@media (max-width: 1080px) {
  .contexts-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .header > .btn { display: none; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0; margin-right: 0; padding: 8px 20px 18px; background: rgba(17,26,45,0.98); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 14px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .header { padding: 14px 20px; }
  .section, .app-sector, .ms-section { padding: 56px 20px; }
  .hero { padding: 120px 24px 64px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { order: -1; max-width: 340px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .contexts-grid, .contexts-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .proof-grid { grid-template-columns: 1fr; }
  .caps-grid { grid-template-columns: 1fr; }
  .capital-grid { grid-template-columns: 1fr; gap: 40px; }
  .partners-row-left { grid-template-columns: 1fr; }
  .partner-cell-left { border-right: none; padding-left: 0; padding-right: 0; border-bottom: 1px solid var(--gray-light); }
  .partner-cell-left:last-child { border-bottom: none; }
  .manifesto-grid { grid-template-columns: 1fr; min-height: auto; }
  .manifesto-visual { min-height: 460px; padding: 40px 32px; }
  .marco-photo { width: 220px; height: 220px; }
  .manifesto-content { padding: 56px 32px; }
  .founder-grid { grid-template-columns: 1fr; min-height: auto; }
  .founder-visual { min-height: 420px; padding: 48px 32px; }
  .founder-content { padding: 48px 32px; }
  .about-block { padding: 28px 22px; }
  .partners-duo { grid-template-columns: 1fr; }
  .partner-block { padding: 0; }
  .partner-block:first-child { border-right: none; border-bottom: 1px solid #d3d7de; padding-bottom: 28px; margin-bottom: 28px; }
  .footer-grid.foot-3 { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .logo-strip.cols-3, .logo-strip.cols-2 { grid-template-columns: 1fr; }
  .logo-cell { border-right: none; border-bottom: 1px solid var(--gray-light); }
  .logo-cell:last-child { border-bottom: none; }
  .op-milestone-grid { grid-template-columns: 1fr; gap: 36px; }
  .next-items { grid-template-columns: 1fr; }
  .final-cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-badge { gap: 12px; font-size: 10px; }
}
@media (max-width: 720px) {
  .funding-timeline { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .funding-timeline::before { display: none; }
}
@media (max-width: 640px) {
  .contexts-grid, .contexts-grid.cols-4 { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid, .footer-grid.foot-3 { grid-template-columns: 1fr; }
}
