:root {
  /* Same palette as intecracy.com */
  --navy: #0b1a30;
  --navy-deep: #061220;
  --navy-2: #0f2240;
  --navy-3: #142a4d;
  --teal: #00c9a7;
  --teal-soft: rgba(0, 201, 167, 0.4);
  --teal-faint: rgba(0, 201, 167, 0.08);
  --teal-line: rgba(0, 201, 167, 0.3);
  --gold: #d7b46a;
  --gold-faint: rgba(215, 180, 106, 0.12);
  --text: #e8edf5;
  --text-soft: #b8c2d4;
  --muted: #8a98ad;
  --muted-2: #5e6a7d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --container: 1200px;
  --gutter: 32px;
  --section-gap: 140px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-heading: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-mono: 'Fira Code', 'Courier New', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--text);
  font-size: 16px;
  line-height: 1.68;
  font-weight: 400;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
section { padding: var(--section-gap) 0; position: relative; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.16em;
  text-transform: lowercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: '//'; color: var(--teal); }

h2.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.08;
  margin-bottom: 28px;
  max-width: 820px;
  color: var(--text);
}
h2.section-title .accent { color: var(--teal); }

.section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 65ch;
  margin-bottom: 64px;
}
.section-intro-compact {
  margin-bottom: 0;
}

/* Reveal animation */
.gs,
.hero .gs,
.focus-card.gs {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: transparent;
  padding: 10px 0;
  border-bottom-color: transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background: rgba(6, 18, 32, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
  transition: padding var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled .header-inner {
  padding: 10px 16px;
  background: rgba(6, 18, 32, 0.88);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 16px 48px rgba(0,0,0,0.24);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: height var(--transition);
}
.header.scrolled .logo img { height: 32px; }

.nav { display: flex; gap: 22px; }
.nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 1px 14px;
  transition: color var(--transition-fast);
}
.nav a .nav-text {
  position: relative;
  display: inline-block;
}
.nav a .nav-text::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 3px;
  background: var(--teal);
  clip-path: polygon(3px 0, 100% 0, calc(100% - 3px) 100%, 0 100%);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.nav a:hover { color: var(--teal); }
.nav a:hover .nav-text::after,
.nav a.active .nav-text::after {
  opacity: 1;
  transform: translateY(0);
}
.nav a.active { color: var(--teal); }
.nav .nav-cta { display: none; } /* видимий тільки в мобільному overlay */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 130;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.nav-toggle:hover { border-color: var(--teal-line); background: var(--teal-faint); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.lang a {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: var(--transition-fast);
}
.lang a.active {
  background: var(--teal);
  color: var(--navy-deep);
}
.cta-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  min-height: 42px;
  padding: 12px 22px;
  background: var(--teal);
  color: var(--navy-deep);
  border: 1px solid var(--teal);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: filter var(--transition-fast);
}
.cta-link:hover {
  filter: brightness(1.08);
}
.cta-link:active {
  filter: brightness(0.96);
  transition-duration: 0s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 760px;
  position: relative;
  padding: 150px 0 92px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 44%, rgba(0, 201, 167, 0.12), transparent 34%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 64%, var(--navy) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 32, 0.98) 0%, rgba(6, 18, 32, 0.76) 42%, rgba(6, 18, 32, 0.28) 100%),
    linear-gradient(to bottom, rgba(6, 18, 32, 0.35) 0%, transparent 42%, var(--navy) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(380px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero-mark {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.14em;
  text-transform: none;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-mark::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--teal);
}
.hero-mark .juris {
  color: var(--text-soft);
  font-weight: 400;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.45vw, 62px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 820px;
}
.hero h1 .accent {
  color: var(--teal);
  position: relative;
  display: inline-block;
}
.hero-title-rotating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-title-fixed {
  white-space: nowrap;
}
.rotating-word {
  min-width: 9.8em;
  transition: opacity 0.28s ease, transform 0.28s ease;
  will-change: opacity, transform;
}
.rotating-word.is-changing {
  opacity: 0;
  transform: translateY(10px);
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  inset: -8px -16px;
  background: radial-gradient(ellipse, rgba(0, 201, 167, 0.18), transparent 60%);
  z-index: -1;
  pointer-events: none;
  filter: blur(20px);
}
.hero-sub {
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.6;
  color: var(--text);
  max-width: 650px;
  margin-bottom: 36px;
  opacity: 0.85;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  max-width: 680px;
}
.hero-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.hero-proof span:first-child {
  border-color: rgba(215, 180, 106, 0.38);
  color: var(--gold);
  background: var(--gold-faint);
}
.hero-growth {
  position: relative;
  min-height: 460px;
  padding: 0;
  align-self: center;
  margin-top: 92px;
  overflow: visible;
}
.growth-svg {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 520px);
  margin-left: auto;
  height: auto;
  min-height: 420px;
  overflow: visible;
}
.chart-axis path {
  fill: none;
  stroke: rgba(232, 237, 245, 0.22);
  stroke-width: 2.4;
}
.chart-bar {
  fill: rgba(0, 201, 167, 0.14);
  stroke: rgba(0, 201, 167, 0.72);
  stroke-width: 2.4;
  transform-box: fill-box;
  transform-origin: bottom;
  animation: chartBar 5.8s ease-in-out infinite;
}
.chart-bar.bar-two { animation-delay: 0.18s; }
.chart-bar.bar-three { animation-delay: 0.36s; }
.chart-bar.bar-four {
  fill: rgba(215, 180, 106, 0.16);
  stroke: rgba(215, 180, 106, 0.78);
  animation-delay: 0.54s;
}
@keyframes chartBar {
  0%, 100% { transform: scaleY(0.3); opacity: 0.45; }
  28%, 78% { transform: scaleY(1); opacity: 1; }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: filter var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.btn-primary {
  background: var(--teal);
  color: var(--navy-deep);
  border-color: var(--teal);
}
.btn-primary:hover {
  filter: brightness(1.08);
}
.btn-primary:active {
  filter: brightness(0.96);
  transition-duration: 0s;
}
.btn-ghost {
  background: rgba(6, 18, 32, 0.34);
  border-color: rgba(232, 237, 245, 0.42);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--teal);
  color: var(--teal);
}
.btn-ghost:active {
  background: rgba(255, 255, 255, 0.04);
  transition-duration: 0s;
}
.btn .arrow { transition: transform var(--transition-fast); }
.btn:hover .arrow { transform: translateX(4px); }

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border: 1px solid var(--teal);
  border-radius: 3px;
  background: var(--teal);
  color: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  box-shadow: 0 14px 34px rgba(0, 201, 167, 0.2);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover,
.back-to-top:focus-visible {
  background: #11d9bc;
  border-color: #11d9bc;
  transform: translateY(-2px);
  outline: none;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  border-top: 1px solid var(--line);
  background: var(--navy-deep);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--teal-line);
}
.flow-step {
  position: relative;
  padding: 28px 0 28px 40px;
  border-bottom: 1px solid var(--line);
  transition: padding var(--transition);
}
.flow-step:last-child { border-bottom: none; }
.flow-step::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 36px;
  width: 9px; height: 9px;
  background: var(--teal);
  border-radius: 50%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.flow-step:hover { padding-left: 48px; }
