@font-face {
  font-family: "Voltaa Sans";
  src: url("./voltaa-sans.woff2") format("woff2");
  font-display: swap;
}

:root {
  --ink: #1c1c1e;
  --blue: #0066ff;
  --silver: #c7c9cc;
  --paper: #f5f5f2;
  --white: #ffffff;
  --muted: #696a6d;
  --line: rgba(28, 28, 30, 0.17);
  --line-inverse: rgba(255, 255, 255, 0.2);
  --page: min(100% - 48px, 1440px);
  --pad: clamp(24px, 4vw, 64px);
  --font: "Voltaa Sans", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--blue); }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
}
.skip-link:focus { transform: none; }
.shell { width: var(--page); margin-inline: auto; }
.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
}
.body-large {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.35;
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.arrow-link::after { content: ""; width: 1em; height: 1em; display: inline-block; flex: 0 0 auto; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19 19 5M9 5h10v10' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19 19 5M9 5h10v10' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat; }
.arrow-link:hover { color: var(--blue); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.site-header.scrolled,
.site-header.light-header {
  color: var(--ink);
  background: rgba(245, 245, 242, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  border-inline: 1px solid currentColor;
  border-color: color-mix(in srgb, currentColor 22%, transparent);
}
.brand {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  width: fit-content;
  padding-inline: 24px;
  border-right: 1px solid color-mix(in srgb, currentColor 22%, transparent);
}
.brand img { width: 172px; height: 48px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 650;
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta {
  justify-self: end;
  margin-right: 18px;
  padding: 13px 17px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { color: var(--blue); background: var(--white); }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  min-height: 100svh;
  padding-top: 92px;
  border-inline: 1px solid var(--line-inverse);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(120px, 14vh, 180px) var(--pad) clamp(48px, 7vw, 96px);
  border-right: 1px solid var(--line-inverse);
}
.hero-copy .eyebrow { margin-bottom: 24px; color: #8fbaff; }
.hero h1 { max-width: 900px; font-size: clamp(62px, 8.5vw, 132px); }
.hero h1 span { display: block; }
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.25px rgba(255, 255, 255, 0.78);
}
.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 42px;
}
.hero-bottom p { max-width: 500px; margin: 0; color: rgba(255,255,255,.72); }
.hero-media { position: relative; min-height: 680px; overflow: hidden; }
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1s ease, transform 6s cubic-bezier(.16,1,.3,1);
}
.hero-slide.is-active { z-index: 1; opacity: 1; transform: scale(1); }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.05);
}
.hero-slide:first-child img { object-position: center 68%; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,30,.12), rgba(28,28,30,.68));
  pointer-events: none;
}
.hero-slider-controls {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 7px;
}
.hero-slider-controls button {
  width: 28px;
  height: 4px;
  padding: 0;
  overflow: hidden;
  color: transparent;
  background: rgba(255,255,255,.38);
  border: 0;
  cursor: pointer;
  transition: width .3s, background .3s;
}
.hero-slider-controls button.is-active { width: 52px; background: var(--blue); }
.sector-stack {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 28px;
  left: 24px;
  display: grid;
  gap: 1px;
  background: var(--line-inverse);
  border: 1px solid var(--line-inverse);
}
.sector-stack a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(28,28,30,.76);
  backdrop-filter: blur(12px);
}
.sector-stack a:hover { background: var(--blue); }
.sector-number { color: rgba(255,255,255,.5); font-size: 11px; }
.sector-stack strong { font-size: 14px; }
.sector-stack i { font-style: normal; font-size: 18px; }
@keyframes image-settle { from { transform: scale(1.08); } to { transform: scale(1); } }

.ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--silver);
  border-bottom: 1px solid var(--line);
}
.ticker-track {
  display: flex;
  width: max-content;
  padding-block: 13px;
  animation: ticker 24s linear infinite;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ticker-track span::after { content: "●"; color: var(--blue); font-size: 7px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.intro { padding: clamp(100px, 12vw, 180px) 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--pad);
}
.intro-copy h2 { max-width: 920px; font-size: clamp(50px, 7vw, 104px); }
.intro-copy h2 em { color: var(--blue); font-style: normal; }
.intro-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.intro-detail p { margin: 0; color: var(--muted); }

.group-thesis { padding: 0 0 clamp(100px, 12vw, 180px); }
.thesis-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--pad);
  padding-top: clamp(72px, 8vw, 110px);
  border-top: 1px solid var(--line);
}
.thesis-copy h2 { max-width: 980px; font-size: clamp(50px, 7vw, 102px); }
.thesis-copy h2 em { color: var(--blue); font-style: normal; }
.thesis-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  margin-top: 48px;
}
.thesis-body p { margin: 0; color: var(--muted); }
.thesis-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.thesis-pillar { min-height: 150px; padding: 24px 20px 24px 0; border-right: 1px solid var(--line); }
.thesis-pillar:last-child { border-right: 0; padding-left: 20px; }
.thesis-pillar + .thesis-pillar { padding-left: 20px; }
.thesis-pillar strong { display: block; color: var(--blue); font-size: clamp(30px, 3.4vw, 52px); font-weight: 500; letter-spacing: -.05em; }
.thesis-pillar span { display: block; max-width: 170px; margin-top: 8px; color: var(--muted); font-size: 12px; }

.portfolio { padding: 0 0 clamp(100px, 12vw, 180px); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section-head h2 { margin: 8px 0 0; font-size: clamp(42px, 5.5vw, 78px); }
.company-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.company-card {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.company-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.25) saturate(.7);
  transition: transform .8s cubic-bezier(.16,1,.3,1), filter .4s;
}
.company-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,30,.06), rgba(28,28,30,.88));
}
.company-card:hover img { transform: scale(1.045); filter: grayscale(0) saturate(.9); }
.company-card-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}
.company-card small { color: #9bc1ff; text-transform: uppercase; letter-spacing: .12em; }
.company-card h3 { margin: 12px 0 8px; font-size: clamp(30px, 3vw, 48px); font-weight: 500; letter-spacing: -.045em; }
.company-card p { max-width: 360px; margin: 0; color: rgba(255,255,255,.7); }
.company-card .card-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  transition: color .25s, background .25s;
}
.company-card:hover .card-arrow { color: var(--ink); background: var(--white); }
.commodity-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(0,102,255,.92) 0 8%, transparent 8.2%),
    linear-gradient(135deg, #2d2e31 0 48%, #19191b 48% 100%);
}
.commodity-visual::before {
  content: "";
  position: absolute;
  top: 11%;
  right: 11%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255,255,255,.035), 0 0 0 76px rgba(255,255,255,.025);
}
.commodity-visual::after {
  content: "C / 04";
  position: absolute;
  top: 30%;
  left: 9%;
  color: var(--white);
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 500;
  letter-spacing: -.07em;
}
.company-row .commodity-visual { position: relative; min-height: 100%; }

.model { color: var(--white); background: var(--ink); }
.model-grid { display: grid; grid-template-columns: 1fr 2fr; border-inline: 1px solid var(--line-inverse); }
.model-intro { padding: clamp(72px, 8vw, 120px) var(--pad); border-right: 1px solid var(--line-inverse); }
.model-intro h2 { margin: 18px 0 0; font-size: clamp(46px, 6vw, 86px); }
.model-list { counter-reset: model; }
.model-item {
  counter-increment: model;
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  gap: 24px;
  padding: 44px var(--pad);
  border-bottom: 1px solid var(--line-inverse);
}
.model-item::before { content: "0" counter(model); color: #8fbaff; font-size: 12px; }
.model-item h3 { margin: 0; font-size: 24px; font-weight: 500; }
.model-item p { margin: 0; color: rgba(255,255,255,.62); }

.cta { padding: clamp(100px, 14vw, 200px) 0; }
.cta-box {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink);
}
.cta h2 { font-size: clamp(62px, 10vw, 150px); }
.cta h2 span { color: var(--blue); }
.cta p { max-width: 420px; margin: 0 0 28px; color: var(--muted); }

