/* ── DESIGN TOKENS ── */
:root {
  --dark: #0a1520;
  --dark2: #0f2028;
  --dark3: #152433;
  --coral: #ff613c;
  --peach: #ff9e87;
  --warm: #fddad2;
  --slate: #a1adba;
  --light: #f5f5f4;
  --white: #ffffff;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --page-width: 1300px;
  --content-width: 1204px;
}

/* ── RESET & GLOBALS ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--light);
  background: var(--dark);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

section[id],
div[id] {
  scroll-margin-top: 90px;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  color: var(--slate);
  line-height: 1.7;
}

/* ── SHARED LAYOUT ── */
section {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 100px 48px;
}

.page-kicker,
.section-kicker,
.section-label {
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.divider {
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── BUTTONS ── */
.btn-coral,
.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.btn-coral {
  color: var(--white);
  background: var(--coral);
  border: 1px solid var(--coral);
  font-weight: 500;
}

.btn-coral:hover {
  background: #e8552f;
  border-color: #e8552f;
  box-shadow: 0 8px 24px rgba(255, 97, 60, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--light);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 400;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--white);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--peach);
  outline-offset: 3px;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px 48px;
  background: rgba(10, 21, 32, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    min-height 0.3s var(--ease),
    padding 0.3s var(--ease),
    background 0.3s var(--ease);
}

nav.scrolled {
  min-height: 64px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(10, 21, 32, 0.95);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  text-decoration: none;
}

.nav-logo-img {
  width: auto;
  height: 38px;
  max-width: 210px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  color: var(--slate);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 20px;
  color: var(--coral) !important;
  border: 1px solid var(--coral);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s,
    background 0.2s,
    transform 0.2s;
}

.nav-cta:hover,
.nav-cta.is-active {
  color: var(--white) !important;
  background: var(--coral);
  transform: translateY(-1px);
}

/* ── MOBILE MENU ── */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
}

.mobile-menu-line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.25s var(--ease),
    opacity 0.2s var(--ease);
}

.mobile-menu-open .mobile-menu-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-open .mobile-menu-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-open .mobile-menu-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  background: rgba(10, 21, 32, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
  padding: 20px 24px 28px;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  color: var(--light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 16px;
  text-decoration: none;
}

.mobile-menu-links a.is-active {
  color: var(--peach);
}

.mobile-menu-links a.is-active::after {
  color: var(--coral);
  content: "•";
}

.mobile-menu-links .mobile-menu-cta {
  justify-content: center;
  min-height: auto;
  margin-top: 22px;
  padding: 14px 20px;
  color: var(--white);
  background: var(--coral);
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

body.menu-open {
  overflow: hidden;
}

/* ── HOME HERO ── */
.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  max-width: none;
  margin: 0;
  padding: 0 48px;
  background: var(--dark);
}

.home-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url("../../img/hero/home-route-at-sea.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  content: "";
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 21, 32, 0.96) 0%,
      rgba(10, 21, 32, 0.76) 47%,
      rgba(10, 21, 32, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(10, 21, 32, 0.78) 0%,
      rgba(10, 21, 32, 0.04) 60%
    );
  content: "";
}

.home-hero-content {
  width: min(720px, 62%);
  max-width: 720px;
  padding: 150px 0 110px;
}

.home-hero h1 {
  margin-bottom: 28px;
  color: var(--white);
}

.home-hero h1 em {
  color: var(--peach);
  font-style: italic;
  font-weight: inherit;
}

.home-hero-content > p {
  max-width: 640px;
  margin-bottom: 38px;
  color: rgba(245, 245, 244, 0.82);
  font-size: 17px;
  line-height: 1.75;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: var(--slate);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--coral), transparent);
  animation: scrollpulse 2s ease infinite;
}

@keyframes scrollpulse {
  0%,
  100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ── HOME PATHS ── */
.home-paths {
  padding-top: 100px;
  padding-bottom: 100px;
}

.home-paths-header {
  max-width: 690px;
  margin-bottom: 48px;
}

.home-paths-header h2 {
  margin-bottom: 17px;
  color: var(--white);
}

.home-paths-header p {
  font-size: 15px;
}

.home-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-path-card {
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: 38px 34px;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.home-path-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px);
}