.flow-step:hover::before {
  transform: scale(1.4);
  box-shadow: 0 0 0 6px var(--teal-faint);
}
.flow-step .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}
.flow-step h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text);
}
.flow-step p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 540px;
}
.flow-step p + p {
  margin-top: 10px;
}
.flow-step strong {
  color: var(--text);
  font-weight: 700;
}
.qa-section .flow-step h4 {
  max-width: 560px;
}
.qa-section .philosophy-grid {
  display: block;
}
.qa-section .philosophy-grid > div:first-child {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.qa-section .philosophy-grid > div:first-child .section-intro {
  margin-left: auto;
  margin-right: auto;
}
.qa-section .flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-left: none;
}
.qa-section .flow-step {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018)),
    rgba(255,255,255,0.018);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.qa-section .flow-step:last-child {
  border-bottom: 1px solid var(--line);
}
.qa-section .flow-step::before {
  display: none;
}
.qa-section .flow-step:hover {
  padding-left: 30px;
  transform: translateY(-4px);
  border-color: var(--teal-line);
  background:
    linear-gradient(145deg, rgba(0, 201, 167, 0.085), rgba(255,255,255,0.022)),
    rgba(255,255,255,0.02);
}
.qa-section .flow-step .num {
  margin-bottom: 16px;
}
.qa-section .flow-step h4 {
  min-height: 52px;
  margin-bottom: 14px;
}

/* ============================================================
   INVESTMENT THESIS
   ============================================================ */
.thesis {
  background:
    linear-gradient(180deg, var(--navy-deep), #07182a 58%, var(--navy-deep)),
    radial-gradient(circle at 82% 18%, rgba(215, 180, 106, 0.12), transparent 34%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.thesis::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.42;
  pointer-events: none;
}
.thesis-head {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 76px;
  align-items: end;
  margin-bottom: 58px;
}
.thesis-title-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.thesis-title-block .section-title {
  margin-bottom: 0;
}
.thesis-head .section-intro {
  align-self: end;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
}
.thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(6, 18, 32, 0.58);
  backdrop-filter: blur(18px);
}
.thesis-card {
  min-height: 270px;
  padding: 76px 34px 34px;
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.thesis-card:last-child { border-right: none; }
.thesis-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 201, 167, 0.12), transparent 44%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.thesis-card:hover::before { opacity: 1; }
.thesis-num {
  position: absolute;
  top: 34px;
  left: 34px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.16em;
}
.thesis-card h3 {
  font-family: var(--font-heading);
  position: relative;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--text);
  min-height: 52px;
  margin-bottom: 16px;
}
.thesis-card p {
  position: relative;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============================================================
   ENGAGEMENT MANDATES
   ============================================================ */
.mandates {
  background: var(--navy);
}
.mandates-head {
  max-width: 900px;
  margin-bottom: 56px;
}
.mandates-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.mandate-card {
  grid-column: span 2;
  min-height: 265px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.052), rgba(255,255,255,0.018)),
    rgba(255,255,255,0.018);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.mandate-card:nth-child(4),
.mandate-card:nth-child(5) {
  grid-column: span 3;
}
.mandate-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal-line);
  background:
    linear-gradient(145deg, rgba(0, 201, 167, 0.09), rgba(255,255,255,0.022)),
    rgba(255,255,255,0.02);
}
.mandate-card.featured {
  border-color: rgba(215, 180, 106, 0.46);
  background:
    linear-gradient(145deg, rgba(215, 180, 106, 0.18), rgba(255,255,255,0.025)),
    rgba(215, 180, 106, 0.035);
}
.mandate-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--teal-line);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  background: rgba(0, 201, 167, 0.08);
  margin-bottom: 28px;
}
.mandate-card.featured .mandate-icon {
  border-color: rgba(215, 180, 106, 0.55);
  color: var(--gold);
  background: rgba(215, 180, 106, 0.12);
}
.mandate-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mandate-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  min-height: 48px;
  margin-bottom: 12px;
  color: var(--text);
}
.mandate-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.68;
}

/* ============================================================
   INVESTMENT FOCUS
   ============================================================ */
.focus { background: var(--navy-deep); }
.focus-head {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.focus-title-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.focus-title-block .section-title {
  margin-bottom: 28px;
}
.focus-head .right {
  align-self: end;
  margin-top: 0;
  margin-bottom: 0;
  transform: translateY(-26px);
  text-align: right;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.focus-head .right strong {
  font-size: 56px;
  color: var(--teal);
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  font-family: var(--font-mono);
}
.focus-disclaimer {
  display: inline-block;
  padding: 16px 22px;
  margin-bottom: 22px;
  font-size: 16px;
  color: var(--text-soft);
  background: var(--teal-faint);
  border-left: 2px solid var(--teal);
  max-width: 720px;
  line-height: 1.6;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.focus-card {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}
.focus-card.gs {
  opacity: 1;
  transform: none;
}
.focus-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 28px;
  width: 0;
  height: 2px;
  background: var(--teal);
  clip-path: polygon(2px 0, 100% 0, calc(100% - 2px) 100%, 0 100%);
  transition: width var(--transition);
}
.focus-card:hover { background: var(--teal-faint); }
.focus-card:hover::before { width: calc(100% - 56px); }
.focus-icon {
  width: 32px;
  height: 32px;
  color: var(--teal);
  margin-bottom: 8px;
}
.focus-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.focus-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.focus-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 6px;
}
.focus-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  flex-grow: 1;
}

/* Criteria band */
.criteria { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--teal-line); }
.criteria-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.criteria-num {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.criteria-text { font-size: 14px; color: var(--text-soft); line-height: 1.55; }

/* ============================================================
   STARTUPS — AI-native with intecrator brand
   ============================================================ */
.startups {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
}
.startups::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 201, 167, 0.06), transparent 60%);
  pointer-events: none;
}
.startups-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.startups h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--text);
}
.startups h2 .accent { color: var(--teal); }
.startups-desc {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 580px;
}
.startups-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.startup-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--teal-line);
  color: var(--teal);
  border-radius: 999px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
}
.contact-cta {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.contact-cta .contact-text p {
  margin-left: auto;
  margin-right: auto;
}
.contact-cta .btn {
  margin-left: auto;
  margin-right: auto;
}
.contact-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 28px;
}
.contact-text h2 .accent { color: var(--teal); }
.contact-text p {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 480px;
}
.contact-row {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-row .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-row .value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.contact-row .value a:hover { color: var(--teal); }
.contact-row .legal {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 8px;
  letter-spacing: 0.06em;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 72px;
  align-items: start;
}
.contact-aside {
  position: sticky;
  top: 118px;
}
.contact-aside h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.contact-aside p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.inquiry-form {
  position: relative;
  border: 1px solid rgba(232, 237, 245, 0.86);
  border-radius: 8px;
  padding: 36px;
  background: #f2f5fb;
  color: #232638;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.14);
}
.inquiry-form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, var(--teal), transparent 34%, transparent 68%, var(--gold));
  opacity: 0.22;
  height: 1px;
}
.form-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.form-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-head h3 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.12;
  margin-bottom: 10px;
  color: #232638;
}
.form-head p {
  color: #626b7d;
  max-width: 52ch;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.field-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #232638;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cfd5e2;
  border-radius: 6px;
  background: rgba(255,255,255,0.58);
  color: #232638;
  font: inherit;
  line-height: 1.45;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}
