/* ═══════════════════════════════════════════════
   VICTRIX CAPITAL — Design System v3
   ═══════════════════════════════════════════════ */
:root {
  --forest: #0E1C0E;
  --lime: #88E833;
  --mid: #2E6F3A;
  --sage: #D5DAD0;
  --white: #FFFFFF;
  --alt: #152615;
  --font: 'Zalando Sans SemiExpanded', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); background: var(--forest); color: var(--sage);
  font-size: 17px; line-height: 1.75; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
::selection { background: var(--lime); color: var(--forest); }
img { max-width: 100%; display: block; }
a { color: var(--lime); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--white); }

/* ── Cursor ── */
.cursor {
  position: fixed; width: 16px; height: 16px;
  border: 1.5px solid var(--lime); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s var(--ease);
  mix-blend-mode: difference;
}
.cursor.hover { width: 48px; height: 48px; border-color: var(--white); }
@media (pointer: coarse) { .cursor { display: none; } }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 40px; display: flex; align-items: center; justify-content: space-between;
  transition: background .4s var(--ease), padding .4s var(--ease);
}
nav.scrolled {
  background: rgba(14,28,14,.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 14px 40px;
}
.nav-brand {
  display: flex; align-items: center; gap: 16px;
}
.nav-victrix {
  height: 16px; width: 90px;
  background-image: var(--vc-logo-lime-landscape);
  background-size: contain; background-repeat: no-repeat;
  opacity: 0; transition: opacity .4s var(--ease);
}
nav.scrolled .nav-victrix { opacity: 1; }
.nav-sep {
  width: 1px; height: 14px; background: rgba(136,232,51,.3);
  opacity: 0; transition: opacity .4s var(--ease);
}
nav.scrolled .nav-sep { opacity: 1; }
.nav-xp {
  height: 16px; width: auto; max-width: 60px;
  opacity: 0; transition: opacity .4s var(--ease);
}
nav.scrolled .nav-xp { opacity: 1; }
.nav-links { list-style: none; display: flex; gap: 36px; }
.nav-links a {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sage);
}
.nav-links a:hover { color: var(--lime); }
@media (max-width: 640px) {
  nav { padding: 14px 16px; }
  nav.scrolled { padding: 14px 16px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 9px; letter-spacing: .08em; }
  .nav-victrix { width: 72px; height: 13px; }
  .nav-sep, .nav-xp { display: none; }
}

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
.reveal-d4 { transition-delay: .48s; }

/* ── Layout ── */
.container { max-width: 1120px; margin: 0 auto; padding: 100px 36px; position: relative; z-index: 2; }
section { position: relative; overflow: hidden; }

/* ── Blur layers ── */
.blur-layer { position: absolute; inset: 0; z-index: 0; }
.blur-subtle { opacity: .6; }
.blur-img { width: 100%; height: 100%; object-fit: cover; }
.overlay { position: absolute; inset: 0; background: rgba(14,28,14,.68); z-index: 1; }
.overlay-hero { background: rgba(14,28,14,.58); }
.overlay-heavy { background: rgba(14,28,14,.82); }

/* ── Grid texture ── */
.grid-texture {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(46,111,58,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,111,58,.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* ══════════════════════
   HERO
   ══════════════════════ */
#hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.hero-inner {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-logo {
  width: min(300px, 62vw); height: 0;
  padding-bottom: calc(min(300px, 62vw) * 1726 / 4024);
  background-image: var(--vc-logo-lime-landscape);
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0; animation: fadeUp .9s var(--ease) .4s forwards;
}
.hero-tagline {
  font-weight: 200; font-size: clamp(13px, 2vw, 19px);
  letter-spacing: .28em; text-transform: uppercase; color: var(--sage);
  margin-top: 20px;
  opacity: 0; animation: fadeUp .7s var(--ease) 1s forwards;
}
.scroll-line {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2;
  opacity: 0; animation: fadeUp .5s var(--ease) 1.6s forwards;
}
.scroll-line span {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--lime), transparent);
}
@media (max-width: 640px) {
  .hero-tagline { font-size: 11px; letter-spacing: .1em; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════
   NARRATIVE
   ══════════════════════ */
.narrative-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: center; }
.narr-left .label {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--lime); margin-bottom: 16px;
}
.narr-left h2 {
  font-weight: 600; font-size: clamp(26px, 3.6vw, 40px);
  color: var(--white); line-height: 1.18; letter-spacing: .03em;
}
.narr-left h2 em { font-style: normal; color: var(--lime); }
.narr-right p { margin-bottom: 18px; font-size: 16px; color: rgba(213,218,208,.82); }
@media (max-width: 768px) { .narrative-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ══════════════════════
   APPROACH
   ══════════════════════ */
#approach { background: var(--alt); }
.section-title {
  font-weight: 600; font-size: clamp(24px, 3.2vw, 36px);
  color: var(--white); letter-spacing: .06em; text-align: center;
}
.section-sub {
  text-align: center; color: rgba(213,218,208,.65);
  font-size: 16px; margin-top: 12px; margin-bottom: 56px;
}
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  padding: 32px 24px; border-left: 2px solid rgba(136,232,51,.18);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.card:hover { border-color: var(--lime); background: rgba(136,232,51,.03); }
.card-n {
  display: block; font-size: 13px; font-weight: 200; color: var(--lime);
  letter-spacing: .12em; margin-bottom: 12px;
}
.card h3 { font-weight: 600; font-size: 17px; color: var(--white); margin-bottom: 10px; letter-spacing: .03em; }
.card p { font-size: 14px; line-height: 1.65; color: rgba(213,218,208,.72); }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* ══════════════════════
   PHILOSOPHY
   ══════════════════════ */
#philosophy { min-height: 70vh; display: flex; align-items: center; }
.philosophy-inner { text-align: center; max-width: 740px; margin: 0 auto; }
#philosophy blockquote {
  font-weight: 200; font-size: clamp(22px, 3vw, 34px);
  color: var(--white); line-height: 1.45; letter-spacing: .04em;
  border: none; padding: 0; margin: 0;
}
.phil-em {
  font-weight: 600; font-size: clamp(18px, 2.4vw, 26px);
  color: var(--lime); margin-top: 32px; letter-spacing: .06em;
}
.phil-body { margin-top: 20px; font-size: 16px; color: rgba(213,218,208,.78); }

