﻿:root {
  /* BANEM Navy palette — institutional */
  --navy-900: #0A1F44;
  --navy-800: #122a55;
  --navy-700: #1B2C5E;
  --blue-600: #1E63E9;
  --blue-500: #3B7CF0;

  /* Portfolio colors */
  --workalaize: #2E8B57;
  --workalaize-soft: #E8F1EC;
  --healthalaize: #1AB1A0;
  --healthalaize-soft: #E4F4F1;
  --human-ascent: #6B2FB4;
  --human-ascent-soft: #ECE5F3;

  /* Surfaces — warm institutional off-white */
  --paper: #F7F4EE;
  --paper-deep: #EFEAE0;
  --bone: #FAF8F3;
  --ink: #0A1F44;
  --ink-muted: #5A6178;
  --ink-faint: #9099AA;
  --hairline: rgba(10, 31, 68, 0.12);
  --hairline-strong: rgba(10, 31, 68, 0.22);

  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle paper grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.12 0 0 0 0 0.27 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.logo-symbols {
  position: absolute;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ========== NAVIGATION ========== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--navy-900);
}

.brand-tag {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--blue-600); }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--blue-600);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  padding: 9px 18px;
  border: 1px solid var(--navy-900);
  border-radius: 999px;
  transition: all 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--navy-900);
  color: var(--bone) !important;
}

.nav-cta::after { display: none; }

.menu-toggle { display: none; }

/* ========== HERO ========== */
.hero {
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 56px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-meta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-600);
}

.hero-meta-spacer {
  margin-left: auto;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(56px, 9.5vw, 144px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 48px;
  max-width: 14ch;
}

.hero-headline .accent {
  font-style: italic;
  color: var(--blue-600);
  font-weight: 400;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 32px;
}

.hero-lede {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  max-width: 38ch;
}

.hero-lede strong {
  font-weight: 500;
  color: var(--navy-900);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
}

.fact-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.fact-value {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  color: var(--navy-900);
  font-weight: 400;
}

/* Hero decorative element */
.hero-orbit {
  position: absolute;
  right: -120px;
  top: 30%;
  width: 480px;
  height: 480px;
  pointer-events: none;
  opacity: 0.08;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========== SECTION HEADERS ========== */
section { position: relative; }

.section-mark {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}

.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--blue-600);
  font-weight: 400;
}

.section-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.section-eyebrow {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  max-width: 22ch;
  margin-bottom: 24px;
}

.section-eyebrow .italic { font-style: italic; }

/* ========== ABOUT / HOLDING ========== */
.about {
  padding: 100px 0;
  background: var(--bone);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 90px;
  align-items: start;
}

.about-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 56ch;
}

.about-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.85;
  float: left;
  margin: 6px 10px 0 0;
  color: var(--navy-900);
  font-weight: 400;
}

.about-pulls {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline-strong);
  margin-top: 40px;
}

.pull {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}

.pull-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--blue-600);
}

.pull-text {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}

.pull-text strong {
  font-weight: 500;
  color: var(--navy-900);
}

/* ========== PORTFOLIO ========== */
.portfolio {
  padding: 110px 0 100px;
  background: var(--paper);
}

.portfolio-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

.brand-card {
  display: grid;
  grid-template-columns: 280px 1fr 220px;
  gap: 56px;
  align-items: center;
  padding: 48px 56px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--bone);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--card-color, var(--navy-900));
  transition: width 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px -20px rgba(10, 31, 68, 0.18);
  border-color: var(--card-color);
}

.brand-card:hover::before { width: 8px; }

.brand-card-mark {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-card-name {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  color: var(--card-color, var(--navy-900));
  font-weight: 400;
  letter-spacing: -0.01em;
}

.brand-card-status {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--card-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--card-color) 18%, transparent);
}

.brand-card-body {
  border-left: 1px solid var(--hairline);
  padding-left: 56px;
}

.brand-card-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.brand-card-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 50ch;
}

.brand-card-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 12px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--hairline);
}

.meta-row:last-child { border-bottom: none; }

.meta-key {
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.meta-val {
  color: var(--navy-900);
  font-weight: 500;
}

/* Card variants */
.brand-card.workalaize { --card-color: var(--workalaize); }
.brand-card.healthalaize { --card-color: var(--healthalaize); }
.brand-card.human-ascent { --card-color: var(--human-ascent); }

/* ========== INVESTMENT THESIS ========== */
.thesis {
  padding: 110px 0;
  background: var(--navy-900);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}

.thesis::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(30, 99, 233, 0.18), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(26, 177, 160, 0.12), transparent 50%);
  pointer-events: none;
}