.field-group select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--teal) 50%),
    linear-gradient(135deg, var(--teal) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}
.field-group option {
  background: #ffffff;
  color: #232638;
}
.field-group textarea {
  min-height: 156px;
  resize: vertical;
}
.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #7c8494;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--teal);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 201, 167, 0.1);
}
.field-group input:user-invalid,
.field-group select:user-invalid,
.field-group textarea:user-invalid,
.consent-field input:user-invalid {
  border-color: rgba(255, 110, 110, 0.7);
}
.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin: 6px 0 24px;
  color: #626b7d;
  font-size: 13px;
  line-height: 1.55;
}
.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}
.form-submit {
  width: 100%;
  justify-content: center;
}
.form-status {
  min-height: 22px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #365a52;
}
.inquiry-form .wpcf7-form-control-wrap {
  display: block;
}
.inquiry-form .wpcf7-list-item {
  display: block;
  width: 100%;
  margin: 0;
}
.inquiry-form .consent-field,
.inquiry-form .wpcf7-acceptance.consent-field,
.inquiry-form .wpcf7-form-control-wrap[data-name="your-consent"] {
  display: block;
  width: 100%;
  grid-template-columns: none;
  gap: 0;
  margin: 6px 0 24px;
  color: #626b7d;
  font-size: 13px;
  line-height: 1.55;
}
.inquiry-form .wpcf7-acceptance .wpcf7-list-item label,
.inquiry-form .wpcf7-list-item.consent-field label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  width: 100%;
  margin: 0;
  color: #626b7d;
  font-size: 13px;
  line-height: 1.55;
}
.inquiry-form .wpcf7-acceptance input,
.inquiry-form .wpcf7-list-item.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}
.inquiry-form .wpcf7-list-item-label {
  display: block;
  width: 100%;
  max-width: none;
}
.inquiry-form .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #9d2b34;
  font-size: 12px;
  line-height: 1.4;
}
.inquiry-form .wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 13px 15px !important;
  border: 1px solid rgba(0, 201, 167, 0.35) !important;
  border-radius: 6px;
  background: rgba(0, 201, 167, 0.08);
  color: #213329;
  font-size: 13px;
  line-height: 1.5;
}
.inquiry-form.invalid .wpcf7-response-output,
.inquiry-form.failed .wpcf7-response-output,
.inquiry-form.unaccepted .wpcf7-response-output {
  border-color: rgba(157, 43, 52, 0.38) !important;
  background: rgba(157, 43, 52, 0.08);
  color: #672229;
}
.inquiry-form .wpcf7-spinner {
  margin: 14px auto 0;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
  font-size: 13px;
  color: var(--muted);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 40px;
  position: relative;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--text-soft);
  font-size: 13px;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  position: relative;
}
.footer-bottom .links { display: flex; gap: 24px; }

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-main {
  background: var(--navy);
  min-height: 100vh;
}
.page-hero {
  min-height: 620px;
  padding: 150px 0 76px;
  background:
    radial-gradient(circle at 78% 26%, rgba(0, 201, 167, 0.12), transparent 30%),
    radial-gradient(circle at 16% 12%, rgba(215, 180, 106, 0.08), transparent 26%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.7) 48%, transparent 100%);
  opacity: 0.45;
  pointer-events: none;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
  width: 100%;
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--font-heading);
  max-width: 760px;
  font-size: clamp(36px, 4.1vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.016em;
}
.page-hero h1 .accent {
  color: var(--teal);
}
.page-hero p {
  max-width: 680px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.66;
}
.hero-visual {
  position: relative;
  z-index: 2;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 28px;
  min-height: 340px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.062), rgba(255,255,255,0.018)),
    rgba(6, 18, 32, 0.66);
  box-shadow: 0 28px 80px rgba(0,0,0,0.24);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent 45%, var(--gold));
  opacity: 0.46;
}
.visual-label {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.visual-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.visual-row:last-child { border-bottom: none; }
.visual-row span {
  color: var(--text-soft);
  font-size: 13px;
}
.visual-row strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 20px;
}
.status-visual {
  min-height: 320px;
}
.status-matrix {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.status-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.025);
}
.status-item span {
  color: var(--text-soft);
  font-size: 13px;
}
.status-item strong {
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 17px;
}
.flow-map {
  display: grid;
  gap: 12px;
}
.flow-node {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text-soft);
  background: rgba(255,255,255,0.025);
}
.flow-node b {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--teal-faint);
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 11px;
}
.competency-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.competency-map span {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px 12px;
  color: var(--text-soft);
  background: rgba(255,255,255,0.025);
  font-size: 13px;
}
.competency-map span:nth-child(1),
.competency-map span:nth-child(6) {
  color: var(--teal);
  border-color: var(--teal-line);
  background: var(--teal-faint);
}

/* ============================================================
   INNER CONTENT SECTIONS
   ============================================================ */
.content-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}
.content-section.alt { background: var(--navy-deep); }
.text-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section-heading {
  margin-bottom: 32px;
}
.section-heading-loose {
  margin-bottom: 40px;
}
.text-stack p,
.process-item p {
  color: var(--text-soft);
  line-height: 1.75;
}
.text-stack h2,
.content-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.014em;
}
.text-stack h3,
.process-item h3 {
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.numbered-list {
  display: grid;
  gap: 16px;
  counter-reset: item;
}
.process-item {
  position: relative;
  border-left: 1px solid var(--teal-line);
  padding: 0 0 22px 28px;
  counter-increment: item;
}
.process-item::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: -18px;
  top: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--teal-line);
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 11px;
}
.contact-panel {
  border: 1px solid var(--teal-line);
  border-radius: 8px;
  padding: 32px;
  background: rgba(0, 201, 167, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.contact-panel a { color: var(--teal); }
.contact-panel .contact-row {
  position: relative;
  padding: 24px 0 24px 52px;
}
.contact-panel .contact-row:first-child {
  padding-top: 0;
}
.contact-panel .contact-row:last-child {
  padding-bottom: 0;
}
.contact-panel .contact-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--teal-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 201, 167, 0.12), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.025);
}
.contact-panel .contact-row::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 33px;
  width: 16px;
  height: 16px;
  background: var(--teal);
  opacity: 0.92;
  mask: var(--contact-icon) center/contain no-repeat;
}
.contact-panel .contact-row:nth-child(1) { --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E"); }
.contact-panel .contact-row:nth-child(2) { --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 5h18v14H3V5Zm2.7 2 6.3 4.7L18.3 7H5.7ZM5 17h14V8.9l-7 5.2-7-5.2V17Z'/%3E%3C/svg%3E"); }
.contact-panel .contact-row:nth-child(3) { --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5Z'/%3E%3C/svg%3E"); }
.contact-panel .contact-row:first-child::before { top: 1px; }
.contact-panel .contact-row:first-child::after { top: 10px; }
.mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.mini-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 11px;
}
.page-proof {
  margin-top: -1px;
  padding: 0;
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}
.proof-item {
  min-height: 112px;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proof-item strong {
  font-family: var(--font-heading);
  color: var(--text);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.proof-item span {
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.premium-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}
.premium-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.signal-list { display: grid; gap: 16px; }
.signal-item,
.capability-card,
.deal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)), rgba(255,255,255,0.02);
}
.signal-item h3,
.capability-card h3,
.deal-card h3 {
  font-family: var(--font-heading);
  color: var(--text);
  font-size: 20px;
  line-height: 1.18;
  min-height: auto;
  margin-bottom: 12px;
}
.signal-item p,
.capability-card p,
.deal-card p {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.68;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.capability-card .num,
.deal-card .num,
.deal-card > span {
  display: block;
  font-family: var(--font-mono);
  color: var(--teal);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.deal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.deal-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.deal-card h3 {
  min-height: auto;
  margin-bottom: 18px;
}
.deal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}
.deal-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   INVESTMENT CYCLE — wow showcase
   ============================================================ */
.cycle {
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 60%, var(--navy) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cycle::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0, 201, 167, 0.06), transparent 45%),
    radial-gradient(ellipse at 10% 90%, rgba(0, 201, 167, 0.04), transparent 50%);
  pointer-events: none;
}
.cycle-head {
  max-width: 800px;
  margin-bottom: 64px;
  position: relative;
}
.cycle-stage {
  position: relative;
  padding: 32px 0;
  margin: 0 -16px;
}
.cycle-svg {
  width: 100%;
  height: auto;
  max-height: 480px;
  display: block;
}
.cycle-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  position: relative;
}
.legend-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.6;
}
.legend-item strong {
  color: var(--text);
  font-weight: 600;
}
.legend-item .dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
}
.legend-item .dot.teal { background: var(--teal); }
.legend-item .dot.hollow {
  background: transparent;
  border: 1.5px solid var(--teal);
}

