/* ============================================================
   Ajaska v6 — Warm-Cream Startup
   Cream paper bg, Ajaska navy as structural, coral as hot accent,
   oversized type, sticker badges, generous rounded surfaces.
   ============================================================ */

:root {
  /* Brand */
  --navy: #173559;
  --navy-2: #1f4880;
  --navy-3: #0e2240;

  /* Surfaces */
  --bg: #faf6ec;
  --bg-2: #f3eddd;
  --bg-3: #ebe2cb;
  --bg-card: #ffffff;
  --bg-card-soft: #fffdf6;

  /* Lines */
  --line: #e1d8c2;
  --line-strong: #cbbf9f;
  --line-ink: #161513;

  /* Ink */
  --ink: #161513;
  --ink-2: #3b3a36;
  --ink-mute: #6b6862;
  --ink-dim: #9b9788;

  /* Hot accent — sky-blue sibling of navy */
  --hot: #4a8fd6;
  --hot-2: #6ea7e0;
  --hot-soft: #e2eef9;
  --hot-line: rgba(74, 143, 214, 0.32);

  /* Lime tertiary accent for stickers */
  --lime: #d4e85a;
  --lime-2: #bbd13a;

  --accent: #173559;
  --accent-soft: rgba(23, 53, 89, 0.07);

  /* Type */
  --f-display: "Geist", "Plus Jakarta Sans", -apple-system, sans-serif;
  --f-body: "Geist", "Plus Jakarta Sans", -apple-system, sans-serif;
  --f-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  --motion-scale: 1;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); overflow-x: clip; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "calt", "cv11";
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--hot); color: var(--bg); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }

/* ============================================================
   Layout
   ============================================================ */
.shell {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) { .shell { padding: 0 18px; } }

.section { padding: 140px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--no-bottom { padding-bottom: 0; }

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 0 2px 0 rgba(22, 21, 19, 0.06);
}
.eyebrow .dot {
  display: inline-flex;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--hot);
  align-items: center; justify-content: center;
  color: var(--bg-card);
  font-size: 10px;
}
.eyebrow .badge {
  font-family: var(--f-mono);
  font-size: 10px;
  background: var(--navy);
  color: var(--bg-card);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin: 0;
  color: var(--ink);
}