/* ══════════════════════
   PARTNERS
   ══════════════════════ */
.partners-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.partner { transition: transform .3s var(--ease); }
.partner:hover { transform: translateY(-4px); }
.partner-img-wrap { width: 100%; aspect-ratio: 4/3; overflow: hidden; margin-bottom: 20px; border-radius: 2px; }
.partner-img { width: 100%; height: 100%; transition: transform .5s var(--ease); }
.partner:hover .partner-img { transform: scale(1.04); }
.partner h3 { font-weight: 600; font-size: 18px; color: var(--white); letter-spacing: .03em; }
.partner-role {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--lime); margin: 6px 0 14px;
}
.partner p { font-size: 14px; line-height: 1.6; color: rgba(213,218,208,.68); }
@media (max-width: 768px) { .partners-row { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* ══════════════════════
   INSIGHTS
   ══════════════════════ */
#insights { background: var(--alt); }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.insight-card {
  position: relative; overflow: hidden; border-radius: 3px;
  aspect-ratio: 4/3; display: flex; align-items: flex-end;
  transition: transform .4s var(--ease);
}
.insight-card:hover { transform: translateY(-4px); }
.insight-blur { position: absolute; inset: 0; }
.insight-blur img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.insight-card:hover .insight-blur img { transform: scale(1.06); }
.insight-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,28,14,.92) 0%, rgba(14,28,14,.3) 60%, transparent 100%);
}
.insight-content { position: relative; z-index: 2; padding: 24px; }
.insight-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 8px; display: block;
}
.insight-card h3 { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.insight-card p { font-size: 13px; line-height: 1.5; color: rgba(213,218,208,.7); }
@media (max-width: 768px) { .insights-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* ══════════════════════
   CLOSING
   ══════════════════════ */
#closing { min-height: 60vh; display: flex; align-items: center; }
.closing-inner { text-align: center; }
.closing-lead {
  font-size: 15px; color: rgba(213,218,208,.55); letter-spacing: .06em; margin-bottom: 16px;
}
.closing-inner h2 {
  font-weight: 200; font-size: clamp(22px, 3vw, 36px);
  color: var(--white); letter-spacing: .05em; line-height: 1.35;
}
.closing-inner h2 em { font-style: normal; color: var(--lime); }
@media (max-width: 640px) { .closing-inner h2 br { display: none; } }

/* ══════════════════════
   FOOTER
   ══════════════════════ */
footer { background: var(--forest); border-top: 1px solid rgba(46,111,58,.2); }
footer .container { padding: 56px 36px 40px; }
.f-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-bottom: 28px; flex-wrap: wrap;
}
.f-victrix {
  height: 22px; width: 120px;
  background-image: var(--vc-logo-lime-landscape);
  background-size: contain; background-repeat: no-repeat;
}
.f-xp { height: 22px; width: auto; max-width: 80px; }
.f-div { width: 1px; height: 22px; background: rgba(136,232,51,.25); }
.f-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 20px; }
.f-links a {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage);
}
.f-links a:hover { color: var(--lime); }
.f-phone { text-align: center; font-size: 13px; color: rgba(213,218,208,.55); margin-bottom: 28px; }
.f-phone a { color: var(--lime); }
.disclaimer {
  font-size: 11px; line-height: 1.65; color: rgba(213,218,208,.4);
  max-width: 880px; margin: 0 auto; text-align: justify;
  border-top: 1px solid rgba(46,111,58,.12); padding-top: 24px;
}
.disclaimer strong { color: rgba(213,218,208,.6); font-weight: 600; }
.f-copy { text-align: center; margin-top: 24px; font-size: 11px; color: rgba(213,218,208,.28); }
