/* ===========================================================
   Maritime Ventures — Brand-true stylesheet  v2
   Colors:  Fern Green #008C45 · Light Sand #F2F1EC · Pure White
            Deep Black #020c18 · Flame Scarlet #CD212A · Deep Ocean #0E2647
   Type:    Inter — Light(300) / Regular(400) / Medium(500) /
            Semi(600) / Bold(700) / Extra(800) / Black(900)
   =========================================================== */

:root {
  --green: #1B3A5C;
  --green-deep: #0F2A48;
  --green-soft: rgba(27, 58, 92, 0.10);
  --green-bright: #5B9BD5;
  --flag-green: #008C45;
  --sand: #F2F1EC;
  --sand-soft: #fbfaf5;
  --sand-warm: #ECEBE3;
  --white: #ffffff;
  --black: #020c18;
  --red: #CD212A;
  --red-deep: #a4151d;
  --ocean: #0E2647;
  --ocean-2: #173666;
  --ocean-3: #214A8A;
  --ink: #0f1a1f;
  --muted: #5b6a72;
  --muted-light: #8c9aa0;
  --line: rgba(14, 38, 71, 0.10);
  --line-strong: rgba(14, 38, 71, 0.18);

  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.2,.7,.2,1);
  --shadow-sm: 0 2px 6px rgba(14, 38, 71, .06);
  --shadow-md: 0 12px 32px rgba(14, 38, 71, .10);
  --shadow-lg: 0 30px 80px rgba(14, 38, 71, .18);
  --shadow-xl: 0 50px 120px rgba(14, 38, 71, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  color: var(--ink);
  background: var(--sand-soft);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-modal-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* ============== BRAND COLOR BLOCK — top sliver ============== */
.brand-block {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 5px;
  display: flex;
  z-index: 60;
  pointer-events: none;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.brand-block > span { flex: 1; }
.brand-block__green { background: var(--flag-green); }
.brand-block__white { background: var(--sand); }
.brand-block__red   { background: var(--red); }

/* ============== BRAND BLOCK DIVIDER — between sections ============== */
.block-divider {
  display: flex;
  height: 18px;
  width: 100%;
}
.block-divider > span { flex: 1; }
.block-divider__green { background: var(--flag-green); }
.block-divider__white { background: var(--sand); }
.block-divider__red   { background: var(--red); }

/* ============== LOGO ============== */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo__img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 260px;
}
@media (max-width: 720px) {
  .logo__img { height: 32px; }
}
/* Footer (logo--light) uses the white wordmark which has its own asset */

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  background: var(--sand);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  background: var(--sand);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__links {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  color: var(--ocean);
  position: relative;
  padding: 6px 0;
}
.nav__links a:after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--green);
  transition: right .3s var(--ease);
}
.nav__links a:hover:after { right: 0; }
.nav__cta { margin-left: 4px; }

/* LinkedIn icon in the nav */
.nav__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__social:hover {
  color: var(--ocean);
  background: rgba(0,0,0,0.04);
}

/* Language toggle */
.nav__lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
  background: rgba(0,0,0,0.02);
  margin-right: 6px;
}
.nav__lang button {
  padding: 5px 10px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__lang button:hover { color: var(--ocean); }
.nav__lang button.is-active {
  background: var(--ocean);
  color: var(--white);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ocean);
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(27, 58, 92, .35);
}
.btn--primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 58, 92, .45);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--ocean);
}
.btn--white:hover { background: var(--ocean); color: var(--white); }
.section--sand .btn--ghost,
.program .btn--ghost {
  color: var(--ocean);
  border-color: rgba(14, 38, 71,.25);
}
.btn--small { padding: 10px 16px; font-size: 13px; }
.btn--block { width: 100%; padding: 16px 22px; font-size: 15px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 156px 0 40px;
  background: linear-gradient(160deg, #06122B 0%, var(--ocean) 35%, #1F4178 100%);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* Hero photo backdrop — port at dusk */
.hero__photo {
  position: absolute;
  inset: 0;
  background-image:
    url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=2400&q=80"),
    url("https://images.unsplash.com/photo-1605281317010-fe5ffe798166?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  filter: saturate(0.85) contrast(1.05);
  animation: heroDrift 28s ease-in-out infinite alternate;
}
.hero__photo-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(6, 18, 43,0) 0%, rgba(6, 18, 43,0.55) 60%, rgba(6, 18, 43,0.92) 100%),
    linear-gradient(180deg, rgba(14, 38, 71,0.7) 0%, rgba(6, 18, 43,0.65) 100%);
}
@keyframes heroDrift {
  0%   { transform: scale(1.04) translate3d(0,0,0); }
  100% { transform: scale(1.10) translate3d(-1.5%, 1%, 0); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 70%);
}
.hero__waves {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 60%;
}
.wave {
  transform-origin: 50% 100%;
  animation: wave 14s var(--ease) infinite alternate;
}
.wave--b { animation-duration: 18s; animation-delay: -3s; }
.wave--c { animation-duration: 22s; animation-delay: -7s; }
@keyframes wave {
  0%   { transform: translateY(0)    scaleY(1);    }
  100% { transform: translateY(-10px) scaleY(1.05); }
}
.hero__glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}
.hero__glow--green {
  background: var(--green);
  top: -120px; left: -120px;
}
.hero__glow--red {
  background: var(--green-bright);
  bottom: -180px; right: -120px;
  opacity: 0.32;
}

.hero__inner { position: relative; z-index: 2; }