/* ============================================================
   VALUE LADDER (about page)
   ============================================================ */
.ladder {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ladder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 10%, rgba(0, 201, 167, 0.05), transparent 50%);
  pointer-events: none;
}
.ladder-head {
  max-width: 800px;
  margin-bottom: 56px;
  position: relative;
}
.ladder-stage {
  position: relative;
  padding: 24px 0;
  margin: 0 -16px 40px;
}
.ladder-svg {
  width: 100%;
  height: auto;
  max-height: 380px;
  display: block;
}
.ladder-foot {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 700px;
  font-style: italic;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--teal);
}

/* ============================================================
   CUSTOM CURSOR (premium pointer hint)
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.7) 0%, rgba(0, 201, 167, 0) 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  will-change: transform, opacity;
  transition: opacity 0.3s ease, scale 0.3s ease;
  opacity: 0;
  scale: 1;
}
.cursor-glow.active { opacity: 1; }
.cursor-glow.hover { opacity: 0.7; scale: 3.1; }
@media (hover: none), (max-width: 1024px) {
  .cursor-glow { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-gap: 96px; }
  body.nav-open { overflow: hidden; }

  /* На мобільному прибираємо backdrop-filter і transform з header/header-inner —
     інакше вони створюють containing block для position:fixed, і .nav-overlay
     стискається до розмірів header-inner замість того, щоб займати весь viewport.
     transform: translateZ(0) використовується для GPU-плавності зміни padding/bg
     при scroll-у — на мобільному це не критично. */
  .header {
    background: rgba(11, 26, 48, 0.94);
    backdrop-filter: none;
    border-bottom-color: var(--line);
    z-index: 130;
  }
  .header-inner {
    gap: 14px;
    border-radius: 14px;
    backdrop-filter: none;
    transform: none;
  }

  .nav-toggle { display: inline-flex; order: 3; }
  .header-right { order: 2; margin-left: auto; }

  /* Overlay-меню: повноекранний шар, починається ПІД хедером (top: 84px). */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding: 110px var(--gutter) 40px;
    background:
      linear-gradient(180deg, rgba(6, 18, 32, 0.985), rgba(11, 26, 48, 0.985)),
      radial-gradient(circle at 80% 15%, rgba(0, 201, 167, 0.1), transparent 35%);
    background-color: #061220; /* fallback solid */
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open .nav { opacity: 1; visibility: visible; }
  .nav a {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(20px, 5vw, 28px);
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--text);
  }
  .nav a:not(.nav-cta):last-of-type { border-bottom: none; }
  .nav a .nav-text::after { display: none; } /* без underline-анімації в мобільному */

  /* Помітний CTA внизу overlay-меню (тільки в мобільній версії). */
  .nav .nav-cta {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 28px auto 0;
    padding: 18px 26px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(180deg, #16dfc1 0%, var(--teal) 100%);
    box-shadow:
      0 14px 32px rgba(0, 201, 167, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
    color: var(--navy-deep);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    transition: filter var(--transition-fast);
  }
  .nav .nav-cta:hover { filter: brightness(1.08); }
  .nav .nav-cta:active { filter: brightness(0.96); transition-duration: 0s; }

  /* Корекція якщо WP Admin Bar активний */
  .admin-bar .nav { top: 32px; }
  @media (max-width: 782px) {
    .admin-bar .nav { top: 46px; }
  }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
  .qa-section .flow { grid-template-columns: 1fr; }
  .qa-section .flow-step { min-height: auto; }
  .thesis-head { grid-template-columns: 1fr; gap: 24px; }
  .thesis-title-block .section-title { margin-bottom: 28px; }
  .thesis-head .section-intro { margin-top: 0; }
  .thesis-grid { grid-template-columns: 1fr; }
  .thesis-card { min-height: auto; border-right: none; border-bottom: 1px solid var(--line); padding-top: 86px; }
  .thesis-card:last-child { border-bottom: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .mandates-grid { grid-template-columns: repeat(2, 1fr); }
  .mandate-card,
  .mandate-card:nth-child(4),
  .mandate-card:nth-child(5) { grid-column: span 1; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .startups-grid { grid-template-columns: 1fr; gap: 48px; }
  .proof-head { grid-template-columns: 1fr; gap: 24px; }
  .proof-card-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-card:nth-child(2) { border-right: none; }
  .proof-card:nth-child(1),
  .proof-card:nth-child(2) { border-bottom: 1px solid var(--line); }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-aside { position: static; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 620px; }
  .hero-growth { max-width: 620px; min-height: 420px; margin-top: 0; }
  .hero-title-fixed { white-space: normal; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-talk { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .footer-contact-strip { max-width: 620px; grid-template-columns: 1fr; }
  .footer-contact-strip > * + * { border-left: none; border-top: 1px solid var(--line); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-split { grid-template-columns: 1fr; gap: 40px; }
  .capability-grid { grid-template-columns: 1fr; }
  .deal-grid { grid-template-columns: 1fr; }
  .content-grid,
  .card-grid,
  .card-grid.two { grid-template-columns: 1fr; }
  .logo-cloud { grid-template-columns: repeat(2, 1fr); }
  .cycle-legend { grid-template-columns: 1fr; gap: 24px; }
  .ladder { padding: 80px 0; }
  .ladder-svg { max-height: 280px; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; --section-gap: 72px; }
  .cta-link { display: none; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-head { grid-template-columns: 1fr; gap: 24px; }
  .focus-head .right { margin-top: 0; text-align: left; transform: none; }
  .mandates-grid { grid-template-columns: 1fr; }
  .mandate-card { min-height: auto; }
  .qa-section .philosophy-grid > div:first-child {
    text-align: left;
    margin-bottom: 40px;
  }
  .qa-section .philosophy-grid > div:first-child .section-intro {
    margin-left: 0;
    margin-right: 0;
  }
  .qa-section .flow-step {
    padding: 26px;
  }
  .qa-section .flow-step:hover {
    padding-left: 26px;
    transform: none;
  }
  .qa-section .flow-step h4 {
    min-height: auto;
  }
  .mandate-card h3,
  .thesis-card h3,
  .signal-item h3,
  .capability-card h3,
  .deal-card h3,
  .proof-card h3 { min-height: auto; }
  .proof-card-grid { grid-template-columns: 1fr; }
  .proof-card,
  .proof-card:nth-child(2) { border-right: none; border-bottom: 1px solid var(--line); }
  .proof-card:last-child { border-bottom: none; }
  .criteria-grid { grid-template-columns: 1fr; gap: 20px; }
  .cycle-stage { margin: 0 -8px; }
  .ladder-stage { margin: 0 -8px 32px; }
  .startups-meta { flex-direction: column; gap: 24px; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { min-height: 280px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-talk { padding-bottom: 40px; margin-bottom: 40px; }
  .footer-contact-strip { grid-template-columns: 1fr; }
  .footer-contact-strip > * + * { border-left: none; border-top: 1px solid var(--line); }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: auto; }
  .page-hero { padding: 128px 0 56px; }
  .ecosystem-map,
  .competency-map { grid-template-columns: 1fr; }
  .timeline-point { grid-template-columns: 62px 1fr; }
  .hero { min-height: auto; padding: 128px 0 72px; }
  .hero-text,
  .hero-sub,
  .hero-actions,
  .hero-proof {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-sub,
  .hero-proof span {
    overflow-wrap: anywhere;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-growth { min-height: auto; padding: 0; }
  .growth-svg { width: 100%; min-height: 320px; margin-left: 0; }
  .hero-mark { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero-mark::before { width: 28px; }
  .hero-actions .btn { width: 100%; min-width: 0; justify-content: center; }
  .back-to-top { right: 20px; bottom: 20px; width: 42px; height: 42px; }
  .content-section { padding: 64px 0; }
  .inquiry-form { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .logo-cloud { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .scroll-line::after { display: none; }
  .chart-bar { opacity: 1; transform: none; }
}

/* ============================================================ */

/* ============================================================ */
/* Latest news section — editorial layout (v1.7.0)               */
/* ============================================================ */
.latest-news {
  padding: 110px 0;
  background: var(--navy-deep);
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.latest-news::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(0, 201, 167, 0.08), transparent 35%),
    radial-gradient(circle at 10% 85%, rgba(0, 201, 167, 0.05), transparent 40%);
  pointer-events: none;
}

.latest-news .container {
  position: relative;
  z-index: 1;
}

/* === HEAD === */
.latest-news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.latest-news-head-left .eyebrow { margin-bottom: 14px; }
.latest-news-head-left .section-title { margin: 0; }

.latest-news-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  background: transparent;
  border: 1px solid var(--teal-line);
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.latest-news-all:hover {
  background: var(--teal);
  color: var(--navy-deep);
  border-color: var(--teal);
}
.latest-news-all .arrow { transition: transform var(--transition-fast); }
.latest-news-all:hover .arrow { transform: translateX(4px); }

/* === LAYOUT === */
.latest-news-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: stretch;
}

/* === FEATURE ARTICLE === */
.latest-news-feature {
  position: relative;
}
.latest-news-feature-link {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  height: 100%;
  padding: 36px 36px 36px 32px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.latest-news-feature-link::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.latest-news-feature-link:hover {
  background: var(--navy-3);
  border-color: var(--teal-line);
  transform: translateY(-4px);
}
.latest-news-feature-link:hover::before { transform: scaleY(1); }

.latest-news-feature-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}
.latest-news-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.08em;
}
.latest-news-feature-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--teal-faint);
  border: 1px solid var(--teal-line);
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
  line-height: 1.3;
}
.latest-news-feature-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.latest-news-feature-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.latest-news-feature-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
  transition: color var(--transition-fast);
  letter-spacing: -0.01em;
}
.latest-news-feature-link:hover .latest-news-feature-title { color: var(--teal); }
.latest-news-feature-excerpt {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0;
  flex-grow: 1;
}
.latest-news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.05em;
}
.latest-news-readmore .arrow { transition: transform var(--transition-fast); }
.latest-news-feature-link:hover .latest-news-readmore .arrow { transform: translateX(5px); }

/* === SIDE ITEMS === */
.latest-news-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.latest-news-side-item { position: relative; }
.latest-news-side-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px 30px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  position: relative;
}
.latest-news-side-link:hover {
  background: var(--navy-2);
  border-color: var(--teal-line);
  padding-left: 36px;
}

.latest-news-side-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.latest-news-side-cat { color: var(--teal); font-weight: 500; }
.latest-news-side-divider { color: var(--muted-2); }

.latest-news-side-title {
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin: 0;
  transition: color var(--transition-fast);
  flex-grow: 1;
  letter-spacing: -0.005em;
}
.latest-news-side-link:hover .latest-news-side-title { color: var(--teal); }

.latest-news-side-arrow {
  position: absolute;
  bottom: 22px;
  right: 26px;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--teal);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition-fast);
}
.latest-news-side-link:hover .latest-news-side-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .latest-news { padding: 80px 0; }
  .latest-news-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .latest-news-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .latest-news-feature-link {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 24px;
  }
  .latest-news-feature-side { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 10px; }
  .latest-news-side-link { padding: 22px 26px; }
  .latest-news-side-link:hover { padding-left: 28px; }
}

@media (max-width: 640px) {
  .latest-news { padding: 60px 0; }
  .latest-news-feature-link { padding: 22px 18px; }
  .latest-news-feature-title { font-size: 21px; }
  .latest-news-side-link { padding: 18px 22px; }
  .latest-news-side-arrow { display: none; }
}

/* ============================================================
   SINGLE POST — article + sidebar (v1.8.0)
   ============================================================ */

.iv-single-wrap {
  padding: 140px var(--gutter) 100px;
  max-width: var(--container);
  margin: 0 auto;
}

.iv-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 60px;
  align-items: start;
}

/* === Main column === */
.iv-single-main {
  min-width: 0; /* fix grid overflow */
}

.iv-single-header {
  margin-bottom: 32px;
}

.iv-single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.iv-single-date,
.iv-single-read-time { color: var(--muted); }
.iv-single-cat {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}
.iv-single-cat:hover { border-bottom-color: var(--teal); }
.iv-single-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted-2);
}