.h-hero {
  font-size: clamp(64px, 11vw, 200px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.045em;
}
.h-display {
  font-size: clamp(52px, 7vw, 124px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
}
.h-section {
  font-size: clamp(30px, 5.6vw, 96px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  overflow-wrap: break-word;
}
.h-card {
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.05;
}

.accent-text { color: var(--hot); }
.navy-text { color: var(--navy); }
.mono { font-family: var(--f-mono); }

.lede {
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  font-weight: 400;
}
.body-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 62ch;
}

/* highlight underline */
.hi {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hi::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 4px;
  height: 38%;
  background: var(--hot);
  border-radius: 8px;
  z-index: -1;
  transform: skewY(-1.5deg);
}
.hi--lime::after { background: var(--lime); }
.hi--navy::after { background: var(--navy); }
.hi--navy { color: var(--bg-card); padding: 0 6px; }
.hi--navy::after { height: 100%; bottom: 0; border-radius: 14px; transform: none; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 26px;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1.5px solid var(--ink);
  background: var(--bg-card);
  color: var(--ink);
  border-radius: 999px;
  transition: all 0.18s ease;
  position: relative;
  box-shadow: 0 3px 0 var(--ink);
}
.btn:hover { transform: translate(0, -2px); box-shadow: 0 5px 0 var(--ink); }
.btn:active { transform: translate(0, 1px); box-shadow: 0 1px 0 var(--ink); }
.btn .arrow { display: inline-flex; transition: transform 0.18s; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--navy);
  color: var(--bg-card);
  border-color: var(--navy-3);
  box-shadow: 0 3px 0 var(--navy-3);
}
.btn-primary:hover { box-shadow: 0 5px 0 var(--navy-3); }
.btn-primary:active { box-shadow: 0 1px 0 var(--navy-3); }

.btn-hot {
  background: var(--hot);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 3px 0 var(--ink);
}

.btn-link {
  height: auto; padding: 0; border: none; box-shadow: none; background: transparent;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  border-radius: 0;
  padding-bottom: 2px;
}
.btn-link:hover { transform: none; box-shadow: none; color: var(--hot); border-bottom-color: var(--hot); }

/* ============================================================
   Nav — floating pill (cream version)
   ============================================================ */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 3px 0 var(--ink);
  max-width: calc(100vw - 24px);
}
.nav__logo { display: flex; align-items: center; gap: 10px; padding-right: 12px; border-right: 1.5px solid var(--line-strong); margin-right: 6px; height: 38px; }
.nav__logo img { height: 22px; display: block; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav__link:hover { color: var(--ink); background: var(--bg-2); }
.nav__link--active { color: var(--bg-card); background: var(--navy); }
.nav__right { display: flex; align-items: center; gap: 6px; margin-left: 4px; padding-left: 10px; border-left: 1.5px solid var(--line-strong); height: 38px; }
.design-switch {
  display: inline-flex;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 2px;
}
.design-switch a {
  padding: 5px 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  border-radius: 999px;
  transition: all 0.15s;
}
.design-switch a:hover { color: var(--ink); }
.design-switch a.active { background: var(--navy); color: var(--bg-card); font-weight: 600; }
.lang-toggle {
  display: inline-flex;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 2px;
}
.lang-toggle button {
  background: transparent;
  border: none;
  color: var(--ink-mute);
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}
.lang-toggle button.active { background: var(--navy); color: var(--bg-card); }
.nav__cta { padding-left: 4px; }
.nav__cta a {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px;
  padding: 0 16px;
  background: var(--hot);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--ink);
  transition: all 0.15s;
}
.nav__cta a:hover { background: var(--hot-2); transform: translateY(-1px); }
.nav__mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  cursor: pointer;
}
.burger { position: relative; width: 16px; height: 12px; display: inline-block; }
.burger i {
  position: absolute; left: 0; right: 0; height: 1.7px; top: 50%; margin-top: -0.85px;
  background: currentColor; border-radius: 2px;
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s ease;
}
.burger i:nth-child(1) { transform: translateY(-5px); }
.burger i:nth-child(3) { transform: translateY(5px); }
.nav__mobile-toggle.is-open .burger i:nth-child(1) { transform: rotate(45deg); }
.nav__mobile-toggle.is-open .burger i:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
.nav__mobile-toggle.is-open .burger i:nth-child(3) { transform: rotate(-45deg); }
.nav__mobile-lang { display: none; }
.nav__backdrop { position: fixed; inset: 0; z-index: 99; background: rgba(22, 35, 63, 0.12); animation: navBackdropIn 0.22s ease both; }
@keyframes navBackdropIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes navMenuIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px) scale(0.98); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
@media (max-width: 1200px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: inline-flex; }
  .nav__links--open {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%; transform: translateX(-50%);
    transform-origin: top center;
    animation: navMenuIn 0.24s cubic-bezier(0.16, 1, 0.3, 1) both;
    width: max-content; min-width: 200px; max-width: calc(100vw - 32px);
    flex-direction: column;
    background: var(--bg-card);
    border: 1.5px solid var(--ink);
    border-radius: 22px;
    padding: 12px;
    gap: 4px;
    box-shadow: 0 3px 0 var(--ink);
  }
  .nav__lang-desktop { display: none; }
  .nav__mobile-lang { display: inline-flex; align-self: center; margin-top: 10px; }
  .nav__logo { border-right: none; padding-right: 0; margin-right: 0; }
  .nav__logo img { height: 28px; }
  .nav__right { border-left: none; padding-left: 0; margin-left: 0; }
  .nav { gap: 8px; justify-content: space-between; }
}
@media (max-width: 800px) {
  .design-switch a:not(.active) { display: none; }
  .nav__cta { display: none; }
}

main { padding-top: 100px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.hero__text { display: flex; flex-direction: column; gap: 28px; }
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(34px, 9vw, 152px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: var(--ink);
  overflow-wrap: break-word;
}
.hero__lede { max-width: 46ch; font-size: clamp(18px, 1.45vw, 24px); color: var(--ink-2); line-height: 1.45; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 580px;
  justify-self: center;
}
.hero__orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
}
.hero__orb canvas { width: 100%; height: 100%; display: block; }
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 380px; margin: 0 auto; }
}

/* Sticker badges floating around */
.sticker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  box-shadow: 0 3px 0 var(--ink);
  white-space: nowrap;
  z-index: 2;
}
.sticker .v {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
}
.sticker--hot { background: var(--hot); }
.sticker--lime { background: var(--lime); }
.sticker--navy { background: var(--navy); color: var(--bg-card); }
.sticker--navy .v { color: var(--lime); }
.sticker--rot-l { transform: rotate(-3deg); }
.sticker--rot-r { transform: rotate(2.5deg); }