.thesis .section-mark {
  border-color: rgba(255, 255, 255, 0.15);
}

.thesis .section-num { color: var(--blue-500); }

.thesis .section-name { color: rgba(255, 255, 255, 0.55); }

.thesis-headline {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 80px;
  max-width: 16ch;
}

.thesis-headline .italic { font-style: italic; color: var(--blue-500); }

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.principle {
  padding: 32px 28px 32px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.principle:last-child { border-right: none; padding-right: 0; }

.principle-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--blue-500);
  margin-bottom: 16px;
}

.principle-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.principle-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

/* ========== STRUCTURE / GOVERNANCE ========== */
.structure {
  padding: 110px 0;
  background: var(--paper-deep);
}

.structure-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}

.structure-diagram {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 56px 40px;
  position: relative;
}

.diagram-tier {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
}

.diagram-node {
  background: var(--navy-900);
  color: var(--bone);
  padding: 18px 28px;
  border-radius: 3px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-align: center;
  min-width: 200px;
  position: relative;
}

.diagram-node small {
  display: block;
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.diagram-line-down {
  width: 1px;
  height: 36px;
  background: var(--hairline-strong);
  margin: 0 auto;
}

.diagram-line-bus {
  position: relative;
  height: 1px;
  background: var(--hairline-strong);
  width: 70%;
  margin: 0 auto;
}

.diagram-line-bus::before,
.diagram-line-bus::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 28px;
  background: var(--hairline-strong);
  top: 1px;
}

.diagram-line-bus::before { left: 0; }
.diagram-line-bus::after { right: 0; }

.diagram-line-bus .mid-tick {
  position: absolute;
  left: 50%;
  top: 1px;
  width: 1px;
  height: 28px;
  background: var(--hairline-strong);
}

.diagram-children {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.diagram-child {
  padding: 16px 12px;
  border-radius: 3px;
  text-align: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--bone);
  border: 1px solid;
}

.diagram-child small {
  display: block;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

.diagram-child.workalaize { background: var(--workalaize); border-color: var(--workalaize); }
.diagram-child.healthalaize { background: var(--healthalaize); border-color: var(--healthalaize); }
.diagram-child.human-ascent { background: var(--human-ascent); border-color: var(--human-ascent); }

.diagram-caption {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
}

.governance-list {
  display: grid;
  gap: 0;
}

.gov-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}

.gov-item:first-child { padding-top: 0; }

.gov-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--blue-600);
}

.gov-title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
  color: var(--navy-900);
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.gov-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 56ch;
}

/* ========== LEADERSHIP / FOUNDER ========== */
.founder {
  padding: 110px 0;
  background: var(--paper);
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
  padding: 56px 64px;
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.founder-card::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(30, 99, 233, 0.06), transparent 70%);
  pointer-events: none;
}

.founder-quote {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.25;
  color: var(--navy-900);
  letter-spacing: -0.005em;
  font-weight: 400;
}

.founder-quote .italic { font-style: italic; color: var(--blue-600); }

.founder-quote::before {
  content: '"';
  font-family: var(--serif);
  font-size: 96px;
  line-height: 0.5;
  color: var(--blue-600);
  display: block;
  margin-bottom: 16px;
  margin-left: -8px;
}

.founder-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.founder-name {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--navy-900);
  font-weight: 400;
  letter-spacing: -0.005em;
}

.founder-role {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}

.founder-bio {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  max-width: 48ch;
}

/* ========== CAPITAL / CONTACT ========== */
.capital {
  padding: 110px 0;
  background: var(--navy-900);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}

.capital::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(107, 47, 180, 0.18), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(46, 139, 87, 0.14), transparent 55%);
  pointer-events: none;
}

.capital .section-mark {
  border-color: rgba(255, 255, 255, 0.15);
}

.capital .section-num { color: var(--blue-500); }
.capital .section-name { color: rgba(255, 255, 255, 0.55); }

.capital-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 90px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.capital-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--bone);
}

.capital-headline .italic { font-style: italic; color: var(--blue-500); }

.capital-text {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 50ch;
  margin-bottom: 36px;
}