.iv-single-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--text);
  margin: 0 0 22px;
  max-width: 920px;
}

.iv-single-excerpt {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 780px;
  margin: 0;
}

.iv-single-cover {
  margin: 0 0 36px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.iv-single-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.iv-single-content {
  font-size: 17px;
  line-height: 1.78;
  color: var(--text);
}
.iv-single-content > * + * { margin-top: 1.1em; }
.iv-single-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin: 2em 0 0.7em;
  padding-left: 16px;
  border-left: 3px solid var(--teal);
  letter-spacing: -0.01em;
}
.iv-single-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 600;
  color: var(--text);
  margin: 1.6em 0 0.5em;
}
.iv-single-content p { color: var(--text-soft); }
.iv-single-content strong { color: var(--text); font-weight: 600; }
.iv-single-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.iv-single-content a:hover { text-decoration-thickness: 2px; }
.iv-single-content ul,
.iv-single-content ol { margin: 0.75em 0 1.25em; padding-left: 1.6em; color: var(--text-soft); }
.iv-single-content li { margin-bottom: 0.45em; line-height: 1.65; }
.iv-single-content ul > li::marker { color: var(--teal); }
.iv-single-content blockquote {
  margin: 1.5em 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--teal);
  color: var(--text-soft);
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
}
.iv-single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 15px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.iv-single-content thead th {
  background: rgba(0, 201, 167, 0.08);
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--teal-line);
}
.iv-single-content tbody tr { border-bottom: 1px solid var(--line); }
.iv-single-content tbody tr:last-child { border-bottom: none; }
.iv-single-content tbody td {
  padding: 11px 16px;
  color: var(--text-soft);
  vertical-align: top;
  line-height: 1.55;
}
.iv-single-content code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: rgba(0, 201, 167, 0.08);
  color: var(--teal);
  padding: 2px 6px;
  border-radius: 3px;
}
.iv-single-content pre {
  background: var(--navy-deep);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 20px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.5;
}