.hero__flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__flag em { font-style: normal; color: rgba(255,255,255,0.5); text-transform: none; letter-spacing: 0.04em; font-weight: 400; }
.flag {
  display: inline-block;
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.flag--papa { background: var(--flag-green); }
.flag--papa span {
  position: absolute; inset: 5px;
  background: var(--white);
}
.flag--hotel {
  width: 10px;
  background: var(--red);
}

.hero__title {
  font-size: clamp(2.5rem, 6.4vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 28px;
}
.hero__title-accent { display: block; }
.word {
  display: inline-block;
  padding: 0 6px;
  border-radius: 8px;
}
.word--green {
  color: var(--white);
  background: linear-gradient(180deg, transparent 60%, rgba(91,155,213,0.55) 60%);
}
.word--red {
  color: var(--white);
  background: linear-gradient(180deg, transparent 60%, rgba(27,58,92,0.70) 60%);
}

.hero__sub {
  max-width: 680px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  margin: 0 0 36px;
  line-height: 1.65;
}
.hero__sub strong { color: var(--white); font-weight: 500; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 880px;
}
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat__value {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  min-height: clamp(2rem, 3.6vw, 3.2rem);
}
.stat__num {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  display: inline-block;
}
.stat__unit, .stat__plus {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-bright);
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-top: 0;
}

/* ============== TICKER ============== */
/* ============== MISSION ============== */
.mission {
  position: relative;
  padding: 64px 0 72px;
  background: linear-gradient(180deg, #06122B 0%, var(--ocean) 100%);
  color: var(--white);
}
.mission__inner {
  max-width: 880px;
  margin: 0;
}
.mission__quote {
  margin: 22px 0 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255,255,255,0.96);
  letter-spacing: -0.012em;
}
.mission__quote p + p {
  margin-top: 16px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0;
}
.mission__quote em {
  font-style: normal;
  color: var(--green-bright);
  font-weight: 600;
}

/* ============== TICKER ============== */
.ticker {
  background: var(--ocean);
  color: rgba(255,255,255,0.85);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.ticker__track {
  display: inline-flex;
  gap: 38px;
  white-space: nowrap;
  animation: tick 38s linear infinite;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
}
.ticker__track span:nth-child(odd) { color: var(--green-bright); }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== SECTIONS ============== */
.section {
  padding: 80px 0;
  position: relative;
}
.section--sand { background: var(--sand); }
.section--ocean {
  background: linear-gradient(180deg, var(--ocean) 0%, #06122B 100%);
  color: var(--white);
}

.section__head {
  max-width: 760px;
  margin: 0 0 64px;
}
.section__head--light .section__title { color: var(--white); }
.section__head--light .section__lead { color: rgba(255,255,255,0.75); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 18px;
}
.eyebrow i {
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--ocean);
}
.eyebrow--light { color: var(--green-bright); }
.eyebrow--light i { background: var(--green-bright); }

.section__title {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ocean);
}
.section__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--green);
  position: relative;
}
.section__title em:before {
  content: "";
  position: absolute;
  left: -2px; right: -4px; bottom: 6px;
  height: 10px;
  background: rgba(27, 58, 92, 0.18);
  z-index: -1;
}
.section__head--light .section__title em,
.section--ocean .section__title em { color: var(--green-bright); }
.section__head--light .section__title em:before,
.section--ocean .section__title em:before { background: rgba(91, 155, 213, 0.18); }
.section__lead {
  font-size: clamp(1rem, 1.3vw, 1.13rem);
  font-weight: 300;
  color: var(--muted);
}
.section__lead strong { color: var(--ocean); font-weight: 500; }
.section__head--light .section__lead strong { color: var(--white); }

/* ============== PROGRAM — HORIZONTAL JOURNEY ============== */
.journey {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 38px 38px 0;
  box-shadow: 0 30px 80px rgba(14, 38, 71,.06);
  overflow: hidden;
}
.journey__track {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 0;
  margin-bottom: 38px;
  position: relative;
}
.j-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  cursor: pointer;
  background: none;
  color: var(--ocean);
  position: relative;
  transition: transform .25s var(--ease);
  min-width: 100px;
}
.j-step:hover { transform: translateY(-2px); }
.j-step__dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line-strong);
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: all .35s var(--ease);
  position: relative;
}
.j-step__dot i {
  display: block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: all .35s var(--ease);
}
.j-step__dot--ship i { border-radius: 3px; }
.j-step.is-active .j-step__dot {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 8px rgba(91, 155, 213, 0.22);
  transform: scale(1.08);
}
.j-step.is-active .j-step__dot i {
  background: var(--white);
  width: 12px; height: 12px;
}
.j-step.is-done .j-step__dot {
  background: var(--ocean);
  border-color: var(--ocean);
}
.j-step.is-done .j-step__dot i { background: var(--green-bright); }

.j-step__num {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--muted-light);
}
.j-step.is-active .j-step__num { color: var(--green); }

.j-step__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.j-step.is-active .j-step__label { color: var(--ocean); }

.j-step__count {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.j-track-line {
  height: 2px;
  background: var(--line-strong);
  align-self: center;
  margin: 0 4px;
  position: relative;
  top: -24px;
  border-radius: 2px;
  overflow: hidden;
}
.j-track-fill {
  display: block;
  height: 100%;
  background: var(--green);
  width: 0;
  transition: width .6s var(--ease);
}

.journey__panels {
  position: relative;
  border-top: 1px solid var(--line);
  margin: 0 -38px;
  padding: 36px 38px 38px;
  background: linear-gradient(180deg, var(--sand-soft) 0%, var(--white) 100%);
  min-height: 320px;
}
.j-panel {
  display: none;
  grid-template-columns: 1.4fr 1fr;
  gap: 44px;
  align-items: start;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.j-panel.is-active {
  display: grid;
  opacity: 1;
  transform: none;
}
.j-panel__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}
.j-panel__meta h3 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ocean);
  line-height: 1.1;
}
.j-panel__meta p {
  margin: 0 0 18px;
  font-size: 15.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.62;
  max-width: 540px;
}
.j-panel__bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ocean);
}
.j-panel__bullets li {
  position: relative;
  padding-left: 22px;
  font-weight: 400;
}
.j-panel__bullets li:before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 2px;
  background: var(--green);
}
.j-panel__bullets strong { font-weight: 600; color: var(--ocean); }