.home-path-number {
  margin-bottom: 30px;
  color: rgba(255, 158, 135, 0.3);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.home-path-label {
  margin-bottom: 13px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-path-card h3 {
  margin-bottom: 16px;
  color: var(--white);
}

.home-path-card p {
  flex-grow: 1;
  font-size: 14px;
}

.home-path-card a {
  margin-top: 28px;
  color: var(--peach);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.home-path-card a:hover {
  color: var(--white);
}

/* ── NUMBERS ── */
.home-numbers {
  max-width: none;
  margin: 0;
  padding: 70px 48px;
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── HOME MODEL INTRO ── */
.home-model {
  padding-top: 110px;
  padding-bottom: 110px;
}

.home-model-grid {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.9fr)
    minmax(460px, 1.1fr);

  gap: 100px;
  align-items: start;
}

.home-model-heading {
  position: sticky;
  top: 120px;
}

.home-model-heading h2 {
  max-width: 570px;
  color: var(--white);
}

.home-model-content {
  max-width: 650px;
}

.home-model-lead {
  margin-bottom: 38px;

  color: rgba(245, 245, 244, 0.8);
  font-size: 16px;
  line-height: 1.8;
}

.home-model-points {
  display: flex;
  flex-direction: column;

  border-top:
    1px solid rgba(255, 255, 255, 0.08);
}

.home-model-point {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;

  padding: 28px 0;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);
}

.home-model-point > span {
  padding-top: 5px;

  color: var(--coral);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.home-model-point h3 {
  margin-bottom: 9px;

  color: var(--white);
  font-size: 1.2rem;
}

.home-model-point p {
  max-width: 520px;
  font-size: 14px;
}

.home-model-cta {
  margin-top: 34px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.num-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.num-item:first-child {
  padding-left: 0;
}

.num-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.num-value {
  color: var(--white);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.num-value span {
  color: var(--coral);
}

.num-label {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.5;
}

/* ── NETWORK: MODEL ── */
#modello {
  background: var(--dark);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.pillar {
  padding: 48px 40px;
  background: var(--dark3);
  border-top: 2px solid transparent;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.pillar:hover {
  background: rgba(255, 97, 60, 0.04);
  border-top-color: var(--coral);
}

.pillar-num {
  margin-bottom: 24px;
  color: rgba(255, 97, 60, 0.2);
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1;
}

.pillar h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.2rem;
}

.pillar p {
  font-size: 14px;
}

.pillar-stat {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.pillar-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.pillar-stat span {
  color: var(--slate);
  font-size: 12px;
}

/* ── NETWORK: DERISKING ── */
#derisking {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 100px 48px;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.derisking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.derisking-text h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.derisking-text p {
  margin-bottom: 20px;
  font-size: 15px;
}

.derisking-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 8px 16px;
  color: var(--peach);
  background: rgba(255, 97, 60, 0.1);
  border: 1px solid rgba(255, 97, 60, 0.3);
  border-radius: 6px;
  font-size: 13px;
}

.derisking-chart {
  position: relative;
  min-width: 0;
}

.chart-svg-wrap {
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.chart-svg-wrap img {
  width: 100%;
  height: auto;
}

/* ── PORTFOLIO CARDS ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  color: inherit;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.portfolio-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 97, 60, 0.06), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.portfolio-card > * {
  position: relative;
  z-index: 1;
}

.portfolio-card:hover {
  border-color: rgba(255, 97, 60, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.portfolio-card:hover::before {
  opacity: 1;
}

.pc-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 22px;
}

.pc-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pc-name {
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.pc-sector {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.pc-desc {
  display: -webkit-box;
  margin-bottom: 20px;
  overflow: hidden;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-stage {
  padding: 3px 10px;
  color: var(--peach);
  background: rgba(255, 97, 60, 0.15);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── SOCI CARDS ── */
.soci-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.socio-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 32px 20px;
  text-align: center;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}

.socio-card:hover {
  border-color: rgba(255, 97, 60, 0.2);
  transform: translateY(-2px);
}

.socio-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  overflow: hidden;
  color: var(--coral);
  background: linear-gradient(135deg, var(--dark3), var(--dark));
  border: 2px solid rgba(255, 97, 60, 0.25);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.socio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.socio-name {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.socio-role {
  color: var(--slate);
  font-size: 11px;
  line-height: 1.4;
}

.socio-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
}

/* ── FORMS ── */
.form-panel {
  position: relative;
  overflow: hidden;
  padding: 48px;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
}

.form-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
}

.form-startup::before {
  background: var(--coral);
}

.form-investor::before {
  background: linear-gradient(90deg, var(--coral), var(--peach));
}

.form-venture::before {
  background: var(--peach);
}

.form-panel h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.6rem;
}

.form-panel > p {
  margin-bottom: 32px;
  font-size: 14px;
}

.form-panel-single {
  width: 100%;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.f-group {
  margin-bottom: 16px;
}

.f-label {
  display: block;
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.f-input,
.f-select,
.f-textarea {
  width: 100%;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.f-input::placeholder,
.f-textarea::placeholder {
  color: rgba(161, 173, 186, 0.5);
}

.f-input:focus,
.f-select:focus,
.f-textarea:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--coral);
}

.f-select {
  cursor: pointer;
}

.f-select option {
  color: var(--white);
  background: var(--dark2);
}

.f-textarea {
  min-height: 100px;
  resize: vertical;
}

.f-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 0;
}

.f-pill {
  padding: 6px 12px;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
  transition:
    color 0.15s,
    background 0.15s,
    border-color 0.15s;
}

.f-pill.selected {
  color: var(--coral);
  background: rgba(255, 97, 60, 0.15);
  border-color: var(--coral);
  font-weight: 500;
}

.f-pills-scroll {
  max-height: 200px;
  overflow-y: auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.f-pill-header {
  width: 100%;
  margin: 8px 0 2px;
  color: var(--peach);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.f-pill-header:first-child {
  margin-top: 0;
}

.f-help {
  margin-top: 5px;
  margin-bottom: 12px;
  color: rgba(161, 173, 186, 0.66);
  font-size: 11px;
  line-height: 1.5;
}

.f-file-input {
  padding: 10px 14px;
  cursor: pointer;
}

.f-file-input::file-selector-button {
  margin-right: 14px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 5px;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
}

.f-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  color: var(--white);
  background: var(--coral);
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}

.f-submit:hover {
  background: #e8552f;
  box-shadow: 0 6px 20px rgba(255, 97, 60, 0.35);
}

.f-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.f-success {
  display: none;
  padding: 40px 0;
  text-align: center;
}

.f-success-icon {
  margin-bottom: 16px;
  font-size: 3rem;
}

.f-success h4 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.5rem;
}

/* ── NEWS CARDS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.news-card {
  overflow: hidden;
  color: inherit;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  text-decoration: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}

.news-card:hover {
  border-color: rgba(255, 97, 60, 0.2);
  transform: translateY(-2px);
}

.news-body {
  padding: 28px;
}

.news-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-title {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.3;
}

.news-snippet {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-meta {
  margin-top: 16px;
  color: rgba(161, 173, 186, 0.5);
  font-size: 11px;
}

.news-empty {
  grid-column: 1 / -1;
  padding: 60px;
  color: var(--slate);
  font-size: 15px;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  padding: 64px 48px 32px;
  color: var(--slate);
  background: #060e17;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.5fr;
  gap: 56px;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo-img {
  width: auto;
  height: 46px;
  max-width: 220px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 20px;
  font-size: 13px;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 11px;
  overflow-wrap: anywhere;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: var(--content-width);
  margin: 48px auto 0;
  padding-top: 28px;
  color: rgba(161, 173, 186, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  line-height: 1.5;
}

.footer-bottom span:last-child {
  max-width: 570px;
  text-align: right;
}

/* ── LOADING & REVEAL ── */
.loading-ring {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 97, 60, 0.3);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.skeleton {
  background: linear-gradient(
    90deg,
    var(--dark3) 25%,
    rgba(255, 255, 255, 0.04) 50%,
    var(--dark3) 75%
  );
  background-size: 200% 100%;
  border-radius: 8px;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  to { background-position: -200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── INTERNAL PAGE HERO ── */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 76vh;
  max-width: none;
  margin: 0;
  padding: 0 48px;
  background: var(--dark);
}

.page-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 21, 32, 0.22) 0%,
      rgba(10, 21, 32, 0.68) 48%,
      rgba(10, 21, 32, 0.95) 100%
    ),
    linear-gradient(
      0deg,
      rgba(10, 21, 32, 0.72) 0%,
      rgba(10, 21, 32, 0.05) 55%
    );
  content: "";
}

