/* ========================================
   Fades Management — 2026 redesign
   Dark editorial. Instrument Serif + Inter.
   ======================================== */

:root {
  --bg:        #0A0B0E;
  --bg-2:      #101218;
  --bg-3:      #15181F;
  --bg-card:   rgba(255,255,255,.028);
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.16);

  --text:      #F1F3F6;
  --dim:       #9AA2AE;
  --faint:     #666E7B;

  --accent:    #F03A47;
  --accent-2:  #FF6B5B;

  /* per-venture accent, overridden inline */
  --v:         var(--accent);

  --font:      "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display:   "Instrument Serif", "Iowan Old Style", Georgia, serif;

  --r:         14px;
  --r-lg:      22px;
  --maxw:      1200px;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

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

  /* Ambient glow: viewport-fixed gradients painted behind the page content.
     Kept as background layers rather than a fixed overlay element — an overlay
     with z-index would repaint over the sections while scrolling. */
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 600px at 78% 8%, rgba(240,58,71,.13), transparent 62%),
    radial-gradient(760px 520px at 4% 62%, rgba(79,140,255,.08), transparent 60%);
  background-attachment: fixed, fixed;
  background-repeat: no-repeat, no-repeat;
}
main, nav, footer { position: relative; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 { line-height: 1.15; font-weight: 600; letter-spacing: -.01em; }

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.02;
}
.display em {
  font-style: italic;
  color: var(--accent-2);
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -.015em;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1.1rem;
}
.tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--v);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--v) 18%, transparent);
}

.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--dim); }

section { padding: clamp(5rem, 11vw, 9rem) 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 100px;
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              border-color .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--v);
  color: #fff;
  box-shadow: 0 6px 24px -8px color-mix(in srgb, var(--v) 70%, transparent);
}
.btn-primary:hover {
  box-shadow: 0 12px 32px -8px color-mix(in srgb, var(--v) 80%, transparent);
  filter: brightness(1.07);
}

.btn-outline {
  background: rgba(255,255,255,.03);
  border-color: var(--line-2);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--v); background: rgba(255,255,255,.06); }

.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }

.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Icons ---------- */

.icon { width: 1em; height: 1em; stroke: currentColor; fill: none;
        stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- Navigation ---------- */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10,11,14,.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.nav-logo {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
}
.nav-links > li > a {
  display: block;
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dim);
  border-radius: 100px;
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover { color: var(--text); background: rgba(255,255,255,.06); }

.nav-cta { margin-left: .4rem; }

.lang-switch {
  display: flex;
  gap: 2px;
  margin-left: .6rem;
  padding: 3px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 100px;
}
.lang-switch button {
  border: none;
  background: none;
  color: var(--faint);
  font-family: inherit;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .32rem .6rem;
  border-radius: 100px;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active { background: var(--accent); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 0 0;
  overflow: hidden;
}
.hero > .container {
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: 3rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .5;
  transform: scale(1.06);
  filter: saturate(.72) contrast(1.02);
}
/* The vertical layer is kept light so the ridgeline reads; the horizontal one
   stays heavy on the left, where the headline sits. */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,11,14,.78) 0%, rgba(10,11,14,.28) 40%, rgba(10,11,14,.92) 88%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10,11,14,.9) 0%, rgba(10,11,14,.55) 42%, rgba(10,11,14,.12) 78%, transparent 100%);
}

.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 900px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 1rem .45rem .6rem;
  margin-bottom: 1.8rem;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--dim);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 100px;
  backdrop-filter: blur(10px);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3DDC84;
  box-shadow: 0 0 0 4px rgba(61,220,132,.16);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(61,220,132,.16); }
  50%      { box-shadow: 0 0 0 7px rgba(61,220,132,.05); }
}

.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.15rem, 6.6vw, 5.6rem);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 1.6rem;
}
.hero h1 em { font-style: italic; color: var(--accent-2); }

.hero p {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--dim);
  max-width: 620px;
  margin-bottom: 2.4rem;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero-scroll {
  position: absolute;
  bottom: 7.5rem; right: max(1.25rem, calc((100vw - var(--maxw)) / 2 + 2.5rem));
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint);
}
.hero-scroll .line {
  width: 44px; height: 1px;
  background: linear-gradient(90deg, var(--faint), transparent);
  animation: slide 2.2s var(--ease) infinite;
}
@keyframes slide { 0%,100% { opacity: .3; transform: translateX(0); } 50% { opacity: 1; transform: translateX(6px); } }

/* ---------- Venture marquee ---------- */

.marquee {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10,11,14,.5);
  backdrop-filter: blur(10px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 44s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: 0 2.2rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  color: var(--dim);
  transition: color .25s;
  white-space: nowrap;
}
.marquee-item:hover { color: var(--text); }
.marquee-item .bullet {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--v);
}

/* ---------- Stats strip ---------- */