.page-hero {
  padding: clamp(180px, 19vw, 280px) 0 clamp(80px, 10vw, 140px);
  background: var(--paper);
}
.page-hero-grid { display: grid; grid-template-columns: 1fr 2fr; gap: var(--pad); }
.page-hero h1 { max-width: 1100px; font-size: clamp(62px, 10vw, 148px); }
.page-hero h1 em { color: var(--blue); font-style: normal; }
.page-hero-copy { align-self: end; max-width: 600px; }
.page-hero-copy p { margin: 0; color: var(--muted); }

.company-list { padding-bottom: clamp(100px, 12vw, 180px); }
.company-row {
  display: grid;
  grid-template-columns: 80px minmax(280px,.8fr) 1.2fr;
  min-height: 510px;
  border-top: 1px solid var(--line);
}
.company-row:last-child { border-bottom: 1px solid var(--line); }
.company-index { padding-top: 28px; color: var(--blue); font-size: 12px; }
.company-info { display: flex; flex-direction: column; justify-content: space-between; padding: 28px 40px 28px 0; }
.company-info h2 { margin: 8px 0 18px; font-size: clamp(44px, 5vw, 76px); }
.company-info p { max-width: 440px; margin: 0; color: var(--muted); }
.company-media { position: relative; align-self: center; height: 486px; margin: 12px 0; overflow: hidden; }
.company-media img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.company-row:hover .company-media img { transform: scale(1.035); }

.story { padding-bottom: clamp(100px, 12vw, 180px); }
.story-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: var(--pad); }
.story-media { min-height: 650px; }
.story-media img { height: 100%; object-fit: cover; filter: saturate(.7); }
.story-copy { display: flex; flex-direction: column; justify-content: space-between; padding-block: 20px; }
.story-copy h2 { margin: 14px 0 36px; font-size: clamp(48px, 6vw, 88px); }
.story-copy p { max-width: 650px; margin: 0 0 22px; color: var(--muted); }
.facts { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 50px; border-top: 1px solid var(--line); }
.fact { padding: 24px 12px 0 0; }
.fact strong { display: block; color: var(--blue); font-size: clamp(34px, 4vw, 58px); font-weight: 500; letter-spacing: -.05em; }
.fact span { color: var(--muted); font-size: 12px; }