.capital-contacts {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-row {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: baseline;
}

.contact-key {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.contact-val {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--bone);
  font-weight: 400;
  line-height: 1.2;
}

.contact-val a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-val a:hover { border-bottom-color: var(--blue-500); }

.contact-val small {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand-mark {
  width: 44px;
  height: 44px;
}

.footer-brand-text {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--bone);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--bone); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .legal {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover { color: rgba(255, 255, 255, 0.85); }

/* ========== NEWS / NYHETSRUM ========== */
.news {
  padding: 110px 0;
  background: var(--bone);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.news-list {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--hairline-strong);
}

.news-item {
  display: grid;
  grid-template-columns: 160px 1fr 120px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
  transition: padding 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  color: inherit;
}

.news-item:hover {
  padding-left: 16px;
}

.news-item:hover .news-arrow {
  transform: translateX(6px);
  color: var(--blue-600);
}

.news-item:hover .news-title {
  color: var(--blue-600);
}

.news-date {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  font-family: var(--sans);
}

.news-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  border-radius: 999px;
  font-weight: 500;
  vertical-align: middle;
}

.news-tag.tag-workalaize { background: var(--workalaize-soft); color: var(--workalaize); }
.news-tag.tag-healthalaize { background: var(--healthalaize-soft); color: var(--healthalaize); }
.news-tag.tag-banem { background: rgba(30, 99, 233, 0.1); color: var(--blue-600); }

.news-content {
  min-width: 0;
}

.news-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}

.news-excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 60ch;
}

.news-arrow {
  text-align: right;
  font-size: 16px;
  color: var(--ink-faint);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-block;
  font-family: var(--sans);
}

.news-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.news-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--navy-900);
  text-decoration: none;
  padding: 12px 22px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.news-all-link:hover {
  background: var(--navy-900);
  color: var(--bone);
  border-color: var(--navy-900);
}

.news-all-link .arr {
  transition: transform 0.2s ease;
}

.news-all-link:hover .arr {
  transform: translateX(3px);
}

/* ========== IR DOCUMENT GRID ========== */
.capital-docs {
  margin-top: 90px;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 1;
}

.capital-docs-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  gap: 32px;
  flex-wrap: wrap;
}

.capital-docs-title {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--bone);
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 24ch;
}

.capital-docs-title .italic { font-style: italic; color: var(--blue-500); }

.capital-docs-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.doc-tile {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 6px;
  padding: 28px 24px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  color: var(--bone);
  transition: background 0.25s ease;
  position: relative;
}

.doc-tile:hover {
  background: rgba(255, 255, 255, 0.04);
}

.doc-tile:hover .doc-arrow {
  transform: translateX(5px);
  color: var(--blue-500);
}

.doc-tile:hover .doc-name {
  color: var(--blue-500);
}

.doc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--blue-500);
  grid-row: 1 / 3;
  align-self: center;
}

.doc-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.005em;
  grid-row: 1;
  grid-column: 2;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.doc-meta {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  grid-row: 2;
  grid-column: 2;
  line-height: 1.4;
}

.doc-arrow {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.4);
  grid-row: 1 / 3;
  align-self: center;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: var(--sans);
  font-weight: 500;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.reveal.d1 { animation-delay: 0.1s; }
.reveal.d2 { animation-delay: 0.2s; }
.reveal.d3 { animation-delay: 0.3s; }
.reveal.d4 { animation-delay: 0.4s; }
.reveal.d5 { animation-delay: 0.5s; }
.reveal.d6 { animation-delay: 0.6s; }