.iv-single-tags {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.iv-single-tags .eyebrow { margin-bottom: 14px; }
.iv-single-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.iv-tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-soft);
  background: var(--teal-faint);
  border: 1px solid var(--teal-line);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-mono);
  transition: all var(--transition-fast);
}
.iv-tag-chip:hover {
  color: var(--navy-deep);
  background: var(--teal);
  border-color: var(--teal);
}

.iv-single-back {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.iv-single-back a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--teal-line);
  padding-bottom: 2px;
  transition: border-color var(--transition-fast);
}
.iv-single-back a:hover { border-bottom-color: var(--teal); }

/* === Sidebar === */
.iv-single-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-self: start;
}

.iv-sidebar-block {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
}

.iv-sidebar-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.iv-sidebar-title::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--teal);
}

.iv-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.iv-sidebar-list li { margin: 0; }
.iv-sidebar-list a {
  display: block;
  padding: 10px 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: padding-left var(--transition-fast);
}
.iv-sidebar-list li:last-child a { border-bottom: none; }
.iv-sidebar-list a:hover { padding-left: 6px; }
.iv-sidebar-list-date {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.iv-sidebar-list-title {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition-fast);
}
.iv-sidebar-list a:hover .iv-sidebar-list-title { color: var(--teal); }

.iv-sidebar-cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.iv-sidebar-cats li { margin: 0; }
.iv-sidebar-cats a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color var(--transition-fast);
}
.iv-sidebar-cats li:last-child a { border-bottom: none; }
.iv-sidebar-cats a:hover { color: var(--teal); }
.iv-sidebar-cat-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color var(--transition-fast);
}
.iv-sidebar-cats a:hover .iv-sidebar-cat-name { color: var(--teal); }
.iv-sidebar-cat-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 9px;
  flex-shrink: 0;
}

.iv-sidebar-cta {
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.08), rgba(0, 201, 167, 0.02));
  border-color: var(--teal-line);
}
.iv-sidebar-cta-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  transition: gap var(--transition-fast);
}
.iv-sidebar-cta-link:hover { gap: 18px; }
.iv-sidebar-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-size: 16px;
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.iv-sidebar-cta-link:hover .iv-sidebar-cta-arrow {
  background: var(--teal);
  color: var(--navy-deep);
}
.iv-sidebar-cta-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
}

/* === Single responsive === */
@media (max-width: 980px) {
  .iv-single-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .iv-single-sidebar {
    position: static;
    top: auto;
  }
}
@media (max-width: 640px) {
  .iv-single-wrap { padding: 110px var(--gutter) 60px; }
  .iv-single-cover { margin-bottom: 24px; }
  .iv-single-content { font-size: 16px; line-height: 1.7; }
}

/* ============================================================
   ARCHIVE — blog list (v1.8.0)
   Перенесено з inline <style> в archive.php
   ============================================================ */

.iv-blog-list { list-style: none; margin: 0; padding: 0; }
.iv-blog-list-item {
  border-bottom: 1px solid var(--line);
}
.iv-blog-list-item:first-child { border-top: 1px solid var(--line); }

.iv-blog-list-link {
  display: block;
  padding: 28px 26px;
  margin: 0 -26px; /* витягуємо overlay за межі контентної ширини щоб виглядав як full-bleed */
  color: inherit;
  text-decoration: none;
  position: relative;
  border-radius: 6px;
  transition: background var(--transition-fast);
}
.iv-blog-list-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--teal-faint), transparent 70%);
  opacity: 0;
  pointer-events: none;
  border-radius: 6px;
  transition: opacity var(--transition-fast);
}
.iv-blog-list-link:hover::before { opacity: 1; }

.iv-blog-list-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.07em;
  color: var(--muted);
  text-transform: uppercase;
}
.iv-blog-list-num { color: var(--teal); font-weight: 600; letter-spacing: 0.1em; }
.iv-blog-list-cat { color: var(--text); font-weight: 500; }
.iv-blog-list-divider { color: var(--muted-2); }

.iv-blog-list-title {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 14px 0;
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
  max-width: 920px;
}
.iv-blog-list-link:hover .iv-blog-list-title { color: var(--teal); }

.iv-blog-list-excerpt {
  position: relative;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 18px 0;
  max-width: 780px;
}

.iv-blog-list-foot {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
}
.iv-blog-list-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.05em;
}
.iv-blog-list-readmore .arrow { transition: transform var(--transition-fast); }
.iv-blog-list-link:hover .iv-blog-list-readmore .arrow { transform: translateX(5px); }

.iv-blog-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.iv-blog-list-tag {
  display: inline-flex;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .iv-blog-list-link { padding: 22px 16px; margin: 0 -16px; }
  .iv-blog-list-foot { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   GLOSSARY — alphabetic tag listing (v1.8.0)
   ============================================================ */

.iv-glossary-letters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.iv-glossary-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-faint);
  border: 1px solid var(--teal-line);
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--transition-fast);
}
.iv-glossary-letter:hover {
  background: var(--teal);
  color: var(--navy-deep);
}

.iv-glossary-group {
  margin-bottom: 60px;
  scroll-margin-top: 120px;
}
.iv-glossary-group-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--teal);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-line);
  display: inline-block;
  padding-right: 30px;
}

.iv-glossary-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.iv-glossary-item {
  padding: 22px 24px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all var(--transition-fast);
}
.iv-glossary-item:hover {
  border-color: var(--teal-line);
  background: var(--navy-3);
}

.iv-glossary-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.iv-glossary-item-name {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
}
.iv-glossary-item-name a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-fast);
}
.iv-glossary-item-name a:hover { border-bottom-color: var(--teal); }
.iv-glossary-item-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.iv-glossary-item-desc {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 15px;
}

/* ============================================================
   PAGE HERO — compact variant (для довідникових сторінок:
   глосарій, tag archive). Активується класом .page-hero--compact.
   Звичайний .page-hero (без модифікатора) лишається landing-style
   для inner pages як about, projects, investment.
   ============================================================ */