.stats-strip { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  background: var(--bg);
  padding: 2.2rem 1.6rem;
  text-align: center;
  transition: background .3s var(--ease);
}
.stat:hover { background: var(--bg-2); }
.stat .num {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: .6rem;
  background: linear-gradient(160deg, #fff 25%, var(--accent) 165%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.stat .label {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.about-text p { color: var(--dim); margin-top: 1.3rem; font-size: 1.03rem; }
.about-text .section-title { margin-bottom: .4rem; }

.about-quote {
  margin: 2.4rem 0 0;
  padding-left: 1.6rem;
  border-left: 2px solid var(--accent);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.32;
  color: var(--text);
}

.principles { display: grid; gap: 1px; background: var(--line);
              border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.principle {
  background: var(--bg);
  padding: 1.8rem;
  transition: background .3s var(--ease);
  position: relative;
}
.principle:hover { background: var(--bg-2); }
.principle-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .6rem; }
.principle-head .icon { width: 20px; height: 20px; color: var(--accent); }
.principle h4 { font-size: 1.02rem; font-weight: 600; }
.principle p { font-size: .93rem; color: var(--dim); }

/* ---------- Approach ---------- */

.approach-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.approach-head .lead { max-width: 400px; }

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  list-style: none;
  counter-reset: step;
}

.step { position: relative; padding-top: 3.4rem; }

/* the rule the step markers sit on */
.step::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 0;
  right: -2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--line-2), var(--line));
}
.step:last-child::before {
  right: 0;
  background: linear-gradient(90deg, var(--line-2), transparent);
}

.step-marker { position: absolute; top: 0; left: 0; }
.step-num {
  display: grid;
  place-items: center;
  width: 2.3rem; height: 2.3rem;
  font-family: var(--display);
  font-size: 1rem;
  color: var(--accent);
  background: var(--bg);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 50%;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  background: rgba(240,58,71,.1);
  border: 1px solid rgba(240,58,71,.2);
  color: var(--accent);
}
.step-icon .icon { width: 20px; height: 20px; }

.step h3 { font-size: 1.12rem; margin-bottom: .6rem; }
.step p { font-size: .95rem; color: var(--dim); }

/* ---------- Ventures ---------- */

.ventures { background: var(--bg-2); border-block: 1px solid var(--line); }

.ventures-head { max-width: 720px; margin-bottom: 3.4rem; }
.ventures-head p { margin-top: 1.1rem; }

.ventures-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 1.6rem;
  align-items: start;
}

/* rail */
.v-rail { display: flex; flex-direction: column; gap: 6px; position: sticky; top: 96px; }

.v-tab {
  --v: var(--accent);
  display: flex;
  align-items: center;
  gap: .95rem;
  width: 100%;
  padding: .95rem 1.1rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r);
  color: var(--dim);
  font-family: inherit;
  font-size: .97rem;
  text-align: left;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}
.v-tab:hover { background: rgba(255,255,255,.045); color: var(--text); transform: translateX(3px); }
.v-tab[aria-selected="true"] {
  background: color-mix(in srgb, var(--v) 12%, transparent);
  border-color: color-mix(in srgb, var(--v) 38%, transparent);
  color: var(--text);
}

.v-tab-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 11px;
  background: color-mix(in srgb, var(--v) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--v) 30%, transparent);
  color: var(--v);
  transition: transform .3s var(--ease);
}
.v-tab-mark .icon { width: 18px; height: 18px; }
.v-tab[aria-selected="true"] .v-tab-mark { transform: scale(1.06); }

.v-tab-text { min-width: 0; }
.v-tab-name { display: block; font-weight: 600; letter-spacing: -.01em; color: var(--text); }
.v-tab-kicker {
  display: block;
  font-size: .78rem;
  color: var(--faint);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* stage */
.v-stage {
  position: relative;
  background:
    radial-gradient(680px 320px at 88% -12%, color-mix(in srgb, var(--v) 16%, transparent), transparent 68%),
    var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 3.6vw, 3rem);
  overflow: hidden;
  transition: background .45s var(--ease);
}

.v-panel { display: none; }
.v-panel.active { display: block; animation: panelIn .5s var(--ease) both; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.v-panel-head { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.v-mark {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  flex: none;
  border-radius: 16px;
  background: color-mix(in srgb, var(--v) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--v) 34%, transparent);
  color: var(--v);
}
.v-mark .icon { width: 26px; height: 26px; }

.v-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -.025em;
}
.v-subtitle { font-size: 1rem; color: var(--v); font-weight: 500; margin-top: .2rem; }
.v-text { color: var(--dim); max-width: 62ch; margin-bottom: 2.1rem; }