.j-panel__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: start;
}
.j-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.j-stat strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--ocean);
  letter-spacing: -0.025em;
  line-height: 1;
}
.j-stat span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.j-stat--ghost {
  background: var(--sand);
  border-color: transparent;
}
.j-stat--ghost strong { color: var(--muted); }

.j-progress {
  grid-column: span 2;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--ocean);
  color: var(--white);
}
.j-progress__bar {
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.j-progress__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  border-radius: 999px;
  transition: width .8s var(--ease);
}
.j-progress__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* ============== SECTORS ============== */
.focus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.focus__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  color: var(--ocean);
  overflow: hidden;
}
.focus__card:after {
  content: "";
  position: absolute;
  inset: auto -30% -50% auto;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(27, 58, 92,0.10), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.focus__card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 58, 92,0.4);
  box-shadow: var(--shadow-md);
}
.focus__card:hover:after { opacity: 1; }
.focus__num {
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--green);
}
.focus__upcoming {
  display: inline-flex;
  align-self: flex-start;
  margin: 4px 0 -2px;
  padding: 4px 9px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(27, 58, 92,0.18);
  border-radius: 999px;
}
.focus__card--accent .focus__upcoming {
  color: var(--white);
  background: rgba(27, 58, 92,0.4);
}
.focus__icon {
  width: 36px; height: 36px;
  color: var(--ocean);
  margin: 2px 0 2px;
}
.focus__card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.focus__card p { margin: 0; color: var(--muted); font-weight: 300; font-size: 14px; line-height: 1.4; }
.focus__card ul {
  margin: 6px 0 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 2px;
  font-size: 13px;
  color: var(--ocean);
  font-weight: 500;
}
.focus__card ul li {
  padding-left: 18px;
  position: relative;
}
.focus__card ul li:before {
  content: "";
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 2px;
  position: absolute; left: 0; top: 9px;
}
.focus__card--accent {
  background: var(--ocean);
  color: var(--white);
  border-color: transparent;
}
.focus__card--accent h3 { color: var(--white); }
.focus__card--accent p { color: rgba(255,255,255,0.7); }
.focus__card--accent .focus__icon { color: var(--green-bright); }
.focus__card--accent ul { color: rgba(255,255,255,0.85); }
.focus__card--accent ul li:before { background: var(--green-bright); }
.focus__card--accent .focus__num { color: var(--green-bright); }
.focus__card--cta {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
  border-color: transparent;
  justify-content: center;
}
.focus__card--cta h3 {
  color: var(--white);
  font-size: 26px;
  line-height: 1.1;
}
.focus__card--cta p { color: rgba(255,255,255,0.85); }

/* ============== PORTFOLIO ============== */
.portfolio__filters {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ocean);
  letter-spacing: 0.02em;
  transition: all .25s var(--ease);
  cursor: pointer;
}
.filter-btn span { font-weight: 500; opacity: 0.6; margin-left: 4px; }
.filter-btn:hover { border-color: var(--ocean); }
.filter-btn.is-active {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}
.filter-btn.is-active span { opacity: 0.8; }

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.venture {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.venture:before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent, var(--ocean));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.venture:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.venture:hover:before { transform: scaleX(1); }
.venture.is-hidden { display: none; }

.venture__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.venture__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.venture__badge em { font-style: normal; color: #020c18; background: #fff; padding: 0 3px; margin-left: 2px; border-radius: 3px; }
.venture__brand {
  display: block;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
}
.venture__tag {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.venture h3 {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ocean);
}
.venture > p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.55;
}
.venture__bullets {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 13.5px;
  color: var(--ocean);
  font-weight: 500;
}
.venture__bullets li {
  padding-left: 16px;
  position: relative;
}
.venture__bullets li:before {
  content: "";
  width: 5px; height: 5px;
  background: var(--accent, var(--green));
  border-radius: 50%;
  position: absolute; left: 0; top: 9px;
}
.venture__foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.founder {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
}
.founder__avatar {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  flex: 0 0 38px;
  aspect-ratio: 1 / 1;
}
.founder strong { display: block; color: var(--ocean); font-weight: 700; }
.founder em {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  color: var(--muted);
}
.venture__status {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.venture__status--live { color: var(--green-deep); }
.venture__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ocean);
  opacity: 0.6;
  transition: opacity .3s var(--ease), gap .3s var(--ease);
  margin-top: 8px;
}
.venture:hover .venture__cta { opacity: 1; gap: 8px; color: var(--green-deep); }