/* ============================================================
   Brands marquee — big tile rows
   ============================================================ */
.bigmarq {
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding: 28px 0;
  overflow: hidden;
  background: var(--bg-card);
}
.bigmarq__track {
  display: inline-flex;
  gap: 64px;
  white-space: nowrap;
  animation: bigmarq 50s linear infinite;
  animation-duration: calc(50s / var(--motion-scale, 1));
}
.bigmarq__item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.bigmarq__item .star {
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  background: var(--hot);
  color: var(--ink);
  border-radius: 50%;
  font-size: 14px;
  border: 1.5px solid var(--ink);
}
@keyframes bigmarq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Stats cards — big colorful
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  padding: 32px 28px 36px;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  box-shadow: 0 4px 0 var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 7px 0 var(--ink); }
.stat-card .v {
  font-family: var(--f-display);
  font-size: clamp(52px, 5vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--navy);
}
.stat-card .l {
  font-size: 14px;
  color: var(--ink-mute);
  margin-top: 14px;
  font-weight: 500;
}
.stat-card .delta {
  display: inline-flex;
  align-items: center; gap: 6px;
  margin-top: 14px;
  background: var(--hot-soft);
  color: var(--hot);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.stat-card--hot { background: var(--hot); }
.stat-card--hot .v { color: var(--ink); }
.stat-card--hot .l { color: var(--ink); }
.stat-card--hot .delta { background: var(--bg-card); color: var(--navy); }
.stat-card--navy { background: var(--navy); }
.stat-card--navy .v { color: var(--lime); }
.stat-card--navy .l { color: rgba(255,255,255,0.7); }
.stat-card--navy .delta { background: var(--lime); color: var(--ink); }
.stat-card--lime { background: var(--lime); }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .stats { grid-template-columns: 1fr; } }

/* ============================================================
   Section header
   ============================================================ */
.sechead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.sechead__l { display: flex; flex-direction: column; gap: 22px; }
.sechead__r { color: var(--ink-2); font-size: 17px; line-height: 1.6; max-width: 44ch; padding-bottom: 12px; }
@media (max-width: 900px) {
  .sechead { grid-template-columns: 1fr; gap: 18px; margin-bottom: 48px; }
}

/* ============================================================
   Companies — two huge cards
   ============================================================ */
.companies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) { .companies { grid-template-columns: 1fr; } }
.cocard {
  position: relative;
  padding: 40px;
  border-radius: 32px;
  border: 1.5px solid var(--ink);
  background: var(--bg-card);
  box-shadow: 0 6px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 560px;
  overflow: hidden;
  transition: transform 0.25s;
}
.cocard:hover { transform: translateY(-4px); box-shadow: 0 10px 0 var(--ink); }
.cocard--navy { background: var(--navy); color: var(--bg-card); }
.cocard--navy .cocard__title, .cocard--navy .cocard__desc { color: var(--bg-card); }
.cocard--navy .cocard__num { color: var(--lime); }
.cocard--navy .pill-sm { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.04); }
.cocard--navy .cocard__cta { color: var(--lime); }
.cocard__num {
  display: inline-flex;
  align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--hot);
  font-weight: 600;
}
.cocard__num::before { content: "●"; font-size: 8px; }
.cocard__title {
  font-family: var(--f-display);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--ink);
}
.cocard__desc { color: var(--ink-2); font-size: 16px; line-height: 1.6; max-width: 42ch; }
.cocard__mock {
  flex: 0 0 auto;
  min-height: 0;
  border: 1.5px solid var(--ink);
  background: var(--bg-2);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.cocard--navy .cocard__mock { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }
.cocard__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center; gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 16px;
  transition: gap 0.2s;
}
.cocard:hover .cocard__cta { gap: 14px; }
.pill-sm {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  padding: 5px 12px;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  color: var(--ink-2);
  border-radius: 999px;
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; }

/* ============================================================
   Features — alternating with mocks
   ============================================================ */