.values { padding: clamp(100px, 12vw, 170px) 0; background: var(--silver); }
.values-grid { display: grid; grid-template-columns: 1fr 2fr; gap: var(--pad); }
.values-list { border-top: 1px solid rgba(28,28,30,.28); }
.value {
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(28,28,30,.28);
}
.value small { color: var(--blue); }
.value h3 { margin: 0; font-size: 23px; font-weight: 500; }
.value p { margin: 0; color: #55565a; }

.news-section { padding: clamp(100px, 12vw, 170px) 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.news-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .3s, background .3s;
}
.news-card:first-child { border-left: 1px solid var(--line); }
.news-card:hover { color: var(--white); background: var(--ink); }
.news-card-meta { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.news-card:hover .news-card-meta { color: #9bc1ff; }
.news-card h3 { margin: 38px 0 22px; font-size: clamp(25px, 2.6vw, 38px); font-weight: 500; letter-spacing: -.045em; line-height: 1.08; }
.news-card p { margin: 0; color: var(--muted); }
.news-card:hover p { color: rgba(255,255,255,.64); }
.news-card-arrow { margin-top: 30px; font-size: 23px; }
.newsroom-intro { padding-bottom: 80px; }
.newsroom-list { padding-bottom: clamp(100px, 12vw, 170px); }
.newsroom-list .news-grid { grid-template-columns: repeat(3, 1fr); }

.site-footer { color: var(--white); background: var(--ink); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--pad);
  padding: 80px 0 62px;
}
.footer-brand img { width: 190px; height: 56px; object-fit: contain; }
.footer-brand p { max-width: 430px; margin: 24px 0 0; color: rgba(255,255,255,.58); }
.footer-column strong { display: block; margin-bottom: 18px; color: #9bc1ff; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.footer-column a { display: block; width: fit-content; margin: 9px 0; color: rgba(255,255,255,.72); }
.footer-column a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 30px;
  color: rgba(255,255,255,.45);
  border-top: 1px solid var(--line-inverse);
  font-size: 11px;
}

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s !important; }
.delay-2 { transition-delay: .16s !important; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  :root { --page: min(100% - 32px, 1440px); }
  .nav { grid-template-columns: 1fr auto; min-height: 78px; }
  .brand { padding-inline: 16px; }
  .brand img { width: 146px; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    margin-right: 14px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span, .menu-toggle::before, .menu-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    transform: translateX(-50%);
    transform-origin: center;
    transition: top .25s, transform .25s, opacity .2s;
  }
  .menu-toggle::before { top: 16px; }
  .menu-toggle span { top: 23px; }
  .menu-toggle::after { top: 30px; }
  .menu-open .menu-toggle span { opacity: 0; }
  .menu-open .menu-toggle::before { top: 23px; transform: translateX(-50%) rotate(45deg); }
  .menu-open .menu-toggle::after { top: 23px; transform: translateX(-50%) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    padding: 120px 24px 42px;
    color: var(--white);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, visibility .3s;
  }
  .menu-open .mobile-menu { visibility: visible; opacity: 1; }
  .mobile-menu a { padding: 13px 0; border-bottom: 1px solid var(--line-inverse); font-size: clamp(34px, 10vw, 56px); letter-spacing: -.045em; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 78px; }
  .hero-copy { min-height: 70svh; border-right: 0; }
  .hero-media { min-height: 540px; border-top: 1px solid var(--line-inverse); }
  .intro-grid, .thesis-grid, .model-grid, .page-hero-grid, .story-grid, .values-grid { grid-template-columns: 1fr; }
  .intro-detail, .thesis-body { grid-template-columns: 1fr; }
  .thesis-pillars { grid-template-columns: repeat(2, 1fr); }
  .thesis-pillar:nth-child(2) { border-right: 0; }
  .news-grid, .newsroom-list .news-grid { grid-template-columns: 1fr; }
  .news-card, .news-card:first-child { border-left: 1px solid var(--line); }
  .company-grid { grid-template-columns: 1fr; }
  .company-card { min-height: 520px; }
  .model-intro { border-right: 0; border-bottom: 1px solid var(--line-inverse); }
  .cta-box { grid-template-columns: 1fr; }
  .page-hero-copy { margin-top: 30px; }
  .company-row { grid-template-columns: 56px 1fr; }
  .company-media { grid-column: 1 / -1; height: 440px; min-height: 0; }
  .story-media { min-height: 520px; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --page: min(100% - 24px, 1440px); }
  .hero-copy { padding-inline: 20px; }
  .hero h1 { font-size: clamp(52px, 18vw, 78px); }
  .hero-bottom { align-items: flex-start; flex-direction: column; }
  .hero-media { min-height: 490px; }
  .intro-detail, .section-head, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .section-head { display: flex; }
  .model-item, .value { grid-template-columns: 44px 1fr; }
  .model-item p, .value p { grid-column: 2; }
  .company-row { grid-template-columns: 40px 1fr; }
  .company-info { padding-right: 0; }
  .company-media { height: 320px; min-height: 0; }
  .thesis-pillars { grid-template-columns: 1fr; }
  .thesis-pillar, .thesis-pillar + .thesis-pillar, .thesis-pillar:last-child { min-height: 110px; padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .facts { grid-template-columns: 1fr; gap: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
/* Consistent vector arrows — avoids mobile emoji-font substitution */
.ui-arrow{display:inline-block;width:1em;height:1em;flex:0 0 auto;vertical-align:-.12em;background:currentColor;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-size:contain;mask-size:contain}
.ui-arrow-ne{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19 19 5M9 5h10v10' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19 19 5M9 5h10v10' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}
.ui-arrow-right{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12h16M14 6l6 6-6 6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12h16M14 6l6 6-6 6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}
.ui-arrow-left{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 12H4M10 6l-6 6 6 6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 12H4M10 6l-6 6 6 6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}
.ui-arrow-up{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20V4M6 10l6-6 6 6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20V4M6 10l6-6 6 6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}
.ui-arrow-down{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v16M6 14l6 6 6-6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v16M6 14l6 6 6-6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}