.venture--ghost {
  background: repeating-linear-gradient(
    -45deg,
    rgba(14, 38, 71, 0.04) 0 10px,
    transparent 10px 20px
  );
  border-style: dashed;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  cursor: default;
}
.venture--ghost:hover { transform: none; box-shadow: none; }
.venture--ghost:hover:before { transform: scaleX(0); }
.venture__ghost {
  text-align: center;
  color: var(--muted);
}
.venture__ghost span {
  display: block;
  font-size: 64px;
  font-weight: 800;
  color: var(--ocean);
  line-height: 1;
}
.venture__ghost p {
  margin: 8px 0 4px;
  color: var(--ocean);
  font-weight: 600;
}
.venture__ghost small {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============== NETWORK ============== */
.network__groups {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.net-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.net-group__label {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-bright);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.net-group__label::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--green-bright);
  display: inline-block;
}
.net-group__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.net-group__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.net-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.net-partners .logo-chip {
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
}
.net-partners .logo-chip img { height: 26px; max-width: 110px; }
.net-partners .logo-chip--color img { height: 30px; }
.net-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.net-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--green-bright);
  transform: translateY(-4px);
}
.net-card__role {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-bright);
  padding: 5px 10px;
  background: rgba(91, 155, 213, 0.14);
  border-radius: 999px;
}
.net-card h3 {
  margin: 6px 0 4px;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
}
.net-card p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 300;
}
.net-card__logos {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  min-height: 64px;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  line-height: 1;
  transition: color .2s var(--ease), opacity .2s var(--ease);
}
.logo-chip:hover {
  color: #fff;
}
.logo-chip img {
  width: auto;
  height: 34px;
  max-width: 150px;
  object-fit: contain;
  background: transparent;
  filter: brightness(0) invert(1);
  opacity: 0.82;
  transition: opacity .2s var(--ease);
}
.logo-chip:hover img {
  opacity: 1;
}
.logo-chip__img--err {
  display: none;
}
.logo-chip--wordmark img {
  height: 36px;
  max-width: 180px;
}
.logo-chip--mark img {
  height: 56px;
  max-width: 120px;
}
.net-card__logos .logo-chip--mark:only-child img {
  height: 88px;
  max-width: 200px;
}
.logo-chip--text {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-feature-settings: "tnum" 1;
}
.logo-chip--text:hover { color: #fff; }
/* Color variant: keep the logo's original colors (for coats of arms /
   complex marks that don't reduce well to white silhouettes). Logo
   sits on a small white plate so colored marks have legible contrast
   against the dark ocean section background. */
.logo-chip--color img {
  filter: none;
  opacity: 1;
  background: #fff;
  padding: 3px 5px;
  border-radius: 4px;
}
.logo-chip--color:hover img { opacity: 1; }

.network__ribbon {
  margin-top: 56px;
  padding: 32px 32px 34px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
}
.ribbon__label {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-bright);
}
.ribbon__items {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
}
/* Chips render as quiet glass tiles that match the network cards above —
   no bright white pill against the ocean section. */
.ribbon__items .logo-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.ribbon__items .logo-chip:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(27, 58, 92,0.55);
  transform: translateY(-2px);
}
/* Default mono treatment: render the mark as a clean white silhouette. */
.ribbon__items .logo-chip img {
  height: 28px;
  width: auto;
  max-width: 56px;
  object-fit: contain;
  opacity: 0.92;
  filter: brightness(0) invert(1);
  background: transparent;
  padding: 0;
}
.ribbon__items .logo-chip:hover img { opacity: 1; }
.ribbon__items .logo-chip span {
  white-space: nowrap;
  line-height: 1.2;
}
/* Color shields and heraldic marks keep their original colors on a
   small white plate so they stay legible on the dark chip. */
.ribbon__items .logo-chip--color img {
  filter: none;
  opacity: 1;
  background: #fff;
  padding: 3px 5px;
  border-radius: 4px;
}

/* ============== BLOG ============== */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.post {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
  text-align: left;
  width: 100%;
  overflow: hidden;
}
.post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.post__img {
  display: block;
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--ocean);
  transition: transform .6s var(--ease);
}
.post:hover .post__img { transform: scale(1.04); }
.post__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.post--has-img .post__tag { margin-top: 0; }
.post:not(.post--has-img) .post__body { padding: 28px; }
.post__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ocean);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.post h3 {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ocean);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.post p { margin: 0; color: var(--muted); font-size: 14.5px; font-weight: 300; }
.post footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.post--feature {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-3));
  color: var(--white);
  border-color: transparent;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
}
.post--feature .post__img {
  height: 100%;
  min-height: 280px;
  order: 2;
}
.post--feature .post__body { padding: 36px 36px 32px; order: 1; }
.post--feature h3, .post--feature .post__tag { color: var(--white); }
.post--feature .post__tag { background: rgba(255,255,255,0.15); }
.post--feature .post__kicker { color: var(--green-bright); }
.post--feature .post__venture { color: var(--green-bright); background: rgba(91, 155, 213, 0.18); }
.post--feature p { color: rgba(255,255,255,0.78); }
.post--feature footer { color: rgba(255,255,255,0.6); border-top-color: rgba(255,255,255,0.15); }
.post--feature h3 { font-size: 26px; line-height: 1.15; }

/* ============== BLOG TOOLBAR ============== */
.blog__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: -32px 0 32px;
  flex-wrap: wrap;
}
.blog__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ocean);
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.blog-filter-btn:hover { border-color: var(--green); }
.blog-filter-btn.is-active {
  background: var(--ocean);
  border-color: var(--ocean);
  color: var(--white);
}
.blog-filter-btn.is-active .blog-filter-btn__count { color: rgba(255,255,255,0.7); }
.blog-filter-btn__count {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.blog__sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
}
.blog__sort-label { font-weight: 500; }
.blog__sort-sep { opacity: 0.4; }
.blog-sort-btn {
  padding: 4px 10px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.blog-sort-btn:hover { color: var(--ocean); }
.blog-sort-btn.is-active {
  background: var(--sand);
  color: var(--ocean);
}

/* ============== PRESS CARD VARIANT ============== */
.post__kicker {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.post__venture {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ocean);
  padding: 3px 8px;
  background: rgba(27, 58, 92,0.1);
  border-radius: 999px;
}
.post--press {
  text-decoration: none;
}
.post--press .post__img {
  height: 150px;
}
.post--press .post__body {
  padding: 20px 22px 20px;
  gap: 10px;
}
.post--press h3 {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}
.post--press p {
  font-size: 13.5px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post--press footer {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  align-items: center;
  flex-wrap: wrap;
}
.post__ext {
  margin-left: auto;
  color: var(--green);
  font-weight: 700;
}

/* ============== BLOG LOAD MORE ============== */
.blog__loadmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.blog__loadmore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ocean);
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.blog__loadmore:hover {
  border-color: var(--green);
  background: var(--sand);
  transform: translateY(-1px);
}
.blog__loadmore-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  padding: 3px 9px;
  background: rgba(27, 58, 92,0.1);
  border-radius: 999px;
  letter-spacing: 0;
}