.features {
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1.5px solid var(--ink);
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
  align-items: center;
  border-bottom: 1.5px solid var(--ink);
}
.feature:last-child { border-bottom: none; }
.feature__num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--hot);
  font-weight: 600;
  margin-bottom: 18px;
}
.feature__num::before {
  content: ""; width: 28px; height: 2px; background: var(--hot);
}
.feature__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 18px;
}
.feature__desc {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 46ch;
}
.feature__visual {
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  padding: 28px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 0 var(--ink);
}
.feature--rev .feature__text { order: 2; }
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .feature--rev .feature__text { order: 0; }
  /* stacked on mobile: hug the chart instead of forcing a tall card */
  .feature__visual { min-height: 0; padding: 22px; }
}

/* ============================================================
   Quote — big sticker card
   ============================================================ */
.quote {
  padding: 80px 0;
}
.quote__inner {
  background: var(--lime);
  border: 1.5px solid var(--ink);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 0 var(--ink);
}
.quote__inner p {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.quote__inner p .accent { color: var(--navy); }
.quote__cite {
  margin-top: 30px;
  font-size: 14px;
  color: var(--ink-mute);
  font-weight: 500;
}
.quote__sticker {
  position: absolute;
}
.quote__sticker--tl { top: -20px; left: 32px; transform: rotate(-6deg); }
.quote__sticker--br { bottom: -20px; right: 32px; transform: rotate(4deg); }

/* ============================================================
   Geo / Map
   ============================================================ */
.geo {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.geo__left { display: flex; flex-direction: column; gap: 22px; }
.geo__map {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 4px 0 var(--ink);
}
.geo__map canvas { width: 100%; height: 100%; display: block; }
@media (max-width: 900px) { .geo { grid-template-columns: 1fr; gap: 32px; } .geo__map { aspect-ratio: 4 / 3; } }

/* ============================================================
   Big CTA — bright slab
   ============================================================ */
.bigcta {
  padding: 60px 0 80px;
}
.bigcta__inner {
  background: var(--hot);
  border: 1.5px solid var(--ink);
  border-radius: 36px;
  padding: 100px 60px;
  position: relative;
  box-shadow: 0 8px 0 var(--ink);
  text-align: center;
}
.bigcta__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 7.4vw, 132px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 16ch;
}
.bigcta__title .navy { color: var(--navy); font-style: italic; }
.bigcta__sub { margin: 28px auto 0; max-width: 46ch; color: var(--ink); font-size: 17px; line-height: 1.5; font-weight: 500; }
.bigcta__cta { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.bigcta__sticker { position: absolute; }
.bigcta__sticker--tl { top: -22px; left: 60px; transform: rotate(-5deg); }
.bigcta__sticker--tr { top: 30px; right: -10px; transform: rotate(8deg); }
.bigcta__sticker--bl { bottom: 30px; left: 10px; transform: rotate(-6deg); }

@media (max-width: 700px) {
  .bigcta__inner { padding: 60px 28px; }
  .bigcta__sticker { display: none; }
}

/* ============================================================
   Benefits (karriere) — colorful sticker grid
   ============================================================ */
.bens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ben {
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  box-shadow: 0 4px 0 var(--ink);
}
.ben:hover { transform: translateY(-3px); box-shadow: 0 7px 0 var(--ink); }
.ben__ico {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--hot);
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.ben__t {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}
.ben__d { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
/* color cycling */
.ben:nth-child(6n+2) .ben__ico { background: var(--lime); }
.ben:nth-child(6n+3) .ben__ico { background: var(--navy); color: var(--lime); }
.ben:nth-child(6n+4) .ben__ico { background: var(--bg-2); }
.ben:nth-child(6n+5) .ben__ico { background: var(--hot); }
.ben:nth-child(6n+0) .ben__ico { background: var(--lime); }
@media (max-width: 900px) { .bens { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bens { grid-template-columns: 1fr; } }

/* Pipeline (eza) — 5 steps, collapses responsively */
.bens--pipe { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) { .bens--pipe { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .bens--pipe { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .bens--pipe { grid-template-columns: 1fr; } }

/* Pipeline (happy story) — 4 steps, collapses responsively */
.bens--pipe4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .bens--pipe4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .bens--pipe4 { grid-template-columns: 1fr; } }

/* ============================================================
   Photo placeholder
   ============================================================ */
.photo {
  position: relative;
  background-color: var(--bg-2);
  background-image:
    repeating-linear-gradient(135deg, transparent 0, transparent 14px, var(--bg-3) 14px, var(--bg-3) 15px);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 0 var(--ink);
}
.photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo::after {
  content: attr(data-label);
  position: relative;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--bg-card);
  padding: 7px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-weight: 500;
}
.photo:has(img)::after {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 248, 232, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.photo--hot { background-color: var(--hot); background-image: repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(0,0,0,0.06) 14px, rgba(0,0,0,0.06) 15px); }
.photo--lime { background-color: var(--lime); background-image: repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(0,0,0,0.06) 14px, rgba(0,0,0,0.06) 15px); }
.photo--navy { background-color: var(--navy); background-image: repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(255,255,255,0.05) 14px, rgba(255,255,255,0.05) 15px); }
.photo--navy::after { color: var(--bg-card); background: var(--navy-3); border-color: rgba(255,255,255,0.3); }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 18px;
}
.gallery > div:nth-child(1) { grid-column: span 7; grid-row: span 3; }
.gallery > div:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.gallery > div:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.gallery > div:nth-child(4) { grid-column: span 4; grid-row: span 2; }
.gallery > div:nth-child(5) { grid-column: span 5; grid-row: span 2; }
.gallery > div:nth-child(6) { grid-column: span 3; grid-row: span 2; }

.gallery--5 { grid-auto-rows: 170px; }
.gallery--5 > div:nth-child(1) { grid-column: span 7; grid-row: span 3; }
.gallery--5 > div:nth-child(2) { grid-column: span 5; grid-row: span 3; }
.gallery--5 > div:nth-child(3) { grid-column: span 4; grid-row: span 2; }
.gallery--5 > div:nth-child(4) { grid-column: span 4; grid-row: span 2; }
.gallery--5 > div:nth-child(5) { grid-column: span 4; grid-row: span 2; }

/* Masonry gallery (CSS columns) — handles any number of mixed-orientation photos */
.gallery--masonry {
  display: block;
  column-count: 4;
  column-gap: 18px;
}
.gallery--masonry .photo {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
}
.gallery--masonry .photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1100px) { .gallery--masonry { column-count: 3; } }
@media (max-width: 760px) { .gallery--masonry { column-count: 2; column-gap: 14px; } .gallery--masonry .photo { margin-bottom: 14px; } }
@media (max-width: 440px) { .gallery--masonry { column-count: 1; } }
@media (max-width: 900px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery > div { grid-column: span 1 !important; grid-row: span 2 !important; }
}