.page-hero--compact {
  min-height: 0;
  padding: 110px 0 28px;
  background: none;
  border-bottom: 1px solid var(--line);
}
.page-hero--compact::after {
  display: none;
}
.page-hero--compact .eyebrow {
  margin-bottom: 14px;
}
.page-hero--compact h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
  max-width: 760px;
}
.page-hero--compact .page-hero-intro {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 720px;
  margin-bottom: 14px;
  margin-top: 0;
}
.page-hero--compact .page-hero-back {
  color: var(--teal);
  border-bottom: 1px solid var(--teal-line);
  text-decoration: none;
}
.page-hero--compact .hero-proof {
  margin-top: 8px;
}
.page-hero--compact .hero-proof span {
  font-size: 11px;
  padding: 5px 10px;
}
@media (max-width: 640px) {
  .page-hero--compact { padding: 90px 0 22px; }
  .page-hero--compact h1 { font-size: clamp(24px, 6vw, 30px); }
}

/* ============================================================
   PAGINATION (used on archive, tag, paginated pages)
   ============================================================ */
.iv-pagination {
  margin-top: 60px;
}
.iv-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.iv-pagination a,
.iv-pagination span.current,
.iv-pagination span.dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  transition: all var(--transition-fast);
}
.iv-pagination a:hover {
  border-color: var(--teal-line);
  color: var(--teal);
  background: var(--teal-faint);
}
.iv-pagination span.current {
  background: var(--teal);
  color: var(--navy-deep);
  border-color: var(--teal);
  font-weight: 600;
}
.iv-pagination span.dots {
  border-color: transparent;
  color: var(--muted);
}
.iv-pagination .screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
}

/* ============================================================
   LEGAL CONTENT (cookie / privacy fallback styles)
   ============================================================ */
.legal-content { font-size: 16px; line-height: 1.75; color: var(--text-soft); }
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.legal-content p { margin: 0 0 1em; }
.legal-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul, .legal-content ol { padding-left: 1.5em; margin: 0.5em 0 1em; }
.legal-content li { margin-bottom: 0.4em; }
.legal-content strong { color: var(--text); font-weight: 600; }
.iv-legal-card {
  margin-top: 56px;
  padding: 28px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.7;
}
.iv-legal-card .eyebrow { margin-bottom: 14px; }
.iv-legal-card p { margin: 0 0 8px; }

/* ============================================================
   BLOG ARCHIVE — hero in grid context (v1.8.2)
   Використовується в archive.php та tag.php — заголовок усередині
   лівої колонки .iv-single-main, не повноширинний.
   ============================================================ */

.iv-blog-archive-main {
  /* Уже в .iv-single-grid → .iv-single-main */
}

.iv-blog-archive-hero {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.iv-blog-archive-hero .eyebrow {
  margin-bottom: 18px;
}

.iv-blog-archive-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.08;
  color: var(--text);
  margin: 0 0 22px;
}

.iv-blog-archive-intro {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 780px;
  margin: 0 0 18px;
}

/* Сітка blog-list у вузькій колонці — менші відступи, але з тим самим overlay-ефектом */
.iv-blog-archive-main .iv-blog-list-link {
  padding: 24px 18px;
  margin: 0 -18px;
}
.iv-blog-archive-main .iv-blog-list-title {
  font-size: clamp(20px, 1.9vw, 26px);
}

/* ============================================================
   GLOSSARY — empty state (helpful for admins)
   ============================================================ */
.iv-glossary-empty-state {
  padding: 60px 0;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.iv-glossary-empty-state h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--text);
  margin: 0 0 16px;
  font-weight: 700;
}
.iv-glossary-empty-state p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.iv-glossary-empty-admin {
  margin-top: 32px !important;
  padding: 18px 20px;
  background: var(--teal-faint);
  border: 1px solid var(--teal-line);
  border-radius: 8px;
  color: var(--text-soft) !important;
  text-align: left;
  font-size: 14px !important;
  line-height: 1.65 !important;
}
.iv-glossary-empty-admin strong { color: var(--teal); }

/* ============================================================
   PREMIUM POLISH LAYER
   Small visual refinements kept as overrides so the base theme stays stable.
   ============================================================ */