/* ============== EIR PROGRAMME ============== */
.eirp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.eirp__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.eirp__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.eirp__num {
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--green);
}
.eirp__card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ocean);
}
.eirp__card > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
}
.eirp__card ul {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ocean);
}
.eirp__card ul li {
  position: relative;
  padding-left: 18px;
  line-height: 1.45;
}
.eirp__card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 2px;
  background: var(--green);
}
.eirp__card--accent {
  background: linear-gradient(135deg, var(--ocean) 0%, #06122B 100%);
  border-color: transparent;
  color: var(--white);
}
.eirp__card--accent h3 { color: var(--white); }
.eirp__card--accent > p { color: rgba(255,255,255,0.78); }
.eirp__card--accent ul { color: rgba(255,255,255,0.92); }
.eirp__card--accent ul li::before { background: var(--green); }
.eirp__card--accent .eirp__num { color: #4ade80; }

.eirp__cta {
  margin: 36px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.eirp__cta p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}
.eirp__cta strong { color: var(--ocean); font-weight: 600; }

@media (max-width: 880px) {
  .eirp__grid { grid-template-columns: 1fr; }
  .eirp__card { padding: 26px; }
  .eirp__cta { flex-direction: column; align-items: flex-start; }
}

/* ============== JOIN ============== */
.join__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}
.join__copy .section__title { color: var(--white); }
.join__copy .section__lead { color: rgba(255,255,255,0.78); }
.join__copy .section__lead strong { color: var(--white); font-weight: 600; }
.join__list {
  list-style: none;
  margin: 28px 0 32px; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
  color: rgba(255,255,255,0.78);
}
.join__list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  font-weight: 300;
}
.join__list li:before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 2px;
  background: var(--green-bright);
}
.join__list strong { color: var(--white); font-weight: 500; }

.join__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.join-card {
  display: block;
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 18px 18px;
  text-align: left;
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.join-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--green);
  transform: translateY(-3px);
}
.join-card__flag {
  display: block;
  width: 28px; height: 18px;
  margin-bottom: 14px;
  border-radius: 2px;
}
.join-card strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.join-card span:not(.join-card__flag) {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

.join__panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 38px 36px;
  color: var(--ocean);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.join__panel-flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.join__panel h3 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.join__panel ul {
  list-style: none;
  margin: 0 0 28px; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 300;
}
.join__panel ul li {
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.join__panel ul li:before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--green);
  position: absolute; left: 0; top: 8px;
}
.join__panel strong { color: var(--ocean); font-weight: 600; }
.join__panel-eir-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: rgba(11,31,42,0.55);
  line-height: 1.5;
}
.join__panel-eir-note a {
  color: var(--ocean);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.join__panel-eir-note a:hover { color: var(--green); }

/* ============== FOOTER ============== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer__brand p {
  margin: 18px 0 24px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}
.footer__legal-block {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
}
.footer__legal-block strong {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 880px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
.footer__cols h4 {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-bright);
  font-weight: 700;
}
.footer__cols a, .footer__link {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  transition: color .2s var(--ease);
  text-align: left;
  cursor: pointer;
}
.footer__cols a:hover, .footer__link:hover { color: var(--green-bright); }

/* Footer legal row — Privacy / Cookies / Cookie Settings */
.footer__legal {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.footer__legal a,
.footer__legal-link {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color .2s var(--ease);
}
.footer__legal a:hover,
.footer__legal-link:hover { color: #fff; }

/* ============== LEGAL PAGE (cookies.html, etc.) ============== */
.legal {
  padding-top: 140px;
  padding-bottom: 100px;
}
.legal__head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: left;
}
.legal__head .section__title { font-size: clamp(2rem, 4vw, 3rem); }
.legal__meta {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.legal__body {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ocean);
  font-size: 16px;
  line-height: 1.7;
}
/* Language-specific blocks inside legal pages: show only the matching lang. */
.legal__body .legal__lang { display: none; }
html[lang="en"] .legal__body .legal__lang[lang="en"],
html[lang="it"] .legal__body .legal__lang[lang="it"] { display: block; }
/* Defensive fallback: if html[lang] is missing, show the EN block. */
html:not([lang="en"]):not([lang="it"]) .legal__body .legal__lang[lang="en"] { display: block; }
.legal__body h2 {
  margin: 40px 0 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.legal__body h3 {
  margin: 28px 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ocean);
}
.legal__body h4 {
  margin: 20px 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ocean);
  letter-spacing: 0;
}
.legal__body p { margin: 0 0 14px; color: var(--muted); }
.legal__body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13.5px;
  background: rgba(14, 38, 71, 0.06);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--ocean);
}
.legal__body ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: var(--muted);
}
.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.legal__table th,
.legal__table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  vertical-align: top;
  text-align: left;
}
.legal__table th {
  background: rgba(14, 38, 71, 0.04);
  color: var(--ocean);
  font-weight: 600;
}
.legal__table code { font-size: 12.5px; }
@media (max-width: 720px) {
  .legal__table,
  .legal__table thead,
  .legal__table tbody,
  .legal__table tr,
  .legal__table th,
  .legal__table td { display: block; }
  .legal__table thead { display: none; }
  .legal__table tr {
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
  }
  .legal__table td {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 8px 12px;
  }
  .legal__table td:last-child { border-bottom: 0; }
}
.legal__body ul li { margin-bottom: 6px; }
.legal__body a { color: var(--green); text-decoration: underline; }
.legal__back {
  max-width: 760px;
  margin: 48px auto 0;
}
.legal__back a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.legal__back a:hover { text-decoration: underline; }

