    :root {
      --white: #FFFFFF;
      --paper: #F4F1E8;
      --paper-2: #E8E2D2;
      --line: rgba(14,17,22,0.12);
      --line-strong: rgba(14,17,22,0.22);
      --ink: #0B0E12;
      --ink-2: #1C2026;
      --ink-dim: #4A5058;
      --ink-mute: #7A808A;

      /* Brand palette - sampled from Adda Mig logo */
      --cyan: #5DB6C4;        /* logo: A in ADDA */
      --cyan-soft: #D2E8EC;
      --blue: #3677D0;        /* logo: D in ADDA */
      --blue-soft: #CFDDEF;
      --green: #5BC15F;       /* logo: D in ADDA */
      --green-soft: #D2ECD4;
      --lime: #C5D952;        /* logo: A in ADDA */
      --lime-soft: #E8EEC9;
      --orange: #F58030;      /* logo: M in MIG */
      --orange-soft: #F8D9BE;
      --pink: #E73E8C;        /* logo: I and G in MIG */
      --pink-soft: #F4CFDF;

      /* Primary accent - derived from logo cyan, deeper for type emphasis */
      --teal: #1F8C92;
      --teal-deep: #16686D;
      --teal-soft: #C8E0E3;
      --signal: #2FD4D0;

      /* Secondary semantic tones (kept for variety in future subpages) */
      --terracotta: #B85A3E;
      --moss: #5F7A3F;
      --cobalt: #1F3DA0;
      --plum: #7B3F5F;
      --font-display: "Fraunces", Georgia, serif;
      --font-sans: "Geist", system-ui, -apple-system, sans-serif;
      --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

      /* Refined shadows for tactile depth */
      --shadow-card: 0 1px 0 rgba(255,255,255,0.7) inset, 0 1px 2px rgba(14,17,22,0.04), 0 8px 24px -12px rgba(14,17,22,0.10);
      --shadow-card-hover: 0 1px 0 rgba(255,255,255,0.8) inset, 0 2px 4px rgba(14,17,22,0.05), 0 32px 64px -24px rgba(14,17,22,0.22);
      --shadow-deep: 0 2px 0 rgba(255,255,255,0.05) inset, 0 32px 80px -16px rgba(14,17,22,0.55);
    }

    * { box-sizing: border-box; }
    html { color-scheme: light; scroll-behavior: smooth; }
    html, body {
      margin: 0; padding: 0;
      background: var(--white);
      color: var(--ink);
      font-family: var(--font-sans);
      font-feature-settings: "ss01", "ss03", "cv11";
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    /* Subtle film-grain overlay - gives the page tactility without distracting */
    body::before {
      content: "";
      position: fixed; inset: 0;
      pointer-events: none;
      z-index: 100;
      opacity: 0.035;
      mix-blend-mode: multiply;
      background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* Custom ink-cursor follower */
    .ink-cursor {
      position: fixed; left: 0; top: 0;
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 1px solid var(--ink);
      pointer-events: none;
      transform: translate(-50%, -50%);
      transition: width 0.25s cubic-bezier(0.2,0.7,0.2,1), height 0.25s cubic-bezier(0.2,0.7,0.2,1), background 0.25s ease, border-color 0.25s ease, opacity 0.3s ease;
      z-index: 200;
      opacity: 0;
      mix-blend-mode: difference;
    }
    .ink-cursor.visible { opacity: 0.6; }
    .ink-cursor.hovering { width: 56px; height: 56px; background: var(--ink); border-color: transparent; opacity: 0.85; }
    @media (hover: none), (pointer: coarse) { .ink-cursor { display: none; } }

    /* Scroll progress band */
    .scroll-progress {
      position: fixed; top: 0; left: 0;
      height: 2px;
      width: 100%;
      transform-origin: 0 50%;
      transform: scaleX(0);
      background: linear-gradient(90deg, var(--lime), var(--teal), var(--blue), var(--pink));
      z-index: 50;
      will-change: transform;
    }

    ::selection { background: var(--teal); color: #fff; }

    .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
    @media (min-width: 640px) { .container { padding: 0 40px; } }

    .h1 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 480, "SOFT" 30;
      font-size: clamp(2.4rem, 6.5vw, 5.4rem);
      line-height: 1.0;
      letter-spacing: -0.03em;
      color: var(--ink);
    }
    .h1 em {
      font-style: italic;
      font-variation-settings: "opsz" 144, "wght" 380, "SOFT" 100;
      color: var(--teal);
    }
    .h2 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 96, "wght" 500, "SOFT" 40;
      font-size: clamp(1.9rem, 4.5vw, 3.4rem);
      line-height: 1.06;
      letter-spacing: -0.025em;
      color: var(--ink);
    }
    .h2 em {
      font-style: italic;
      font-variation-settings: "opsz" 96, "wght" 380, "SOFT" 100;
      color: var(--teal);
    }
    .h3 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 36, "wght" 550, "SOFT" 30;
      font-size: clamp(1.25rem, 1.8vw, 1.5rem);
      line-height: 1.2;
      letter-spacing: -0.015em;
    }
    .label-mono {
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--ink-dim);
      font-weight: 500;
    }
    .text-balance { text-wrap: balance; }
    .text-pretty { text-wrap: pretty; }

    .reveal {
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.9s cubic-bezier(0.2, 0.65, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.65, 0.2, 1);
      will-change: opacity, transform;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 13px 24px;
      border-radius: 999px;
      font-family: var(--font-sans);
      font-weight: 500; font-size: 14px;
      letter-spacing: -0.005em;
      text-decoration: none;
      transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      will-change: transform;
      border: 1px solid transparent;
    }
    .btn-primary { background: var(--ink); color: #fff; }
    .btn-primary:hover { background: var(--teal); box-shadow: 0 8px 24px -8px rgba(31,140,146,0.5); }
    .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
    .btn-ghost:hover { border-color: var(--ink); }

    /* Nav */
    .nav {
      position: fixed; inset: 0 0 auto 0; z-index: 40;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 24px;
      transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
      border-bottom: 1px solid transparent;
    }
    .nav.scrolled {
      background: rgba(255,255,255,0.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
      padding-top: 12px; padding-bottom: 12px;
    }
    @media (min-width: 640px) { .nav, .nav.scrolled { padding-left: 40px; padding-right: 40px; } }

    .brand-logo {
      display: inline-flex; align-items: center;
      text-decoration: none;
      transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
    }
    .brand-logo img {
      display: block;
      height: 44px;
      width: auto;
      user-select: none;
      -webkit-user-drag: none;
    }
    .brand-logo:hover { transform: rotate(-2deg) scale(1.04); }
    .nav.scrolled .brand-logo img { height: 38px; transition: height 0.4s ease; }
    footer .brand-logo img { height: 64px; }

    .nav-links { display: none; gap: 28px; }
    @media (min-width: 880px) { .nav-links { display: flex; } }
    .nav-links a {
      font-family: var(--font-sans);
      font-weight: 450; font-size: 14px;
      color: var(--ink); text-decoration: none;
      transition: color 0.3s ease;
    }
    .nav-links a:hover { color: var(--teal-deep); }

    /* Nav CTA - hide on mobile (hamburger replaces it) */
    .nav .nav-cta { display: none; }
    @media (min-width: 880px) { .nav .nav-cta { display: inline-flex; } }

    /* Hamburger button - visible only on mobile */
    .nav-toggle {
      display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
      gap: 5px;
      width: 44px; height: 44px;
      padding: 0; margin: 0;
      background: transparent;
      border: 1px solid var(--line-strong);
      border-radius: 999px;
      cursor: pointer;
      transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
    }
    .nav-toggle:hover { background: var(--paper); border-color: var(--ink); }
    .nav-toggle span {
      display: block;
      width: 18px; height: 1.5px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), opacity 0.3s ease, background 0.3s ease;
      transform-origin: center;
    }
    @media (min-width: 880px) { .nav-toggle { display: none; } }
    /* Open-state hamburger morphs into an X */
    body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: #fff; }
    body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
    body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: #fff; }
    body.menu-open .nav-toggle { border-color: rgba(255,255,255,0.45); background: transparent; position: fixed; top: 18px; right: 24px; z-index: 60; }
    @media (min-width: 640px) { body.menu-open .nav-toggle { right: 40px; } }

    /* Mobile menu overlay */
    .mobile-menu {
      position: fixed; inset: 0;
      background: var(--ink);
      z-index: 55;
      display: flex; flex-direction: column;
      padding: 80px 24px 32px;
      transform: translateY(-100%);
      transition: transform 0.5s cubic-bezier(0.7,0,0.3,1);
      overflow-y: auto;
      visibility: hidden;
    }
    @media (min-width: 640px) { .mobile-menu { padding: 96px 40px 40px; } }
    body.menu-open .mobile-menu {
      transform: translateY(0);
      visibility: visible;
    }
    .mobile-menu::before {
      content: ""; position: absolute;
      width: 800px; height: 800px;
      right: -300px; top: -200px;
      border-radius: 50%;
      background: radial-gradient(closest-side, rgba(47,212,208,0.18), transparent 70%);
      filter: blur(60px); pointer-events: none;
    }
    .mobile-menu::after {
      content: ""; position: absolute;
      width: 600px; height: 600px;
      left: -200px; bottom: -200px;
      border-radius: 50%;
      background: radial-gradient(closest-side, rgba(197,217,82,0.14), transparent 70%);
      filter: blur(60px); pointer-events: none;
    }
    .mobile-menu-inner {
      position: relative; z-index: 1;
      flex: 1;
      display: flex; flex-direction: column;
      justify-content: space-between;
      max-width: 720px; margin: 0 auto; width: 100%;
    }
    .mobile-menu-label {
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.22em;
      color: rgba(255,255,255,0.45);
      display: inline-flex; align-items: center; gap: 12px;
      margin-bottom: 32px;
    }
    .mobile-menu-label::before { content: ""; width: 24px; height: 1px; background: rgba(255,255,255,0.4); }
    .mobile-nav-links {
      display: flex; flex-direction: column;
      gap: 6px;
    }
    .mobile-nav-links a {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 96, "wght" 480, "SOFT" 30;
      font-size: clamp(1.7rem, 6.5vw, 2.8rem);
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: #fff;
      text-decoration: none;
      padding: 10px 0;
      position: relative;
      display: inline-block;
      width: fit-content;
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.55s cubic-bezier(0.2,0.7,0.2,1), transform 0.55s cubic-bezier(0.2,0.7,0.2,1), color 0.3s ease;
    }
    body.menu-open .mobile-nav-links a {
      opacity: 1; transform: translateY(0);
    }
    body.menu-open .mobile-nav-links a:nth-child(1) { transition-delay: 0.10s; }
    body.menu-open .mobile-nav-links a:nth-child(2) { transition-delay: 0.14s; }
    body.menu-open .mobile-nav-links a:nth-child(3) { transition-delay: 0.18s; }
    body.menu-open .mobile-nav-links a:nth-child(4) { transition-delay: 0.22s; }
    body.menu-open .mobile-nav-links a:nth-child(5) { transition-delay: 0.26s; }
    body.menu-open .mobile-nav-links a:nth-child(6) { transition-delay: 0.30s; }
    body.menu-open .mobile-nav-links a:nth-child(7) { transition-delay: 0.34s; }
    .mobile-nav-links a em {
      font-style: italic;
      font-variation-settings: "opsz" 144, "wght" 360, "SOFT" 100;
      color: var(--signal);
    }
    .mobile-nav-links a::after {
      content: ""; position: absolute;
      left: 0; bottom: 8px;
      width: 0; height: 2px;
      background: var(--signal);
      transition: width 0.4s cubic-bezier(0.2,0.7,0.2,1);
    }
    .mobile-nav-links a:hover::after,
    .mobile-nav-links a.is-active::after { width: 100%; }
    .mobile-nav-links a.is-active { color: var(--signal); }
    .mobile-nav-links a.is-active em { color: #fff; }

    .mobile-menu-footer {
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.12);
      display: grid; gap: 28px;
      grid-template-columns: 1fr;
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.5s ease 0.45s, transform 0.5s ease 0.45s;
    }
    @media (min-width: 640px) { .mobile-menu-footer { grid-template-columns: auto 1fr; align-items: end; gap: 40px; } }
    body.menu-open .mobile-menu-footer { opacity: 1; transform: translateY(0); }
    .mobile-menu-footer .btn-primary {
      background: var(--signal); color: var(--ink);
      padding: 16px 26px;
      font-size: 15px;
      justify-self: start;
    }
    .mobile-menu-footer .btn-primary:hover { background: #fff; box-shadow: 0 8px 24px -8px rgba(47,212,208,0.5); }
    .mobile-menu-sig {
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.18em;
      color: rgba(255,255,255,0.55);
      display: flex; flex-direction: column; gap: 6px;
    }
    @media (min-width: 640px) { .mobile-menu-sig { justify-self: end; text-align: right; } }
    .mobile-menu-sig a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s ease; }
    .mobile-menu-sig a:hover { color: var(--signal); }
    .mobile-menu-sig .loc {
      color: rgba(255,255,255,0.85);
      display: inline-flex; align-items: center; gap: 10px;
    }
    .mobile-menu-sig .loc::before {
      content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--signal);
      animation: signal 1.8s ease-in-out infinite;
    }

    /* Body lock when menu is open */
    body.menu-open { overflow: hidden; }

    /* HERO */
    .hero {
      position: relative;
      padding: 144px 24px 64px;
      background: var(--white);
      overflow: hidden;
    }
    @media (min-width: 640px) { .hero { padding: 168px 40px 96px; } }
    .hero-grid {
      max-width: 1240px; margin: 0 auto;
      display: grid; gap: 56px;
      grid-template-columns: 1fr;
      align-items: center;
    }
    @media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 72px; } }

    .signal-pill {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 7px 14px;
      background: rgba(31,140,146,0.08);
      color: var(--teal-deep);
      border: 1px solid rgba(31,140,146,0.25);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
      font-weight: 500;
    }
    .signal-pill .pulse {
      width: 6px; height: 6px; border-radius: 50%; background: var(--signal);
      box-shadow: 0 0 0 0 rgba(47,212,208,0.6);
      animation: signal 1.8s ease-in-out infinite;
    }
    @keyframes signal {
      0%, 100% { box-shadow: 0 0 0 0 rgba(47,212,208,0.6); }
      50% { box-shadow: 0 0 0 8px rgba(47,212,208,0); }
    }

    .hero h1 { margin: 22px 0 0; }
    .hero-lead {
      margin: 24px 0 0; max-width: 36rem;
      font-size: 18px; line-height: 1.55;
      color: var(--ink-2);
      font-weight: 420;
    }
    .hero-lead strong { color: var(--ink); font-weight: 540; }
    .hero-cta-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
    .hero-cta-row .promise {
      font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.14em; margin-left: 8px;
    }

    /* Hero composition - friendly visual collage */
    .hero-composition {
      position: relative;
      max-width: 560px;
      margin: 0 auto;
      aspect-ratio: 5 / 5;
      padding: 8px;
    }
    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(36px);
      pointer-events: none;
    }
    .hero-blob.b1 { width: 58%; height: 58%; left: 8%; top: 4%; background: rgba(54,119,208,0.62); animation: drift 14s ease-in-out infinite; }             /* blue (logo D) */
    .hero-blob.b2 { width: 48%; height: 48%; right: 4%; top: 28%; background: rgba(167,127,217,0.55); animation: drift 16s ease-in-out infinite reverse; }  /* purple */
    .hero-blob.b3 { width: 44%; height: 44%; left: 22%; bottom: 4%; background: rgba(231,62,140,0.55); animation: drift 18s ease-in-out infinite; animation-delay: -4s; }  /* pink (logo I,G) */
    .hero-blob.b4 { width: 40%; height: 40%; right: 22%; bottom: 22%; background: rgba(93,182,196,0.48); animation: drift 20s ease-in-out infinite reverse; animation-delay: -8s; }  /* cyan accent */
    @keyframes drift {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(20px, -16px) scale(1.06); }
      66% { transform: translate(-14px, 12px) scale(0.96); }
    }

    .hero-card {
      position: absolute;
      background: var(--white);
      border-radius: 18px;
      padding: 18px 22px;
      box-shadow: var(--shadow-card-hover);
      border: 1px solid var(--line);
      transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.5s ease;
      will-change: transform;
      z-index: 2;
    }
    .hero-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 2px 6px rgba(14,17,22,0.06), 0 40px 80px -28px rgba(14,17,22,0.28); }
    .hero-card .num {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 460, "SOFT" 30;
      font-size: 38px;
      letter-spacing: -0.03em;
      line-height: 1;
      color: var(--ink);
      display: block;
    }
    .hero-card .num em {
      font-style: italic;
      font-variation-settings: "opsz" 144, "wght" 380, "SOFT" 100;
    }
    .hero-card .small {
      font-size: 14px; color: var(--ink-mute); margin-left: 6px; font-weight: 400;
    }
    .hero-card .lbl {
      display: block; margin-top: 6px;
      font-family: var(--font-mono); font-size: 10.5px;
      text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--teal-deep); font-weight: 500;
    }
    .hero-card { max-width: 240px; }
    .hero-card.c1 { left: -2%; top: 4%; transform: rotate(-3deg); }
    .hero-card.c2 { right: -2%; top: 30%; transform: rotate(2deg); }
    .hero-card.c3 { left: 6%; bottom: 6%; transform: rotate(-1deg); }
    .hero-card.c1 em { color: var(--green); }
    .hero-card.c2 em { color: var(--orange); }
    .hero-card.c3 em { color: var(--blue); }

    .hero-orbit {
      position: absolute;
      left: 50%; top: 50%;
      width: 32%; aspect-ratio: 1;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: var(--ink);
      color: #fff;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 32px 80px -16px rgba(11,14,18,0.55);
      z-index: 1;
    }
    .hero-orbit .glyph {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 460, "SOFT" 80;
      font-style: italic;
      font-size: 56px;
      color: var(--signal);
      line-height: 1;
    }
    .hero-orbit .sub {
      margin-top: 8px;
      font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7);
    }

    section { position: relative; }
    .section-pad { padding: 96px 24px; }
    @media (min-width: 640px) { .section-pad { padding: 128px 40px; } }

    .section-heading { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 760px; }
    .section-heading.center { align-items: center; text-align: center; margin: 0 auto; }
    .section-heading h2 { margin: 0; }
    .section-heading p { margin: 0; font-size: 17px; line-height: 1.55; color: var(--ink-2); font-weight: 420; max-width: 56ch; }

    /* OUTCOMES - top-of-page benefits */
    .outcomes { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .outcomes-grid {
      max-width: 1240px; margin: 56px auto 0;
      display: grid; gap: 16px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) { .outcomes-grid { grid-template-columns: repeat(3, 1fr); } }
    .outcome {
      position: relative;
      background: var(--white);
      border-radius: 18px;
      padding: 32px;
      border: 1px solid var(--line);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      overflow: hidden;
    }
    .outcome:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -24px rgba(14,17,22,0.18); }
    .outcome::before {
      content: ""; position: absolute; top: 0; left: 0; width: 64px; height: 64px;
      border-radius: 0 0 64px 0;
      opacity: 0.12;
    }
    .outcome.o1::before { background: var(--lime); }
    .outcome.o2::before { background: var(--blue); }
    .outcome.o3::before { background: var(--orange); }
    .outcome .num {
      display: block;
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 460, "SOFT" 30;
      font-size: clamp(3rem, 5vw, 4.2rem);
      line-height: 1;
      letter-spacing: -0.035em;
      color: var(--ink);
    }
    .outcome .num .unit {
      font-family: var(--font-sans);
      font-weight: 400;
      font-size: 16px;
      color: var(--ink-mute);
      margin-left: 8px;
      letter-spacing: 0;
      vertical-align: top;
      position: relative; top: 12px;
    }
    .outcome .num em { font-style: italic; font-variation-settings: "opsz" 144, "wght" 380, "SOFT" 100; }
    .outcome.o1 .num em { color: var(--teal); }
    .outcome.o2 .num em { color: var(--blue); }
    .outcome.o3 .num em { color: var(--orange); }
    .outcome h3 { margin: 24px 0 10px; }
    .outcome p { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.55; font-weight: 420; }

    /* CASES - magazine-style asymmetric grid with cover story */
    .cases { background: var(--white); }
    .cases-grid {
      max-width: 1240px; margin: 56px auto 0;
      display: grid; gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) { .cases-grid { grid-template-columns: 1fr 1fr; } }
    .case {
      position: relative;
      border-radius: 24px;
      padding: 32px;
      overflow: hidden;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      border: 1px solid var(--line);
      box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset;
    }
    @media (min-width: 640px) { .case { padding: 40px; } }
    .case:hover { transform: translateY(-4px); box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 32px 60px -24px rgba(14,17,22,0.18); }
    /* Default fallback palette by positional class - used if no brand modifier present */
    .case.k1 { background: var(--lime-soft); }
    .case.k2 { background: var(--orange-soft); }
    .case.k3 { background: var(--blue-soft); }
    .case.k4 { background: var(--pink-soft); }
    .case.k5 { background: var(--green-soft); }

    /* Brand-tinted backgrounds - soft version of each client's brand color */
    .case.brand-stangby        { background: var(--green-soft); }   /* plantskola / växter - naturgrön */
    .case.brand-skanetrafiken  { background: var(--orange-soft); }  /* gul-orange flotta */
    .case.brand-oresundskraft  { background: var(--cyan-soft); }    /* Öresund vatten / energi */
    .case.brand-lantmannen     { background: var(--lime-soft); }    /* gröna vetekärven */
    .case.brand-lf-skane       { background: var(--blue-soft); }    /* försäkring blå */

    /* Cover-story case (first) - spans full width on desktop, larger type */
    @media (min-width: 768px) {
      .case.cover {
        grid-column: 1 / -1;
        display: grid; grid-template-columns: 1.2fr 1fr;
        gap: 56px; align-items: end;
        padding: 56px 56px 56px 56px;
      }
      .case.cover .case-title { font-size: clamp(2.4rem, 4.5vw, 3.6rem); margin: 20px 0 18px; }
      .case.cover .case-desc { font-size: 17px; line-height: 1.65; max-width: none; }
      .case.cover .case-outcome { border-top: none; padding-top: 0; border-left: 1px solid rgba(14,17,22,0.10); padding-left: 40px; flex-direction: column; align-items: flex-start; gap: 12px; }
      .case.cover .case-outcome .big { font-size: clamp(3rem, 6vw, 4.5rem); }
      .case.cover .case-outcome .desc { font-size: 15px; }
      .case.cover .case-cover-label {
        position: absolute; top: 28px; right: 32px;
        font-family: var(--font-mono); font-size: 10px;
        text-transform: uppercase; letter-spacing: 0.22em;
        color: var(--ink-2);
        display: inline-flex; align-items: center; gap: 8px;
      }
      .case.cover .case-cover-label::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }
    }
    .case-cover-label { display: none; }
    @media (min-width: 768px) { .case-cover-label { display: inline-flex; } }
    .case-tag {
      display: inline-block;
      padding: 6px 13px;
      background: rgba(14,17,22,0.10);
      border-radius: 999px;
      font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.16em;
      color: var(--ink); font-weight: 500;
    }
    .case-title {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 96, "wght" 520, "SOFT" 20;
      font-size: clamp(1.55rem, 2.6vw, 2.05rem);
      line-height: 1.08;
      letter-spacing: -0.028em;
      margin: 18px 0 14px;
      color: var(--ink);
    }
    .case-title em { font-style: italic; font-variation-settings: "opsz" 96, "wght" 360, "SOFT" 100; }
    .case-desc { color: var(--ink); font-size: 16px; line-height: 1.55; margin: 0 0 28px; max-width: 30rem; font-weight: 420; }

    /* Pullquote - magazine-style quote pulled out into the cover case's second column */
    .case-pullquote {
      margin: 32px 0 0;
      padding: 0;
      position: relative;
    }
    .case-pullquote::before {
      content: "\201C";
      position: absolute;
      top: -32px; left: -8px;
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 540, "SOFT" 0;
      font-size: clamp(5rem, 9vw, 8rem);
      line-height: 0.8;
      color: var(--ink);
      opacity: 0.18;
      pointer-events: none;
    }
    .case-pullquote p {
      margin: 0;
      font-family: var(--font-display);
      font-variation-settings: "opsz" 60, "wght" 420, "SOFT" 30;
      font-style: italic;
      font-size: clamp(1.05rem, 1.7vw, 1.35rem);
      line-height: 1.45;
      color: var(--ink);
      letter-spacing: -0.005em;
    }
    .case-pullquote cite {
      display: block;
      margin-top: 20px;
      padding-top: 14px;
      border-top: 1px solid rgba(14,17,22,0.12);
      font-style: normal;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.20em;
      text-transform: uppercase;
      color: var(--ink-2);
    }
    .case-pullquote cite span {
      display: block;
      margin-top: 4px;
      color: var(--ink-mute);
      letter-spacing: 0.16em;
    }
    @media (min-width: 768px) {
      .case.cover .case-pullquote {
        margin: 0;
        padding-left: 40px;
        border-left: 1px solid rgba(14,17,22,0.12);
        align-self: end;
      }
      .case.cover .case-pullquote::before {
        top: -24px; left: 28px;
      }
    }

    /* Outcome bar should clear the floated logo plate above it */
    .case:not(.cover) .case-outcome { clear: right; }
    .case-outcome {
      display: flex; align-items: baseline; gap: 16px;
      padding-top: 24px;
      border-top: 1px solid rgba(14,17,22,0.10);
    }
    .case-outcome .big {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 480, "SOFT" 30;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--ink);
    }
    .case-outcome .big em { font-style: italic; font-variation-settings: "opsz" 144, "wght" 380, "SOFT" 100; color: var(--teal); }
    .case-outcome .desc { color: var(--ink-dim); font-size: 14px; line-height: 1.5; }

    /* MANIFESTO - dark full-bleed editorial break */
    .manifesto {
      position: relative;
      background: var(--ink);
      color: #fff;
      padding: 120px 24px;
      overflow: hidden;
    }
    @media (min-width: 640px) { .manifesto { padding: 160px 40px; } }
    .manifesto::before {
      content: ""; position: absolute;
      width: 1000px; height: 1000px;
      right: -300px; top: -200px;
      border-radius: 50%;
      background: radial-gradient(closest-side, rgba(31,140,146,0.22), transparent 70%);
      filter: blur(60px);
      pointer-events: none;
    }
    .manifesto::after {
      content: ""; position: absolute;
      width: 800px; height: 800px;
      left: -200px; bottom: -300px;
      border-radius: 50%;
      background: radial-gradient(closest-side, rgba(197,217,82,0.16), transparent 70%);
      filter: blur(60px);
      pointer-events: none;
    }
    .manifesto-inner {
      position: relative; z-index: 1;
      max-width: 1240px; margin: 0 auto;
      display: grid; gap: 56px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 1024px) { .manifesto-inner { grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; } }
    .manifesto-label {
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.22em;
      color: rgba(255,255,255,0.55);
      display: inline-flex; align-items: center; gap: 12px;
    }
    .manifesto-label::before { content: ""; width: 24px; height: 1px; background: rgba(255,255,255,0.45); }
    .manifesto h2 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 400, "SOFT" 30;
      font-size: clamp(2.6rem, 6vw, 5rem);
      line-height: 1.02;
      letter-spacing: -0.035em;
      color: #fff;
      margin: 20px 0 0;
    }
    .manifesto h2 em {
      font-style: italic;
      font-variation-settings: "opsz" 144, "wght" 320, "SOFT" 100;
      color: var(--signal);
    }
    .manifesto-body p {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 36, "wght" 380, "SOFT" 30;
      font-size: clamp(1.2rem, 1.8vw, 1.55rem);
      line-height: 1.45;
      letter-spacing: -0.012em;
      color: rgba(255,255,255,0.82);
      margin: 0 0 24px;
    }
    .manifesto-body p:last-child { margin-bottom: 0; }
    .manifesto-body p strong {
      color: #fff;
      font-weight: 500;
    }
    .manifesto-sig {
      margin-top: 40px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: space-between;
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.18em;
      color: rgba(255,255,255,0.55);
    }

    /* Services */
    .services { background: var(--paper); }
    .services-grid {
      max-width: 1240px; margin: 56px auto 0;
      display: grid; gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
    .service {
      background: var(--white);
      border-radius: 18px;
      padding: 28px;
      display: flex; flex-direction: column; gap: 14px;
      border: 1px solid var(--line);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .service:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -24px rgba(14,17,22,0.14); }
    .service-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: var(--paper);
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--ink);
      transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease, border-radius 0.4s ease;
    }
    .service:hover .service-icon { background: var(--teal); color: #fff; transform: rotate(-6deg); border-radius: 50%; }
    .service-icon svg { width: 22px; height: 22px; }
    .service h3 { margin: 0; }
    .service p { margin: 0; color: var(--ink-2); line-height: 1.55; font-size: 15.5px; font-weight: 420; }

    /* Constellation */
    .const-section { background: var(--white); }
    .const-wrap { position: relative; }
    .const-grid { display: grid; gap: 32px; margin-top: 56px; grid-template-columns: 1fr; }
    @media (min-width: 1024px) { .const-grid { grid-template-columns: 1.2fr 1fr; gap: 48px; } }
    .const-canvas {
      position: relative; width: 100%; aspect-ratio: 1;
      max-width: 600px; margin: 0 auto;
    }
    .const-canvas svg { position: absolute; inset: 0; width: 100%; height: 100%; }
    .const-center {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      display: inline-flex; align-items: center; justify-content: center;
      z-index: 2;
    }
    .const-center::before {
      content: ""; position: absolute;
      width: 140px; height: 140px;
      border-radius: 50%;
      background: radial-gradient(closest-side, rgba(31,140,146,0.35), transparent);
      filter: blur(10px);
      animation: breathe 4s ease-in-out infinite;
    }
    @keyframes breathe {
      0%, 100% { transform: scale(1); opacity: 0.85; }
      50% { transform: scale(1.18); opacity: 1; }
    }
    .const-core {
      position: relative; z-index: 1;
      display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
      width: 104px; height: 104px;
      border-radius: 50%;
      background: var(--ink);
      color: #fff;
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.18em;
      box-shadow: 0 16px 40px -12px rgba(14,17,22,0.45);
    }
    .const-core .core-glyph {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 500, "SOFT" 30;
      font-size: 22px;
      letter-spacing: -0.02em;
      font-style: italic;
      color: var(--signal);
      line-height: 1;
      margin-bottom: 4px;
    }
    .const-core .core-sub { font-size: 9px; letter-spacing: 0.18em; opacity: 0.7; }
    .const-node {
      position: absolute;
      transform: translate(-50%, -50%);
      z-index: 3;
      background: none; border: none; padding: 0; cursor: pointer;
      outline: none;
    }
    .const-node-inner { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; }
    .const-dot {
      display: block; border-radius: 50%;
      width: 14px; height: 14px;
      background: #fff;
      border: 1.5px solid var(--ink-mute);
      transition: all 0.5s ease;
      animation: nodePulse 2.6s ease-in-out infinite;
    }
    .const-label {
      font-family: var(--font-mono); font-size: 10.5px;
      letter-spacing: 0.08em; font-weight: 500;
      color: var(--ink); white-space: nowrap;
      text-transform: uppercase;
      transition: color 0.4s ease;
    }
    @keyframes nodePulse {
      0%, 100% { transform: scale(1); opacity: 0.85; }
      50% { transform: scale(1.06); opacity: 1; }
    }

    .const-detail {
      position: sticky; top: 100px;
      border-radius: 20px;
      background: var(--paper);
      padding: 32px;
      min-height: 320px;
      display: flex; flex-direction: column; justify-content: space-between;
      border: 1px solid var(--line);
    }
    .const-detail .head-mono { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute); }
    .const-detail h3 { margin: 18px 0 16px; font-family: var(--font-display); font-variation-settings: "opsz" 96, "wght" 500, "SOFT" 30; font-size: 32px; line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); }
    .const-detail h3 em { font-style: italic; font-variation-settings: "opsz" 96, "wght" 380, "SOFT" 100; color: var(--teal); }
    .const-detail p { margin: 0; color: var(--ink-dim); line-height: 1.65; font-size: 15px; }
    .const-detail .foot {
      margin-top: 32px; padding-top: 20px;
      border-top: 1px solid var(--line);
      display: flex; justify-content: space-between; align-items: center;
      font-family: var(--font-mono); font-size: 10px;
      text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-mute);
    }
    .const-foot-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); margin-right: 8px; vertical-align: middle; transition: background 0.4s ease; }

    /* Process steps - 4-card grid replacement */
    .process-steps-grid {
      max-width: 1240px; margin: 56px auto 0;
      display: grid; gap: 20px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 640px) { .process-steps-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .process-steps-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
    .process-step {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 32px;
      display: flex; flex-direction: column; gap: 16px;
      position: relative;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      box-shadow: var(--shadow-card);
    }
    .process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
    .process-step::before {
      content: ""; position: absolute;
      top: 0; left: 32px; right: 32px;
      height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--cyan));
      border-radius: 0 0 3px 3px;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .process-step:hover::before { opacity: 1; }
    .process-step .num {
      font-family: var(--font-mono); font-size: 11px;
      letter-spacing: 0.18em; color: var(--teal-deep);
      display: inline-flex; align-items: center; gap: 10px;
    }
    .process-step .num::after {
      content: ""; flex: 1; height: 1px; background: var(--line-strong);
    }
    .process-step h3 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 96, "wght" 540, "SOFT" 30;
      font-size: clamp(1.4rem, 1.8vw, 1.7rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin: 0;
      color: var(--ink);
    }
    .process-step h3 em {
      font-style: italic;
      font-variation-settings: "opsz" 96, "wght" 380, "SOFT" 100;
      color: var(--teal);
    }
    .process-step .tag {
      font-family: var(--font-mono); font-size: 10.5px;
      text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--ink-mute);
    }
    .process-step p {
      font-size: 14.5px; line-height: 1.55;
      color: var(--ink-2);
      margin: 0; font-weight: 420;
    }

    /* Process */
    .process { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 96px 24px; }
    @media (min-width: 640px) { .process { padding: 128px 40px; } }
    .process-inner { max-width: 1240px; margin: 0 auto; }
    .process-grid { display: grid; gap: 32px; margin-top: 48px; grid-template-columns: 1fr; align-items: start; }
    @media (min-width: 1024px) { .process-grid { grid-template-columns: 5fr 6fr; gap: 64px; } }
    .step-list { list-style: none; margin: 0; padding: 0; }
    .step {
      display: flex; align-items: baseline; gap: 20px;
      padding: 16px 0 16px 22px;
      border-left: 2px solid var(--line);
      transition: all 0.4s ease;
      color: var(--ink-mute);
      cursor: pointer;
      position: relative;
    }
    .step:hover:not(.active) { color: var(--ink-2); border-left-color: var(--line-strong); }
    .step.active { border-left-color: var(--teal); color: var(--ink); }
    .step.active .t { color: var(--ink); }
    .step .n { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; }
    .step .t { font-family: var(--font-display); font-variation-settings: "opsz" 36, "wght" 540, "SOFT" 30; font-size: 22px; line-height: 1.15; display: block; color: inherit; letter-spacing: -0.02em; }
    .step .d { display: block; margin-top: 4px; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute); }
    .step-arrow {
      margin-left: auto; padding-right: 4px;
      opacity: 0;
      transform: translateX(-4px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      color: var(--teal);
    }
    .step.active .step-arrow { opacity: 1; transform: translateX(0); }

    .process-detail-card {
      position: relative;
      border-radius: 20px;
      background: var(--white);
      padding: 32px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card);
    }
    @media (min-width: 640px) { .process-detail-card { padding: 40px; } }
    @media (min-width: 1024px) {
      .process-detail-card {
        position: sticky;
        top: 100px;
      }
    }
    /* Tighter spacing inside detail card */
    .process-detail-card .label-mono { display: block; margin-bottom: 18px; }
    .process-detail-card h3 { margin: 0 0 18px !important; }
    .process-detail-glow {
      position: absolute; right: -60px; top: -60px;
      width: 360px; height: 360px;
      border-radius: 50%; filter: blur(60px);
      background: radial-gradient(closest-side, rgba(31,140,146,0.30), transparent);
      transition: background 1.2s ease; z-index: 0;
    }
    .process-detail-card > * { position: relative; z-index: 1; }
    .process-detail-card h3 { font-family: var(--font-display); font-variation-settings: "opsz" 96, "wght" 500, "SOFT" 30; font-size: 28px; line-height: 1.1; margin: 16px 0 16px; color: var(--ink); letter-spacing: -0.02em; }
    .process-detail-card p { color: var(--ink-dim); font-size: 16px; line-height: 1.6; margin: 0; }
    .process-pips { display: flex; gap: 8px; margin-top: 32px; }
    .process-pip { flex: 1; height: 3px; border-radius: 99px; background: var(--line); transition: background 0.6s ease; }
    .process-pip.on { background: var(--ink); }

    /* Customers */
    .customers { background: var(--white); padding: 96px 24px; border-bottom: 1px solid var(--line); }
    @media (min-width: 640px) { .customers { padding: 96px 40px; } }
    .customers .section-heading { margin-bottom: 48px; }
    .customer-row {
      max-width: 1240px; margin: 0 auto;
      display: grid; gap: 40px 48px;
      grid-template-columns: repeat(2, 1fr);
      align-items: center; justify-items: center;
    }
    @media (min-width: 640px) { .customer-row { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 900px) { .customer-row { grid-template-columns: repeat(4, 1fr); } }
    @media (min-width: 1100px) { .customer-row { grid-template-columns: repeat(6, 1fr); } }
    .customer-logo {
      display: inline-flex; align-items: center; justify-content: center;
      height: 72px;
      max-width: 100%;
      transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
      filter: grayscale(100%);
      opacity: 0.7;
    }
    .customer-logo img {
      max-height: 100%; max-width: 100%;
      width: auto;
      display: block;
      object-fit: contain;
    }
    .customer-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.04);
    }
    /* Tall/stacked wordmarks visually dominate at the same container height - scale them down to match */
    .customer-row .customer-logo[aria-label="Öresundskraft"] img,
    .customer-row .customer-logo[aria-label="Tetra Pak"] img,
    .customer-row .customer-logo[aria-label="IKEA"] img { max-height: 72%; }
    /* Very wide horizontal wordmarks - let them fill the cell width */
    .customer-row .customer-logo[aria-label="Lantmännen"] { height: 36px; }
    .customer-row .customer-logo[aria-label="Lantmännen"] img { max-height: 100%; }

    /* Extended customer strip - all logos in flowing grid */
    .customer-strip {
      max-width: 1240px; margin: 32px auto 0;
      display: grid; gap: 40px 48px;
      grid-template-columns: repeat(2, 1fr);
      align-items: center; justify-items: center;
    }
    @media (min-width: 640px) { .customer-strip { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 900px) { .customer-strip { grid-template-columns: repeat(4, 1fr); } }
    @media (min-width: 1100px) { .customer-strip { grid-template-columns: repeat(6, 1fr); } }
    .customer-strip .customer-logo { height: 68px; }
    /* Tall/stacked logos visually dominate at the same container height - scale them down to match */
    .customer-strip .customer-logo[aria-label="Öresundskraft"] img,
    .customer-strip .customer-logo[aria-label="Tetra Pak"] img,
    .customer-strip .customer-logo[aria-label="IKEA"] img { max-height: 72%; }

    /* Case-card customer logo plate - floats right so text flows naturally around it */
    .case:not(.cover) .case-client {
      float: right;
      margin: 0 0 16px 20px;
      display: inline-flex; align-items: center; justify-content: center;
      padding: 8px 14px;
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 2px 4px rgba(14,17,22,0.04), 0 12px 28px -12px rgba(14,17,22,0.18);
      border: 1px solid rgba(14,17,22,0.05);
      height: 60px;
      min-width: 100px;
      max-width: 170px;
      transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.4s ease;
    }
    .case-client img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }
    .case:hover .case-client {
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 4px 8px rgba(14,17,22,0.06), 0 24px 40px -16px rgba(14,17,22,0.22);
    }
    @media (min-width: 640px) {
      .case:not(.cover) .case-client { height: 84px; padding: 12px 18px; max-width: 220px; margin: 0 0 20px 24px; }
    }
    /* Cover-case logo plate - absolute top-right, larger */
    .case.cover .case-client {
      position: absolute;
      top: 20px; right: 20px;
      display: inline-flex; align-items: center; justify-content: center;
      padding: 8px 14px;
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 2px 4px rgba(14,17,22,0.04), 0 12px 28px -12px rgba(14,17,22,0.18);
      border: 1px solid rgba(14,17,22,0.05);
      height: 60px;
      max-width: 170px;
      z-index: 2;
      transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.4s ease;
    }
    /* Below the 2-column breakpoint the cover is single-column; push title content below the plate */
    .case.cover > div:not(.case-outcome) { padding-top: 64px; }
    @media (min-width: 768px) {
      .case.cover .case-client {
        top: 40px; right: 40px;
        height: 112px;
        padding: 16px 24px;
        max-width: 320px;
      }
      .case.cover > div:not(.case-outcome) { padding-top: 0; }
    }
    /* Extra-wide plate variant for very long horizontal wordmarks (e.g. Lantmännen) */
    .case-client.is-wide { max-width: 200px; }
    @media (min-width: 640px) { .case-client.is-wide { max-width: 280px; } }

    /* Cover label - inline above the case-tag (works on both mobile and desktop) */
    .case.cover .case-cover-label {
      position: static;
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-mono); font-size: 10px;
      text-transform: uppercase; letter-spacing: 0.22em;
      color: var(--ink-2);
      opacity: 0.65;
      margin-bottom: 16px;
    }
    .case.cover .case-cover-label::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }

    /* Quote - editorial big-mark treatment */
    .quote {
      position: relative;
      background: var(--paper);
      padding: 120px 24px;
      border-bottom: 1px solid var(--line);
      overflow: hidden;
    }
    @media (min-width: 640px) { .quote { padding: 160px 40px; } }
    .quote::before {
      content: "\201C";
      position: absolute;
      top: -40px; left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 500, "SOFT" 100;
      font-style: italic;
      font-size: clamp(20rem, 40vw, 36rem);
      line-height: 1;
      color: rgba(31,140,146,0.10);
      pointer-events: none;
      z-index: 0;
    }
    .quote-inner {
      position: relative; z-index: 1;
      max-width: 960px; margin: 0 auto;
      text-align: center;
    }
    .quote-text {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 380, "SOFT" 60;
      font-style: italic;
      font-size: clamp(1.8rem, 4.2vw, 3rem);
      line-height: 1.15;
      letter-spacing: -0.022em;
      color: var(--ink);
      text-wrap: balance;
    }
    .quote-text .accent { color: var(--teal); }
    .quote-attr {
      margin-top: 36px;
      font-family: var(--font-mono);
      font-size: 11px; text-transform: uppercase; letter-spacing: 0.20em;
      color: var(--ink-dim);
      display: inline-flex; align-items: center; gap: 14px;
    }
    .quote-attr::before, .quote-attr::after {
      content: ""; width: 32px; height: 1px; background: var(--line-strong);
    }

    /* News */
    .news { background: var(--white); padding: 96px 24px; }
    @media (min-width: 640px) { .news { padding: 128px 40px; } }
    .news-grid {
      max-width: 1240px; margin: 56px auto 0;
      display: grid; gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
    .news-card {
      background: var(--white);
      border-radius: 18px;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
      border: 1px solid var(--line);
    }
    .news-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(14,17,22,0.18); }
    .news-thumb {
      aspect-ratio: 16 / 10;
      position: relative;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .news-thumb-1 { background: linear-gradient(135deg, #FFB59E 0%, #FF8A3D 100%); }
    .news-thumb-1::after { content: "C·"; font-family: var(--font-display); font-variation-settings: "opsz" 144, "wght" 500, "SOFT" 100; font-style: italic; font-size: 80px; color: rgba(14,17,22,0.85); }
    .news-thumb-2 { background: var(--ink); color: #fff; font-family: var(--font-display); font-variation-settings: "opsz" 144, "wght" 460, "SOFT" 80; font-style: italic; font-size: 84px; letter-spacing: -0.04em; }
    .news-thumb-2::after { content: "AI."; }
    .news-thumb-3 { background: linear-gradient(135deg, #DDEEED 0%, #2EA09F 100%); color: var(--ink); font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; padding: 0 24px; text-align: center; }
    .news-card-body { padding: 20px 24px 24px; }
    .news-card-date { font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.14em; }
    .news-card-title { margin: 12px 0 0; font-family: var(--font-display); font-variation-settings: "opsz" 36, "wght" 540, "SOFT" 30; font-size: 19px; color: var(--ink); line-height: 1.25; letter-spacing: -0.02em; }

    /* CTA banner */
    .cta-banner {
      background: var(--ink);
      padding: 80px 24px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    @media (min-width: 640px) { .cta-banner { padding: 120px 40px; } }
    .cta-banner::before {
      content: ""; position: absolute;
      width: 800px; height: 800px;
      left: -200px; top: 50%;
      transform: translateY(-50%);
      border-radius: 50%;
      background: radial-gradient(closest-side, rgba(31,140,146,0.30), transparent);
      filter: blur(60px);
      pointer-events: none;
    }
    .cta-banner-inner {
      max-width: 1240px; margin: 0 auto;
      position: relative; z-index: 1;
      display: grid; gap: 32px;
      grid-template-columns: 1fr;
      align-items: center;
    }
    @media (min-width: 768px) { .cta-banner-inner { grid-template-columns: 1.4fr 1fr; gap: 48px; } }
    .cta-banner h2 { color: #fff; }
    .cta-banner h2 em { color: var(--signal); font-style: italic; }
    .cta-banner p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.6; max-width: 38rem; margin: 16px 0 0; }
    .cta-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-self: end; }
    @media (max-width: 767px) { .cta-banner-actions { justify-self: start; } }
    .cta-banner .btn-primary { background: #fff; color: var(--ink); }
    .cta-banner .btn-primary:hover { background: var(--signal); }
    .cta-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.30); }
    .cta-banner .btn-ghost:hover { border-color: #fff; }
    .cta-banner .promise {
      font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 12px; display: block;
    }

    /* Footer */
    footer { background: var(--white); border-top: 1px solid var(--line); padding: 48px 24px 32px; }
    @media (min-width: 640px) { footer { padding: 64px 40px 32px; } }
    .foot-grid { max-width: 1240px; margin: 0 auto; display: grid; row-gap: 40px; column-gap: 32px; grid-template-columns: 1fr 1fr; }
    @media (min-width: 768px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
    .foot-grid h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-mute); margin: 0 0 14px; font-weight: 500; }
    .foot-grid ul { list-style: none; margin: 0; padding: 0; color: var(--ink-dim); font-size: 14px; }
    .foot-grid li { line-height: 1.85; }
    .foot-grid a { color: inherit; text-decoration: none; transition: color 0.3s; }
    .foot-grid a:hover { color: var(--teal-deep); }
    .foot-socials { display: flex; gap: 10px; margin-top: 14px; }
    .foot-socials a {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--ink);
      color: #fff;
      display: inline-flex; align-items: center; justify-content: center;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .foot-socials a:hover { background: var(--teal); transform: rotate(-8deg); }
    .foot-socials svg { width: 16px; height: 16px; }
    .foot-rule {
      max-width: 1240px; margin: 56px auto 0;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      display: flex; flex-direction: column; gap: 10px;
      align-items: flex-start; justify-content: space-between;
      font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute);
    }
    @media (min-width: 640px) { .foot-rule { flex-direction: row; align-items: center; } }

    /* ======================================================
       SUBPAGE COMPONENTS - shared across om-oss, kontakt, aktuellt, tjanster, produkter, cases
       ====================================================== */

    /* Page hero - smaller than index hero, used as page header */
    .page-hero {
      position: relative;
      padding: 144px 24px 72px;
      background: var(--white);
      overflow: hidden;
    }
    @media (min-width: 640px) { .page-hero { padding: 168px 40px 96px; } }
    .page-hero-inner {
      max-width: 1240px; margin: 0 auto;
      position: relative; z-index: 1;
    }
    .page-hero h1 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 460, "SOFT" 30;
      font-size: clamp(2.2rem, 5.5vw, 4.4rem);
      line-height: 1.02;
      letter-spacing: -0.03em;
      margin: 22px 0 0;
      color: var(--ink);
    }
    .page-hero h1 em {
      font-style: italic;
      font-variation-settings: "opsz" 144, "wght" 360, "SOFT" 100;
      color: var(--teal);
    }
    .page-hero .lead {
      margin: 24px 0 0; max-width: 38rem;
      font-size: 18px; line-height: 1.55;
      color: var(--ink-2);
      font-weight: 420;
    }
    .page-hero .lead strong { color: var(--ink); font-weight: 540; }
    .page-hero-decor {
      position: absolute;
      pointer-events: none;
      z-index: 0;
    }

    /* Team grid for om-oss */
    .team-grid {
      max-width: 1240px; margin: 56px auto 0;
      display: grid; gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 600px) { .team-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
    .team-card {
      background: var(--white);
      border-radius: 18px;
      padding: 28px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      display: flex; flex-direction: column; gap: 16px;
    }
    .team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
    .team-avatar {
      width: 80px; height: 80px;
      border-radius: 50%;
      overflow: hidden;
      position: relative;
      box-shadow: 0 1px 0 rgba(255,255,255,0.20) inset, 0 14px 28px -12px rgba(14,17,22,0.30);
      flex-shrink: 0;
    }
    .team-avatar svg, .team-avatar img {
      display: block;
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .team-avatar.a-cyan { background: var(--cyan); }
    .team-avatar.a-blue { background: var(--blue); }
    .team-avatar.a-green { background: var(--green); }
    .team-avatar.a-orange { background: var(--orange); }
    .team-avatar.a-pink { background: var(--pink); }
    .team-avatar.a-lime { background: var(--lime); }
    .team-card > div { display: flex; flex-direction: column; gap: 8px; }
    .team-name {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 36, "wght" 540, "SOFT" 30;
      font-size: 22px;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin: 0;
      color: var(--ink);
    }
    .team-role {
      font-family: var(--font-mono);
      font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em;
      color: var(--ink-dim);
      margin: 0;
      line-height: 1.5;
    }
    .team-bio { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; margin: 0; font-weight: 420; }
    .team-contact {
      margin: 4px 0 0;
      padding-top: 16px;
      border-top: 1px solid var(--line);
      display: flex; flex-direction: column; gap: 6px;
      font-family: var(--font-mono); font-size: 12px;
      letter-spacing: 0.02em;
    }
    .team-contact a {
      color: var(--ink-2);
      text-decoration: none;
      transition: color 0.3s ease;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .team-contact a::before {
      content: ""; width: 4px; height: 4px; border-radius: 50%;
      background: var(--teal); flex-shrink: 0;
    }
    .team-contact a:hover { color: var(--teal-deep); }

    /* Malmö story / map illustration */
    .malmo-section {
      background: var(--paper);
      padding: 96px 24px;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      position: relative;
      overflow: hidden;
    }
    @media (min-width: 640px) { .malmo-section { padding: 128px 40px; } }
    .malmo-inner {
      max-width: 1240px; margin: 0 auto;
      display: grid; gap: 56px;
      grid-template-columns: 1fr;
      align-items: center;
    }
    @media (min-width: 1024px) { .malmo-inner { grid-template-columns: 1fr 1fr; gap: 72px; } }
    .malmo-text p {
      font-size: 17px; line-height: 1.6;
      color: var(--ink-2);
      margin: 0 0 20px;
      font-weight: 420;
    }
    .malmo-text p:last-child { margin-bottom: 0; }
    .malmo-text p strong { color: var(--ink); font-weight: 540; }

    /* Malmö photo card */
    .malmo-illust {
      position: relative;
      background: var(--ink);
      border-radius: 24px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card-hover);
      overflow: hidden;
    }
    .malmo-illust picture { display: block; }
    .malmo-illust img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }
    /* Gradient overlay at bottom for label legibility */
    .malmo-illust::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: 0;
      height: 110px;
      background: linear-gradient(to top, rgba(14,17,22,0.85) 0%, rgba(14,17,22,0.55) 50%, rgba(14,17,22,0) 100%);
      pointer-events: none;
    }
    .malmo-illust-label {
      position: absolute;
      bottom: 22px; left: 26px;
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.18em;
      color: #fff;
      text-shadow: 0 1px 4px rgba(0,0,0,0.7);
      display: inline-flex; align-items: center; gap: 10px;
      z-index: 1;
    }
    .malmo-illust-label::before {
      content: ""; width: 8px; height: 8px;
      border-radius: 50%; background: var(--teal);
      animation: signal 1.8s ease-in-out infinite;
    }

    /* Network / nätverk section */
    .network {
      background: var(--white);
      padding: 96px 24px;
    }
    @media (min-width: 640px) { .network { padding: 128px 40px; } }
    .network-inner { max-width: 1240px; margin: 0 auto; }
    .network-grid {
      margin-top: 48px;
      display: grid; gap: 16px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 640px) { .network-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .network-grid { grid-template-columns: repeat(4, 1fr); } }
    .network-pill {
      padding: 16px 20px;
      background: var(--paper);
      border-radius: 12px;
      border: 1px solid var(--line);
      font-family: var(--font-mono);
      font-size: 13px; letter-spacing: 0.04em;
      color: var(--ink);
      text-align: center;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .network-pill:hover { background: var(--paper-2); transform: translateY(-2px); }

    /* Contact page */
    .contact-grid {
      max-width: 1240px; margin: 56px auto 0;
      display: grid; gap: 56px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; } }
    .contact-form {
      display: grid; gap: 18px;
    }
    .contact-form label {
      display: flex; flex-direction: column; gap: 8px;
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--ink-2);
    }
    .contact-form input, .contact-form textarea, .contact-form select {
      padding: 14px 16px;
      border: 1px solid var(--line-strong);
      background: var(--white);
      border-radius: 12px;
      font-family: var(--font-sans);
      font-size: 15.5px;
      color: var(--ink);
      transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
      letter-spacing: -0.005em;
    }
    .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
      outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(31,140,146,0.15);
    }
    .contact-form textarea { resize: vertical; min-height: 140px; line-height: 1.5; }
    .contact-form button {
      padding: 16px 28px;
      background: var(--ink); color: #fff;
      border: none;
      border-radius: 999px;
      font-family: var(--font-sans);
      font-weight: 500; font-size: 14px;
      letter-spacing: -0.005em;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease;
      justify-self: start;
    }
    .contact-form button:hover { background: var(--teal); transform: translateY(-2px); }
    .contact-aside {
      display: flex; flex-direction: column; gap: 32px;
    }
    .contact-block {
      padding: 28px;
      background: var(--paper);
      border-radius: 18px;
      border: 1px solid var(--line);
    }
    .contact-block h3 {
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.18em;
      color: var(--ink-mute); margin: 0 0 14px; font-weight: 500;
    }
    .contact-block p { margin: 0; font-size: 16px; color: var(--ink); line-height: 1.5; }
    .contact-block p a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line-strong); transition: border-color 0.3s ease, color 0.3s ease; }
    .contact-block p a:hover { color: var(--teal); border-color: var(--teal); }
    .contact-block + .contact-block { margin-top: 0; }

    /* Blog index */
    .blog-featured {
      max-width: 1240px; margin: 56px auto 0;
      padding: 48px;
      background: var(--ink); color: #fff;
      border-radius: 24px;
      position: relative; overflow: hidden;
      display: grid; gap: 32px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 800px) { .blog-featured { grid-template-columns: 1.4fr 1fr; align-items: end; padding: 64px; } }
    .blog-featured::before {
      content: ""; position: absolute;
      width: 600px; height: 600px;
      right: -200px; top: -200px;
      border-radius: 50%;
      background: radial-gradient(closest-side, rgba(47,212,208,0.22), transparent);
      filter: blur(40px); pointer-events: none;
    }
    .blog-featured > * { position: relative; z-index: 1; }
    .blog-featured-label {
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.22em;
      color: rgba(255,255,255,0.5);
      display: inline-flex; align-items: center; gap: 12px;
    }
    .blog-featured-label::before {
      content: ""; width: 24px; height: 1px; background: rgba(255,255,255,0.4);
    }
    .blog-featured h2 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 460, "SOFT" 30;
      font-size: clamp(1.8rem, 3.6vw, 3rem);
      line-height: 1.08;
      letter-spacing: -0.028em;
      margin: 20px 0 0;
      color: #fff;
    }
    .blog-featured h2 em { font-style: italic; font-variation-settings: "opsz" 144, "wght" 360, "SOFT" 100; color: var(--signal); }
    .blog-featured-meta { margin-top: 18px; font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }
    .blog-featured p {
      margin: 0; color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.55; font-weight: 420;
    }
    .blog-grid {
      max-width: 1240px; margin: 40px auto 0;
      display: grid; gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
    .blog-card {
      background: var(--white);
      border-radius: 18px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card);
      display: flex; flex-direction: column; gap: 14px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      text-decoration: none; color: inherit;
      overflow: hidden;
    }
    .blog-card-body {
      padding: 24px 28px 28px;
      display: flex; flex-direction: column; gap: 14px;
      flex: 1;
    }
    .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
    .blog-card-thumb {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: var(--paper);
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .blog-card-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
    /* Placeholder thumbnails (when no image available) */
    .blog-card-thumb.t-placeholder.t-case { background: linear-gradient(135deg, #C5D952, #5BC15F); }
    .blog-card-thumb.t-placeholder.t-tanke { background: linear-gradient(135deg, #E73E8C, #F58030); }
    .blog-card-thumb.t-placeholder.t-produkt { background: linear-gradient(135deg, #F58030, #C5D952); }
    .blog-card-thumb.t-placeholder::after {
      content: "";
      position: absolute;
      width: 50%; height: 50%;
      background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.4'%3E%3Ccircle cx='50' cy='50' r='30'/%3E%3Ccircle cx='50' cy='50' r='18'/%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3C/g%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }
    .blog-card-meta {
      display: flex; align-items: center; gap: 12px;
      font-family: var(--font-mono); font-size: 10.5px;
      text-transform: uppercase; letter-spacing: 0.16em;
      color: var(--ink-mute);
    }
    .blog-card-tag {
      padding: 4px 10px;
      background: rgba(14,17,22,0.06);
      border-radius: 999px;
      color: var(--ink-2);
    }
    .blog-card-tag.t-ai { background: var(--teal-soft); color: var(--teal-deep); }
    .blog-card-tag.t-tech { background: var(--blue-soft); color: var(--cobalt); }
    .blog-card-tag.t-produkt { background: var(--orange-soft); color: var(--terracotta); }
    .blog-card-tag.t-case { background: var(--lime-soft); color: var(--moss); }
    .blog-card-tag.t-tanke { background: var(--pink-soft); color: var(--plum); }
    .blog-card-title {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 48, "wght" 520, "SOFT" 30;
      font-size: 21px;
      line-height: 1.18;
      letter-spacing: -0.02em;
      margin: 0;
      color: var(--ink);
    }
    .blog-card-title em { font-style: italic; font-variation-settings: "opsz" 48, "wght" 380, "SOFT" 100; color: var(--teal); }
    .blog-card-excerpt {
      color: var(--ink-2); font-size: 14.5px; line-height: 1.55;
      margin: 0; font-weight: 420;
    }
    .blog-card-more {
      margin-top: auto;
      font-family: var(--font-mono); font-size: 10.5px;
      text-transform: uppercase; letter-spacing: 0.16em;
      color: var(--teal-deep);
    }

    /* Produkter grid */
    .product-grid {
      max-width: 1240px; margin: 56px auto 0;
      display: grid; gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) { .product-grid { grid-template-columns: 1fr 1fr; } }
    .product-card {
      position: relative;
      padding: 40px;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: var(--shadow-card);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      display: flex; flex-direction: column; gap: 18px;
      overflow: hidden;
    }
    .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
    .product-card.coming::after {
      content: "Kommer 2026";
      position: absolute; top: 20px; right: 20px;
      padding: 5px 12px;
      background: rgba(14,17,22,0.06);
      border-radius: 999px;
      font-family: var(--font-mono); font-size: 10.5px;
      text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--ink-2);
    }
    .product-card.live::after {
      content: "Live";
      position: absolute; top: 20px; right: 20px;
      padding: 5px 12px;
      background: var(--teal-soft);
      border-radius: 999px;
      font-family: var(--font-mono); font-size: 10.5px;
      text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--teal-deep);
      display: inline-flex; align-items: center; gap: 6px;
    }
    .product-card.live::before {
      content: ""; position: absolute;
      top: 30px; right: 78px;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--signal);
      animation: signal 1.8s ease-in-out infinite;
      z-index: 1;
    }
    .product-glyph {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 460, "SOFT" 40;
      font-style: italic;
      font-size: 64px;
      line-height: 1;
      letter-spacing: -0.04em;
    }
    .product-card.p-stega .product-glyph { color: var(--orange); }
    .product-card.p-whistle .product-glyph { color: var(--pink); }
    .product-card.p-creative .product-glyph { color: var(--blue); }
    .product-card.p-geo .product-glyph { color: var(--green); }

    /* Product logo (image-based, replaces glyph) */
    .product-logo {
      display: inline-flex; align-items: center; justify-content: center;
      width: 72px; height: 72px;
      border-radius: 16px;
      background: var(--white);
      box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 2px 4px rgba(14,17,22,0.04), 0 8px 20px -10px rgba(14,17,22,0.18);
      border: 1px solid rgba(14,17,22,0.06);
      overflow: hidden;
    }
    .product-logo img {
      width: 100%; height: 100%;
      object-fit: contain;
      padding: 6px;
    }
    .product-name {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 96, "wght" 520, "SOFT" 30;
      font-size: 32px;
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin: 0;
      color: var(--ink);
    }
    .product-summary {
      color: var(--ink-2); font-size: 16px; line-height: 1.55;
      margin: 0; font-weight: 420;
      max-width: 36ch;
    }
    .product-meta {
      margin-top: 8px;
      display: flex; gap: 18px; flex-wrap: wrap;
      font-family: var(--font-mono); font-size: 10.5px;
      text-transform: uppercase; letter-spacing: 0.16em;
      color: var(--ink-mute);
    }
    .product-meta span { display: inline-flex; align-items: center; gap: 8px; }
    .product-meta span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--ink-mute); }
    .product-cta {
      margin-top: 12px;
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.16em;
      color: var(--teal-deep);
      text-decoration: none;
    }
    .product-cta:hover { color: var(--teal); }

    /* Tjänster - service detail blocks */
    .service-detail-grid {
      max-width: 1240px; margin: 56px auto 0;
      display: grid; gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) { .service-detail-grid { grid-template-columns: 1fr 1fr; } }
    .service-detail {
      padding: 40px;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: var(--shadow-card);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      display: flex; flex-direction: column; gap: 16px;
    }
    .service-detail:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
    .service-detail .number {
      font-family: var(--font-mono); font-size: 11px;
      letter-spacing: 0.18em; color: var(--ink-mute);
    }
    .service-detail h3 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 96, "wght" 520, "SOFT" 30;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      line-height: 1.08;
      letter-spacing: -0.025em;
      margin: 0;
      color: var(--ink);
    }
    .service-detail h3 em {
      font-style: italic;
      font-variation-settings: "opsz" 96, "wght" 380, "SOFT" 100;
      color: var(--teal);
    }
    .service-detail p { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.55; font-weight: 420; }
    .service-detail-tech {
      margin-top: 16px;
      display: flex; flex-wrap: wrap; gap: 8px;
    }
    .service-detail-tech span {
      padding: 4px 10px;
      background: var(--paper-2);
      border-radius: 999px;
      font-family: var(--font-mono); font-size: 10px;
      text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--ink-2);
    }

    /* ARTICLE PAGES - individual blog post layout */
    .article-hero {
      position: relative;
      padding: 144px 24px 32px;
      background: var(--white);
    }
    @media (min-width: 640px) { .article-hero { padding: 168px 40px 40px; } }
    .article-hero-inner { max-width: 880px; margin: 0 auto; }
    .article-back {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.18em;
      color: var(--ink-mute);
      text-decoration: none;
      margin-bottom: 32px;
      transition: color 0.3s ease;
    }
    .article-back:hover { color: var(--teal-deep); }
    .article-back::before { content: "←"; font-size: 13px; }
    .article-meta {
      display: flex; flex-wrap: wrap; gap: 14px;
      align-items: center;
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--ink-mute);
      margin-bottom: 28px;
    }
    .article-meta .blog-card-tag { font-size: 11px; padding: 5px 12px; }
    .article-meta .dot {
      display: inline-block; width: 4px; height: 4px;
      border-radius: 50%; background: currentColor; opacity: 0.4;
    }
    .article-title {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 460, "SOFT" 30;
      font-size: clamp(2.2rem, 5.5vw, 4.4rem);
      line-height: 1.0;
      letter-spacing: -0.03em;
      margin: 0;
      color: var(--ink);
    }
    .article-title em {
      font-style: italic;
      font-variation-settings: "opsz" 144, "wght" 360, "SOFT" 100;
      color: var(--teal);
    }
    .article-lead {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 36, "wght" 380, "SOFT" 30;
      font-size: clamp(1.2rem, 1.8vw, 1.5rem);
      line-height: 1.45;
      letter-spacing: -0.012em;
      color: var(--ink-2);
      margin: 28px 0 0;
    }

    /* Hero image - actual image or placeholder gradient */
    .article-hero-image {
      max-width: 1240px; margin: 32px auto 0;
      aspect-ratio: 16 / 9;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
    }
    @media (min-width: 640px) { .article-hero-image { aspect-ratio: 16 / 8; } }
    .article-hero-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .article-hero-image.placeholder {
      display: flex; align-items: center; justify-content: center;
      padding: 40px;
    }
    .article-hero-image.placeholder.t-ai { background: linear-gradient(135deg, #1F8C92 0%, #2FD4D0 100%); }
    .article-hero-image.placeholder.t-tech { background: linear-gradient(135deg, #3677D0 0%, #5DB6C4 100%); }
    .article-hero-image.placeholder.t-produkt { background: linear-gradient(135deg, #F58030 0%, #E73E8C 100%); }
    .article-hero-image.placeholder.t-case { background: linear-gradient(135deg, #5BC15F 0%, #C5D952 100%); }
    .article-hero-image.placeholder.t-tanke { background: linear-gradient(135deg, #E73E8C 0%, #F58030 100%); }
    .article-hero-image.placeholder .placeholder-mark {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 400, "SOFT" 100;
      font-style: italic;
      font-size: clamp(6rem, 18vw, 14rem);
      color: rgba(255,255,255,0.18);
      line-height: 0.85;
      text-align: center;
      letter-spacing: -0.04em;
      pointer-events: none;
    }

    /* Article body - prose */
    .article-body {
      max-width: 720px; margin: 0 auto;
      padding: 64px 24px 96px;
      font-size: 18px; line-height: 1.65;
      color: var(--ink);
      font-weight: 420;
    }
    @media (min-width: 640px) { .article-body { padding: 80px 40px 120px; } }
    .article-body p { margin: 0 0 28px; }
    .article-body p:last-child { margin-bottom: 0; }
    .article-body p:first-of-type::first-letter {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 480, "SOFT" 30;
      font-size: 5em;
      float: left;
      line-height: 0.85;
      margin: 0.08em 0.08em 0 0;
      color: var(--teal);
    }
    .article-body h2 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 96, "wght" 500, "SOFT" 30;
      font-size: clamp(1.5rem, 2.8vw, 2rem);
      line-height: 1.1;
      letter-spacing: -0.022em;
      color: var(--ink);
      margin: 56px 0 20px;
    }
    .article-body h2 em {
      font-style: italic;
      font-variation-settings: "opsz" 96, "wght" 380, "SOFT" 100;
      color: var(--teal);
    }
    .article-body strong { color: var(--ink); font-weight: 540; }
    .article-body em { font-style: italic; color: var(--teal-deep); }
    .article-body a {
      color: var(--ink);
      text-decoration: none;
      border-bottom: 1px solid var(--line-strong);
      transition: color 0.3s ease, border-color 0.3s ease;
    }
    .article-body a:hover { color: var(--teal); border-color: var(--teal); }
    .article-body blockquote {
      margin: 40px 0;
      padding: 0 0 0 28px;
      border-left: 3px solid var(--teal);
      font-family: var(--font-display);
      font-variation-settings: "opsz" 36, "wght" 380, "SOFT" 30;
      font-style: italic;
      font-size: 1.2em;
      line-height: 1.45;
      color: var(--ink-2);
    }
    .article-body ul, .article-body ol {
      margin: 0 0 28px 0;
      padding-left: 28px;
    }
    .article-body li { margin-bottom: 8px; }

    /* Article - author footer */
    .article-author {
      max-width: 720px; margin: 0 auto;
      padding: 32px 24px 64px;
      border-top: 1px solid var(--line);
      display: flex; align-items: center; gap: 20px;
    }
    @media (min-width: 640px) { .article-author { padding: 40px 40px 80px; } }
    .article-author-avatar {
      width: 64px; height: 64px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      box-shadow: 0 1px 0 rgba(255,255,255,0.20) inset, 0 8px 16px -8px rgba(14,17,22,0.20);
    }
    .article-author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .article-author-info { display: flex; flex-direction: column; gap: 4px; }
    .article-author-name {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 36, "wght" 540, "SOFT" 30;
      font-size: 18px;
      letter-spacing: -0.015em;
      color: var(--ink);
      margin: 0;
    }
    .article-author-role {
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--ink-mute);
    }

    /* Related articles */
    .article-related {
      background: var(--paper);
      padding: 80px 24px;
      border-top: 1px solid var(--line);
    }
    @media (min-width: 640px) { .article-related { padding: 96px 40px; } }
    .article-related-inner { max-width: 1240px; margin: 0 auto; }
    .article-related h3 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 96, "wght" 500, "SOFT" 30;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      line-height: 1.1;
      letter-spacing: -0.022em;
      color: var(--ink);
      margin: 0 0 32px;
    }
    .article-related h3 em { font-style: italic; font-variation-settings: "opsz" 96, "wght" 380, "SOFT" 100; color: var(--teal); }
    .article-related-grid {
      display: grid; gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 640px) { .article-related-grid { grid-template-columns: repeat(3, 1fr); } }

    /* GEO/AEO product pages */
    .geo-pill {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 7px 14px;
      background: var(--ink);
      color: #fff;
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
      font-weight: 500;
    }
    .geo-pill::before {
      content: ""; width: 6px; height: 6px; border-radius: 50%;
      background: var(--signal);
      animation: signal 1.8s ease-in-out infinite;
    }

    /* GEO Score gauge / visualization */
    .geo-score {
      max-width: 1240px; margin: 64px auto 0;
      padding: 48px;
      background: var(--ink); color: #fff;
      border-radius: 24px;
      display: grid; gap: 48px;
      grid-template-columns: 1fr;
      position: relative; overflow: hidden;
    }
    @media (min-width: 880px) { .geo-score { grid-template-columns: 1fr 1.2fr; align-items: center; padding: 64px; } }
    .geo-score::before {
      content: ""; position: absolute;
      width: 600px; height: 600px; right: -200px; top: -200px;
      border-radius: 50%;
      background: radial-gradient(closest-side, rgba(47,212,208,0.22), transparent);
      filter: blur(60px); pointer-events: none;
    }
    .geo-score > * { position: relative; z-index: 1; }
    .geo-score-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(255,255,255,0.55); display: inline-flex; align-items: center; gap: 12px; }
    .geo-score-label::before { content: ""; width: 24px; height: 1px; background: rgba(255,255,255,0.45); }
    .geo-score h2 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 460, "SOFT" 30;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.05;
      letter-spacing: -0.028em;
      margin: 18px 0 16px;
      color: #fff;
    }
    .geo-score h2 em { font-style: italic; font-variation-settings: "opsz" 144, "wght" 360, "SOFT" 100; color: var(--signal); }
    .geo-score p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.6; margin: 0 0 16px; font-weight: 420; }
    .geo-score-components {
      display: flex; flex-direction: column; gap: 18px;
    }
    .geo-component {
      display: grid; gap: 8px;
      grid-template-columns: 1fr auto;
      align-items: baseline;
    }
    .geo-component-label {
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.14em;
      color: rgba(255,255,255,0.7);
    }
    .geo-component-weight {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 36, "wght" 480, "SOFT" 30;
      font-size: 20px;
      color: var(--signal);
    }
    .geo-component-bar {
      grid-column: 1 / -1;
      height: 6px;
      background: rgba(255,255,255,0.08);
      border-radius: 3px;
      overflow: hidden;
      position: relative;
    }
    .geo-component-bar::after {
      content: ""; position: absolute;
      left: 0; top: 0; bottom: 0;
      background: linear-gradient(90deg, var(--signal), var(--cyan));
      border-radius: 3px;
      width: var(--w, 40%);
      box-shadow: 0 0 12px rgba(47,212,208,0.5);
    }

    /* Price cards - for product/service tiers */
    .price-grid {
      max-width: 1240px; margin: 56px auto 0;
      display: grid; gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) { .price-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1100px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }
    .price-card {
      background: var(--white);
      border-radius: 20px;
      padding: 32px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      display: flex; flex-direction: column;
      position: relative;
    }
    .price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
    .price-card.featured {
      background: var(--paper);
      border-color: var(--teal);
      box-shadow: 0 0 0 1px var(--teal), var(--shadow-card-hover);
    }
    .price-card.featured::before {
      content: "Mest populär";
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      padding: 5px 14px;
      background: var(--teal); color: #fff;
      border-radius: 999px;
      font-family: var(--font-mono); font-size: 10.5px;
      text-transform: uppercase; letter-spacing: 0.14em;
    }
    .price-card-tier {
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.18em;
      color: var(--ink-mute);
    }
    .price-card-name {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 96, "wght" 520, "SOFT" 30;
      font-size: clamp(1.4rem, 2vw, 1.8rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin: 8px 0 16px;
      color: var(--ink);
    }
    .price-card-name em { font-style: italic; font-variation-settings: "opsz" 96, "wght" 380, "SOFT" 100; color: var(--teal); }
    .price-card-price {
      display: flex; align-items: baseline; gap: 6px;
      margin: 0 0 8px;
    }
    .price-card-amount {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 460, "SOFT" 30;
      font-size: clamp(2.2rem, 3.2vw, 2.8rem);
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--ink);
    }
    .price-card-currency {
      font-family: var(--font-mono); font-size: 13px;
      color: var(--ink-mute);
    }
    .price-card-period {
      font-size: 13px; color: var(--ink-mute);
      margin-bottom: 20px;
    }
    .price-card-summary {
      color: var(--ink-2); font-size: 15px; line-height: 1.5;
      margin: 0 0 24px; font-weight: 420;
    }
    .price-card-features {
      list-style: none; padding: 0; margin: 0 0 28px;
      display: flex; flex-direction: column; gap: 10px;
      flex: 1;
    }
    .price-card-features li {
      font-size: 14px; line-height: 1.45;
      color: var(--ink-2);
      display: flex; align-items: flex-start; gap: 10px;
      padding-left: 0;
    }
    .price-card-features li::before {
      content: "✓"; flex-shrink: 0;
      color: var(--teal);
      font-weight: 600;
      margin-top: 1px;
    }
    .price-card-cta {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px 22px;
      border-radius: 999px;
      font-family: var(--font-sans); font-weight: 500; font-size: 14px;
      letter-spacing: -0.005em;
      text-decoration: none;
      transition: background 0.3s ease, transform 0.3s ease;
      background: var(--ink); color: #fff;
    }
    .price-card-cta:hover { background: var(--teal); transform: translateY(-2px); }
    .price-card.featured .price-card-cta { background: var(--teal); }
    .price-card.featured .price-card-cta:hover { background: var(--teal-deep); }

    /* FAQ accordion */
    .faq-list {
      max-width: 880px; margin: 56px auto 0;
      display: flex; flex-direction: column; gap: 12px;
    }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .faq-item:hover { border-color: var(--line-strong); }
    .faq-item[open] {
      border-color: var(--teal);
      box-shadow: var(--shadow-card);
    }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 22px 28px;
      display: flex; justify-content: space-between; align-items: center; gap: 20px;
      font-family: var(--font-display);
      font-variation-settings: "opsz" 36, "wght" 540, "SOFT" 30;
      font-size: clamp(1.05rem, 1.4vw, 1.2rem);
      line-height: 1.3;
      letter-spacing: -0.012em;
      color: var(--ink);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: "+";
      flex-shrink: 0;
      font-family: var(--font-display); font-size: 24px;
      color: var(--teal);
      transition: transform 0.3s ease;
      line-height: 1;
    }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item-body {
      padding: 0 28px 24px;
      color: var(--ink-2); font-size: 15.5px; line-height: 1.65;
      font-weight: 420;
    }
    .faq-item-body p { margin: 0 0 12px; }
    .faq-item-body p:last-child { margin-bottom: 0; }

    /* Section labels inside FAQ list */
    .faq-section-label {
      margin: 40px 0 4px;
      padding: 0 4px;
      font-family: var(--font-mono); font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.18em;
      color: var(--ink-mute);
      display: flex; align-items: center; gap: 14px;
    }
    .faq-section-label::before {
      content: ""; width: 32px; height: 1px; background: var(--line-strong);
    }
    .faq-section-label:first-child { margin-top: 0; }

    /* Stat cards for content sections */
    .stat-grid {
      max-width: 1240px; margin: 56px auto 0;
      display: grid; gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(3, 1fr); } }
    .stat-card {
      padding: 32px;
      background: var(--paper);
      border-radius: 18px;
      border: 1px solid var(--line);
    }
    .stat-card .num {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 460, "SOFT" 30;
      font-size: clamp(2.8rem, 4.5vw, 4rem);
      line-height: 1;
      letter-spacing: -0.035em;
      color: var(--ink);
    }
    .stat-card .num em { font-style: italic; font-variation-settings: "opsz" 144, "wght" 380, "SOFT" 100; color: var(--teal); }
    .stat-card h3 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 36, "wght" 540, "SOFT" 30;
      font-size: 19px;
      line-height: 1.2;
      letter-spacing: -0.015em;
      margin: 18px 0 8px;
      color: var(--ink);
    }
    .stat-card p {
      font-size: 14px; line-height: 1.55;
      color: var(--ink-2);
      margin: 0; font-weight: 420;
    }
    .stat-card cite {
      display: block; margin-top: 12px;
      font-family: var(--font-mono); font-size: 10.5px;
      text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--ink-mute); font-style: normal;
    }

    /* ============================================
       ARTICLE GUIDE - extras: TOC, stat-callouts,
       comparison-table, mid-CTA, sources, sidebar
       ============================================ */
    .article-layout {
      max-width: 1240px;
      margin: 0 auto;
      padding: 56px 24px 88px;
      display: grid;
      gap: 48px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 1024px) {
      .article-layout {
        grid-template-columns: 220px minmax(0, 720px) 280px;
        padding: 64px 40px 120px;
        gap: 56px;
      }
    }

    /* TOC - left sticky column */
    .article-toc { position: relative; }
    @media (min-width: 1024px) {
      .article-toc { position: sticky; top: 96px; align-self: start; max-height: calc(100vh - 120px); overflow-y: auto; }
    }
    .article-toc-label {
      font-family: var(--font-mono); font-size: 10px;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--ink-mute); margin-bottom: 14px; display: block;
    }
    .article-toc ul {
      list-style: none; margin: 0; padding: 0;
      border-left: 2px solid var(--line);
    }
    .article-toc li { margin: 0; }
    .article-toc a {
      display: block;
      padding: 8px 16px;
      margin-left: -2px;
      border-left: 2px solid transparent;
      font-size: 13.5px;
      color: var(--ink-2);
      text-decoration: none;
      line-height: 1.4;
      transition: color 0.2s ease, border-color 0.2s ease;
    }
    .article-toc a:hover { color: var(--teal-deep); }
    .article-toc a.active {
      color: var(--teal-deep);
      border-left-color: var(--teal);
      font-weight: 540;
    }

    /* Article content area (within layout) */
    .article-content { font-family: var(--font-display); font-variation-settings: "opsz" 36, "wght" 380, "SOFT" 30; font-size: 17px; line-height: 1.65; color: var(--ink); }
    .article-content > p:first-of-type::first-letter {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 540, "SOFT" 0;
      font-size: 4.2em; line-height: 0.85;
      float: left; margin: 6px 14px -2px 0;
      color: var(--teal-deep);
    }
    .article-content p { margin: 0 0 24px; }
    .article-content h2 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 96, "wght" 520, "SOFT" 20;
      font-size: clamp(1.6rem, 3vw, 2rem);
      line-height: 1.15; letter-spacing: -0.02em;
      margin: 56px 0 22px; color: var(--ink);
    }
    .article-content h2 em { font-style: italic; color: var(--teal); font-variation-settings: "opsz" 96, "wght" 380, "SOFT" 100; }
    .article-content h3 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 60, "wght" 540, "SOFT" 20;
      font-size: clamp(1.2rem, 2.2vw, 1.4rem);
      line-height: 1.25;
      margin: 40px 0 16px; color: var(--ink);
    }
    .article-content strong { color: var(--ink); font-weight: 580; font-variation-settings: "opsz" 36, "wght" 560, "SOFT" 20; }
    .article-content em { font-style: italic; color: var(--teal-deep); }
    .article-content a {
      color: var(--teal-deep);
      border-bottom: 1px solid var(--line-strong);
      text-decoration: none;
      transition: color 0.2s ease, border-color 0.2s ease;
    }
    .article-content a:hover { color: var(--teal); border-color: var(--teal); }
    .article-content ul, .article-content ol { margin: 0 0 28px; padding-left: 28px; }
    .article-content li { margin-bottom: 10px; }
    .article-content blockquote {
      margin: 36px 0;
      padding: 24px 28px;
      border-left: 3px solid var(--teal);
      background: var(--paper);
      border-radius: 0 14px 14px 0;
      font-family: var(--font-display);
      font-variation-settings: "opsz" 60, "wght" 400, "SOFT" 80;
      font-style: italic;
      font-size: 18px; line-height: 1.55;
      color: var(--ink);
    }
    .article-content blockquote cite {
      display: block; margin-top: 16px;
      font-family: var(--font-mono); font-size: 11px;
      letter-spacing: 0.16em; text-transform: uppercase;
      font-style: normal;
      color: var(--ink-mute);
    }

    /* Stat callout - big number pulled out */
    .article-content .stat-callout {
      margin: 40px 0;
      padding: 32px;
      background: var(--paper-2);
      border-radius: 18px;
      border: 1px solid var(--line);
      text-align: center;
    }
    .article-content .stat-callout .stat-number {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 560, "SOFT" 0;
      font-size: clamp(3rem, 7vw, 4.6rem);
      line-height: 1;
      color: var(--teal-deep);
      margin-bottom: 12px;
    }
    .article-content .stat-callout .stat-label {
      font-family: var(--font-sans);
      font-size: 16px; font-weight: 540;
      color: var(--ink); margin-bottom: 10px;
    }
    .article-content .stat-callout .stat-source {
      font-family: var(--font-mono); font-size: 11px;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--ink-mute);
    }

    /* Comparison table */
    .article-content .comparison-table {
      width: 100%;
      border-collapse: collapse;
      margin: 32px 0;
      font-family: var(--font-sans);
      font-size: 14.5px;
      line-height: 1.5;
    }
    .article-content .comparison-table th,
    .article-content .comparison-table td {
      padding: 14px 16px;
      text-align: left;
      border-bottom: 1px solid var(--line);
      vertical-align: top;
    }
    .article-content .comparison-table th {
      font-family: var(--font-mono); font-size: 11px;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--ink-mute);
      background: var(--paper);
      font-weight: 540;
    }
    .article-content .comparison-table tr:last-child td { border-bottom: none; }
    .article-content .comparison-table td:first-child { font-weight: 540; color: var(--ink); }

    /* Mid-article CTA - dark editorial block */
    .article-content .mid-cta {
      margin: 48px 0;
      padding: 36px;
      background: var(--ink);
      color: #fff;
      border-radius: 22px;
      position: relative;
      overflow: hidden;
    }
    .article-content .mid-cta::before {
      content: ""; position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: radial-gradient(closest-side, rgba(47,212,208,0.28), transparent);
      pointer-events: none;
    }
    .article-content .mid-cta h3 {
      color: #fff; margin: 0 0 12px;
      font-family: var(--font-display);
      font-variation-settings: "opsz" 96, "wght" 520, "SOFT" 20;
      font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    }
    .article-content .mid-cta p {
      color: rgba(255,255,255,0.85);
      margin: 0 0 20px;
      font-family: var(--font-sans);
      font-size: 15px;
      line-height: 1.55;
    }
    .article-content .mid-cta a.btn {
      display: inline-block;
      padding: 11px 22px;
      background: var(--teal);
      color: #fff;
      border-radius: 8px;
      text-decoration: none;
      font-family: var(--font-mono); font-size: 12px;
      letter-spacing: 0.14em; text-transform: uppercase;
      font-weight: 540;
      border: none;
    }
    .article-content .mid-cta a.btn:hover { background: var(--teal-deep); color: #fff; border: none; }

    /* Illustration placeholder */
    .article-content .article-illustration {
      margin: 36px 0;
      padding: 36px 24px;
      background: var(--paper);
      border: 1.5px dashed var(--line-strong);
      border-radius: 16px;
      text-align: center;
      font-family: var(--font-mono); font-size: 12px;
      letter-spacing: 0.12em;
      color: var(--ink-mute);
      line-height: 1.6;
    }

    /* Article sidebar (right column) - sticky CTA */
    .article-sidebar { position: relative; }
    @media (min-width: 1024px) {
      .article-sidebar { position: sticky; top: 96px; align-self: start; }
    }
    .sticky-cta {
      padding: 26px;
      background: var(--white);
      border-radius: 18px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card);
    }
    .sticky-cta .pill {
      display: inline-block;
      padding: 4px 10px;
      background: var(--paper-2);
      border-radius: 999px;
      font-family: var(--font-mono); font-size: 10px;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--ink-2);
      margin-bottom: 14px;
    }
    .sticky-cta h4 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 60, "wght" 540, "SOFT" 20;
      font-size: 1.3rem;
      line-height: 1.2;
      margin: 0 0 8px;
      color: var(--ink);
    }
    .sticky-cta p {
      font-family: var(--font-sans);
      font-size: 13.5px; line-height: 1.55;
      color: var(--ink-2);
      margin: 0 0 14px;
    }
    .sticky-cta input[type="email"] {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
      font-family: var(--font-sans);
      font-size: 14px;
      background: var(--white);
      margin-bottom: 10px;
    }
    .sticky-cta button {
      width: 100%;
      padding: 11px;
      background: var(--ink);
      color: #fff;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-family: var(--font-mono); font-size: 12px;
      letter-spacing: 0.14em; text-transform: uppercase;
      font-weight: 540;
    }
    .sticky-cta button:hover { background: var(--teal-deep); }
    .sticky-cta .small {
      display: block; margin-top: 10px;
      font-family: var(--font-mono); font-size: 10px;
      letter-spacing: 0.12em;
      color: var(--ink-mute);
    }

    /* Article sources list */
    .article-sources {
      max-width: 880px;
      margin: 0 auto;
      padding: 48px 24px;
      border-top: 1px solid var(--line);
    }
    .article-sources h3 {
      font-family: var(--font-mono); font-size: 11px;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--ink-mute);
      margin: 0 0 18px;
    }
    .article-sources ul {
      list-style: none; margin: 0; padding: 0;
    }
    .article-sources li { margin-bottom: 12px; font-size: 14px; line-height: 1.5; }
    .article-sources a { color: var(--teal-deep); word-break: break-word; }

    /* Related articles grid - used on guide articles */
    .related-grid-3 {
      display: grid;
      gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) {
      .related-grid-3 { grid-template-columns: repeat(3, 1fr); }
    }
    .related-grid-3 .blog-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .related-grid-3 .blog-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-card-hover);
    }

    /* Cookie consent banner */
    .cookie-consent {
      position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--ink); color: #fff;
      padding: 20px 24px;
      z-index: 1000;
      box-shadow: 0 -8px 32px rgba(14,17,22,0.18);
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
      font-family: var(--font-sans);
    }
    .cookie-consent.visible { transform: translateY(0); }
    .cookie-consent-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; gap: 24px;
      align-items: center; justify-content: space-between;
      flex-wrap: wrap;
    }
    .cookie-consent-text {
      flex: 1; min-width: 280px;
      font-size: 14px; line-height: 1.5;
      color: rgba(255,255,255,0.85);
    }
    .cookie-consent-text strong { color: #fff; }
    .cookie-consent-text a { color: var(--signal); border-bottom: 1px solid rgba(47,212,208,0.4); text-decoration: none; }
    .cookie-consent-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .cookie-consent button {
      padding: 11px 22px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-family: var(--font-mono); font-size: 11px;
      letter-spacing: 0.14em; text-transform: uppercase;
      font-weight: 540;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .cookie-consent button:hover { transform: translateY(-1px); }
    .cookie-consent .cc-accept { background: var(--teal); color: #fff; }
    .cookie-consent .cc-reject { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.25); }
    .cookie-consent .cc-reject:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

    /* 404 page */
    .four-oh-four {
      min-height: 70vh;
      display: flex; align-items: center; justify-content: center;
      padding: 120px 24px 80px;
      background: var(--paper);
    }
    .four-oh-four-inner {
      max-width: 640px; text-align: center;
    }
    .four-oh-four-number {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 144, "wght" 540, "SOFT" 0;
      font-size: clamp(8rem, 22vw, 14rem);
      line-height: 1;
      color: var(--teal-deep);
      letter-spacing: -0.06em;
      margin-bottom: 16px;
    }
    .four-oh-four h1 {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 96, "wght" 480, "SOFT" 30;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin: 0 0 18px;
    }
    .four-oh-four p {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 36, "wght" 380, "SOFT" 30;
      font-size: 1.1rem;
      line-height: 1.5;
      color: var(--ink-2);
      margin: 0 0 36px;
    }
    .four-oh-four-actions {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    }

    /* Specialområden - 4 djup-specialiteter på /tjanster */
    .specialitet-grid {
      max-width: 1240px; margin: 0 auto;
      display: grid; gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) { .specialitet-grid { grid-template-columns: 1fr 1fr; } }
    .specialitet-card {
      position: relative;
      padding: 40px;
      background: var(--white);
      border-radius: 22px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      overflow: hidden;
    }
    .specialitet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
    .specialitet-card::before {
      content: ""; position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--accent, var(--teal));
      opacity: 0.85;
    }
    .specialitet-tier {
      display: block;
      font-family: var(--font-mono); font-size: 10px;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--ink-mute);
      margin-bottom: 14px;
    }
    .specialitet-title {
      font-family: var(--font-display);
      font-variation-settings: "opsz" 96, "wght" 520, "SOFT" 20;
      font-size: clamp(1.4rem, 2.3vw, 1.8rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin: 0 0 16px;
      color: var(--ink);
    }
    .specialitet-title em {
      font-style: italic;
      font-variation-settings: "opsz" 96, "wght" 380, "SOFT" 100;
      color: var(--teal);
    }
    .specialitet-pitch {
      color: var(--ink-2); line-height: 1.55; margin: 0 0 16px;
      font-size: 15.5px;
    }
    .specialitet-ai {
      padding: 12px 16px;
      background: var(--paper-2);
      border-left: 3px solid var(--accent, var(--teal));
      border-radius: 0 10px 10px 0;
      color: var(--ink-2);
      font-size: 14.5px; line-height: 1.5;
      margin: 0 0 20px;
    }
    .specialitet-ai strong {
      color: var(--ink);
      font-weight: 580;
      letter-spacing: 0.02em;
    }
    .specialitet-tech {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-bottom: 20px;
    }
    .specialitet-tech span {
      padding: 4px 10px;
      background: var(--paper);
      border-radius: 999px;
      font-family: var(--font-mono); font-size: 10px;
      text-transform: uppercase; letter-spacing: 0.12em;
      color: var(--ink-2);
    }
    .specialitet-clients {
      padding-top: 18px;
      border-top: 1px solid var(--line);
    }
    .specialitet-clients .label-mono {
      display: block;
      margin-bottom: 6px;
      color: var(--ink-mute);
    }
    .specialitet-clients p {
      margin: 0;
      color: var(--ink-2);
      font-size: 14.5px; line-height: 1.5;
    }
    .specialitet-clients p strong { color: var(--ink); font-weight: 580; }
    .specialitet-clients a {
      color: var(--teal-deep);
      border-bottom: 1px solid var(--line-strong);
      text-decoration: none;
    }