html {
  text-rendering: geometricPrecision;
}
body {
  background:
    linear-gradient(180deg, #06111f 0%, var(--navy) 42%, #071525 100%);
}
::selection {
  background: rgba(0, 201, 167, 0.28);
  color: #fff;
}
:focus-visible {
  outline: 2px solid rgba(0, 201, 167, 0.72);
  outline-offset: 4px;
}
.header-inner {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 54px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
/* GPU-плавність для header при scroll — тільки на десктопі.
   На мобільному transform створює containing block для .nav (overlay-меню),
   через що меню стискається до меж header замість fullscreen. */
@media (min-width: 1025px) {
  .header-inner {
    transform: translateZ(0);
    will-change: padding, background-color, border-color;
  }
}
.logo img {
  filter: drop-shadow(0 5px 14px rgba(0, 201, 167, 0.12));
}
.lang,
.nav-toggle,
.btn,
.cta-link {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero {
  background:
    linear-gradient(180deg, rgba(6, 18, 32, 0.98) 0%, rgba(6, 18, 32, 0.72) 48%, var(--navy) 100%),
    radial-gradient(circle at 82% 34%, rgba(0, 201, 167, 0.14), transparent 36%),
    radial-gradient(circle at 18% 10%, rgba(215, 180, 106, 0.08), transparent 30%);
}
.hero h1,
.page-hero h1,
h2.section-title {
  text-wrap: balance;
}
.hero h1 {
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}
.hero-sub,
.section-intro,
.page-hero p {
  color: rgba(232, 237, 245, 0.82);
}
.hero-proof span,
.startup-tag,
.iv-tag-chip,
.latest-news-feature-cat {
  backdrop-filter: blur(10px);
}
.btn,
.cta-link {
  min-height: 48px;
  border-radius: 5px;
}
/* Преміальна верхня "глянцева" лінія + м'яка тінь під кнопкою.
   Все статичне — анімується тільки brightness через filter (GPU-only, без doom flicker). */
.btn-primary,
.cta-link {
  background: linear-gradient(180deg, #16dfc1 0%, var(--teal) 100%);
  box-shadow:
    0 14px 32px rgba(0, 201, 167, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(232, 237, 245, 0.34);
}
.mandate-card,
.focus-card,
.thesis-card,
.iv-sidebar-block,
.latest-news-feature-link,
.latest-news-side-link,
.iv-glossary-item,
.contact-panel {
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}
.mandate-card:hover,
.focus-card:hover,
.latest-news-feature-link:hover,
.latest-news-side-link:hover,
.iv-glossary-item:hover {
  transform: translateY(-5px);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 201, 167, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}
.focus-card:hover {
  background:
    linear-gradient(145deg, rgba(0, 201, 167, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
}
.inquiry-form {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 242, 249, 0.98));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}
.field-group input,
.field-group select,
.field-group textarea {
  border-color: rgba(35, 38, 56, 0.16);
  background: rgba(255, 255, 255, 0.72);
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  box-shadow:
    0 0 0 4px rgba(0, 201, 167, 0.12),
    0 12px 26px rgba(12, 28, 50, 0.08);
}
.footer,
.latest-news,
.contact {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

/* Smoothness layer: keep premium motion on compositor-friendly properties.
   Cards still translate on hover; buttons use filter-only animation (вже GPU). */
.back-to-top,
.mandate-card,
.focus-card,
.latest-news-feature-link,
.latest-news-side-link,
.iv-blog-list-link,
.iv-glossary-item {
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media (hover: hover) and (pointer: fine) {
  .back-to-top:hover,
  .mandate-card:hover,
  .focus-card:hover,
  .latest-news-feature-link:hover,
  .latest-news-side-link:hover,
  .iv-blog-list-link:hover,
  .iv-glossary-item:hover {
    will-change: transform;
  }
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .cursor-glow {
    display: none;
  }
}
@media (max-width: 640px) {
  .header-inner {
    border-radius: 10px;
    padding: 12px 14px;
  }
  .logo img {
    height: 34px;
  }
  .hero h1 {
    font-size: clamp(35px, 10.8vw, 44px);
    line-height: 1.04;
  }
  .hero-sub {
    font-size: 17px;
    line-height: 1.55;
  }
  .hero-proof {
    gap: 8px;
  }
  .hero-proof span {
    border-radius: 8px;
  }
  .btn,
  .cta-link {
    min-height: 46px;
  }
}
/* =========================================================
   STARTUPS — ROCKET BLUEPRINT (v2.0.9+)
   Права колонка .startups: SVG-ракета, що пролітає 6 стадій
   життєвого циклу стартапу. Без власного контейнера/рамки —
   ракета живе прямо на navy-фоні секції, blueprint-сітка
   делікатна (фоновий шум, не "стіна").
   ========================================================= */

/* Грід: ширша ліва колонка, обидві колонки розтягнуті по висоті,
   контент лівої колонки сидить у вертикальному центрі.
   Тільки для desktop — на mobile (≤1024px) спрацьовує оригінальне
   правило 1fr (одна колонка) з рядка ~2399. */
@media (min-width: 1025px) {
  .startups-grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: stretch;
  }
  .startups-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 640px;
  }
}

/* Текстове посилання замість важкої кнопки .btn.btn-ghost.
   Pairing з тегами: той самий teal, той самий моноширинний шрифт,
   але тонший за вагою — read'ться як "supporting link", не CTA. */
.startups-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--teal);
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}
.startups-link:hover {
  color: var(--teal);
  gap: 14px;
}
.startups-link-arrow {
  color: var(--teal);
  font-size: 14px;
  transition: transform 0.2s ease;
}
.startups-link:hover .startups-link-arrow {
  transform: translate(2px, -2px);
}

/* Ракета — без власного контейнера, фону, рамки.
   Просто SVG на загальному navy-фоні секції .startups */
.startups-rocket {
  display: block;
  position: relative;
  color: var(--teal);
  align-self: center;
  width: 100%;
  aspect-ratio: 1 / 1.15;
  max-height: 520px;
}
.startups-rocket .rocket-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Делікатна blueprint-сітка — атмосфера, не "вікно".
   Opacity знижено з 0.16 → 0.07 — сітка ледь читається, не сперечається з текстом. */
.rocket-grid-fill {
  color: var(--teal);
  opacity: 0.45;                /* множиться з opacity 0.16 в самому pattern → ~0.07 ефективно */
}

.rocket-trajectory {
  stroke: var(--teal);
  stroke-width: 0.6;
  opacity: 0.35;
  fill: none;
}

.rocket-tick {
  stroke: var(--teal);
  stroke-width: 0.5;
  opacity: 0.5;
}

.rocket-stage-num {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: var(--teal);
  opacity: 0.75;
}

.rocket-stage-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  fill: var(--text);
}

.rocket-stage-sub {
  font-family: var(--font-mono);
  font-size: 8px;
  fill: var(--teal);
  opacity: 0.55;
}

.rocket-checkpoint {
  fill: var(--navy);
  stroke: var(--teal);
  stroke-width: 1.2;
  transition: r 0.3s ease, fill 0.3s ease;
}

/* Ракета — корпус */
.rocket-shell {
  fill: var(--navy);
  stroke: var(--teal);
  stroke-width: 1.2;
  stroke-linejoin: round;
}
.rocket-detail {
  stroke: var(--teal);
  stroke-width: 0.6;
  opacity: 0.7;
}
.rocket-window {
  fill: var(--teal);
  opacity: 0.85;
}
.rocket-fin {
  fill: var(--navy);
  stroke: var(--teal);
  stroke-width: 1.2;
  stroke-linejoin: round;
}

/* Полум'я */
.rocket-flame-side {
  fill: var(--teal);
  opacity: 0.45;
}
.rocket-flame-core {
  fill: var(--teal-bright, #5dcaa5);
  opacity: 0.75;
}

/* ========== АНІМАЦІЯ ========== */

.rocket-vehicle {
  animation: iv-rocket-journey 12s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes iv-rocket-journey {
  0%   { transform: translateY(340px); opacity: 0; }
  3%   { transform: translateY(340px); opacity: 1; }
  10%  { transform: translateY(340px); opacity: 1; }
  18%  { transform: translateY(276px); opacity: 1; }
  28%  { transform: translateY(276px); opacity: 1; }
  36%  { transform: translateY(212px); opacity: 1; }
  46%  { transform: translateY(212px); opacity: 1; }
  54%  { transform: translateY(148px); opacity: 1; }
  64%  { transform: translateY(148px); opacity: 1; }
  72%  { transform: translateY(84px);  opacity: 1; }
  82%  { transform: translateY(84px);  opacity: 1; }
  90%  { transform: translateY(30px);  opacity: 1; }
  96%  { transform: translateY(30px);  opacity: 1; }
  100% { transform: translateY(-40px); opacity: 0; }
}

.rocket-exhaust {
  animation: iv-rocket-flame 0.24s ease-in-out infinite alternate;
  transform-origin: 180px 28px;
  will-change: transform, opacity;
}

@keyframes iv-rocket-flame {
  0%   { transform: scaleY(0.95) scaleX(1);    opacity: 0.7; }
  100% { transform: scaleY(1.3)  scaleX(0.85); opacity: 1; }
}

/* Підсвічення checkpoint-кружечка коли ракета поруч */
.rocket-checkpoint {
  animation: iv-rocket-pulse 12s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.rocket-checkpoint-1 { animation-delay: 0.5s; }
.rocket-checkpoint-2 { animation-delay: 2.2s; }
.rocket-checkpoint-3 { animation-delay: 4.3s; }
.rocket-checkpoint-4 { animation-delay: 6.4s; }
.rocket-checkpoint-5 { animation-delay: 8.5s; }
.rocket-checkpoint-6 { animation-delay: 10.6s; }

@keyframes iv-rocket-pulse {
  0%, 95%, 100% { fill: var(--navy); transform: scale(1); }
  2%,  8%       { fill: var(--teal); transform: scale(1.35); }
}

/* Респект до користувачів з prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .rocket-vehicle,
  .rocket-exhaust,
  .rocket-checkpoint {
    animation: none;
  }
  .rocket-vehicle {
    transform: translateY(180px);  /* ракета зависає на середині траси */
  }
}

/* Mobile: ракета йде під текстом окремим блоком на всю ширину контейнера.
   Breakpoint 1024px узгоджено з основним mobile-правилом теми (.startups-grid → 1fr). */
@media (max-width: 1024px) {
  .startups-rocket {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 1 / 1.15;
    max-height: 460px;
  }
}