/* ============== COOKIE BANNER ============== */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 70;
  max-width: 380px;
  pointer-events: auto;
  animation: cookieIn .35s var(--ease);
}
.cookie-banner[hidden] { display: none; }
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__card {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  color: var(--ocean);
}
.cookie-banner__card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.cookie-banner__card p {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}
.cookie-banner__card p a {
  color: var(--green);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-banner__actions .btn {
  flex: 1;
  justify-content: center;
}
/* Ghost button defaults to white-on-dark for hero contexts; force dark-on-sand
   inside the cookie banner card so "Reject" is readable on the light surface. */
.cookie-banner__actions .btn--ghost {
  color: var(--ocean);
  border-color: rgba(14, 38, 71, 0.25);
}
.cookie-banner__actions .btn--ghost:hover {
  background: rgba(14, 38, 71, 0.06);
  border-color: var(--ocean);
}
@media (max-width: 600px) {
  .cookie-banner { left: 16px; right: 16px; max-width: none; }
}

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.footer__flag {
  display: inline-flex;
  border-radius: 4px;
  overflow: hidden;
}
.footer__flag i {
  display: inline-block;
  width: 12px; height: 18px;
}
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter__row {
  display: flex;
  gap: 8px;
}
.newsletter--footer input {
  flex: 1;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: inherit;
  font-size: 13.5px;
}
.newsletter--footer input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter--footer input:focus { outline: none; border-color: var(--green-bright); }

/* ============== MODAL ============== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 24, 0.74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.modal__panel {
  position: relative;
  background: var(--white);
  width: min(960px, 100%);
  max-height: 88vh;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.98);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.modal.is-open .modal__panel { transform: none; }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 5;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ocean);
  font-size: 22px;
  font-weight: 500;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
  line-height: 1;
}
.modal__close:hover { background: var(--ocean); color: var(--white); transform: rotate(90deg); }
.modal__body { overflow-y: auto; }

/* ---- Venture detail layout inside modal ---- */
.vd { display: flex; flex-direction: column; }
.vd__head {
  padding: 40px 44px 32px;
  background: linear-gradient(135deg, var(--accent), color-mix(in oklab, var(--accent) 80%, #000));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.vd__head:before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.vd__head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.vd__badge {
  display: inline-flex;
  padding: 7px 14px;
  font-weight: 800;
  font-size: 16px;
  background: rgba(0,0,0,0.25);
  border-radius: 8px;
}
.vd__visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.vd__visit:hover {
  background: var(--white);
  color: var(--ocean);
  border-color: var(--white);
  transform: translateY(-1px);
}
.vd__tag--link {
  background: rgba(255,255,255,0.22) !important;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.vd__tag--link:hover { background: var(--white) !important; color: var(--ocean); }
.vd__cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn--dark {
  border-color: var(--line-strong);
  color: var(--ocean);
  background: transparent;
}
.btn--dark:hover {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}
.vd__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.1;
}
.vd__sub {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  font-weight: 300;
}
.vd__tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 18px;
}
.vd__tag {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
}

.vd__body { padding: 36px 44px 0; }
.vd__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 28px;
}
.vd__row h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 10px;
}
.vd__row p, .vd__row li {
  font-weight: 400;
  line-height: 1.62;
  color: var(--ink);
  font-size: 14.5px;
}
.vd__row ul {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.vd__row ul li {
  padding-left: 18px;
  position: relative;
}
.vd__row ul li:before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 2px;
  background: var(--accent, var(--green));
  position: absolute; left: 0; top: 9px;
}

.vd__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 22px;
}
.vd__stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--ocean);
  letter-spacing: -0.02em;
}
.vd__stat span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.vd__founder {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--sand), var(--sand-warm));
  border-radius: var(--radius);
  margin: 28px 0 8px;
}
.vd__founder .founder__avatar { width: 54px; height: 54px; flex: 0 0 54px; font-size: 16px; }
.vd__founder p { margin: 0; font-size: 14px; color: var(--muted); }
.vd__founder strong { font-size: 16px; color: var(--ocean); }

.vd__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 44px 36px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
  background: var(--sand-soft);
  align-items: center;
}
.vd__cta-copy { flex: 1; min-width: 240px; }
.vd__cta-copy strong { color: var(--ocean); font-weight: 600; }
.vd__cta-copy p { margin: 4px 0 0; font-size: 13.5px; color: var(--muted); font-weight: 300; }

