  :root {
    --blue:   #003357;
    --blue-2: #00253f;
    --blue-3: #001825;
    --grey:   #AAA9A8;
    --grey-2: #6c6b6a;
    --grey-3: #e8e7e5;
    --paper:  #f4f3f1;
    --bone:   #fafaf8;
    --ink:    #0c1620;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bone);
    color: var(--ink);
    font-family: "Geist", system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.45;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  ::selection { background: var(--blue); color: var(--bone); }

  a { color: inherit; }

  /* ============ TOP NAV (horizontale Menüleiste) ============ */
  .topnav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 70;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
    padding: 14px 30px;
    background: transparent;
    pointer-events: none;
    color: var(--blue);
    transition:
      transform .38s cubic-bezier(.4,.1,.2,1),
      background .3s ease,
      color .3s ease,
      box-shadow .3s ease,
      border-color .3s ease;
    border-bottom: 1px solid transparent;
    will-change: transform;
  }
  .topnav > * { pointer-events: auto; }

  /* Sichtbar im Hero (oben): transparent, weiße Schrift */
  .topnav.over-hero, .topnav.dark { color: #ffffff; }

  /* Nach dem Hero: milchige Glasleiste, damit die Links lesbar sind */
  .topnav.nav-solid {
    background: rgba(244,243,241,0.72);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom-color: rgba(12,22,32,0.08);
    box-shadow: 0 10px 30px -22px rgba(0,24,37,0.5);
    color: var(--blue);
  }
  .topnav.nav-solid.dark {
    background: rgba(0,24,37,0.55);
    border-bottom-color: rgba(255,255,255,0.12);
    color: #ffffff;
  }

  /* Verstecken beim Runterscrollen (wird per JS getoggelt) */
  .topnav.nav-hidden { transform: translateY(-115%); }

  /* Marke links */
  .brand {
    display: inline-flex; align-items: center;
    font-weight: 700; font-size: 21px; letter-spacing: -0.02em;
    color: inherit; text-decoration: none;
    transition: opacity .2s ease;
  }
  .brand:hover { opacity: 0.8; }
  .brand-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: currentColor; margin-left: 4px; margin-top: 8px;
  }

  /* Horizontale Linkleiste (Desktop) */
  .topnav-links {
    display: flex; align-items: center; gap: 30px;
  }
  .topnav-links a {
    position: relative;
    color: inherit; text-decoration: none;
    font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
    opacity: 0.82;
    transition: opacity .2s ease;
  }
  .topnav-links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 1.5px; background: currentColor;
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s cubic-bezier(.4,.1,.2,1);
  }
  .topnav-links a:hover { opacity: 1; }
  .topnav-links a:hover::after { transform: scaleX(1); }

  .topnav-right { display: flex; align-items: center; gap: 14px; }

  .hamburger {
    width: 42px; height: 42px;
    display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 5px;
    background: transparent; border: none; cursor: pointer; padding: 0;
    color: inherit;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: currentColor;
    transition: transform .3s cubic-bezier(.4,.2,.2,1), opacity .2s ease, background .3s ease;
  }
  body.menu-open .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
  body.menu-open .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .qs {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 500;
    color: inherit; text-decoration: none;
    padding: 11px 16px;
    border: 1px solid currentColor;
    opacity: 0.75;
    transition: opacity .3s ease, background .25s ease, visibility .3s ease;
  }
  .qs:hover { opacity: 1; background: rgba(127,127,127,0.08); }
  .qs .pulse { display: none; }
  /* Hide Quick-Support button from the Partner section onward */
  .topnav.qs-hide .qs { opacity: 0; visibility: hidden; pointer-events: none; }

  /* Desktop: Linkleiste sichtbar, Hamburger versteckt */
  .hamburger { display: none; }
  @media (min-width: 880px) {
    .topnav-links { display: flex; }
    .hamburger { display: none; }
  }
  /* Mobil/Tablet: Links einklappen, Hamburger zeigen */
  @media (max-width: 879px) {
    .topnav-links { display: none; }
    .hamburger { display: inline-flex; }
    .qs { display: none; }
    .topnav { padding: 12px 20px; }
  }

  /* Full-screen nav menu — transparent glass; the page stays visible behind it */
  .navmenu {
    position: fixed; inset: 0; z-index: 65;
    background: rgba(8,15,23,0.58);
    backdrop-filter: blur(24px) saturate(125%); -webkit-backdrop-filter: blur(24px) saturate(125%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .45s ease;
  }
  .navmenu nav { position: relative; z-index: 1; }
  /* Top controls sit over the dimmed page while the menu is open */
  body.menu-open .hamburger span { background: #ffffff; }
  body.menu-open .qs { color: #ffffff; border-color: rgba(255,255,255,0.4); opacity: 0.9; }
  body.menu-open .navmenu { opacity: 1; pointer-events: auto; }
  .navmenu nav { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; padding: 0 8vw; }
  .navmenu nav a {
    font-size: clamp(40px, 7vw, 92px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: rgba(250,250,248,0.92);
    text-decoration: none;
    transition: color .2s ease, transform .3s ease;
    transform: translateY(20px); opacity: 0;
  }
  body.menu-open .navmenu nav a { transform: translateY(0); opacity: 1; }
  body.menu-open .navmenu nav a:nth-child(1) { transition-delay: 0.08s; }
  body.menu-open .navmenu nav a:nth-child(2) { transition-delay: 0.13s; }
  body.menu-open .navmenu nav a:nth-child(3) { transition-delay: 0.18s; }
  body.menu-open .navmenu nav a:nth-child(4) { transition-delay: 0.23s; }
  body.menu-open .navmenu nav a:nth-child(5) { transition-delay: 0.28s; }
  body.menu-open .navmenu nav a:nth-child(6) { transition-delay: 0.33s; }
  body.menu-open .navmenu nav a:nth-child(7) { transition-delay: 0.38s; }
  body.menu-open .navmenu nav a:nth-child(8) { transition-delay: 0.43s; }
  body.menu-open .navmenu nav a:nth-child(9) { transition-delay: 0.48s; }
  body.menu-open .navmenu nav a:nth-child(10){ transition-delay: 0.53s; }
  .navmenu nav a {
    transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .5s ease, color .2s ease;
  }
  .navmenu nav a:hover { color: #00253F; }
  .navmenu nav a .n {
    display: inline-block; width: 60px;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.2em;
    color: rgba(250,250,248,0.4);
    vertical-align: middle;
    transform: translateY(-0.4em);
  }

  .navmenu-foot { display: none; }

  /* ============ LAYOUT WRAP ============ */
  main { margin: 0; }
  footer { margin: 0; }

  /* ============ TYPOGRAPHY ============ */
  .display {
    font-weight: 500; letter-spacing: -0.035em; line-height: 0.92;
    text-wrap: balance;
  }
  .display-1 { font-size: clamp(56px, 11vw, 200px); }
  .display-2 { font-size: clamp(40px, 7vw, 110px); }
  .display-3 { font-size: clamp(28px, 4vw, 60px); }

  .label {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    font-weight: 500; color: var(--grey-2);
  }

  /* ============ HERO ============ */
  .hero {
    position: relative; height: 100vh;
    min-height: 640px;
    background: #001825;
    overflow: hidden;
    padding: 0 !important;
  }

  /* Full-bleed background — drone video. No CSS filter (expensive per-frame). */
  .hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 55%;
  }

  /* Directional scrim — dunkel unten-links, wo die Editorial-Typo sitzt;
     nach rechts klar auslaufend, damit die Drohnen-Aufnahme sichtbar bleibt.
     Plus dezenter Top-Fade fuer die Lesbarkeit der Navi. */
  .hero-scrim {
    position: absolute; inset: 0; z-index: 2;
    background:
      linear-gradient(98deg,
        rgba(0,18,28,0.80) 0%,
        rgba(0,18,28,0.56) 26%,
        rgba(0,18,28,0.20) 58%,
        rgba(0,18,28,0.04) 100%),
      linear-gradient(180deg,
        rgba(0,18,28,0.42) 0%,
        rgba(0,18,28,0.00) 20%),
      linear-gradient(0deg,
        rgba(0,18,28,0.52) 0%,
        rgba(0,18,28,0.00) 40%);
    pointer-events: none;
  }
  /* Bottom edge fade — disabled */
  .hero-fade { display: none; }

  /* Fallback fuer Browser ohne backdrop-filter (z. B. aeltere Firefox):
     deckenderer Hintergrund fuers Vollbild-Menue. */
  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .navmenu { background: rgba(8,15,23,0.94); }
  }

  /* Hero overlay — linksbuendige Editorial-Typo (kein Glas mehr) */
  .hero-overlay {
    position: absolute; inset: 0; z-index: 5;
    display: flex; align-items: center;
    padding: 0 clamp(24px, 7vw, 128px);
    pointer-events: none;
  }
  .hero-overlay a, .hero-overlay button { pointer-events: auto; }
  .hero-content { max-width: 760px; }

  /* Staggered Load-Reveal — Eyebrow, Headline, Sub, Buttons steigen nacheinander auf */
  .hero-eyebrow, .hero-title, .hero-sub, .hero-actions {
    opacity: 0; transform: translateY(20px);
    animation: heroRise .8s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .hero-eyebrow { animation-delay: .10s; }
  .hero-title   { animation-delay: .20s; }
  .hero-sub     { animation-delay: .34s; }
  .hero-actions { animation-delay: .46s; }
  @keyframes heroRise { to { opacity: 1; transform: translateY(0); } }
  @media (prefers-reduced-motion: reduce) {
    .hero-eyebrow, .hero-title, .hero-sub, .hero-actions {
      animation: none; opacity: 1; transform: none;
    }
  }

  /* Eyebrow — Akzentlinie + getrackte Markenzeile */
  .hero-eyebrow {
    display: flex; align-items: center; gap: 16px;
    margin: 0 0 26px;
    color: rgba(255,255,255,0.85);
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.24em; text-transform: uppercase;
    text-shadow: 0 1px 12px rgba(0,18,28,0.4);
  }
  .hero-eyebrow-line {
    width: 44px; height: 1px; flex: none;
    background: linear-gradient(90deg, rgba(255,255,255,0.75), rgba(255,255,255,0.12));
  }
  .hero-dot {
    display: inline-block; width: 4px; height: 4px; border-radius: 50%;
    background: currentColor; margin: 0 10px 2px; vertical-align: middle;
  }

  /* Headline — gross, eng, direkt ueber dem Video */
  .hero-title {
    margin: 0; color: #fff;
    font-weight: 600; letter-spacing: -0.035em; line-height: 0.97;
    font-size: clamp(46px, 8.2vw, 96px);
    text-wrap: balance;
    text-shadow: 0 2px 34px rgba(0,18,28,0.38);
  }
  .hero-sub {
    margin: 26px 0 0; color: rgba(255,255,255,0.9);
    font-weight: 400; font-size: clamp(16px, 1.55vw, 19px);
    letter-spacing: -0.005em; line-height: 1.5; max-width: 42ch;
    text-shadow: 0 1px 12px rgba(0,18,28,0.34);
  }

  .hero-actions {
    display: flex; align-items: center; gap: 14px;
    margin-top: 38px; flex-wrap: wrap;
  }
  .hero-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; color: var(--blue);
    font-weight: 500; font-size: 15px; letter-spacing: -0.005em;
    padding: 15px 30px; border-radius: 999px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .2s ease;
    box-shadow: 0 14px 34px -14px rgba(0,18,28,0.6);
  }
  .hero-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -16px rgba(0,18,28,0.66); }
  .hero-cta:active { transform: translateY(0) scale(.98); }
  .hero-cta .ar { font-size: 17px; transition: transform .2s ease; }
  .hero-cta:hover .ar { transform: translateX(3px); }
  .hero-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: #fff; font-weight: 500; font-size: 15px; letter-spacing: -0.005em;
    padding: 15px 26px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.45); text-decoration: none;
    transition: transform .15s ease, background .2s ease, border-color .2s ease;
    text-shadow: 0 1px 10px rgba(0,18,28,0.34);
  }
  .hero-link:hover { transform: translateY(-2px); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); }
  .hero-link:active { transform: translateY(0) scale(.98); }

  @media (max-width: 640px) {
    .hero-overlay { align-items: flex-end; padding-bottom: 15vh; }
    .hero-title { line-height: 1.0; }
    .hero-cta, .hero-link { padding: 14px 22px; }
  }

  /* Soft scroll hint at the bottom of hero */
  .hero-hint {
    position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%); z-index: 6;
    color: rgba(250,250,248,0.55);
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    pointer-events: none;
    animation: hintFloat 2.6s ease-in-out infinite;
  }
  .hero-hint::after {
    content: ""; width: 1px; height: 32px;
    background: linear-gradient(180deg, rgba(250,250,248,0.55), transparent);
  }
  @keyframes hintFloat {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
    50%      { transform: translate(-50%, 6px); opacity: 0.9; }
  }

  /* ============ STATEMENT ============ */
  section.statement {
    background: var(--bone); padding: 22vh 7vw 22vh;
    border-top: 1px solid var(--grey-3);
    overflow: hidden;
  }
  .statement-grid {
    display: grid;
    grid-template-columns: 120px 280px 1fr;
    gap: 60px; align-items: center;
  }
  .statement-grid h2 {
    margin: 0; font-weight: 500; letter-spacing: -0.03em; line-height: 1.05;
    font-size: clamp(28px, 3.8vw, 56px);
    color: var(--ink);
    text-wrap: balance;
  }
  .statement-grid h2 .muted { color: var(--grey-2); }

  .statement-fig {
    display: flex; align-items: center; justify-content: center;
  }
  .statement-fig img {
    width: 100%; max-width: 260px; height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(12,22,32,0.18));
    transform: rotate(-3deg);
  }

  /* ============ LEISTUNGEN ============ */
  section.services {
    background: var(--bone); padding: 80px 7vw 140px;
    border-top: 1px solid var(--grey-3);
  }
  .sec-head {
    display: grid; grid-template-columns: 120px 1fr;
    gap: 60px; align-items: end; margin-bottom: 80px;
  }
  .sec-head h2 {
    margin: 0; font-weight: 500; letter-spacing: -0.03em; line-height: 0.95;
    font-size: clamp(40px, 6.5vw, 92px); color: var(--ink);
  }
  .sec-head h2 .muted { color: var(--grey); }

  .services .sec-head { align-items: end; }

  .services-list { border-top: 1px solid var(--grey-3); }
  .row-item {
    border-bottom: 1px solid var(--grey-3);
  }
  .row {
    display: grid; grid-template-columns: 80px 1fr 80px;
    gap: 40px; padding: 36px 0;
    align-items: center;
    transition: padding .3s ease;
    cursor: pointer;
    background: transparent; border: none;
    width: 100%; text-align: left;
    font-family: inherit;
    color: inherit;
  }
  .row:hover { padding-left: 12px; padding-right: 12px; }
  .row .n { font-size: 13px; color: var(--grey-2); font-weight: 500; letter-spacing: 0.05em; }
  .row .t { font-size: clamp(22px, 2.4vw, 36px); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); }
  .row .toggle { text-align: right; font-size: 22px; color: var(--grey); transition: transform .35s cubic-bezier(.4,.1,.2,1), color .3s ease; line-height: 1; }
  .row:hover .toggle { color: var(--blue); }
  .row-item.open .row .toggle { transform: rotate(45deg); color: var(--ink); }

  .row-details {
    max-height: 0; overflow: hidden;
    transition: max-height .45s cubic-bezier(.4,.1,.2,1);
  }
  .row-details-inner {
    display: grid; grid-template-columns: 80px 1fr 80px;
    gap: 40px;
    padding: 0 0 36px;
  }
  .row-details-inner .d {
    font-size: 16px; line-height: 1.6; color: var(--grey-2); max-width: 60ch;
    grid-column: 2;
  }
  .row-details-inner .d .more { margin-top: 14px; color: var(--ink); }
  .row-details-inner .cta { grid-column: 2; margin-top: 18px; }
  .row-details-inner .cta a {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px; background: var(--ink); color: var(--bone);
    font-size: 13px; letter-spacing: 0.04em; font-weight: 500;
    text-decoration: none;
    transition: background .2s ease;
  }
  .row-details-inner .cta a:hover { background: var(--blue); }
  @media (max-width: 760px) {
    .row { grid-template-columns: 50px 1fr 50px; gap: 16px; padding: 28px 0; }
    .row-details-inner { grid-template-columns: 50px 1fr 50px; gap: 16px; }
  }

  /* ============ TEAMVIEWER ============ */
  section.tv {
    background: var(--blue); color: var(--bone);
    padding: 140px 7vw;
    position: relative; overflow: hidden;
  }
  .tv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
  .tv-head .label { color: rgba(250,250,248,0.55); margin-bottom: 28px; }
  .tv-head h2 {
    margin: 0; font-weight: 500; letter-spacing: -0.03em; line-height: 0.95;
    font-size: clamp(40px, 6vw, 88px); color: var(--bone);
    text-wrap: balance;
  }
  .tv-head h2 .muted { color: rgba(250,250,248,0.5); }
  .tv-head p { margin: 28px 0 40px; max-width: 480px; font-size: 17px; line-height: 1.55; color: rgba(250,250,248,0.75); }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 18px;
    background: var(--bone); color: var(--ink);
    padding: 22px 30px; border: none; cursor: pointer;
    font-family: inherit; font-weight: 500; font-size: 15px;
    letter-spacing: 0.02em; text-decoration: none;
    transition: transform .25s ease;
  }
  .btn-primary:hover { transform: translateY(-2px); }
  .btn-primary .ar { font-weight: 400; font-size: 18px; }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--bone); padding: 22px 26px;
    border: 1px solid rgba(250,250,248,0.3);
    font-family: inherit; font-weight: 500; font-size: 14px;
    letter-spacing: 0.02em; text-decoration: none;
    transition: background .25s ease, border-color .25s ease;
    margin-left: 12px;
  }
  .btn-ghost:hover { background: rgba(250,250,248,0.08); border-color: var(--bone); }

  /* TV download card */
  .tv-card {
    background: var(--blue-2);
    border: 1px solid rgba(250,250,248,0.12);
    padding: 40px;
  }
  .tv-card .head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 26px; border-bottom: 1px solid rgba(250,250,248,0.12); }
  .tv-card .head .h { font-weight: 500; font-size: 17px; }
  .tv-card .head .label { color: rgba(250,250,248,0.55); }

  .tv-steps { display: grid; gap: 0; margin: 28px 0 36px; }
  .tv-step {
    display: grid; grid-template-columns: 36px 1fr; gap: 18px;
    padding: 20px 0; border-bottom: 1px solid rgba(250,250,248,0.08);
    align-items: baseline;
  }
  .tv-step:last-child { border-bottom: none; }
  .tv-step .n { color: rgba(250,250,248,0.4); font-weight: 500; font-size: 14px; }
  .tv-step .t { font-size: 15px; line-height: 1.5; color: rgba(250,250,248,0.85); }
  .tv-step .t b { color: var(--bone); font-weight: 600; }

  .tv-dl {
    display: flex; align-items: center; gap: 16px;
    width: 100%; padding: 22px 24px;
    background: var(--bone); color: var(--ink);
    text-decoration: none; font-weight: 500; font-size: 15px;
    transition: transform .25s ease;
  }
  .tv-dl:hover { transform: translateY(-2px); }
  .tv-dl .sz { margin-left: auto; color: var(--grey-2); font-size: 13px; font-weight: 400; }
  .tv-dl-foot { margin-top: 14px; font-size: 12px; color: rgba(250,250,248,0.5); letter-spacing: 0.02em; }

  /* ============ TOUR ============ */
  section.tour { background: var(--ink); color: var(--bone); padding: 140px 7vw 100px; overflow: hidden; }
  .tour .sec-head h2 { color: var(--bone); }
  .tour .sec-head h2 .muted { color: rgba(250,250,248,0.4); }
  .tour .sec-head .label { color: rgba(250,250,248,0.5); }
  .tour-intro { margin: -40px 0 60px 280px; max-width: 560px; color: rgba(250,250,248,0.7); font-size: 17px; line-height: 1.55; }
  .tour-intro .muted { color: rgba(250,250,248,0.5); }

  .tour-track {
    display: flex; gap: 18px; padding-bottom: 30px;
    margin: 0 -7vw; padding-left: 7vw; padding-right: 7vw;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
  }
  .tour-track::-webkit-scrollbar { display: none; }

  .vcard {
    flex: 0 0 auto; width: 580px; aspect-ratio: 16/10;
    background: #0f1f2c;
    border: 1px solid rgba(255,255,255,0.10);
    position: relative; scroll-snap-align: start;
    overflow: hidden; cursor: pointer;
    transition: transform .35s ease;
  }
  .vcard:hover { transform: translateY(-4px); }
  .vcard .ph {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.78) saturate(0.9);
    transition: filter .35s ease, transform .6s ease;
  }
  .vcard:hover .ph { filter: brightness(0.92) saturate(1); transform: scale(1.03); }
  .vcard .ph::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,18,29,0) 40%, rgba(6,18,29,0.7) 100%);
  }
  .vcard .play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 64px; height: 64px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
    z-index: 2;
  }
  .vcard:hover .play { background: var(--bone); border-color: var(--bone); transform: translate(-50%,-50%) scale(1.05); }
  .vcard .play,
  .vcard .play::after { display: none; }
  .vcard .play::after {
    content: ""; width: 0; height: 0;
    border-left: 14px solid rgba(255,255,255,0.9);
    border-top: 9px solid transparent; border-bottom: 9px solid transparent;
    margin-left: 4px;
  }
  .vcard:hover .play::after { border-left-color: var(--ink); }
  .vcard .tag {
    position: absolute; top: 22px; left: 26px; z-index: 2;
    color: rgba(250,250,248,0.7);
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    font-weight: 500;
  }

  .tour-foot {
    margin-top: 30px;
    display: flex; justify-content: space-between; align-items: center;
    color: rgba(250,250,248,0.5); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  }

  /* ============ PARTNERS (LIGHT) ============ */
  section.partners {
    background: var(--paper); color: var(--ink);
    padding: 140px 7vw;
    border-top: 1px solid var(--grey-3); border-bottom: 1px solid var(--grey-3);
    overflow: hidden;
  }
  .partners .sec-head h2 { color: var(--ink); }
  .partners .sec-head h2 .muted { color: var(--grey); }

  .partners-intro {
    margin: -40px 0 70px 280px;
    max-width: 560px; color: var(--grey-2); font-size: 17px; line-height: 1.55;
  }

  .marquees-wrap { margin: 0 -7vw; }

  .marquee {
    display: flex; overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }
  .marquee-inner {
    display: flex; flex-shrink: 0;
    /* Track-Box exakt = Inhaltsbreite, damit translateX(-100%) den kompletten
       Track verschiebt (sonst ueberlappen sich die beiden Tracks). */
    width: max-content;
    animation: scroll 70s linear infinite;
  }
  .marquee:hover .marquee-inner { animation-play-state: paused; }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

  .logo-cell {
    flex: 0 0 230px; height: 130px;
    /* Explizite Breite, NICHT nur flex-basis: Firefox berechnet die
       max-content-Breite des Tracks aus dem In-Flow-Inhalt der Zelle. Der ist
       hier 0 (beide .face sind position:absolute), wodurch der Track in Firefox
       kollabiert und die Logos uebereinander rutschen. Mit width zaehlt jede
       Zelle 230px -> Track 3450px, identisch zu Chromium/WebKit. */
    width: 230px;
    padding: 0 20px;
    border-right: 1px solid var(--grey-3);
    background: transparent;
    cursor: pointer;
    perspective: 900px;
    border-top: none; border-bottom: none; border-left: none;
  }
  .logo-cell:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }
  .logo-cell .flip {
    position: relative;
    width: 100%; height: 100%;
    transform-style: preserve-3d;
    transition: transform .65s cubic-bezier(.4,.2,.2,1);
  }
  /* No flip on hover — the whole marquee pauses instead (see .marquee:hover), click opens the modal */
  .logo-cell .face {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .logo-cell .face.front { opacity: 0.7; transition: opacity .25s ease; }
  .logo-cell:hover .face.front { opacity: 1; }
  .logo-cell .face.back {
    transform: rotateY(180deg);
    flex-direction: column;
    text-align: center;
    padding: 12px 14px;
    background: var(--bone);
  }
  .logo-cell .face.back .nm {
    font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--blue);
    margin-bottom: 6px;
  }
  .logo-cell .face.back .ds {
    font-size: 12px; line-height: 1.4; color: var(--ink);
    text-wrap: pretty;
  }
  .logo-cell img {
    max-width: 100%; max-height: 56px; object-fit: contain;
    filter: none;
  }
  .marquee.rev .marquee-inner { animation-direction: reverse; animation-duration: 85s; }

  /* Partner Modal */
  .partner-modal {
    position: fixed; inset: 0; z-index: 100;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
  }
  .partner-modal.open { opacity: 1; pointer-events: auto; }
  .partner-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(12,22,32,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .partner-modal-card {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: min(680px, 92vw); max-height: 92vh; overflow-y: auto;
    background: var(--bone);
    border: 1px solid var(--grey-3);
    transition: transform .35s cubic-bezier(.4,.1,.2,1);
  }
  .partner-modal.open .partner-modal-card { transform: translate(-50%, -50%) scale(1); }
  .partner-modal-header {
    background: var(--paper);
    padding: 64px 56px 48px;
    text-align: center;
    border-bottom: 1px solid var(--grey-3);
    position: relative;
  }
  .partner-modal-close {
    position: absolute; top: 16px; right: 20px;
    width: 40px; height: 40px;
    background: transparent; border: 1px solid var(--grey-3); cursor: pointer;
    font-size: 22px; line-height: 1; color: var(--grey-2);
    transition: color .2s ease, border-color .2s ease, background .2s ease;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .partner-modal-close:hover { color: var(--ink); border-color: var(--ink); background: rgba(12,22,32,0.04); }
  .partner-modal-logo {
    height: 110px; margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
  }
  .partner-modal-logo img { max-height: 110px; max-width: 70%; object-fit: contain; }
  .partner-modal-card h3 {
    margin: 0;
    font-weight: 500; font-size: 32px; letter-spacing: -0.02em;
    color: var(--ink);
  }
  .partner-modal-body {
    padding: 40px 56px 44px;
  }
  .partner-modal-section { margin-bottom: 26px; }
  .partner-modal-section:last-child { margin-bottom: 0; }
  .partner-modal-section .lbl {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--grey-2); font-weight: 500; margin-bottom: 8px;
  }
  .partner-modal-section p {
    margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink);
    text-wrap: pretty;
  }
  .partner-modal-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px;
    background: var(--ink); color: var(--bone);
    font-size: 13px; letter-spacing: 0.04em; font-weight: 500;
    text-decoration: none;
    transition: background .2s ease;
    margin-top: 8px;
  }
  .partner-modal-cta:hover { background: var(--blue); }
  @media (max-width: 600px) {
    .partner-modal-header { padding: 56px 28px 36px; }
    .partner-modal-body { padding: 32px 28px 32px; }
    .partner-modal-card h3 { font-size: 26px; }
  }

  /* ============ CAMPUS (HARDWARE SHOP TEASER) ============ */
  section.campus {
    background: var(--bone);
    padding: 140px 7vw;
    border-top: 1px solid var(--grey-3);
    overflow: hidden;
  }
  .campus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 120px;
    align-items: center;
  }
  .campus-head .label { color: var(--grey-2); display: inline-block; margin-bottom: 28px; }
  .campus-label { display: inline-flex !important; align-items: center; gap: 10px; }
  .campus-label-logo { height: 18px; width: auto; display: block; }
  .campus-head h2 {
    margin: 0;
    font-weight: 500; letter-spacing: -0.03em; line-height: 0.95;
    font-size: clamp(36px, 5.5vw, 80px);
    color: #e1251b;
    text-wrap: balance;
  }
  .campus-head h2 .muted { color: var(--grey-2); }
  .campus-head h2 .ink { color: var(--ink); }
  .campus-lede {
    margin: 28px 0 40px; max-width: 520px;
    color: var(--grey-2); font-size: 17px; line-height: 1.55;
  }
  .campus-cta { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
  .campus-cta .btn-primary { background: var(--blue); color: var(--bone); }
  .campus-cta .btn-primary:hover { background: var(--blue-2); }

  .btn-ghost-dark {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--ink); padding: 22px 26px;
    border: 1px solid var(--grey-3);
    font-family: inherit; font-weight: 500; font-size: 14px;
    letter-spacing: 0.02em; text-decoration: none;
    transition: border-color .25s ease, background .25s ease;
    margin-left: 12px;
  }
  .btn-ghost-dark:hover { border-color: var(--ink); background: rgba(12,22,32,0.04); }

  /* Notebook preview cluster — three stylised cards, second one dark */
  /* Campus Preview — Category Showcase Grid */
  .campus-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .cat-card {
    background: var(--paper);
    border: 1px solid var(--grey-3);
    padding: 28px 24px;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    transition: border-color .25s ease, transform .25s ease, background .25s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
  }
  .cat-card::after {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: transparent;
    transition: background .25s ease;
  }
  .cat-card:hover { border-color: #e1251b; transform: translateY(-3px); background: #ffffff; }
  .cat-card:hover::after { background: #e1251b; }
  .cat-card .cat-head {
    display: flex; align-items: baseline; gap: 12px;
    margin-bottom: 16px;
  }
  .cat-card .cat-name {
    font-size: 22px; font-weight: 500; letter-spacing: -0.015em; color: var(--ink);
  }
  .cat-card .cat-count {
    font-size: 13px; color: var(--grey-2);
    transition: color .25s ease;
  }
  .cat-card:hover .cat-count { color: #e1251b; }
  .cat-card .cat-flag {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--grey-2); margin-top: auto;
    display: flex; justify-content: space-between; align-items: center;
  }
  .cat-card .cat-flag .price { color: var(--ink); font-weight: 500; letter-spacing: 0; text-transform: none; font-size: 14px; }
  .cat-card .cat-arrow { transition: transform .3s ease, color .25s ease; }
  .cat-card:hover .cat-arrow { transform: translateX(6px); color: #e1251b; }

  .cat-visual {
    flex: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 8px 0 12px;
    min-height: 120px;
    transition: transform .35s ease;
  }
  .cat-card:hover .cat-visual { transform: scale(1.04); }

  /* Make the Campus CTA button hover Lenovo red */
  .campus-cta .btn-primary { transition: background .25s ease, color .25s ease; }
  .campus-cta .btn-primary:hover { background: #e1251b; color: #ffffff; }

  @media (max-width: 760px) {
    .campus-preview { grid-template-columns: 1fr; }
  }

  /* ============ BLOG TEASER (inside Tour) ============ */
  .blog-teaser {
    margin: 90px 0 0;
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 44px;
  }
  .blog-teaser-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 24px; flex-wrap: wrap;
  }
  .blog-teaser .label { color: rgba(250,250,248,0.5); }
  .blog-teaser-h {
    margin: 8px 0 0;
    font-weight: 500; letter-spacing: -0.025em; line-height: 0.95;
    font-size: clamp(28px, 3.4vw, 48px);
    color: var(--bone);
  }
  .blog-toggle {
    display: inline-flex; align-items: center; gap: 14px;
    background: transparent; color: var(--bone);
    border: 1px solid rgba(250,250,248,0.3);
    padding: 18px 24px;
    font-family: inherit; font-weight: 500; font-size: 14px;
    letter-spacing: 0.02em; cursor: pointer;
    transition: background .25s ease, border-color .25s ease;
  }
  .blog-toggle:hover { background: rgba(250,250,248,0.08); border-color: var(--bone); }
  .blog-toggle .chev { display: inline-block; transition: transform .3s ease; font-size: 12px; }
  .blog-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }

  .blog-panel {
    overflow: hidden;
    transition: max-height .5s ease, opacity .4s ease, margin-top .5s ease;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
  }
  .blog-panel[data-open="true"] {
    opacity: 1;
    margin-top: 44px;
  }

  .blog-empty {
    padding: 28px 0;
    color: rgba(250,250,248,0.55);
    font-size: 15px;
  }

  .blog-prev {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    align-items: start;
  }
  .blog-prev:last-of-type { border-bottom: none; }
  .blog-prev-cover {
    aspect-ratio: 4/3;
    background-size: cover; background-position: center;
    background-color: #0f1f2c;
    filter: brightness(0.78) saturate(0.85);
  }
  .blog-prev-meta {
    display: flex; gap: 10px; flex-wrap: wrap;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(250,250,248,0.45);
    margin-bottom: 14px;
  }
  .blog-prev-h {
    margin: 0 0 14px;
    font-weight: 500; letter-spacing: -0.02em; line-height: 1.1;
    font-size: clamp(22px, 2.2vw, 30px);
    color: var(--bone);
    text-wrap: balance;
  }
  .blog-prev-lede {
    margin: 0 0 18px;
    color: rgba(250,250,248,0.7);
    font-size: 15px; line-height: 1.55;
    max-width: 60ch;
  }
  .blog-prev-link {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--bone);
    font-size: 13px; letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: 1px solid rgba(250,250,248,0.3);
    padding-bottom: 4px;
    transition: border-color .2s ease, gap .2s ease;
  }
  .blog-prev-link:hover { border-color: var(--bone); gap: 16px; }
  .blog-prev-link .ar { font-size: 14px; }

  .blog-more { display: flex; justify-content: flex-start; padding-top: 36px; }

  /* ============ CTA / KONTAKT ============ */
  section.contact {
    background: var(--blue); color: var(--bone);
    padding: 160px 7vw;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .contact-grid {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 100px; align-items: end;
  }
  .contact h2 {
    margin: 0; font-weight: 500; letter-spacing: -0.04em; line-height: 0.92;
    font-size: clamp(56px, 9vw, 160px); color: var(--bone);
    text-wrap: balance;
  }
  .contact h2 .muted { color: rgba(250,250,248,0.4); }
  .contact-lede { margin: 36px 0 48px; max-width: 520px; color: rgba(250,250,248,0.8); font-size: 18px; line-height: 1.55; }

  .contact-info { display: grid; gap: 22px; }
  .contact-info .grp { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 16px; }
  .contact-info .grp .label { color: rgba(250,250,248,0.55); margin-bottom: 6px; }
  .contact-info .grp .v { color: var(--bone); font-size: 18px; font-weight: 500; }

  /* ============ FOOTER ============ */
  footer {
    background: var(--ink); color: rgba(250,250,248,0.5);
    padding: 80px 7vw 32px;
    font-size: 12px; letter-spacing: 0.02em;
  }
  footer a { text-decoration: none; color: rgba(250,250,248,0.5); transition: color .2s; }
  .footer-inner {
    max-width: 1640px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .footer-brand {
    color: var(--bone); font-weight: 600; font-size: 22px;
    margin-bottom: 18px;
  }
  .footer-brand .dot { display: inline-block; width: 5px; height: 5px; background: var(--bone); margin: 0 12px 2px; vertical-align: middle; }
  .footer-inner h4 {
    margin: 0 0 18px;
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    font-weight: 500; color: rgba(250,250,248,0.55);
  }
  .footer-inner ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
  .footer-inner a:hover { color: var(--bone); }
  .footer-bottom {
    max-width: 1640px; margin: 32px auto 0;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom .meta { display: flex; gap: 24px; }
  .footer-bottom a:hover { color: var(--bone); }
  @media (max-width: 1100px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

  /* ============ SCROLL-TO-TOP ============ */
  .to-top {
    position: fixed; right: 22px; bottom: 22px; z-index: 60;
    width: 46px; height: 46px; border-radius: 50%;
    background: #00253f; color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, background .2s ease;
    box-shadow: 0 10px 28px -10px rgba(12,22,32,0.6);
  }
  .to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .to-top:hover { background: #003357; }
  .to-top svg { width: 20px; height: 20px; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 980px) {
    main, footer { margin: 0; }
    .tv-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .sec-head { grid-template-columns: 1fr; gap: 24px; }
    .services .sec-head { grid-template-columns: 1fr; }
    .statement-grid { grid-template-columns: 1fr; }
    .statement-fig img { max-width: 200px; }
    .row { grid-template-columns: 50px 1fr 30px; }
    .row .d { grid-column: 2 / 4; margin-top: 6px; }
    .tour-intro, .partners-intro { margin-left: 0; }
    .vcard { width: 80vw; }
    .navmenu nav a { font-size: clamp(32px, 9vw, 56px); }
    .navmenu nav a .n { width: 40px; font-size: 11px; }
  }

  /* ============ COOKIE CONSENT ============ */
  .cookie-banner {
    position: fixed;
    left: 22px; right: 22px; bottom: 22px;
    z-index: 95;
    background: rgba(12,22,32,0.92);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    color: var(--bone);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .45s cubic-bezier(.4,.1,.2,1), transform .45s cubic-bezier(.4,.1,.2,1);
    pointer-events: none;
    display: flex; align-items: center; gap: 28px;
  }
  .cookie-banner.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .cookie-banner .cookie-intro { flex: 1; min-width: 0; }
  .cookie-banner h3 {
    margin: 0 0 4px; font-weight: 500; letter-spacing: -0.015em;
    font-size: 15px;
  }
  .cookie-banner p {
    margin: 0; font-size: 13px; line-height: 1.5;
    color: rgba(250,250,248,0.7);
  }
  .cookie-banner p a { color: var(--bone); text-decoration: underline; text-underline-offset: 2px; }
  .cookie-actions { display: flex; flex-direction: row; gap: 10px; flex-shrink: 0; align-items: center; }
  .cookie-btn {
    padding: 12px 16px;
    font-family: inherit; font-size: 13px; font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid rgba(250,250,248,0.18);
    background: transparent; color: var(--bone);
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .1s ease;
    text-align: center;
  }
  .cookie-btn:hover { background: rgba(250,250,248,0.06); border-color: rgba(250,250,248,0.32); }
  .cookie-btn:active { transform: scale(0.985); }
  .cookie-btn.primary {
    background: var(--bone); color: var(--ink);
    border-color: var(--bone);
  }
  .cookie-btn.primary:hover { background: rgba(250,250,248,0.92); }
  .cookie-btn.ghost { font-size: 12px; opacity: 0.7; padding: 8px 12px; border-color: transparent; }
  .cookie-btn.ghost:hover { opacity: 1; background: transparent; border-color: transparent; text-decoration: underline; text-underline-offset: 3px; }

  .cookie-prefs {
    display: none;
    flex: 1; min-width: 0;
    flex-direction: row;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
  }
  .cookie-banner.show-prefs .cookie-prefs { display: flex; }
  .cookie-banner.show-prefs .cookie-intro { display: none; }
  .cookie-row {
    display: flex; align-items: center; gap: 10px;
    padding: 0;
    border: none;
  }
  .cookie-row .info { flex: 0 0 auto; }
  .cookie-row .nm { font-size: 13px; font-weight: 500; margin: 0; }
  .cookie-row .ds { display: none; }
  .cookie-toggle {
    flex: 0 0 auto;
    width: 36px; height: 20px;
    position: relative; cursor: pointer;
    background: rgba(255,255,255,0.12);
    transition: background .2s ease;
    border-radius: 999px;
  }
  .cookie-toggle::after {
    content: ""; position: absolute; top: 2px; left: 2px;
    width: 16px; height: 16px;
    background: var(--bone);
    border-radius: 50%;
    transition: transform .25s cubic-bezier(.4,.1,.2,1);
  }
  .cookie-toggle.on { background: var(--blue); }
  .cookie-toggle.on::after { transform: translateX(16px); }
  .cookie-toggle.locked { opacity: 0.5; cursor: not-allowed; background: rgba(255,255,255,0.18); }
  .cookie-toggle.locked.on::after { background: rgba(250,250,248,0.6); }

  @media (max-width: 820px) {
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 20px; flex-direction: column; align-items: stretch; gap: 16px; }
    .cookie-actions { flex-direction: column; gap: 8px; }
    .cookie-actions .cookie-btn { width: 100%; }
    .cookie-prefs { flex-direction: column; align-items: stretch; gap: 12px; }
    .cookie-row { justify-content: space-between; }
    .cookie-banner.show-prefs .cookie-row .ds { display: block; font-size: 11.5px; color: rgba(250,250,248,0.55); margin-top: 2px; }
  }

  /* ============ KARRIERE ============ */
  section.careers { background: var(--paper); color: var(--ink); padding: 140px 7vw; position: relative; }
  .careers-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; max-width: 1640px; margin: 0 auto; }
  .careers-head { position: sticky; top: 90px; }
  .careers-head .label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500; color: var(--grey-2); display: inline-block; margin-bottom: 24px; }
  .careers-head h2 { margin: 0; font-weight: 500; letter-spacing: -0.03em; line-height: 0.98; font-size: clamp(38px, 5vw, 76px); text-wrap: balance; }
  .careers-head h2 .muted { color: var(--grey); }
  .careers-head p { margin: 28px 0 36px; max-width: 42ch; font-size: 17px; line-height: 1.6; color: var(--grey-2); }
  .careers-cta { display: inline-flex; align-items: center; gap: 14px; background: var(--blue); color: var(--bone); padding: 20px 30px; text-decoration: none; font-weight: 500; font-size: 15px; letter-spacing: 0.02em; border-radius: 12px; transition: transform .2s ease, box-shadow .2s ease; }
  .careers-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -14px rgba(0,51,87,0.55); }
  .careers-cta .ar { font-size: 18px; font-weight: 400; transition: transform .2s ease; }
  .careers-cta:hover .ar { transform: translateX(4px); }
  .careers-jobsline { margin-top: 22px; font-size: 13.5px; color: var(--grey-2); }
  .careers-jobsline a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

  /* Accordion */
  .acc { display: flex; flex-direction: column; }
  .acc-item { border-top: 1px solid var(--grey-3); }
  .acc-item:last-child { border-bottom: 1px solid var(--grey-3); }
  .acc-item > summary {
    list-style: none; cursor: pointer; padding: 30px 8px 30px 0;
    display: flex; align-items: center; gap: 22px;
    user-select: none; transition: color .2s ease;
  }
  .acc-item > summary::-webkit-details-marker { display: none; }
  .acc-item > summary:hover { color: var(--blue); }
  .acc-num { font-size: 13px; font-weight: 500; letter-spacing: 0.2em; color: var(--grey); width: 34px; flex-shrink: 0; }
  .acc-title { font-size: clamp(20px, 2.3vw, 27px); font-weight: 500; letter-spacing: -0.02em; flex: 1; }
  .acc-meta { font-size: 12.5px; color: var(--grey-2); letter-spacing: 0.04em; margin-right: 6px; }
  .acc-ico { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
  .acc-ico::before, .acc-ico::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px; transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .3s ease; }
  .acc-ico::before { top: 10px; left: 0; width: 22px; height: 2px; }
  .acc-ico::after  { top: 0; left: 10px; width: 2px; height: 22px; }
  .acc-item[open] .acc-ico::after { transform: scaleY(0); opacity: 0; }
  .acc-body { overflow: hidden; padding: 0 8px 4px 56px; }
  .acc-body-inner { padding-bottom: 34px; }
  .acc-body p.lead { margin: 0 0 22px; color: var(--grey-2); max-width: 60ch; font-size: 16px; line-height: 1.6; }
  .role { padding: 16px 0; border-top: 1px dashed var(--grey-3); display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; align-items: baseline; }
  .role:first-of-type { border-top: none; }
  .role .r-name { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
  .role .r-type { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); white-space: nowrap; }
  .role .r-desc { grid-column: 1 / -1; margin: 4px 0 0; color: var(--grey-2); font-size: 14.5px; line-height: 1.55; max-width: 62ch; }
  /* open animation */
  .acc-item[open] .acc-body-inner { animation: accReveal .4s cubic-bezier(.2,.7,.2,1); }
  @keyframes accReveal { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

  @media (max-width: 960px) {
    .careers-grid { grid-template-columns: 1fr; gap: 48px; }
    .careers-head { position: static; }
  }
  @media (max-width: 600px) {
    section.careers { padding: 100px 6vw; }
    .acc-body { padding-left: 36px; }
    .acc-num { display: none; }
    .acc-meta { display: none; }
  }