/* ========== UNIFIED DARK PAGE THEME ========== */
.hero,
.about,
.portfolio,
.structure,
.founder,
.news {
  background: var(--navy-900);
  color: var(--bone);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero .container,
.about .container,
.portfolio .container,
.structure .container,
.founder .container,
.news .container {
  position: relative;
  z-index: 1;
}

.hero-meta,
.about .section-mark,
.portfolio .section-mark,
.structure .section-mark,
.founder .section-mark,
.news .section-mark {
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-meta,
.about .section-name,
.portfolio .section-name,
.structure .section-name,
.founder .section-name,
.news .section-name {
  color: rgba(255, 255, 255, 0.55);
}

.about .section-num,
.portfolio .section-num,
.structure .section-num,
.founder .section-num,
.news .section-num,
.pull-tag,
.gov-num,
.news-item:hover .news-arrow,
.news-item:hover .news-title {
  color: var(--blue-500);
}

.hero-headline,
.hero-lede strong,
.fact-value,
.section-eyebrow,
.about-body p:first-of-type::first-letter,
.pull-text strong,
.gov-title,
.founder-name,
.founder-quote,
.news-title {
  color: var(--bone);
}

.hero-headline .accent,
.section-eyebrow .italic,
.founder-quote .italic {
  color: var(--blue-500);
}

.hero-lede,
.about-body p,
.pull-text,
.gov-text,
.founder-bio,
.news-excerpt {
  color: rgba(255, 255, 255, 0.74);
}

.hero-facts,
.about-pulls,
.pull,
.governance-list,
.gov-item,
.founder-bio,
.news-list,
.news-item {
  border-color: rgba(255, 255, 255, 0.12);
}

.fact-label,
.brand-card-status,
.meta-key,
.diagram-caption,
.founder-role,
.news-date,
.news-arrow {
  color: rgba(255, 255, 255, 0.5);
}

.brand-card,
.structure-diagram,
.founder-card {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.brand-card::before {
  background: var(--blue-500);
}

.brand-card:hover {
  box-shadow: none;
  border-color: rgba(59, 124, 240, 0.65);
}

.brand-card-name,
.brand-card-desc,
.meta-val {
  color: var(--bone);
}

.brand-card-tagline {
  color: rgba(255, 255, 255, 0.62);
}

.brand-card-body {
  border-color: rgba(255, 255, 255, 0.12);
}

.meta-row {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.status-dot {
  background: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 124, 240, 0.16);
}

.diagram-node {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.diagram-line-down,
.diagram-line-bus,
.diagram-line-bus::before,
.diagram-line-bus::after,
.diagram-line-bus .mid-tick {
  background: rgba(255, 255, 255, 0.2);
}

.diagram-child.workalaize,
.diagram-child.healthalaize,
.diagram-child.human-ascent {
  background: rgba(59, 124, 240, 0.14);
  border-color: rgba(59, 124, 240, 0.5);
  color: var(--bone);
}

.diagram-caption {
  border-color: rgba(255, 255, 255, 0.12);
}

.founder-card::after {
  background: none;
}

.founder-quote::before {
  color: var(--blue-500);
}

.news-tag.tag-workalaize,
.news-tag.tag-healthalaize,
.news-tag.tag-banem {
  background: rgba(59, 124, 240, 0.14);
  color: var(--blue-500);
}

.news-all-link {
  color: var(--bone);
  border-color: rgba(255, 255, 255, 0.24);
}

.news-all-link:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: var(--bone);
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  padding: 110px 0;
  background: var(--navy-900);
  color: var(--bone);
}

.legal-page .section-mark {
  border-color: rgba(255, 255, 255, 0.15);
}

.legal-page .section-num {
  color: var(--blue-500);
}

.legal-page .section-name,
.legal-updated,
.legal-list li,
.legal-text {
  color: rgba(255, 255, 255, 0.72);
}

.legal-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 90px;
  align-items: start;
}

.legal-title {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 24px;
}

.legal-title .italic {
  font-style: italic;
  color: var(--blue-500);
}

.legal-updated {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  gap: 34px;
}

.legal-block {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-block h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
  color: var(--bone);
  font-weight: 400;
  margin-bottom: 12px;
}

.legal-block p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 68ch;
  margin-bottom: 12px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-left: 18px;
}

.legal-list li {
  font-size: 15px;
  line-height: 1.55;
}

.legal-link {
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid rgba(59, 124, 240, 0.7);
}

.legal-link:hover {
  color: var(--blue-500);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .container { padding: 0 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--hairline);
  }

  .nav-links.open { display: flex; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .menu-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--navy-900);
    transition: all 0.3s ease;
  }

  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-facts { grid-template-columns: 1fr; gap: 24px; }
  .hero-orbit { display: none; }

  .about, .portfolio, .thesis, .structure, .founder, .capital {
    padding: 70px 0;
  }

  .about-grid, .structure-grid, .capital-grid, .founder-card, .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-card { padding: 36px 28px; }

  .brand-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 28px;
  }

  .brand-card-body {
    border-left: none;
    border-top: 1px solid var(--hairline);
    padding-left: 0;
    padding-top: 24px;
  }

  .principles {
    grid-template-columns: 1fr 1fr;
  }

  .principle {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
  }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }

  .news-item { grid-template-columns: 1fr; gap: 10px; }
  .news-item:hover { padding-left: 0; }
  .news-arrow { text-align: left; }

  .docs-grid { grid-template-columns: 1fr 1fr; }

  .capital-docs-header { flex-direction: column; gap: 12px; }
}

@media (max-width: 560px) {
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .principles { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; gap: 8px; }
  .brand-card-name { font-size: 36px; }
  .pull { grid-template-columns: 1fr; gap: 8px; }
  .docs-grid { grid-template-columns: 1fr; }
  .news-title { font-size: 22px; }
}