/* ---- Post detail ---- */
.pd { padding: 0; }
.pd__hero {
  margin: 0;
  background: var(--ocean);
  position: relative;
  overflow: hidden;
}
.pd__hero img {
  display: block;
  width: 100%;
  height: clamp(220px, 36vw, 380px);
  object-fit: cover;
}
.pd__hero figcaption {
  position: absolute;
  bottom: 12px; left: 16px;
  padding: 6px 10px;
  background: rgba(2, 12, 24,0.7);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.pd__inner { padding: 44px 56px 48px; }
.pd__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 600;
  font-size: 14px;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.pd__link:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.pd__tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.pd h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ocean);
  margin: 0 0 18px;
}
.pd__meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.pd__body p {
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink);
  font-weight: 400;
  margin: 0 0 16px;
}
.pd__body p:first-of-type::first-letter {
  font-weight: 800;
  font-size: 3.4em;
  float: left;
  line-height: 0.9;
  margin: 6px 10px 0 0;
  color: var(--green);
}
.pd__body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ocean);
  margin: 28px 0 10px;
}
.pd__body blockquote {
  margin: 24px 0;
  padding: 18px 24px;
  border-left: 3px solid var(--green);
  background: var(--sand);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 15.5px;
  color: var(--ocean);
}

/* ---- EiR application form ---- */
.eir { padding: 0; }
.eir__head {
  padding: 32px 44px 28px;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-3));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.eir__head:before {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(27, 58, 92,0.3), transparent 70%);
}
.eir__head h2 {
  margin: 8px 0 6px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.eir__head p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  font-weight: 300;
}
.eir__head .vd__tag { background: rgba(27, 58, 92,0.4); }

.eir__steps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.eir__step { display: inline-flex; align-items: center; gap: 6px; }
.eir__step b {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 11.5px;
  color: rgba(255,255,255,0.8);
}
.eir__step.is-active b { background: var(--green); color: var(--white); }
.eir__step.is-active { color: var(--white); }
.eir__step + .eir__step:before {
  content: "";
  width: 24px; height: 1px;
  background: rgba(255,255,255,0.18);
  margin-right: 6px;
}

.eir__form {
  padding: 28px 44px 32px;
  display: flex; flex-direction: column;
  gap: 16px;
}
.eir__panel { display: none; flex-direction: column; gap: 16px; }
.eir__panel.is-active { display: flex; }
.eir__field {
  display: flex; flex-direction: column;
  gap: 6px;
}
.eir__field > span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ocean);
}
.eir__field input,
.eir__field textarea,
.eir__field select {
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: var(--sand-soft);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.eir__field input:focus,
.eir__field textarea:focus,
.eir__field select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.eir__roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* Multi-select industry checkboxes (Step 3) */
.eir__checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}
.eir__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ocean);
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background .15s var(--ease);
}
.eir__check:hover { background: rgba(14, 38, 71,0.04); }
.eir__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
  flex: 0 0 18px;
  cursor: pointer;
}
.eir__check span { flex: 1; }
.eir__check span a {
  color: var(--green);
  text-decoration: underline;
}
.eir__check span a:hover { color: #4ade80; }
.eir__field--terms {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.eir__check--inline {
  padding: 4px 8px;
  font-size: 13.5px;
}
.eir__role {
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  background: var(--white);
  display: flex; align-items: center; gap: 12px;
  transition: all .2s var(--ease);
}
.eir__role:hover { border-color: var(--green); }
.eir__role.is-selected {
  border-color: var(--green);
  background: var(--green-soft);
}
.eir__role-flag { display: block; width: 24px; height: 16px; border-radius: 2px; flex-shrink: 0; }
.eir__role strong { display: block; font-size: 14.5px; color: var(--ocean); font-weight: 600; }
.eir__role span { font-size: 12px; color: var(--muted); font-weight: 300; }

.eir__nav {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  gap: 12px;
}
.eir__back {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 14px 18px;
}
.eir__back:hover { color: var(--ocean); }
.eir__context {
  margin: 0 0 8px;
  padding: 10px 14px;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
}
.eir__context strong { font-weight: 700; }
.eir__success {
  padding: 60px 44px;
  text-align: center;
  display: none;
}
.eir__success.is-active { display: block; }
.eir__success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 32px;
  display: inline-flex;
  align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.eir__success h3 { margin: 0 0 8px; font-size: 26px; color: var(--ocean); font-weight: 800; }
.eir__success p { margin: 0 auto; max-width: 420px; color: var(--muted); font-weight: 300; }

/* ============== PHOTO STRIP — between sections ============== */
.photo-strip {
  position: relative;
  min-height: 360px;
  background-image: url("https://images.unsplash.com/photo-1577017040065-650ee4d43339?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.photo-strip--port {
  background-image: url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=2400&q=80"),
                    url("https://images.unsplash.com/photo-1577017040065-650ee4d43339?auto=format&fit=crop&w=2400&q=80");
}
.photo-strip__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 12, 24,0.94) 0%, rgba(14, 38, 71,0.82) 55%, rgba(14, 38, 71,0.65) 100%);
}
.photo-strip__inner {
  position: relative;
  padding: 80px 0;
}
.photo-strip__kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.photo-strip__quote {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 920px;
  color: var(--white);
}
.photo-strip__quote em {
  font-style: normal;
  color: #4ade80;
  font-weight: 600;
}

/* ============== MARKET ============== */
.market { position: relative; }
.market__inner { position: relative; z-index: 1; }

.market__head {
  max-width: 820px;
  margin: 0 0 56px;
  text-align: left;
}
.market__head .section__title {
  color: var(--ocean);
  margin: 14px 0 18px;
}
.market__head .section__title em {
  font-style: normal;
  color: var(--ocean);
  font-weight: 700;
}
.market__head .section__lead {
  color: rgba(14, 38, 71, 0.74);
  max-width: 680px;
  margin: 0;
}