/* ============================================================
   Clickable photo + lightbox
   ============================================================ */
.photo--clickable { cursor: pointer; }
.photo__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--bg);
  background: rgba(14, 34, 64, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
.photo--clickable:hover .photo__zoom,
.photo--clickable:focus-visible .photo__zoom { opacity: 1; transform: scale(1); }
.photo--clickable:focus-visible { outline: 2px solid var(--hot); outline-offset: 3px; }
.photo--clickable > img { transition: transform 0.5s cubic-bezier(.2,.7,.2,1); }
.photo--clickable:hover > img { transform: scale(1.04); }

.lb {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(16px, 4vw, 56px);
  background: rgba(10, 22, 40, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: lb-fade 0.25s ease;
}
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }

.lb__stage {
  display: flex;
  flex-direction: column;
  max-width: min(1100px, 100%);
  max-height: 100%;
  margin: 0;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  animation: lb-pop 0.3s cubic-bezier(.2,.8,.2,1);
}
@keyframes lb-pop { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }

.lb__imgwrap {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  background: var(--navy-3);
}
.lb__img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 230px);
  object-fit: contain;
  animation: lb-img 0.3s ease;
}
@keyframes lb-img { from { opacity: 0.4; } to { opacity: 1; } }

.lb__cap {
  flex: 0 0 auto;
  padding: 20px 26px 24px;
  border-top: 1px solid var(--line);
}
.lb__cap-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}
.lb__label {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.lb__count {
  flex: 0 0 auto;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
}
.lb__desc {
  margin: 0;
  max-width: 70ch;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}

.lb__close {
  position: absolute;
  top: clamp(14px, 2.4vw, 26px);
  right: clamp(14px, 2.4vw, 26px);
  z-index: 2;
}
.lb__close,
.lb__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  color: var(--bg);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.lb__close:hover,
.lb__nav:hover { background: rgba(255, 255, 255, 0.24); }
.lb__nav:active { transform: scale(0.92); }
.lb__close:focus-visible,
.lb__nav:focus-visible { outline: 2px solid var(--hot-2); outline-offset: 2px; }

@media (max-width: 720px) {
  .lb { flex-direction: column; padding: 0; gap: 0; }
  .lb__stage { max-width: 100%; width: 100%; height: 100%; border-radius: 0; }
  .lb__img { max-height: none; flex: 1 1 auto; }
  .lb__nav {
    position: absolute;
    bottom: 110px;
    z-index: 3;
    width: 44px;
    height: 44px;
    background: rgba(14, 34, 64, 0.6);
  }
  .lb__nav--prev { left: 14px; }
  .lb__nav--next { right: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .lb, .lb__stage, .lb__img { animation: none; }
  .photo--clickable > img { transition: none; }
}

/* ============================================================
   Form
   ============================================================ */
.form {
  display: flex; flex-direction: column;
  gap: 22px;
  padding: 36px;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  box-shadow: 0 4px 0 var(--ink);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
}
.field input, .field textarea, .field select {
  background: var(--bg-card-soft);
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  padding: 14px 18px;
  font-family: var(--f-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  border-radius: 14px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--ink);
  box-shadow: 0 3px 0 var(--ink);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-dim); }
.field textarea { min-height: 140px; resize: vertical; }
.field__file {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  background: var(--bg-2);
  border: 1.5px dashed var(--line-strong);
  color: var(--ink-mute);
  font-size: 14px;
  cursor: pointer;
  border-radius: 14px;
  transition: border-color 0.2s, color 0.2s;
  font-weight: 500;
}
.field__file:hover { border-color: var(--navy); color: var(--navy); }
.checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--ink-2); line-height: 1.5;
}
.checkbox input { width: 18px; height: 18px; accent-color: var(--navy); margin-top: 2px; flex-shrink: 0; }