.v-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 1.6rem;
}
.v-feature {
  background: var(--bg);
  padding: 1.4rem 1.5rem;
  transition: background .3s var(--ease);
}
.v-feature:hover { background: var(--bg-3); }
.v-feature-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .5rem; }
.v-feature-head .icon { width: 18px; height: 18px; color: var(--v); }
.v-feature h4 { font-size: .97rem; font-weight: 600; }
.v-feature p { font-size: .9rem; color: var(--dim); line-height: 1.55; }

.v-stats { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.9rem; }
.v-stat {
  flex: 1 1 150px;
  padding: .95rem 1.2rem;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.v-stat .number {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.15;
  color: var(--v);
  letter-spacing: -.02em;
}
.v-stat .label {
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: .25rem;
}

.v-cta { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-text > p { color: var(--dim); margin-bottom: 2.2rem; max-width: 48ch; }

.contact-info { display: grid; gap: .55rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.contact-item:hover { border-color: var(--line-2); background: rgba(255,255,255,.05); }
.contact-item-icon {
  display: grid; place-items: center;
  width: 36px; height: 36px; flex: none;
  border-radius: 10px;
  background: rgba(240,58,71,.1);
  color: var(--accent);
}
.contact-item-icon .icon { width: 17px; height: 17px; }
.contact-item-content h4 {
  font-size: .72rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--faint); margin-bottom: .25rem;
}
.contact-item-content p, .contact-item-content a { font-size: .95rem; color: var(--text); }
.contact-item-content a:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .73rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--faint); margin-bottom: .5rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 3px rgba(240,58,71,.14);
}
.contact-form .btn-primary { width: 100%; }

.form-status { margin-top: .85rem; font-size: .9rem; min-height: 1.2em; color: var(--dim); }
.form-status.success { color: #3DDC84; }
.form-status.error { color: var(--accent-2); }

.contact-map {
  margin-top: 1.3rem;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.contact-map iframe { width: 100%; height: 230px; border: 0; filter: grayscale(.6) invert(.92) hue-rotate(180deg) contrast(.9); }

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 4rem 0 2.2rem;
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; color: var(--faint); max-width: 34ch; }
.footer-col h5 {
  font-size: .71rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: grid; gap: .55rem; }
.footer-col a { font-size: .92rem; color: var(--dim); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  font-size: .86rem;
  color: var(--faint);
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Cookie banner ---------- */

.cookie-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 200;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.3rem;
  background: rgba(21,24,31,.94);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px -18px rgba(0,0,0,.8);
}
.cookie-banner p { font-size: .87rem; color: var(--dim); flex: 1 1 260px; }
.cookie-actions { display: flex; align-items: center; gap: 1rem; }
.cookie-link { font-size: .87rem; color: var(--dim); text-decoration: underline; text-underline-offset: 3px; }
.cookie-link:hover { color: var(--text); }

/* ---------- Scroll reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .ventures-layout { grid-template-columns: 260px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    padding: 1.2rem clamp(1.25rem, 4vw, 2.5rem) 1.8rem;
    background: rgba(10,11,14,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links > li > a { padding: .8rem 1rem; font-size: 1.02rem; }
  .nav-cta { margin: .6rem 0 0; }
  .nav-cta .btn { width: 100%; }
  .lang-switch { margin: .8rem 0 0; align-self: flex-start; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  /* the step rule turns vertical when the steps stack */
  .approach-steps { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 0 0 2.6rem 3.6rem; }
  .step::before {
    top: 2.5rem; bottom: 0; left: 1.15rem; right: auto;
    width: 1px; height: auto;
    background: linear-gradient(180deg, var(--line-2), var(--line));
  }
  .step:last-child { padding-bottom: 0; }
  .step:last-child::before { display: none; }
  .approach-head { margin-bottom: 2.6rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll { display: none; }

  /* ventures → accordion */
  .ventures-layout { grid-template-columns: 1fr; gap: .6rem; }
  .v-rail { display: contents; }
  .v-tab { order: var(--order); border: 1px solid var(--line); background: var(--bg); }
  .v-tab[aria-selected="true"] { border-color: color-mix(in srgb, var(--v) 40%, transparent); }
  .v-stage {
    order: var(--stage-order);
    padding: 1.5rem 1.3rem;
    background: var(--bg);
    border-color: var(--line);
  }
}

@media (max-width: 640px) {
  section { padding: 4.5rem 0; }

  /* Narrow screens put the headline over the full width of the photo, so the
     horizontal falloff has to stay heavier than it does on desktop. */
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(10,11,14,.7) 0%, rgba(10,11,14,.4) 40%, rgba(10,11,14,.92) 88%, var(--bg) 100%),
      linear-gradient(90deg, rgba(10,11,14,.86) 0%, rgba(10,11,14,.66) 55%, rgba(10,11,14,.4) 100%);
  }
  .v-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 7rem 0 0; }
  .marquee-item { font-size: 1.15rem; padding: 0 1.4rem; }
  .v-panel-head { gap: .9rem; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