.market__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.market__card {
  position: relative;
  padding: 36px 32px 34px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(14, 38, 71, 0.10);
  box-shadow: 0 1px 2px rgba(14, 38, 71,0.04), 0 8px 28px rgba(14, 38, 71,0.04);
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 280px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.market__card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 38, 71, 0.22);
  box-shadow: 0 1px 2px rgba(14, 38, 71,0.05), 0 18px 38px rgba(14, 38, 71,0.10);
}
.market__stat { display: flex; flex-direction: column; gap: 4px; }
.market__num {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ocean);
}
.market__label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ocean);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.market__card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(14, 38, 71, 0.72);
}

.market__quote {
  max-width: 920px;
  margin: 0;
  text-align: left;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ocean);
  padding: 32px 0 0;
  border-top: 1px solid rgba(14, 38, 71, 0.12);
}
.market__quote em {
  font-style: normal;
  color: var(--green);
  font-weight: 600;
}

@media (max-width: 960px) {
  .market__grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
  .market__card { min-height: 0; padding: 30px 26px; }
}

/* Network section — photo backdrop */
.network { position: relative; overflow: hidden; }
.network .container { position: relative; z-index: 2; }
.network__photo {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1518709268805-4e9042af2176?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(0.7);
}
.network__photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ocean) 0%, rgba(14, 38, 71,0.55) 40%, var(--ocean) 100%);
}

/* Join section — photo backdrop */
.join { position: relative; overflow: hidden; }
.join .container { position: relative; z-index: 2; }
.join__photo {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1502920917128-1aa500764cbd?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.join__photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 38, 71,0.7) 0%, rgba(2,12,24,0.82) 100%);
}

/* ============== NEWSLETTER "BRIEF" CARD ============== */
.brief {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 38px 44px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: var(--white);
  box-shadow: 0 30px 80px rgba(27, 58, 92,.22);
  position: relative;
  overflow: hidden;
}
.brief:before, .brief:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.brief:before {
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.18);
  top: -120px; right: -60px;
}
.brief:after {
  width: 220px; height: 220px;
  background: rgba(205,33,42,0.25);
  bottom: -100px; left: -40px;
}
.brief__copy { position: relative; z-index: 2; }
.brief__kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  padding: 6px 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  margin-bottom: 12px;
}
.brief__copy h3 {
  margin: 0 0 6px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.brief__copy p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}
.brief__form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brief__form-pill {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  transition: background .25s var(--ease);
}
.brief__form-pill:focus-within { background: rgba(255,255,255,0.28); }
.brief__form-pill input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--white);
  min-width: 0;
}
.brief__form-pill input::placeholder { color: rgba(255,255,255,0.7); }
.brief__form-pill input:focus { outline: none; }
.brief__form-pill .btn--primary {
  background: var(--white);
  color: var(--green-deep);
  box-shadow: none;
}
.brief__form-pill .btn--primary:hover {
  background: var(--ocean);
  color: var(--white);
}
.brief__form.is-sent .brief__form-pill .btn--primary {
  background: var(--ocean);
  color: var(--white);
}

/* ============== NEWSLETTER NOTICE (inline consent line under signup) ============== */
.brief__form .newsletter__notice,
.newsletter .newsletter__notice {
  margin: 0;
  padding: 0 4px;
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}
.brief__form .newsletter__notice a,
.newsletter .newsletter__notice a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.brief__form .newsletter__notice a:hover,
.newsletter .newsletter__notice a:hover { color: var(--white); }

/* ============== REVEAL ANIMATION ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .focus__grid,
  .portfolio__grid,
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
  .post--feature { grid-column: span 2; }
  .net-group__grid,
  .net-group__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .join__inner { grid-template-columns: 1fr; gap: 36px; }
  .funnel__stage { width: 100% !important; grid-template-columns: 1fr; }
  .funnel__shape { height: 70px; }
  .vd__row { grid-template-columns: 1fr; gap: 20px; }

  /* Journey responsive */
  .journey { padding: 28px 24px 0; }
  .journey__track {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 24px;
  }
  .j-track-line { display: none; }
  .j-step { flex-direction: row; gap: 14px; padding: 10px 6px; }
  .j-step__num, .j-step__count { flex-shrink: 0; }
  .j-step__label { flex: 1; text-align: left; }
  .journey__panels { margin: 0 -24px; padding: 28px 24px; }
  .j-panel.is-active { grid-template-columns: 1fr; gap: 24px; }
  .photo-strip { background-attachment: scroll; min-height: 280px; }
  .photo-strip__inner { padding: 60px 0; }
  .brief { grid-template-columns: 1fr; padding: 28px; gap: 20px; }
}

@media (max-width: 720px) {
  .brief__form { flex-direction: column; border-radius: 18px; }
  .brief__form .btn--primary { width: 100%; }
  .j-step { padding: 8px 4px; }
  .j-step__label { font-size: 13px; }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__cta { display: inline-flex; margin: 12px 24px 0; }
  .hero { padding-top: 84px; min-height: auto; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .focus__grid,
  .portfolio__grid,
  .blog__grid,
  .net-group__grid,
  .net-group__grid--4,
  .join__cards { grid-template-columns: 1fr; }
  .post--feature { grid-column: span 1; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .section__title { font-size: 2rem; }
  .ribbon__items { gap: 8px; }
  .ribbon__items .logo-chip { padding: 8px 14px 8px 10px; font-size: 13px; gap: 10px; }
  .ribbon__items .logo-chip img { height: 22px; max-width: 44px; }
  .vd__head, .vd__body, .vd__cta, .eir__head, .eir__form, .pd__inner { padding-left: 24px; padding-right: 24px; }
  .post--feature { grid-template-columns: 1fr; }
  .post--feature .post__img { order: 0; min-height: 200px; height: 200px; }
  .post--feature .post__body { padding: 24px 28px 28px; }
  .eir__roles { grid-template-columns: 1fr; }
}