/* Direct contact list */
.dlist {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 0 var(--ink);
}
.dlist__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 24px;
  border-bottom: 1.5px solid var(--line);
}
.dlist__row:last-child { border-bottom: none; }
.dlist__row .lbl { font-size: 12px; color: var(--ink-mute); font-weight: 600; letter-spacing: 0.02em; }
.dlist__row a {
  font-size: 16px; color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  font-weight: 500;
}
.dlist__row a:hover { color: var(--hot); border-bottom-color: var(--hot); }

/* Address card */
.addr {
  padding: 28px;
  background: var(--navy);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  color: var(--bg-card);
  box-shadow: 0 4px 0 var(--ink);
}
.addr .city { font-size: 12px; color: var(--lime); margin-bottom: 12px; font-weight: 600; letter-spacing: 0.02em; }
.addr .lines { font-family: var(--f-display); font-size: 20px; color: var(--bg-card); line-height: 1.4; font-weight: 600; letter-spacing: -0.015em; }
.addr .meta { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 14px; }

/* Jobs placeholder */
.jobs {
  border: 1.5px solid var(--ink);
  background: var(--bg-card);
  border-radius: 28px;
  min-height: 480px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 0 var(--ink);
}
.jobs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 14px, var(--bg-2) 14px, var(--bg-2) 15px);
  pointer-events: none;
  opacity: 0.4;
}
.jobs > * { position: relative; }
.jobs .label {
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 14px;
  border: 1.5px solid var(--ink);
  background: var(--hot);
  border-radius: 999px;
}
.jobs h3 {
  font-family: var(--f-display); font-size: 28px; font-weight: 700;
  color: var(--ink); max-width: 28ch; letter-spacing: -0.025em;
}
.jobs p { color: var(--ink-mute); font-size: 14px; max-width: 50ch; }
.jobs code {
  background: var(--bg-2); padding: 10px 14px; border: 1.5px solid var(--line-strong);
  font-family: var(--f-mono); font-size: 12px; color: var(--ink);
  border-radius: 8px;
}

/* ============================================================
   Open positions — live self-listings + LinkedIn embed
   ============================================================ */
.jobs-block { margin-top: 38px; }
.jobs-block__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 18px; flex-wrap: wrap;
}
.jobs-block__title {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
}
.jobs-block__title .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hot); }
.jobs-block__note { font-size: 13px; color: var(--ink-mute); }

