:root {
      --sky-1: #EAF1FF;
      --sky-2: #C3D8F7;
      --sky-3: #9DBDEC;
      --cobalt: #2B58D6;
      --ink: #12213F;
      --ink-soft: #33415F;
      --ink-muted: #4A5876;
      --label: #2B4FAA;
      --line: #D9E4F5;
      --white: #FFFFFF;
      --base: #F5F7FA;
      --font-mono: 'JetBrains Mono', monospace;
      --font-body: 'Inter', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--base);
      color: var(--ink);
      font-family: var(--font-body);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }

    .mono {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
    }

    /* -- Buttons -- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-weight: 500;
      font-size: 13px;
      padding: 13px 20px;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }
    .btn-solid {
      background: var(--cobalt);
      color: var(--white);
      border: 1px solid var(--cobalt);
      box-shadow: 0 12px 28px -12px rgba(43, 88, 214, 0.55);
    }
    .btn-solid:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 32px -10px rgba(43, 88, 214, 0.65);
    }
    .btn-outline {
      background: rgba(255, 255, 255, 0.5);
      color: var(--ink);
      border: 1.5px solid rgba(18, 33, 63, 0.18);
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.85);
      transform: translateY(-2px);
    }

    /* -- Logo -- */
    .logo-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .logo-word {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-weight: 700;
      font-size: 20px;
      letter-spacing: -0.01em;
      color: var(--ink);
    }

    /* ===================== HERO ===================== */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      isolation: isolate;
    }

    .hero-mesh {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(ellipse 80% 60% at 15% 20%, var(--sky-1) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 30%, var(--sky-2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 55% at 55% 90%, var(--sky-3) 0%, transparent 55%),
        linear-gradient(150deg, var(--sky-1) 0%, var(--sky-2) 50%, var(--sky-3) 100%);
    }

    .hero-grain {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      opacity: 0.04;
      mix-blend-mode: multiply;
    }

    /* -- Nav -- */
    .site-nav {
      position: relative;
      z-index: 30;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 26px clamp(20px, 4vw, 56px);
      animation: fadeDown 0.7s ease both;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px 26px;
    }
    .nav-links a:not(.btn) {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-soft);
      transition: color 0.2s ease;
    }
    .nav-links a:not(.btn):hover { color: var(--cobalt); }
    .nav-cta { padding: 10px 16px; font-size: 12px; }

    /* -- Main layout (centered) -- */
    .hero-main {
      position: relative;
      z-index: 10;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px clamp(20px, 4vw, 56px) 8px;
      min-height: 0;
    }

    .hero-copy {
      position: relative;
      z-index: 12;
      width: min(85vw, 1100px);
      display: flex;
      flex-direction: column;
      align-items: center;
      animation: fadeUp 0.9s ease 0.1s both;
    }

    .hero-copy h1 {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-weight: 700;
      font-size: clamp(32px, 5.8vw, 64px);
      letter-spacing: -0.035em;
      line-height: 1.12;
      color: var(--ink);
      margin-bottom: 22px;
      width: 100%;
      max-width: 85vw;
      text-align: center;
    }

    .hero-copy h1 .phrase-slot {
      display: grid;
      justify-items: center;
      align-items: center;
      width: 100%;
      min-height: 1.15em;
      color: var(--cobalt);
      text-align: center;
    }
    .hero-copy h1 .phrase-slot > span {
      grid-area: 1 / 1;
      color: var(--cobalt);
      opacity: 0;
      transform: translateY(0.22em);
      transition:
        opacity 0.55s cubic-bezier(0.33, 0, 0.2, 1),
        transform 0.55s cubic-bezier(0.33, 0, 0.2, 1);
      white-space: nowrap;
      pointer-events: none;
      will-change: opacity, transform;
    }
    .hero-copy h1 .phrase-slot > span.is-active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .hero-copy h1 .phrase-slot > span.is-exit {
      opacity: 0;
      transform: translateY(-0.22em);
    }

    .hero-sub {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: clamp(15px, 1.5vw, 18px);
      line-height: 1.55;
      color: var(--ink-soft);
      max-width: 42ch;
      margin: 0 auto 32px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 28px;
    }

    /* -- Terminal (discreet, under CTAs) -- */
    .hero-terminal {
      width: 300px;
      max-width: 100%;
      height: 122px;
      margin: 0 auto;
      opacity: 0.78;
      pointer-events: none;
      flex-shrink: 0;
    }

    .terminal {
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(14px) saturate(140%);
      -webkit-backdrop-filter: blur(14px) saturate(140%);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.75);
      padding: 10px 14px 12px;
      box-shadow:
        0 14px 28px -16px rgba(18, 33, 63, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
      text-align: left;
    }

    .term-bar {
      display: flex;
      gap: 5px;
      margin-bottom: 8px;
      height: 6px;
      flex-shrink: 0;
    }
    .term-bar span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(18, 33, 63, 0.14);
    }

    .term-line {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-size: 10.5px;
      line-height: 1.7;
      height: 1.7em;
      color: var(--ink-muted);
      white-space: nowrap;
      overflow: hidden;
    }
    /* Behold plads i layout - skjul kun visuelt */
    .term-line.is-hidden,
    .term-line.term-out:not(.is-shown) {
      visibility: hidden;
      opacity: 0;
    }
    .term-line.term-out {
      transform: translateY(2px);
      transition: opacity 0.14s ease, transform 0.14s ease, visibility 0.14s ease;
    }
    .term-line.term-out.is-shown {
      visibility: visible;
      opacity: 1;
      transform: translateY(0);
    }
    .term-line .prompt { color: var(--label); }
    .term-line .ok { color: var(--cobalt); }
    .term-line .live-row {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }
    .term-cursor {
      display: inline-block;
      width: 1.5px;
      height: 0.95em;
      margin-left: 1px;
      background: var(--cobalt);
      vertical-align: text-bottom;
      animation: termBlink 0.9s steps(1) infinite;
    }
    .term-cursor.is-done { display: none; }
    .live-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #22C55E;
      flex-shrink: 0;
      opacity: 0;
      transform: scale(0.6);
    }
    .live-dot.is-on {
      opacity: 1;
      transform: scale(1);
      animation: livePulse 1.8s ease-in-out infinite;
    }

    /* -- Client logos (subtle peripheral strip) -- */
    .logo-strip {
      position: relative;
      z-index: 20;
      padding: 8px clamp(20px, 4vw, 56px) 36px;
      margin-top: auto;
      flex-shrink: 0;
    }
    .logo-strip-track {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 20px 16px;
      width: 100%;
      max-width: 820px;
      margin: 0 auto;
      opacity: 0.58;
    }
    .logo-strip-set {
      display: contents;
    }
    .client-logo-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      flex: 0 0 calc((100% - 64px) / 5);
      width: calc((100% - 64px) / 5);
      max-width: none;
      box-sizing: border-box;
    }
    .client-logo-mark {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }
    .client-logo {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: saturate(0.55) contrast(0.95);
    }
    .client-logo-name {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--ink);
      opacity: 0.75;
      text-align: center;
      white-space: normal;
      line-height: 1.25;
      max-width: 100%;
    }

    /* -- Page sections -- */
    .section {
      padding: clamp(64px, 10vh, 100px) clamp(20px, 5vw, 56px);
    }
    .section-inner { max-width: 1080px; margin: 0 auto; }
    .section-label {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--label);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-weight: 700;
      font-size: clamp(24px, 3.2vw, 34px);
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: var(--ink);
      margin-bottom: 40px;
      max-width: 22ch;
    }

    /* Cases */
    .cases { background: var(--white); border-top: 1px solid var(--line); }
    .cases .section-title { max-width: none; }
    .case-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 28px;
    }
    .case-item {
      display: block;
      transition: transform 0.28s ease;
    }
    .case-item:hover {
      transform: scale(1.02);
    }
    .case-shot {
      position: relative;
      aspect-ratio: 16 / 11;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(18, 33, 63, 0.1);
      background: linear-gradient(160deg, var(--sky-1), var(--sky-2));
      margin-bottom: 14px;
      box-shadow: 0 6px 18px rgba(18, 33, 63, 0.04);
      transition: box-shadow 0.28s ease;
    }
    .case-item:hover .case-shot {
      box-shadow: 0 14px 32px rgba(43, 88, 214, 0.12);
    }
    .case-shot-bar {
      position: relative;
      z-index: 2;
      height: 26px;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(6px);
      border-bottom: 1px solid rgba(18, 33, 63, 0.06);
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 0 12px;
    }
    .case-shot-bar i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(18, 33, 63, 0.18);
      display: block;
    }
    .case-shot-media {
      position: absolute;
      inset: 26px 0 0 0;
      overflow: hidden;
      background:
        linear-gradient(160deg, rgba(234, 241, 255, 0.95) 0%, rgba(195, 216, 247, 0.75) 100%);
    }
    .case-shot-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .case-shot-media img.is-missing {
      display: none;
    }
    .case-shot-fallback {
      display: none;
      position: absolute;
      inset: 0;
      align-items: center;
      justify-content: center;
      padding: 16px;
      text-align: center;
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--ink-muted);
      background:
        radial-gradient(circle at 30% 20%, rgba(43, 88, 214, 0.1), transparent 45%),
        linear-gradient(160deg, var(--sky-1), var(--sky-2));
    }
    .case-shot-media.is-empty .case-shot-fallback {
      display: flex;
    }

    /* Coded case UI mocks (Drivn products) */
    .case-ui {
      width: 100%;
      height: 100%;
      padding: 14px 14px 13px;
      background: linear-gradient(165deg, #FBFCFE 0%, var(--sky-1) 100%);
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      color: var(--ink);
      display: flex;
      flex-direction: column;
      gap: 10px;
      overflow: hidden;
    }
    .case-ui-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }
    .case-ui-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--label);
    }
    .case-ui-live {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      font-weight: 500;
      color: var(--ink-muted);
    }
    .case-ui-live .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #22C55E;
      animation: livePulse 1.8s ease-in-out infinite;
    }
    .case-ui-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 2px 7px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.12);
      color: #15803D;
      font-size: 8.5px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }
    .case-ui-badge::before {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #22C55E;
    }

    /* ESG */
    .ui-esg-row {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 10px;
      align-items: center;
      min-height: 0;
      flex: 1;
    }
    .ui-esg-ring {
      position: relative;
      width: 64px;
      height: 64px;
      margin: 0 auto;
    }
    .ui-esg-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
    .ui-esg-ring .track {
      fill: none;
      stroke: rgba(43, 88, 214, 0.12);
      stroke-width: 6;
    }
    .ui-esg-ring .prog {
      fill: none;
      stroke: var(--cobalt);
      stroke-width: 6;
      stroke-linecap: round;
      stroke-dasharray: 113;
      stroke-dashoffset: 113;
      transition: stroke-dashoffset 1.1s ease;
    }
    .case-ui.is-live .ui-esg-ring .prog {
      stroke-dashoffset: 36.2; /* ~68% of 113 */
    }
    .ui-esg-ring-label {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.1;
    }
    .ui-esg-ring-label span {
      font-size: 7px;
      font-weight: 500;
      color: var(--ink-muted);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .ui-esg-cats {
      display: flex;
      flex-direction: column;
      gap: 5px;
      min-width: 0;
    }
    .ui-esg-cat {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 5px 7px;
      border-radius: 7px;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(18, 33, 63, 0.06);
      font-size: 9px;
      font-weight: 500;
      color: var(--ink-soft);
    }
    .ui-esg-cat i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .ui-esg-cat i.c { background: var(--cobalt); }
    .ui-esg-cat i.s { background: #22C55E; }
    .ui-esg-cat i.g { background: #7C9CE8; }
    .ui-esg-cat b {
      margin-left: auto;
      font-weight: 700;
      color: var(--ink);
      font-size: 9px;
    }
    .ui-esg-chart {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      height: 28px;
      padding: 0 2px;
    }
    .ui-esg-chart span {
      flex: 1;
      border-radius: 3px 3px 1px 1px;
      background: linear-gradient(180deg, var(--cobalt), #7C9CE8);
      opacity: 0.35;
      transform-origin: bottom;
      transform: scaleY(0.35);
      transition: transform 0.9s ease, opacity 0.9s ease;
    }
    .ui-esg-chart span:nth-child(odd) {
      background: linear-gradient(180deg, #22C55E, #86EFAC);
    }
    .case-ui.is-live .ui-esg-chart span {
      opacity: 0.85;
      transform: scaleY(1);
    }
    .ui-esg-chart span:nth-child(1) { height: 42%; transition-delay: 0.05s; }
    .ui-esg-chart span:nth-child(2) { height: 68%; transition-delay: 0.1s; }
    .ui-esg-chart span:nth-child(3) { height: 55%; transition-delay: 0.15s; }
    .ui-esg-chart span:nth-child(4) { height: 82%; transition-delay: 0.2s; }
    .ui-esg-chart span:nth-child(5) { height: 70%; transition-delay: 0.25s; }
    .ui-esg-chart span:nth-child(6) { height: 94%; transition-delay: 0.3s; }

    /* LCA */
    .ui-lca-top {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 8px;
    }
    .ui-lca-kpi {
      padding: 8px 9px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(18, 33, 63, 0.07);
    }
    .ui-lca-kpi .k {
      font-size: 8px;
      font-weight: 500;
      color: var(--ink-muted);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 3px;
    }
    .ui-lca-kpi .v {
      font-size: 16px;
      font-weight: 700;
      color: var(--cobalt);
      line-height: 1;
    }
    .ui-lca-kpi .u {
      font-size: 9px;
      font-weight: 500;
      color: var(--ink-muted);
      margin-left: 2px;
    }
    .ui-lca-table {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-height: 0;
    }
    .ui-lca-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
      align-items: center;
      padding: 5px 8px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(18, 33, 63, 0.05);
      font-size: 9px;
      color: var(--ink-soft);
    }
    .ui-lca-row strong {
      font-weight: 700;
      color: var(--ink);
      font-variant-numeric: tabular-nums;
    }
    .ui-lca-bar {
      height: 3px;
      border-radius: 99px;
      background: rgba(43, 88, 214, 0.12);
      margin-top: 4px;
      overflow: hidden;
    }
    .ui-lca-bar i {
      display: block;
      height: 100%;
      width: 0;
      border-radius: inherit;
      background: var(--cobalt);
      transition: width 1s ease;
    }
    .case-ui.is-live .ui-lca-row:nth-child(1) .ui-lca-bar i { width: 72%; }
    .case-ui.is-live .ui-lca-row:nth-child(2) .ui-lca-bar i { width: 48%; transition-delay: 0.08s; }
    .case-ui.is-live .ui-lca-row:nth-child(3) .ui-lca-bar i { width: 61%; transition-delay: 0.16s; }
    .case-ui.is-live .ui-lca-row:nth-child(4) .ui-lca-bar i { width: 34%; transition-delay: 0.24s; }

    /* Tidsregistrering */
    .ui-tid-week {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 5px;
      flex: 1;
      min-height: 0;
    }
    .ui-tid-day {
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-height: 0;
    }
    .ui-tid-day .d {
      font-size: 8px;
      font-weight: 700;
      text-align: center;
      color: var(--ink-muted);
      letter-spacing: 0.04em;
    }
    .ui-tid-slots {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 3px;
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid rgba(18, 33, 63, 0.05);
      border-radius: 6px;
      padding: 4px;
      min-height: 54px;
    }
    .ui-tid-slots b {
      display: block;
      border-radius: 3px;
      min-height: 10px;
    }
    .ui-tid-slots b.a { background: rgba(43, 88, 214, 0.75); flex: 1.2; }
    .ui-tid-slots b.b { background: rgba(43, 88, 214, 0.4); flex: 0.7; }
    .ui-tid-slots b.c { background: rgba(34, 197, 94, 0.55); flex: 0.9; }
    .ui-tid-slots b.empty {
      background: rgba(18, 33, 63, 0.05);
      flex: 0.45;
    }
    .ui-tid-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding-top: 2px;
    }
    .ui-tid-hours {
      font-size: 9px;
      color: var(--ink-muted);
    }
    .ui-tid-hours strong {
      color: var(--ink);
      font-weight: 700;
    }

    /* Stagehub ticketing */
    .ui-stage-body {
      display: grid;
      grid-template-columns: 1.15fr 0.95fr;
      gap: 8px;
      flex: 1;
      min-height: 0;
    }
    .ui-stage-ticket {
      position: relative;
      border-radius: 10px;
      padding: 9px 10px 10px;
      background: linear-gradient(145deg, var(--cobalt) 0%, #1E3FA8 100%);
      color: #fff;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 0;
    }
    .ui-stage-ticket::before,
    .ui-stage-ticket::after {
      content: "";
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #F5F8FF;
      top: 50%;
      transform: translateY(-50%);
    }
    .ui-stage-ticket::before { left: -6px; }
    .ui-stage-ticket::after { right: -6px; }
    .ui-stage-ticket .event {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 4px;
    }
    .ui-stage-ticket .meta {
      font-size: 8px;
      font-weight: 500;
      opacity: 0.82;
      line-height: 1.35;
    }
    .ui-stage-ticket .seat {
      margin-top: 8px;
      align-self: flex-start;
      padding: 3px 7px;
      border-radius: 5px;
      background: rgba(255, 255, 255, 0.16);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.04em;
    }
    .ui-stage-check {
      display: flex;
      flex-direction: column;
      gap: 5px;
      min-width: 0;
    }
    .ui-stage-line {
      display: flex;
      justify-content: space-between;
      gap: 6px;
      padding: 5px 7px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(18, 33, 63, 0.06);
      font-size: 8.5px;
      font-weight: 500;
      color: var(--ink-soft);
    }
    .ui-stage-line strong {
      font-weight: 700;
      color: var(--ink);
      font-variant-numeric: tabular-nums;
    }
    .ui-stage-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 7px;
      border-radius: 6px;
      background: rgba(43, 88, 214, 0.1);
      border: 1px solid rgba(43, 88, 214, 0.14);
      font-size: 9px;
      font-weight: 700;
      color: var(--ink);
    }
    .ui-stage-total strong {
      color: var(--cobalt);
      font-size: 11px;
    }
    .ui-stage-scan {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .ui-stage-scan-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 8.5px;
      font-weight: 500;
      color: var(--ink-muted);
    }
    .ui-stage-scan-meta b {
      color: var(--ink);
      font-weight: 700;
    }
    .ui-stage-bar {
      height: 5px;
      border-radius: 99px;
      background: rgba(43, 88, 214, 0.12);
      overflow: hidden;
    }
    .ui-stage-bar i {
      display: block;
      height: 100%;
      width: 0;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--cobalt), #7C9CE8);
      transition: width 1.05s ease;
    }
    .case-ui.is-live .ui-stage-bar i {
      width: 82.4%; /* 742/900 */
    }

    .case-label {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-size: 14.5px;
      font-weight: 500;
      color: var(--ink);
    }
    .case-tag {
      display: block;
      margin-top: 5px;
      font-size: 13px;
      color: var(--ink-muted);
    }

    @media (max-width: 768px) {
      .case-ui { padding: 11px 12px; gap: 8px; }
      .case-grid { gap: 24px; }
      .case-label { font-size: 14px; }
      .case-tag { font-size: 12.5px; }
      .ui-esg-row { grid-template-columns: 58px 1fr; gap: 8px; }
      .ui-esg-ring { width: 52px; height: 52px; }
      .ui-esg-ring-label { font-size: 11px; }
      .ui-lca-kpi .v { font-size: 14px; }
      .ui-tid-slots { min-height: 48px; }
      .ui-stage-body { gap: 6px; }
      .ui-stage-ticket .event { font-size: 11px; }
    }

    /* Partners / quotes */
    .quotes { background: var(--base); border-top: 1px solid var(--line); }
    .quotes .section-title { max-width: none; }
    .quote-list {
      display: grid;
      grid-template-columns: 1fr 1.12fr 1fr;
      gap: 22px;
      align-items: start;
    }
    .quote-item {
      position: relative;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding: 26px 24px 28px;
      border-radius: 16px;
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.88) 0%, rgba(234, 241, 255, 0.72) 100%);
      border: 1px solid rgba(18, 33, 63, 0.07);
      box-shadow: 0 10px 28px rgba(18, 33, 63, 0.05);
      overflow: hidden;
    }
    .quote-item:nth-child(1) { margin-top: 28px; }
    .quote-item:nth-child(2) {
      margin-top: 0;
      padding: 30px 26px 32px;
      box-shadow: 0 16px 40px rgba(43, 88, 214, 0.1);
      border-color: rgba(43, 88, 214, 0.14);
      background:
        linear-gradient(165deg, #fff 0%, rgba(195, 216, 247, 0.45) 100%);
    }
    .quote-item:nth-child(3) { margin-top: 48px; }
    .quote-person {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .quote-photo {
      width: 84px;
      height: 84px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      background: linear-gradient(145deg, var(--sky-2), var(--sky-3));
      border: 2px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 4px 14px rgba(18, 33, 63, 0.12);
    }
    .quote-item:nth-child(2) .quote-photo {
      width: 96px;
      height: 96px;
    }
    .quote-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease;
    }
    .quote-item:hover .quote-photo img {
      transform: scale(1.05);
    }
    .quote-name {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.25;
    }
    .quote-firm {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-size: 11.5px;
      font-weight: 500;
      color: var(--ink-muted);
      margin-top: 4px;
      line-height: 1.35;
      letter-spacing: 0.01em;
    }
    .quote-item blockquote {
      position: relative;
      z-index: 1;
      margin: 0;
      padding-top: 22px;
      font-family: var(--font-body);
      font-style: italic;
      font-weight: 500;
      font-size: 16.5px;
      line-height: 1.7;
      color: var(--ink);
    }
    .quote-item blockquote::before {
      content: "“";
      position: absolute;
      top: -6px;
      left: -2px;
      font-family: var(--font-mono);
      font-style: normal;
      font-size: 64px;
      font-weight: 700;
      line-height: 1;
      color: var(--cobalt);
      opacity: 0.22;
      pointer-events: none;
      user-select: none;
    }
    .quote-item:nth-child(2) blockquote {
      font-size: 17.5px;
      line-height: 1.68;
    }
    .quote-item:nth-child(2) blockquote::before {
      font-size: 72px;
      opacity: 0.26;
    }

    /* Services */
    .services { background: var(--white); border-top: 1px solid var(--line); }
    .services .section-title { max-width: 16ch; }
    .service-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .service-item {
      margin: 0;
      padding: 24px 22px 26px;
      border-radius: 16px;
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(234, 241, 255, 0.7) 100%);
      border: 1px solid rgba(18, 33, 63, 0.07);
      box-shadow: 0 10px 28px rgba(18, 33, 63, 0.05);
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }
    .service-item:hover {
      transform: scale(1.02);
      box-shadow: 0 16px 36px rgba(43, 88, 214, 0.12);
    }
    .service-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 16px;
      color: var(--cobalt);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .service-icon svg {
      width: 28px;
      height: 28px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .service-item h3 {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-weight: 700;
      font-size: 15px;
      color: var(--ink);
      margin: 0 0 8px;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }
    .service-item p {
      font-size: 14px;
      line-height: 1.55;
      color: var(--ink-muted);
      margin: 0;
    }

    /* People */
    .people { background: var(--base); border-top: 1px solid var(--line); }
    .people-card {
      display: grid;
      grid-template-columns: minmax(240px, 300px) 1fr;
      gap: clamp(28px, 4vw, 48px);
      align-items: center;
      max-width: 920px;
      padding: clamp(22px, 3vw, 32px);
      border-radius: 20px;
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(234, 241, 255, 0.78) 100%);
      border: 1px solid rgba(18, 33, 63, 0.07);
      box-shadow: 0 14px 40px rgba(18, 33, 63, 0.07);
    }
    .people-photo {
      width: 100%;
      aspect-ratio: 4 / 5;
      max-height: 380px;
      border-radius: 16px;
      overflow: hidden;
      background: linear-gradient(150deg, var(--sky-2), var(--sky-3));
      border: 1px solid rgba(18, 33, 63, 0.08);
      box-shadow: 0 12px 28px rgba(18, 33, 63, 0.1);
    }
    .people-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 18%;
      display: block;
    }
    .people-copy {
      min-width: 0;
      padding-right: clamp(0px, 2vw, 12px);
    }
    .people-person {
      margin-bottom: 18px;
    }
    .people-name {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-size: clamp(18px, 2vw, 22px);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.25;
    }
    .people-role {
      margin-top: 6px;
      font-size: 14px;
      color: var(--ink-muted);
      line-height: 1.4;
    }
    .people-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 14px;
      width: 40px;
      height: 40px;
      padding: 0;
      border-radius: 999px;
      color: var(--white);
      background: var(--cobalt);
      border: 1px solid var(--cobalt);
      box-shadow: 0 10px 22px -10px rgba(43, 88, 214, 0.55);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .people-link svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      display: block;
    }
    .people-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 26px -10px rgba(43, 88, 214, 0.65);
      text-decoration: none;
    }
    .people-copy p,
    .people-quote {
      position: relative;
      margin: 0;
      padding-top: 8px;
      font-family: var(--font-body);
      font-style: italic;
      font-weight: 500;
      font-size: 16.5px;
      line-height: 1.7;
      color: var(--ink);
      max-width: 46ch;
    }
    .people-quote::before {
      content: "“";
      position: absolute;
      top: -10px;
      left: -4px;
      font-family: var(--font-mono);
      font-style: normal;
      font-size: 56px;
      font-weight: 700;
      line-height: 1;
      color: var(--cobalt);
      opacity: 0.22;
      pointer-events: none;
    }
    .people-quote p {
      font: inherit;
      color: inherit;
      margin: 0 0 14px;
      padding: 0;
      max-width: none;
    }
    .people-quote p:last-child {
      margin-bottom: 0;
    }

    /* Final CTA */
    .cta-final {
      position: relative;
      padding: clamp(72px, 12vh, 120px) clamp(20px, 5vw, 56px);
      background: linear-gradient(150deg, var(--sky-1) 0%, var(--sky-2) 55%, var(--sky-3) 100%);
      text-align: center;
      border-top: 1px solid var(--line);
      overflow: hidden;
    }
    .cta-final::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(18, 33, 63, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 33, 63, 0.035) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
      pointer-events: none;
    }
    .cta-final-card {
      position: relative;
      z-index: 1;
      max-width: 760px;
      margin: 0 auto;
      padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 48px);
      border-radius: 24px;
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(234, 241, 255, 0.78) 100%);
      border: 1px solid rgba(18, 33, 63, 0.07);
      box-shadow: 0 18px 48px rgba(18, 33, 63, 0.1);
      overflow: hidden;
    }
    .cta-final .section-label {
      margin-bottom: 14px;
    }
    .cta-final .section-title {
      margin: 0 auto 16px;
      max-width: 100%;
      font-size: clamp(28px, 5vw, 52px);
      letter-spacing: -0.03em;
      line-height: 1.1;
      white-space: nowrap;
    }
    .cta-final .cta-sub {
      font-size: 16px;
      color: var(--ink-soft);
      margin: 0 auto 28px;
      max-width: 36ch;
      line-height: 1.55;
    }
    .cta-final-actions {
      display: flex;
      justify-content: center;
      margin-bottom: 0;
    }
    .cta-final-actions .btn {
      font-size: 14px;
      padding: 15px 24px;
    }

    /* -- Undersider (fx privatlivspolitik) -- */
    .subpage {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
    }
    .page-top {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
    }
    .page-top-mesh {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(ellipse 80% 60% at 15% 20%, var(--sky-1) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 30%, var(--sky-2) 0%, transparent 50%),
        linear-gradient(160deg, var(--sky-1) 0%, var(--sky-2) 55%, #E8F0FC 100%);
    }
    .page-top .site-nav {
      position: relative;
      z-index: 2;
    }
    .page-intro {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 0 auto;
      padding: 12px clamp(20px, 5vw, 56px) 56px;
    }
    .page-intro-title {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-weight: 700;
      font-size: clamp(32px, 5vw, 48px);
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--ink);
      margin: 0 0 14px;
    }
    .page-intro-sub {
      font-size: 17px;
      line-height: 1.55;
      color: var(--ink-soft);
      max-width: 42ch;
      margin: 0 0 18px;
    }
    .page-meta {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-size: 12px;
      letter-spacing: 0.04em;
      color: var(--ink-muted);
    }

    .legal-section {
      background: var(--white);
      flex: 1;
    }
    .legal-content {
      max-width: 720px;
    }
    .legal-block {
      margin-bottom: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--line);
    }
    .legal-block:last-of-type {
      margin-bottom: 28px;
    }
    .legal-block h2 {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-weight: 700;
      font-size: clamp(22px, 3vw, 28px);
      letter-spacing: -0.02em;
      color: var(--ink);
      margin: 0 0 22px;
    }
    .legal-block h3 {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.02em;
      color: var(--ink);
      margin: 22px 0 8px;
    }
    .legal-block p {
      font-size: 16px;
      line-height: 1.65;
      color: var(--ink-soft);
      margin: 0 0 12px;
    }
    .legal-block a,
    .legal-note a {
      color: var(--cobalt);
      text-decoration: underline;
      text-decoration-color: rgba(43, 88, 214, 0.35);
      text-underline-offset: 3px;
    }
    .legal-block a:hover,
    .legal-note a:hover {
      text-decoration-color: var(--cobalt);
    }
    .legal-note {
      font-size: 15px;
      line-height: 1.55;
      color: var(--ink-muted);
      margin: 0;
    }

    /* Footer */
    .site-footer {
      position: relative;
      padding: 44px clamp(20px, 5vw, 56px) 34px;
      background: linear-gradient(165deg, #FFFFFF 0%, #F3F7FF 48%, #DCE8FA 100%);
      border-top: 1px solid var(--line);
    }
    .footer-grid {
      position: relative;
      z-index: 1;
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 32px;
      margin-bottom: 32px;
    }
    .footer-grid .logo-word { font-size: 18px; }
    .footer-col h4 {
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--label);
      margin-bottom: 14px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(43, 88, 214, 0.18);
      display: inline-block;
    }
    .footer-col a,
    .footer-col p {
      display: block;
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.7;
      margin: 0;
      width: fit-content;
    }
    .footer-col a {
      transition: color 0.2s ease, text-decoration-color 0.2s ease;
      text-decoration: underline;
      text-decoration-color: transparent;
      text-underline-offset: 3px;
    }
    .footer-col a:hover {
      color: var(--cobalt);
      text-decoration-color: rgba(43, 88, 214, 0.45);
    }
    .footer-bottom {
      position: relative;
      z-index: 1;
      max-width: 1080px;
      margin: 0 auto;
      padding-top: 20px;
      border-top: 1px solid rgba(18, 33, 63, 0.08);
      font-family: var(--font-mono);
      font-variant-ligatures: none;
      font-feature-settings: "liga" 0, "calt" 0;
      font-size: 11px;
      letter-spacing: 0.04em;
      color: var(--ink-muted);
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    /* -- Motion -- */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes termBlink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
    }
    @keyframes livePulse {
      0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
      }
      50% {
        opacity: 0.55;
        transform: scale(0.85);
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
      }
    }
    @keyframes pulseGreen {
      0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
      70% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
      100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
    }

    /* -- Responsive -- */
    @media (max-width: 768px) {
      .hero {
        min-height: 100svh;
        min-height: 100dvh;
      }

      .site-nav {
        padding: 14px 20px;
        flex-shrink: 0;
      }

      /* Indhold øverst i den ledige plads - ikke svævende midt i viewporten */
      .hero-main {
        flex: 1 1 auto;
        justify-content: flex-start;
        align-items: stretch;
        padding: clamp(16px, 4vh, 28px) 20px 10px;
      }

      .hero-copy {
        width: 100%;
        max-width: none;
        align-items: stretch;
      }

      .hero-copy h1 {
        font-size: clamp(26px, 7vw, 34px);
        line-height: 1.18;
        letter-spacing: -0.03em;
        margin-bottom: 14px;
        max-width: none;
        width: 100%;
        text-align: center;
      }

      .hero-copy h1 .phrase-slot {
        width: 100%;
      }

      .hero-copy h1 .phrase-slot > span {
        white-space: normal;
        text-wrap: balance;
      }

      .hero-sub {
        font-size: 15px;
        line-height: 1.5;
        max-width: none;
        margin: 0 0 20px;
        padding: 0;
        text-align: center;
      }

      .hero-actions {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
        gap: 10px;
        margin-bottom: 18px;
      }

      .hero-actions .btn {
        width: 100%;
        box-sizing: border-box;
        padding: 14px 18px;
      }

      .hero-terminal {
        width: 100%;
        max-width: none;
        height: 128px;
        margin: 0;
        opacity: 0.9;
      }

      .terminal {
        padding: 12px 14px 14px;
      }

      .term-line {
        font-size: 11px;
        line-height: 1.65;
        height: 1.65em;
      }

      .logo-strip {
        padding: 4px 16px 22px;
      }

      .logo-strip-track {
        gap: 14px 8px;
        max-width: none;
      }

      .client-logo-item {
        flex: 0 0 calc((100% - 16px) / 3);
        width: calc((100% - 16px) / 3);
        gap: 6px;
      }

      .client-logo-mark {
        width: 36px;
        height: 36px;
      }

      .client-logo-name {
        font-size: 8px;
      }

      .cta-final .section-title {
        font-size: clamp(24px, 7vw, 34px);
      }

      .case-grid { grid-template-columns: 1fr; gap: 28px; }
      .quotes .section-title { max-width: 18ch; }
      .quote-list {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .quote-item:nth-child(1),
      .quote-item:nth-child(2),
      .quote-item:nth-child(3) {
        margin-top: 0;
      }
      .quote-item:nth-child(2) {
        order: -1;
      }
      .quote-photo,
      .quote-item:nth-child(2) .quote-photo {
        width: 80px;
        height: 80px;
      }
      .service-list { grid-template-columns: 1fr; gap: 14px; }
      .people-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 18px;
        max-width: none;
      }
      .people-photo {
        width: min(220px, 70%);
        max-height: none;
        aspect-ratio: 4 / 5;
        margin: 0 auto;
      }
      .people-copy {
        text-align: left;
        padding-right: 0;
      }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    }

    @media (max-width: 900px) and (min-width: 769px) {
      .case-grid { grid-template-columns: 1fr 1fr; gap: 26px 22px; }
      .quote-list {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .quote-item:nth-child(1),
      .quote-item:nth-child(2),
      .quote-item:nth-child(3) {
        margin-top: 0;
      }
      .service-list { grid-template-columns: 1fr 1fr; gap: 16px; }
    }