.page-hero-content {
  width: min(650px, 52%);
  max-width: 650px;
  margin-left: auto;
  padding: 150px 0 100px;
}

.page-hero h1 {
  margin-bottom: 26px;
  color: var(--white);
}

.page-hero p {
  max-width: 590px;
  margin-bottom: 38px;
  color: rgba(245, 245, 244, 0.8);
  font-size: 17px;
  line-height: 1.75;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero--network::before {
  background-image: url("../../img/hero/network-lighthouse.jpg");
  background-position: center center;
}

/* ── PAGE STATS ── */
.page-stats {
  max-width: none;
  margin: 0;
  padding: 0 48px;
  background: var(--dark3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.page-stat {
  min-width: 0;
  padding: 44px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.page-stat:first-child {
  padding-left: 0;
}

.page-stat:last-child {
  padding-right: 0;
  border-right: 0;
}

.page-stat strong {
  display: block;
  margin-bottom: 9px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
}

.page-stat strong span {
  color: var(--coral);
}

.page-stat p {
  max-width: 210px;
  font-size: 13px;
  line-height: 1.5;
}

/* ── NETWORK PAGE ── */
.network-people {
  padding-top: 80px;
  padding-bottom: 80px;
}

.network-people-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding: 48px;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.network-people-card > div {
  max-width: 680px;
}

.network-people-card h2 {
  margin-bottom: 17px;
  color: var(--white);
}

.network-people-card p {
  font-size: 15px;
}

.network-join,
.venture-submit,
.startup-apply {
  max-width: none;
  margin: 0;
  padding: 100px 48px;
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.single-form-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(480px, 1.2fr);
  gap: 80px;
  align-items: start;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}

.network-join-intro,
.venture-submit-intro,
.startup-apply-intro {
  position: sticky;
  top: 120px;
}

.network-join-intro h2,
.venture-submit-intro h2,
.startup-apply-intro h2 {
  margin-bottom: 18px;
  color: var(--white);
}

.network-join-intro p,
.venture-submit-intro p,
.startup-apply-intro p {
  font-size: 15px;
}

/* ── SHARED INTRO SECTIONS ── */
.soci-intro,
.portfolio-intro,
.news-intro,
.venture-intro,
.startup-intro {
  padding-top: 90px;
  padding-bottom: 90px;
}

.soci-intro-grid,
.portfolio-intro-grid,
.news-intro-grid,
.venture-intro-grid,
.startup-intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 90px;
  align-items: start;
}

.soci-intro h2,
.portfolio-intro h2,
.news-intro h2,
.venture-intro h2,
.startup-intro h2 {
  max-width: 570px;
  color: var(--white);
}

.soci-intro-copy,
.portfolio-intro-copy,
.news-intro-copy,
.venture-intro-copy,
.startup-intro-copy {
  padding-top: 34px;
}

.soci-intro-copy p,
.portfolio-intro-copy p,
.news-intro-copy p,
.venture-intro-copy p,
.startup-intro-copy p {
  max-width: 620px;
  font-size: 15px;
}

.soci-intro-copy p + p,
.portfolio-intro-copy p + p,
.news-intro-copy p + p,
.venture-intro-copy p + p,
.startup-intro-copy p + p {
  margin-top: 18px;
}

/* ── SHARED FULL-WIDTH DIRECTORIES ── */
.soci-directory,
.portfolio-directory,
.news-directory {
  max-width: none;
  margin: 0;
  padding: 100px 48px;
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.soci-directory > *,
.portfolio-directory > *,
.news-directory > * {
  width: 100%;
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.soci-directory-header,
.portfolio-directory-header,
.news-directory-header {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.8fr);
  gap: 80px;
  align-items: end;
}

.soci-directory-header h2,
.portfolio-directory-header h2,
.news-directory-header h2 {
  color: var(--white);
}

.soci-directory-header > p,
.portfolio-directory-header > p,
.news-directory-header > p {
  max-width: 520px;
  justify-self: end;
  font-size: 14px;
}

.soci-loading,
.portfolio-loading,
.news-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 220px;
  color: var(--slate);
  font-size: 13px;
}

/* ── SHARED CTA CARDS ── */
.soci-join,
.network-people,
.portfolio-method,
.portfolio-apply,
.news-paths,
.venture-network,
.startup-portfolio,
.startup-venture-link {
  padding-top: 80px;
  padding-bottom: 80px;
}

.soci-join-card,
.portfolio-method-card,
.portfolio-apply-card,
.venture-network-card,
.startup-portfolio-card,
.startup-venture-link-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding: 48px;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.soci-join-card,
.portfolio-apply-card,
.startup-venture-link-card {
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.01)
    ),
    var(--dark3);
}

.soci-join-card > div,
.portfolio-method-card > div,
.portfolio-apply-card > div,
.venture-network-card > div,
.startup-portfolio-card > div,
.startup-venture-link-card > div {
  max-width: 720px;
}

.soci-join-card h2,
.portfolio-method-card h2,
.portfolio-apply-card h2,
.venture-network-card h2,
.startup-portfolio-card h2,
.startup-venture-link-card h2 {
  margin-bottom: 17px;
  color: var(--white);
}

.soci-join-card p,
.portfolio-method-card p,
.portfolio-apply-card p,
.venture-network-card p,
.startup-portfolio-card p,
.startup-venture-link-card p {
  font-size: 15px;
}

/* ── SOCI PAGE ── */
.page-hero--soci {
  min-height: 68vh;
}

.page-hero--soci::before {
  background-image: url("../../img/backgrounds/sea-texture-blue.jpg");
  background-position: center center;
}

.page-hero--soci::after {
  background:
    linear-gradient(
      90deg,
      rgba(10, 21, 32, 0.96) 0%,
      rgba(10, 21, 32, 0.78) 48%,
      rgba(10, 21, 32, 0.24) 100%
    ),
    linear-gradient(
      0deg,
      rgba(10, 21, 32, 0.7) 0%,
      rgba(10, 21, 32, 0.05) 60%
    );
}

.page-hero--soci .page-hero-content {
  width: min(680px, 58%);
  max-width: 680px;
  margin-right: auto;
  margin-left: 0;
}

.soci-grid--directory {
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.soci-grid--directory .socio-card {
  justify-content: flex-start;
  min-height: 252px;
  padding: 34px 22px;
  background: var(--dark3);
  border-color: rgba(255, 255, 255, 0.07);
}

.soci-grid--directory .socio-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.soci-grid--directory .socio-avatar {
  width: 104px;
  height: 104px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 2rem;
}

.soci-grid--directory .socio-name {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.soci-grid--directory .socio-role {
  max-width: 180px;
  font-size: 12px;
  line-height: 1.5;
}

/* ── PORTFOLIO PAGE ── */
.page-hero--portfolio {
  min-height: 70vh;
}

.page-hero--portfolio::before {
  background-image: url("../../img/hero/portfolio-sailboat-clouds.jpg");
  background-position: center center;
}

.page-hero--portfolio::after {
  background:
    linear-gradient(
      90deg,
      rgba(10, 21, 32, 0.95) 0%,
      rgba(10, 21, 32, 0.76) 45%,
      rgba(10, 21, 32, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(10, 21, 32, 0.72) 0%,
      rgba(10, 21, 32, 0.05) 58%
    );
}

.page-hero--portfolio .page-hero-content {
  width: min(680px, 58%);
  max-width: 680px;
  margin-right: auto;
  margin-left: 0;
}

.page-stats-inner--three {
  grid-template-columns: repeat(3, 1fr);
}

.page-stats-inner--three .page-stat p {
  max-width: 240px;
}

.portfolio-grid--directory {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.portfolio-grid--directory .portfolio-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 30px;
  background: var(--dark3);
  border-color: rgba(255, 255, 255, 0.07);
}

.portfolio-grid--directory .portfolio-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.portfolio-grid--directory .pc-logo {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.95);
}

.portfolio-grid--directory .pc-name {
  font-size: 1.4rem;
}

.portfolio-grid--directory .pc-sector {
  min-height: 18px;
}

.portfolio-grid--directory .pc-desc {
  flex-grow: 1;
  -webkit-line-clamp: 4;
}

.portfolio-grid--directory .pc-footer {
  margin-top: auto;
}

.portfolio-method {
  padding-bottom: 0;
}

.portfolio-apply {
  padding-top: 32px;
}

/* ── NEWS PAGE ── */
.page-hero--news {
  min-height: 68vh;
}

.page-hero--news::before {
  background-image: url("../../img/backgrounds/wave-sunset.jpg");
  background-position: center center;
}

.page-hero--news::after {
  background:
    linear-gradient(
      90deg,
      rgba(10, 21, 32, 0.96) 0%,
      rgba(10, 21, 32, 0.76) 48%,
      rgba(10, 21, 32, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(10, 21, 32, 0.78) 0%,
      rgba(10, 21, 32, 0.04) 58%
    );
}

.page-hero--news .page-hero-content {
  width: min(680px, 58%);
  max-width: 680px;
  margin-right: auto;
  margin-left: 0;
}

.news-grid--directory {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 50px;
}

.news-grid--directory .news-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  background: var(--dark3);
  border-color: rgba(255, 255, 255, 0.07);
}

.news-grid--directory .news-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.news-grid--directory .news-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.news-grid--directory .news-title {
  font-size: 1.35rem;
}

.news-grid--directory .news-snippet {
  flex-grow: 1;
  -webkit-line-clamp: 4;
}

.news-grid--directory .news-meta {
  margin-top: 22px;
}

.news-paths-header {
  max-width: 660px;
  margin-bottom: 44px;
}

.news-paths-header h2 {
  color: var(--white);
}

.news-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-path-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 34px;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.news-path-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.news-path-card h3 {
  margin-bottom: 16px;
  color: var(--white);
}

.news-path-card p {
  flex-grow: 1;
  font-size: 14px;
}

.news-path-card a {
  display: inline-flex;
  margin-top: 28px;
  color: var(--peach);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.news-path-card a:hover {
  color: var(--white);
}

/* ── VENTURE STUDIO PAGE ── */
.page-hero--venture-studio {
  min-height: 72vh;
}

.page-hero--venture-studio::before {
  background-image: url("../../img/hero/venture-studio-underwater.jpg");
  background-position: center center;
}

.page-hero--venture-studio::after {
  background:
    linear-gradient(
      90deg,
      rgba(10, 21, 32, 0.96) 0%,
      rgba(10, 21, 32, 0.76) 48%,
      rgba(10, 21, 32, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(10, 21, 32, 0.8) 0%,
      rgba(10, 21, 32, 0.05) 58%
    );
}

.page-hero--venture-studio .page-hero-content {
  width: min(700px, 60%);
  max-width: 700px;
  margin-right: auto;
  margin-left: 0;
}

.venture-process,
.startup-fit,
.startup-support {
  max-width: none;
  margin: 0;
  padding: 100px 48px;
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.venture-process > *,
.startup-fit > *,
.startup-support > * {
  width: 100%;
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.venture-process-header,
.startup-fit-header {
  max-width: 720px;
  margin-bottom: 50px;
}

.venture-process-header h2,
.startup-fit-header h2 {
  margin-bottom: 18px;
  color: var(--white);
}

.venture-process-header p,
.startup-fit-header p {
  font-size: 15px;
}

.venture-process-grid,
.startup-fit-grid,
.startup-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.venture-process-grid {
  gap: 2px;
}

.venture-step,
.startup-fit-card,
.startup-support-card {
  min-height: 300px;
  padding: 38px 34px;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.venture-step {
  padding: 42px 36px;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.venture-step-number,
.startup-fit-number {
  margin-bottom: 32px;
  color: rgba(255, 158, 135, 0.32);
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
}

.venture-step h3,
.startup-fit-card h3,
.startup-support-card h3 {
  margin-bottom: 16px;
  color: var(--white);
}

.venture-step p,
.startup-fit-card p,
.startup-support-card p {
  font-size: 14px;
}

.venture-fit,
.startup-process {
  padding-top: 100px;
  padding-bottom: 100px;
}

.venture-fit-grid,
.startup-process-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(460px, 1.15fr);
  gap: 90px;
  align-items: start;
}

.venture-fit-heading,
.startup-process-heading {
  position: sticky;
  top: 120px;
}

.venture-fit-heading h2,
.startup-process-heading h2 {
  max-width: 520px;
  margin-bottom: 18px;
  color: var(--white);
}

.startup-process-heading p {
  max-width: 500px;
  font-size: 15px;
}

.venture-fit-list,
.startup-process-list {
  display: flex;
  flex-direction: column;
}

.venture-fit-item,
.startup-process-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.venture-fit-item:first-child,
.startup-process-item:first-child {
  padding-top: 0;
}

.venture-fit-item > span,
.startup-process-item > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.venture-fit-item h3,
.startup-process-item h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.venture-fit-item p,
.startup-process-item p {
  font-size: 14px;
}

/* ── STARTUP PAGE ── */
.page-hero--startup {
  min-height: 72vh;
}

.page-hero--startup::before {
  background-image: url("../../img/hero/startup-icebreaker.jpg");
  background-position: center center;
}

.page-hero--startup::after {
  background:
    linear-gradient(
      90deg,
      rgba(10, 21, 32, 0.95) 0%,
      rgba(10, 21, 32, 0.72) 47%,
      rgba(10, 21, 32, 0.14) 100%
    ),
    linear-gradient(
      0deg,
      rgba(10, 21, 32, 0.78) 0%,
      rgba(10, 21, 32, 0.04) 60%
    );
}

.page-hero--startup .page-hero-content {
  width: min(700px, 60%);
  max-width: 700px;
  margin-right: auto;
  margin-left: 0;
}

.startup-fit-card {
  border-radius: 12px;
}

.startup-fit-number {
  margin-bottom: 34px;
  font-size: 3.3rem;
}

.startup-support-header {
  max-width: 700px;
  margin-bottom: 44px;
}

.startup-support-header h2 {
  color: var(--white);
}

.startup-support-card {
  min-height: 220px;
  padding: 34px;
  border-radius: 12px;
}

.startup-apply-intro p + p {
  margin-top: 17px;
}

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 900px) {
  nav {
    min-height: 64px;
    padding: 12px 24px;
  }

  nav.scrolled {
    min-height: 60px;
    padding: 10px 24px;
  }

  .nav-logo-img {
    height: 30px;
    max-width: 165px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  section {
    padding: 80px 24px;
  }

  footer {
    padding: 52px 24px 28px;
  }

  h1 {
    font-size: 2.6rem;
  }

  .home-hero {
    min-height: 700px;
    padding: 0 24px;
  }

  .home-hero::after {
    background:
      linear-gradient(
        0deg,
        rgba(10, 21, 32, 0.98) 0%,
        rgba(10, 21, 32, 0.78) 58%,
        rgba(10, 21, 32, 0.24) 100%
      );
  }

  .home-hero-content {
    width: 100%;
    max-width: 640px;
    padding: 150px 0 85px;
  }

  .home-paths-grid {
    grid-template-columns: 1fr;
  }

  .home-path-card {
    min-height: auto;
  }

  .home-numbers {
    padding: 60px 24px;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .num-item,
  .num-item:first-child,
  .num-item:last-child {
    padding: 26px 28px;
  }

  .num-item:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .num-item:nth-child(even) {
    padding-right: 0;
    border-right: 0;
  }

  .num-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  #derisking {
    padding: 80px 24px;
  }

  .derisking-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .page-hero {
    min-height: 680px;
    padding: 0 24px;
  }

  .page-hero::after {
    background:
      linear-gradient(
        0deg,
        rgba(10, 21, 32, 0.98) 0%,
        rgba(10, 21, 32, 0.78) 55%,
        rgba(10, 21, 32, 0.28) 100%
      );
  }

  .page-hero-content {
    width: 100%;
    max-width: 620px;
    margin-left: 0;
    padding: 150px 0 78px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .page-hero--network::before {
    background-position: 36% center;
  }

  .page-stats {
    padding: 0 24px;
  }

  .page-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-stat,
  .page-stat:first-child,
  .page-stat:last-child {
    padding: 34px 24px;
  }

  .page-stat:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .page-stat:nth-child(even) {
    padding-right: 0;
    border-right: 0;
  }

  .page-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .page-stats-inner--three {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-stats-inner--three .page-stat,
  .page-stats-inner--three .page-stat:first-child,
  .page-stats-inner--three .page-stat:last-child {
    padding: 34px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 0;
  }

  .page-stats-inner--three .page-stat:first-child {
    padding-left: 0;
  }

  .page-stats-inner--three .page-stat:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .network-people-card,
  .soci-join-card,
  .portfolio-method-card,
  .portfolio-apply-card,
  .venture-network-card,
  .startup-portfolio-card,
  .startup-venture-link-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 38px;
  }

  .network-join,
  .venture-submit,
  .startup-apply {
    padding: 80px 24px;
  }

  .single-form-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .network-join-intro,
  .venture-submit-intro,
  .startup-apply-intro {
    position: static;
  }

  .soci-intro-grid,
  .portfolio-intro-grid,
  .news-intro-grid,
  .venture-intro-grid,
  .startup-intro-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .soci-intro-copy,
  .portfolio-intro-copy,
  .news-intro-copy,
  .venture-intro-copy,
  .startup-intro-copy {
    padding-top: 0;
  }

  .soci-directory,
  .portfolio-directory,
  .news-directory,
  .venture-process,
  .startup-fit,
  .startup-support {
    padding: 80px 24px;
  }

  .soci-directory > *,
  .portfolio-directory > *,
  .news-directory > *,
  .venture-process > *,
  .startup-fit > *,
  .startup-support > * {
    max-width: none;
  }

  .soci-directory-header,
  .portfolio-directory-header,
  .news-directory-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .soci-directory-header > p,
  .portfolio-directory-header > p,
  .news-directory-header > p {
    justify-self: start;
  }

  .soci-grid--directory {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
  }

  .portfolio-grid--directory {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 16px;
  }

  .news-grid--directory {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }

  .news-paths-grid,
  .venture-process-grid,
  .startup-fit-grid,
  .startup-support-grid {
    grid-template-columns: 1fr;
  }

  .news-path-card,
  .venture-step,
  .startup-fit-card,
  .startup-support-card {
    min-height: auto;
  }

  .venture-fit-grid,
  .startup-process-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .venture-fit-heading,
  .startup-process-heading {
    position: static;
  }

  .page-hero--soci,
  .page-hero--portfolio,
  .page-hero--news {
    min-height: 620px;
  }

  .page-hero--venture-studio,
  .page-hero--startup {
    min-height: 650px;
  }

  .page-hero--soci::before {
    background-position: center center;
  }

  .page-hero--portfolio::before,
  .page-hero--news::before,
  .page-hero--startup::before {
    background-position: 58% center;
  }

  .page-hero--venture-studio::before {
    background-position: center center;
  }

  .page-hero--soci .page-hero-content,
  .page-hero--portfolio .page-hero-content,
  .page-hero--news .page-hero-content,
  .page-hero--venture-studio .page-hero-content,
  .page-hero--startup .page-hero-content {
    width: 100%;
    max-width: 640px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom span:last-child {
    max-width: none;
    text-align: left;
  }

  .home-model {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .home-model-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-model-heading {
    position: static;
  }

  .home-model-heading h2,
  .home-model-content {
    max-width: 680px;
  }

}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 560px) {
  nav {
    padding-right: 18px;
    padding-left: 18px;
  }

  .nav-logo-img {
    height: 27px;
    max-width: 145px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  section {
    padding: 68px 18px;
  }

  .home-hero {
    min-height: 660px;
    padding: 0 18px;
  }

  .home-hero-content {
    padding-top: 125px;
  }

  .home-hero-actions,
  .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero-actions a,
  .page-hero-actions a {
    width: 100%;
  }

  .home-path-card {
    padding: 30px 24px;
  }

  .home-numbers {
    padding: 52px 18px;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .num-item,
  .num-item:first-child,
  .num-item:last-child,
  .num-item:nth-child(odd),
  .num-item:nth-child(even) {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .num-item:last-child {
    border-bottom: 0;
  }

  .page-hero {
    min-height: 620px;
    padding: 0 18px;
  }

  .page-hero-content {
    padding-top: 125px;
  }

  .page-stats {
    padding: 0 18px;
  }

  .page-stats-inner,
  .page-stats-inner--three {
    grid-template-columns: 1fr;
  }

  .page-stat,
  .page-stat:first-child,
  .page-stat:last-child,
  .page-stat:nth-child(odd),
  .page-stat:nth-child(even),
  .page-stats-inner--three .page-stat,
  .page-stats-inner--three .page-stat:first-child,
  .page-stats-inner--three .page-stat:last-child {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .page-stat:last-child,
  .page-stats-inner--three .page-stat:last-child {
    border-bottom: 0;
  }

  .page-stat p {
    max-width: none;
  }

  #derisking {
    padding: 68px 18px;
  }

  .network-people-card,
  .soci-join-card,
  .portfolio-method-card,
  .portfolio-apply-card,
  .venture-network-card,
  .startup-portfolio-card,
  .startup-venture-link-card {
    padding: 30px 24px;
  }

  .network-people-card .btn-ghost,
  .soci-join-card .btn-coral,
  .portfolio-method-card .btn-ghost,
  .portfolio-apply-card .btn-coral,
  .venture-network-card .btn-ghost,
  .startup-portfolio-card .btn-ghost,
  .startup-venture-link-card .btn-ghost {
    width: 100%;
  }

  .network-join,
  .venture-submit,
  .startup-apply {
    padding: 68px 18px;
  }

  .form-panel {
    padding: 30px 22px;
  }

  .f-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .soci-directory,
  .portfolio-directory,
  .news-directory,
  .venture-process,
  .startup-fit,
  .startup-support {
    padding: 68px 18px;
  }

  .soci-grid--directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .soci-grid--directory .socio-card {
    min-height: 220px;
    padding: 26px 12px;
  }

  .soci-grid--directory .socio-avatar {
    width: 82px;
    height: 82px;
    margin-bottom: 18px;
  }

  .soci-grid--directory .socio-name {
    font-size: 1rem;
  }

  .soci-grid--directory .socio-role {
    font-size: 11px;
  }

  .portfolio-grid--directory,
  .news-grid--directory {
    grid-template-columns: 1fr;
  }

  .portfolio-grid--directory .portfolio-card {
    min-height: auto;
    padding: 26px 24px;
  }

  .news-grid--directory .news-body {
    padding: 26px 24px;
  }

  .news-paths {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .news-path-card {
    padding: 28px 24px;
  }

  .venture-step,
  .startup-fit-card,
  .startup-support-card {
    padding: 30px 24px;
  }

  .venture-step-number,
  .startup-fit-number {
    margin-bottom: 22px;
    font-size: 2.8rem;
  }

  .page-hero--soci {
    min-height: 580px;
  }

  .page-hero--portfolio,
  .page-hero--news {
    min-height: 600px;
  }

  .page-hero--venture-studio,
  .page-hero--startup {
    min-height: 610px;
  }

  footer {
    padding: 52px 18px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo-img {
    height: 40px;
    max-width: 190px;
  }

  .home-model {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .home-model-grid {
    gap: 34px;
  }

  .home-model-lead {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .home-model-point {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .home-model-cta {
    width: 100%;
    text-align: center;
  }

}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── FEEDBACK SITO 24/07/2026 ── */

/* Eyebrow ROE Network più visibile solo su Home e Network */
.home-hero .page-kicker,
.page-hero--network .page-kicker {
  font-size: 13px;
  letter-spacing: 0.18em;
}

/* Home: hero e percorsi diventano un unico blocco */
.home-hero {
  display: block;
  min-height: auto;
  padding: 150px 48px 100px;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.home-hero-content {
  width: 100%;
  max-width: 760px;
  padding: 0;
}

.home-hero-content > p {
  margin-bottom: 14px;
}

.home-hero-content > p:last-of-type {
  margin-bottom: 0;
}

.home-hero .home-paths-header {
  max-width: 760px;
  margin: 54px 0 32px;
}

.home-hero .home-paths-header h2 {
  margin-bottom: 0;
  color: var(--white);
  text-align: left;
}

.home-hero .home-hero-actions {
  margin-top: 32px;
}

.home-hero .hero-scroll {
  display: none;
}

/* Uniformità delle fotografie dei soci */
.socio-avatar img {
  filter: grayscale(100%) contrast(1.05);
}

/* Tablet */
@media (max-width: 900px) {
  .home-hero {
    min-height: auto;
    padding: 130px 24px 80px;
  }

  .home-hero-content {
    width: 100%;
    max-width: 680px;
    padding: 0;
  }

  .home-hero .home-paths-header {
    margin-top: 46px;
  }
}

/* Smartphone */
@media (max-width: 560px) {
  .home-hero {
    min-height: auto;
    padding: 110px 18px 68px;
  }

  .home-hero-content {
    padding: 0;
  }

  .home-hero .home-paths-header {
    margin-top: 40px;
    margin-bottom: 26px;
  }

  .home-hero .home-hero-actions {
    margin-top: 28px;
  }
}

/* ── HOME: CHIUSURA ── */
.home-closing {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin: 0;
  padding: 105px 48px;
  background:
    linear-gradient(
      120deg,
      rgba(255, 97, 60, 0.08),
      rgba(255, 255, 255, 0.01) 55%
    ),
    var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-closing::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 96px, var(--content-width));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.14),
    transparent
  );
  content: "";
  transform: translateX(-50%);
}

.home-closing-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.home-closing-copy {
  max-width: 780px;
}

.home-closing-copy h2 {
  margin-bottom: 22px;
  color: var(--white);
}

.home-closing-copy p {
  max-width: 650px;
  font-size: 15px;
}

.home-closing-action {
  flex-shrink: 0;
}

/* Tablet */
@media (max-width: 900px) {
  .home-closing {
    padding: 80px 24px;
  }

  .home-closing::before {
    width: calc(100% - 48px);
  }

  .home-closing-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }
}

/* Smartphone */
@media (max-width: 560px) {
  .home-closing {
    padding: 68px 18px;
  }

  .home-closing::before {
    width: calc(100% - 36px);
  }

  .home-closing-action,
  .home-closing-action .btn-coral {
    width: 100%;
  }
}