.joblist { display: flex; flex-direction: column; gap: 12px; }
.jobcard {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 26px; background: var(--bg-card); border: 1.5px solid var(--ink);
  border-radius: 18px; box-shadow: 0 3px 0 var(--ink);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.jobcard:hover { transform: translateY(-2px); box-shadow: 0 5px 0 var(--ink); }
.jobcard__main { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.jobcard__title {
  font-family: var(--f-display); font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 700; letter-spacing: -0.025em; color: var(--ink); line-height: 1.05;
}
.jobcard__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.jobcard__chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--ink-2); background: var(--bg-2);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 4px 10px;
}
.jobcard__chip.is-live { color: var(--ink); }
.jobcard__chip.is-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--hot); box-shadow: 0 0 0 0 rgba(74,143,214,0.5);
  animation: jobpulse 2s ease-out infinite;
}
@keyframes jobpulse {
  0% { box-shadow: 0 0 0 0 rgba(74,143,214,0.45); }
  70% { box-shadow: 0 0 0 7px rgba(74,143,214,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,143,214,0); }
}
.jobcard__cta { flex-shrink: 0; }

.li-embed {
  border: 1.5px solid var(--ink); border-radius: 22px; overflow: hidden;
  background: var(--bg-card); box-shadow: 0 4px 0 var(--ink);
}
.li-embed__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 18px; background: var(--navy); color: var(--bg-card);
  border-bottom: 1.5px solid var(--ink);
}
.li-embed__brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.li-embed__logo {
  width: 26px; height: 26px; border-radius: 6px; background: #0a66c2;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-family: var(--f-display); font-size: 15px;
}
.li-embed__open {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600;
  color: var(--bg-card); border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 999px; padding: 6px 13px; transition: background 0.15s;
}
.li-embed__open:hover { background: rgba(255,255,255,0.12); }
.li-embed__frame { position: relative; height: 540px; background: var(--bg-2); }
.li-embed__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.li-embed__fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; text-align: center;
  padding: 40px; color: var(--ink-mute); background: var(--bg-2);
}
.li-embed__fallback .h { font-family: var(--f-display); font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.li-embed__fallback p { font-size: 14px; max-width: 44ch; margin: 0; }

@media (max-width: 720px) {
  .jobcard { flex-direction: column; align-items: flex-start; gap: 16px; }
  .jobcard__cta { width: 100%; }
  .jobcard__cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Job detail page
   ============================================================ */
.jobhero { padding: 130px 0 30px; }
.jobhero__crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 12px; color: var(--ink-mute);
  letter-spacing: 0.03em; margin-bottom: 26px;
}
.jobhero__crumb a:hover { color: var(--ink); }
.jobhero__crumb .sep { opacity: 0.5; }
.jobhero__title {
  font-family: var(--f-display); font-weight: 700; letter-spacing: -0.04em;
  line-height: 0.95; font-size: clamp(38px, 5.4vw, 72px); color: var(--ink); max-width: 18ch;
}
.jobhero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.jobhero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.03em; color: var(--ink-2);
  background: var(--bg-card); border: 1.5px solid var(--ink);
  border-radius: 999px; padding: 7px 14px; box-shadow: 0 2px 0 var(--ink);
}
.jobhero__chip.is-live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--hot);
  animation: jobpulse 2s ease-out infinite;
}

.jobgrid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; }
.jobbody { max-width: 64ch; }
.jobbody__lead { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5; color: var(--ink-2); }
.jobbody__lead p { margin: 0 0 16px; }
.jobbody h2 {
  font-family: var(--f-display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink); margin: 44px 0 18px;
}
.jobbody ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.jobbody li { position: relative; padding-left: 28px; font-size: 16px; line-height: 1.55; color: var(--ink-2); }
.jobbody li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--hot);
}
.jobbody .tech {
  margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px;
}
.jobbody .tech span {
  font-family: var(--f-mono); font-size: 12px; color: var(--ink);
  background: var(--bg-2); border: 1.5px solid var(--line-strong);
  border-radius: 8px; padding: 6px 11px;
}

.jobaside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 18px; }
.jobapply {
  border: 1.5px solid var(--ink); border-radius: 22px; background: var(--navy);
  color: var(--bg-card); padding: 26px; box-shadow: 0 4px 0 var(--ink);
}
.jobapply__k { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; }
.jobapply__mail {
  display: block; margin: 12px 0 4px; font-family: var(--f-display); font-weight: 700;
  letter-spacing: -0.02em; font-size: clamp(22px, 2vw, 28px); color: var(--bg-card); word-break: break-word;
}
.jobapply__sub { font-size: 13px; opacity: 0.8; line-height: 1.5; }
.jobapply .btn { margin-top: 20px; width: 100%; justify-content: center; }
.jobfacts {
  border: 1.5px solid var(--ink); border-radius: 22px; background: var(--bg-card);
  box-shadow: 0 3px 0 var(--ink); overflow: hidden;
}
.jobfacts__row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 20px; border-bottom: 1px solid var(--line-strong);
}
.jobfacts__row:last-child { border-bottom: 0; }
.jobfacts__row .k { font-size: 13px; color: var(--ink-mute); }
.jobfacts__row .v { font-size: 14px; font-weight: 600; color: var(--ink); text-align: right; }

@media (max-width: 900px) {
  .jobgrid { grid-template-columns: 1fr; gap: 36px; }
  .jobaside { position: static; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1.5px solid var(--ink);
  background: var(--bg-2);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1.5px solid var(--line-strong);
  margin-bottom: 32px;
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand img { height: 36px; margin-bottom: 18px; }
.footer__brand p { color: var(--ink-mute); font-size: 14px; line-height: 1.65; max-width: 36ch; margin: 0; }
.footer__col h4 {
  font-size: 12px;
  color: var(--ink-mute);
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col li a {
  color: var(--ink-2);
  font-size: 14px;
  transition: color 0.2s;
  font-weight: 500;
}
.footer__col li a:hover { color: var(--navy); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-mute);
  gap: 16px;
  flex-wrap: wrap;
}

/* Verticals grid */
.verts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.vert {
  padding: 28px;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  box-shadow: 0 4px 0 var(--ink);
}
.vert:hover { transform: translateY(-3px); box-shadow: 0 7px 0 var(--ink); }
.vert:nth-child(6n+1) { background: var(--bg-card); }
.vert:nth-child(6n+2) { background: var(--lime); }
.vert:nth-child(6n+3) { background: var(--bg-card); }
.vert:nth-child(6n+4) { background: var(--hot); }
.vert:nth-child(6n+5) { background: var(--bg-card); }
.vert:nth-child(6n+0) { background: var(--bg-card); }
.vert__n {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
}
.vert__t {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.vert__d { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 900px) { .verts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .verts { grid-template-columns: 1fr; } }

/* Portfolio rows (hs subpage) */
.portfolio {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 4px 0 var(--ink);
}
.portfolio__row {
  display: grid;
  grid-template-columns: 56px 1fr 1fr 160px;
  gap: 18px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1.5px solid var(--line);
  transition: background 0.15s;
}
.portfolio__row:last-child { border-bottom: none; }
.portfolio__row:hover { background: var(--bg-2); }
.portfolio__row .id { font-family: var(--f-mono); font-size: 12px; color: var(--hot); font-weight: 600; }
.portfolio__row .name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.portfolio__row .desc { font-size: 14px; color: var(--ink-mute); }
.portfolio__row .num {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  text-align: right;
  color: var(--navy);
  letter-spacing: -0.015em;
}
@media (max-width: 720px) {
  .portfolio__row { grid-template-columns: 1fr; gap: 6px; padding: 18px 22px; }
  .portfolio__row .num { text-align: left; }
}

/* Fade up */
.fade-up { opacity: 1; transform: none; transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-up[data-fade="pending"] { opacity: 0; transform: translateY(24px); }
.fade-up[data-fade="in"] { opacity: 1; transform: translateY(0); }

/* Map (kontakt) */
.kon-map {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 4px 0 var(--ink);
}
.kon-map canvas { width: 100%; height: 100%; display: block; }
.kon-map__pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--hot);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(74, 143, 214, 0.18), 0 0 0 18px rgba(74, 143, 214, 0.08);
  animation: pulse-pin 2.4s ease-out infinite;
}
@keyframes pulse-pin {
  0% { box-shadow: 0 0 0 4px rgba(74, 143, 214, 0.18), 0 0 0 10px rgba(74, 143, 214, 0.08); }
  70% { box-shadow: 0 0 0 36px transparent, 0 0 0 70px transparent; }
  100% { box-shadow: 0 0 0 4px rgba(74, 143, 214, 0.18), 0 0 0 10px rgba(74, 143, 214, 0.08); }
}
.kon-map__label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(24px, -50%);
  font-family: var(--f-body);
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  padding: 6px 12px;
  border: 1.5px solid var(--ink);
  background: var(--bg-card);
  border-radius: 999px;
  box-shadow: 0 2px 0 var(--ink);
}
.kon-map__coord {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--f-mono);
  font-size: 11px; color: var(--ink-mute);
  font-weight: 500;
}
