/* ============================================================
   SOCIALBRANDS — DESIGN SYSTEM EXTRACT (LIGHT v1.0)
   Source: dump/design-system/socialbrands/project/Design System.html
   Implements: tokens, patterns, layout, components used by the
   main + AI pages.
   ============================================================ */

:root {
  /* Surface ramp */
  --paper:    #FFFFFF;
  --snow:     #F7F9FC;
  --mist:     #EEF2F7;
  --fog:      #E1E7F0;
  --hairline: #D6DCE5;
  --stone:    #B4BDCC;

  /* Text ramp */
  --steel:    #5A6678;
  --slate:    #2A3340;
  --ink:      #0A0E14;

  /* Brand — electric cyan */
  --cyan-100: #D9F7FF;
  --cyan-200: #B3EFFF;
  --cyan-300: #80E1FF;
  --cyan-400: #40D6FF;
  --cyan-500: #00CCFF;
  --cyan-600: #00A8D6;
  --cyan-700: #007FA8;
  --cyan-900: #052838;
  --cyan-text: var(--cyan-700);

  --cyan-glow-08: rgba(0,204,255,0.08);
  --cyan-glow-16: rgba(0,204,255,0.16);
  --cyan-glow-32: rgba(0,204,255,0.32);
  --cyan-glow-48: rgba(0,204,255,0.48);

  /* Type */
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --fs-display:  clamp(48px, 6.4vw, 88px);
  --fs-h1:       clamp(36px, 4.2vw, 56px);
  --fs-h2:       clamp(28px, 2.6vw, 36px);
  --fs-h3:       20px;
  --fs-body:     16px;
  --fs-small:    14px;
  --fs-eyebrow:  12px;

  --lh-tight: 1.05;
  --lh-snug:  1.2;
  --lh-body:  1.55;

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px;
  --s-16: 64px; --s-20: 80px; --s-24: 96px;

  /* Radii */
  --r-xs: 6px; --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;

  /* Elevation */
  --el-1: 0 1px 0 rgba(15,20,30,0.04), 0 1px 2px rgba(15,20,30,0.06);
  --el-2: 0 1px 0 rgba(15,20,30,0.04), 0 8px 24px rgba(15,20,30,0.08);
  --el-3: 0 1px 0 rgba(15,20,30,0.04), 0 20px 60px rgba(15,20,30,0.12);

  /* Glow */
  --glow-sm: 0 0 0 1px var(--cyan-glow-32), 0 6px 24px -4px var(--cyan-glow-32);
  --glow-md: 0 0 0 1px var(--cyan-500),     0 12px 60px -10px var(--cyan-glow-48);
  --glow-lg: 0 0 0 1px var(--cyan-500),     0 24px 120px -10px var(--cyan-glow-48);

  --max-content: 1240px;
}

/* ===================== BASE ===================== */
*,*::before,*::after { box-sizing: border-box; }
html,body { margin: 0; }
body {
  background: var(--paper);
  color: var(--slate);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4 { margin: 0; font-weight: 500; letter-spacing: -0.02em; color: var(--ink); }
p { margin: 0; }
a { color: var(--cyan-text); text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ===================== PATTERN ===================== */
.hex-bg { position: relative; isolation: isolate; }
.hex-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='138' height='80' viewBox='0 0 138 80'><g fill='none' stroke='%23C9D0DC' stroke-width='1' stroke-linejoin='round'><polygon points='92,40 69,80 23,80 0,40 23,0 69,0'/><polygon points='161,0 138,40 92,40 69,0 92,-40 138,-40'/><polygon points='161,80 138,120 92,120 69,80 92,40 138,40'/></g></svg>");
  background-size: 260px 150px;
  background-position: center top;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

/* Hero hex breakout: true full viewport width, no clip from parent */
.cover.hex-bg { overflow: visible; }
.cover.hex-bg::before {
  inset: auto;
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  opacity: 0.4;
}

.spotlight { position: relative; isolation: isolate; }
.spotlight::after {
  content: "";
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 75%; height: 75%;
  background: radial-gradient(ellipse at center, var(--cyan-glow-32), transparent 65%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--s-4) var(--s-8);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: var(--s-3);
  color: var(--ink); font-weight: 500; letter-spacing: -0.01em;
}
.nav-brand .mark { width: 32px; height: 32px; font-size: 14px; }
.nav-brand .sb-logo {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 6px;
}
.site-footer .nav-brand .sb-logo { height: 40px; }
.nav-links {
  display: flex; gap: var(--s-6); align-items: center;
}
.nav-links a {
  color: var(--steel); font-size: var(--fs-small);
  font-family: var(--font-sans);
}
.nav-links a:hover { color: var(--ink); }
.nav-links .btn { height: 40px; padding: 0 var(--s-2) 0 var(--s-5); font-size: 14px; }
.nav-links .btn .arrow { width: 28px; height: 28px; }
/* Stand-out nav link — used for the KI-Marketing Ausbildung entry.
   Reads as a soft pill with the cyan brand mark, distinct from the
   regular text links without competing with the hero CTA. */
.nav-links a.nav-cta {
  color: var(--ink);
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--cyan-500);
  border-radius: 999px;
  background: rgba(0, 204, 255, 0.08);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.nav-links a.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
@media (max-width: 800px) {
  .nav-links a:not(.btn):not(.nav-cta) { display: none; }
}
/* Sticky-nav anchor fix — when clicking a nav link, the target section's
   top edge sat behind the sticky bar. Push the scroll snap-point down
   past the nav so the section heading is fully visible. */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 96px; }

/* ===================== LAYOUT ===================== */
.page {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--s-20) var(--s-8);
}
.page > section + section { margin-top: var(--s-24); }
/* The trust-bar hugs the signature cases above it — collapse the inherited section gap. */
.page > section + section.trust-bar { margin-top: var(--s-6); }

/* Section headlines globally read as a dark-blue hex-pattern panel — a
   signature artifact that visually anchors every section heading on the page. */
.header-rule {
  display: flex; align-items: baseline; gap: var(--s-6);
  padding: var(--s-8) clamp(var(--s-6), 3vw, var(--s-10));
  margin-bottom: var(--s-12);
  background:
    radial-gradient(ellipse at 30% 0%,   rgba(0,204,255,0.18), transparent 55%),
    radial-gradient(ellipse at 70% 100%, rgba(0,204,255,0.10), transparent 55%),
    var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: var(--r-xl);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex-wrap: wrap;
}
.header-rule::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='138' height='80' viewBox='0 0 138 80'><g fill='none' stroke='%2300CCFF' stroke-width='1' stroke-linejoin='round'><polygon points='92,40 69,80 23,80 0,40 23,0 69,0'/><polygon points='161,0 138,40 92,40 69,0 92,-40 138,-40'/><polygon points='161,80 138,120 92,120 69,80 92,40 138,40'/></g></svg>");
  background-size: 220px 127px;
  opacity: 0.10;
  mask-image: radial-gradient(ellipse at 50% 35%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 35%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}
.header-rule > * { position: relative; z-index: 1; }
.header-rule .num {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--cyan-300);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex: 0 0 auto;
  align-self: center;
}
/* Headline always on a single line: num + h2 share the top row, the
   description is pushed onto its own row below (flex-basis 100%). Font scales
   down on narrower viewports so even the longest title never wraps. */
.header-rule h2 {
  font-size: clamp(22px, 2.3vw, 33px);
  line-height: 1.1;
  color: var(--paper);
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-rule .desc {
  flex: 1 1 100%;
  margin: 0;
  color: var(--stone);
  font-size: var(--fs-small);
  text-align: left;
  white-space: normal;
  max-width: 70ch;
}
@media (max-width: 640px) {
  /* On phones, let the headline wrap rather than clip. */
  .header-rule h2 { white-space: normal; overflow: visible; }
}

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .header-rule { flex-wrap: wrap; }
  .header-rule .desc { margin-left: 0; text-align: left; max-width: none; }
}

/* ===================== COVER / HERO ===================== */
.cover {
  position: relative;
  padding: clamp(56px, 10vh, 120px) var(--s-8) clamp(56px, 10vh, 120px);
  max-width: var(--max-content);
  margin: 0 auto;
  overflow: hidden;
}
.cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--s-10);
  align-items: center;
}
@media (max-width: 1000px) {
  .cover-grid { grid-template-columns: 1fr; gap: var(--s-12); }
}
.cover-text {
  position: relative;
  z-index: 2;
}
/* Centered hero variant — single column, everything centered horizontally. */
.cover--centered { text-align: center; }
.cover--centered .cover-text {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Headline spreads the full container width; the browser balances the
   two lines automatically (no manual <br>). The subhead stays a normal
   reading width below. */
.cover--centered .cover-headline {
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  text-wrap: balance;
}
.cover--centered .cover-subhead {
  margin-left: auto;
  margin-right: auto;
  max-width: 68ch;
}
.cover--centered .ctas { justify-content: center; }
.cover-video {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--el-3), 0 0 0 1px var(--cyan-glow-32);
  background: var(--ink);
  aspect-ratio: 16/10;
}
.cover-video iframe,
.cover-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.cover-video .video-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    radial-gradient(ellipse at 50% 50%, var(--cyan-glow-32), transparent 70%),
    linear-gradient(135deg, var(--ink), var(--slate));
}
.cover-video .video-placeholder .play {
  width: 80px; height: 80px;
  background: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.cover-video .video-placeholder .play svg { width: 28px; height: 28px; color: var(--ink); margin-left: 3px; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  color: var(--cyan-text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--cyan-glow-32);
  border-radius: var(--r-pill);
  background: var(--cyan-glow-08);
}
.eyebrow-pill svg { width: 14px; height: 14px; }
/* Old .cover h1 styles intentionally removed: the hero h1 is now class
   .cover-headline (defined further down) and the cascade was overriding
   the new clamp() sizing. */
.cover .lede {
  margin-top: var(--s-6);
  max-width: 60ch;
  color: var(--steel);
  font-size: 18px;
}
.cover .ctas {
  margin-top: var(--s-10);
  display: flex; gap: var(--s-4); flex-wrap: wrap;
}
.cover .meta {
  margin-top: var(--s-12);
  display: flex; gap: var(--s-8); flex-wrap: wrap;
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: var(--fs-small);
}
.cover .meta span b { color: var(--ink); font-weight: 500; }

/* ===================== MARK ===================== */
.mark {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cyan-500);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.04em;
  box-shadow: 0 6px 24px -4px var(--cyan-glow-48);
}

/* ===================== EYEBROW / BADGES ===================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  color: var(--cyan-text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  width: max-content;
}
.eyebrow svg { width: 14px; height: 14px; }

.num-badge {
  display: inline-flex; align-items: center; justify-content: center;
  align-self: flex-start;
  min-width: 52px; height: 32px;
  padding: 0 var(--s-3);
  border-radius: var(--r-pill);
  border: 1px solid var(--cyan-glow-32);
  background: var(--cyan-glow-08);
  color: var(--cyan-text);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-3);
  height: 52px;
  padding: 0 var(--s-3) 0 var(--s-6);
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn .arrow {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  transition: background .2s, color .2s, transform .2s;
}
.btn .arrow svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--cyan-400);
  color: var(--ink);
  box-shadow: 0 6px 20px -4px var(--cyan-glow-48);
}
.btn-primary .arrow { background: var(--paper); color: var(--ink); }
.btn-primary:hover { background: var(--cyan-300); transform: translateY(-1px); }
.btn-primary:hover .arrow { transform: translateX(3px); }

/* Large button modifier — used for prominent section CTAs (e.g. Block 04). */
.btn.btn-large {
  height: 64px;
  padding: 0 var(--s-4) 0 var(--s-8);
  font-size: 17px;
  letter-spacing: -0.005em;
  box-shadow: 0 14px 36px -10px var(--cyan-glow-48);
}
.btn.btn-large .arrow { width: 44px; height: 44px; }
.btn.btn-large .arrow svg { width: 18px; height: 18px; }
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-ghost .arrow { background: var(--mist); color: var(--ink); }
.btn-ghost:hover { border-color: var(--cyan-500); color: var(--cyan-text); }
.btn-solid {
  background: var(--ink);
  color: var(--paper);
}
.btn-solid .arrow { background: var(--paper); color: var(--ink); }
.btn-solid:hover { background: var(--slate); }

/* ===================== CARDS ===================== */
.card {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse at top, rgba(0,204,255,0.06), transparent 60%),
    var(--snow);
  padding: var(--s-6);
  overflow: hidden;
  box-shadow: var(--el-1);
}
.card.hex { isolation: isolate; }
.card.hex::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='138' height='80' viewBox='0 0 138 80'><g fill='none' stroke='%23DDE3EC' stroke-width='1' stroke-linejoin='round'><polygon points='92,40 69,80 23,80 0,40 23,0 69,0'/><polygon points='161,0 138,40 92,40 69,0 92,-40 138,-40'/><polygon points='161,80 138,120 92,120 69,80 92,40 138,40'/></g></svg>");
  background-size: 175px 100px;
  z-index: -1;
  mask-image: radial-gradient(ellipse 110% 90% at 50% 50%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 110% 90% at 50% 50%, #000 50%, transparent 100%);
}
.card.active {
  border-color: var(--cyan-500);
  box-shadow: var(--glow-md);
  background:
    radial-gradient(ellipse at top, rgba(0,204,255,0.10), transparent 60%),
    var(--paper);
}
.card h3 { font-size: 18px; font-weight: 500; margin-bottom: var(--s-2); }
.card .card-body { color: var(--steel); font-size: var(--fs-small); line-height: 1.55; }

/* Step / process card */
.step-card { min-height: 240px; display: flex; flex-direction: column; gap: var(--s-4); align-items: flex-start; }
.step-card > * { align-self: stretch; }
.step-card > .num-badge { align-self: flex-start; }
.step-card h3 { font-size: 18px; }
.step-card .body { color: var(--steel); font-size: var(--fs-small); }

/* Product card (used on AI page) */
.product-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex; flex-direction: column; gap: var(--s-4);
  box-shadow: var(--el-1);
  transition: box-shadow .25s ease, border-color .2s ease, transform .2s ease;
}
.product-card:hover {
  border-color: var(--cyan-500);
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}
.product-card .price-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan-text);
  letter-spacing: 0.06em;
}
.product-card h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
}
.product-card .deliverables {
  display: flex; flex-direction: column; gap: var(--s-2);
  margin-top: var(--s-2);
  color: var(--steel);
  font-size: 14px;
}
.product-card .deliverables li {
  display: flex; gap: var(--s-2); align-items: flex-start;
}
.product-card .deliverables li::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--cyan-500);
}
.product-card .footer {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--hairline);
  padding-top: var(--s-4);
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel);
}
.product-card .footer b { color: var(--ink); font-weight: 500; }

/* ===================== COMPARE ===================== */
.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6);
}
@media (max-width: 900px) { .compare { grid-template-columns: 1fr; } }
.compare-col {
  border-radius: var(--r-lg);
  padding: var(--s-8);
  min-height: 420px;
}
.compare-col.neg {
  background: var(--snow);
  border: 1px solid var(--hairline);
  color: var(--steel);
}
.compare-col.pos {
  background: var(--cyan-500);
  color: var(--ink);
  box-shadow: var(--glow-lg);
}
.compare-col h4 {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
  color: inherit;
}
.compare-col.neg h4 { color: var(--ink); }
.compare-col .tag {
  text-align: center;
  color: inherit;
  opacity: 0.75;
  font-size: 14px;
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--hairline);
}
.compare-col.pos .tag { border-color: rgba(0,0,0,0.20); opacity: 0.85; }
.compare-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-4); }
.compare-col li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: 14px; }
.compare-col li svg { flex: none; width: 18px; height: 18px; margin-top: 2px; }
.compare-col.neg li svg { color: var(--stone); }

/* ===================== STAT TILE ===================== */
.stat-tile {
  background: var(--snow);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-6);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
}
.stat-tile .k { display: flex; align-items: center; gap: var(--s-3); font-size: 14px; color: var(--ink); }
.stat-tile .k svg { color: var(--cyan-text); width: 18px; height: 18px; }
.stat-tile .v { font-family: var(--font-mono); font-weight: 500; color: var(--ink); font-size: 20px; }

/* ===================== AUDIENCE TILE ===================== */
.aud-tile {
  aspect-ratio: 1.05/1;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  background: var(--snow);
  padding: var(--s-6);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  text-align: center;
  color: var(--steel);
}
.aud-tile.active {
  border-color: var(--cyan-500);
  background:
    radial-gradient(ellipse at center, var(--cyan-glow-16), transparent 65%),
    var(--paper);
  box-shadow: var(--glow-sm);
}
.aud-tile .glyph {
  width: 72px; height: 72px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background:
    radial-gradient(circle at 30% 30%, rgba(128,225,255,0.65), rgba(0,204,255,0.08) 60%, transparent 80%);
}
.aud-tile.muted .glyph {
  background: linear-gradient(135deg, var(--mist), var(--snow));
}
.aud-tile .glyph svg { width: 36px; height: 36px; color: var(--ink); }
.aud-tile.muted .glyph svg { color: var(--steel); }
.aud-tile .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.aud-tile .copy {
  font-size: 13px; color: var(--steel); max-width: 26ch;
}

/* ===================== PILLAR TIMELINE ===================== */
.pillar-track {
  position: relative;
  border-left: 1px solid var(--hairline);
  padding-left: var(--s-8);
}
.pillar-track::before {
  content: "";
  position: absolute;
  left: -1px; top: 0;
  width: 1px; height: 40%;
  background: var(--cyan-500);
  box-shadow: 0 0 12px var(--cyan-glow-48);
}
.pillar-block + .pillar-block { margin-top: var(--s-16); }
.pillar-block .num { display: inline-flex; align-items: center; gap: var(--s-2); }
.pillar-block h3 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
  font-weight: 500;
  margin: var(--s-3) 0 var(--s-3);
  color: var(--ink);
}
.pillar-block p {
  color: var(--steel);
  font-size: 15px;
  max-width: 58ch;
}

/* ===================== LOGO STRIP (static) ===================== */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: var(--s-8);
  padding: var(--s-8);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--snow);
}
.logo-strip .logo {
  height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--steel);
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 14px;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .logo-strip { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}

/* ===================== MARQUEE LOGO STRIP ===================== */
.marquee {
  position: relative;
  overflow: hidden;
  padding: var(--s-8) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--paper), transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee-scroll 60s linear infinite;
  will-change: transform;
  /* Note: no `gap` here. Spacing lives as margin-right on each .logo-item so
     the LAST item carries trailing space too — that's what makes
     transform: translateX(-50%) hit the duplicate set's first item exactly,
     instead of leaving a half-gap mismatch that reads as the strip "ending". */
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .logo-item {
  flex: none;
  height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin-right: var(--s-20);
  opacity: 1;
  filter: none;
}
.marquee-track .logo-item img {
  max-height: 56px;
  max-width: 220px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  /* Force every logo to a uniform dark silhouette. brightness(0) collapses
     all RGB to black while preserving the alpha channel, so white-on-transparent
     logos (which would be invisible on the white background) become visible,
     and full-color logos (Gold Revolution, Marc Friedrich, etc.) lose their
     individual hues for a clean, uniform client strip. */
  filter: brightness(0);
  opacity: 0.62;
  transition: opacity .2s ease;
}
.marquee-track .logo-item:hover img { opacity: 1; }
.marquee-track .logo-item.wordmark,
.marquee-track .logo-item--wordmark {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.62;
  transition: opacity .2s ease;
  white-space: nowrap;
  padding: 0 var(--s-3);
}
.marquee-track .logo-item--wordmark:hover { opacity: 1; }
@keyframes marquee-scroll {
  /* Track holds 3 identical sets — translate exactly one set width so the
     snap-back lands the second set in the first set's start position. */
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-33.3333%, 0, 0); }
}

/* ===================== ROTATOR (two-line, display-sized) ===================== */
.rotator-display {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.28em;
  row-gap: 0;
  font-family: var(--font-sans);
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: var(--s-6) 0 0;
  max-width: 16ch;
}

/* Structured single-statement hero headline */
.cover-headline {
  font-family: var(--font-sans);
  font-size: clamp(34px, 5.2vw, 68px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.028em;
  line-height: 1.08;
  margin: var(--s-8) 0 0;
  max-width: none;
  hyphens: manual;
  -webkit-hyphens: manual;
  word-break: keep-all;
  overflow-wrap: normal;
}
.cover-headline em {
  font-style: normal;
  color: var(--cyan-500);
}
/* Keep the manual line-breaks on every screen size so the headline always reads as a block. */
.cover-headline br { display: inline; }
.cover-subhead {
  margin-top: var(--s-6);
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--steel);
  max-width: 44ch;
  line-height: 1.55;
}
.rotator {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1.05em;
  vertical-align: baseline;
}
.rotator ul {
  display: flex;
  flex-direction: column;
  margin: 0; padding: 0;
  list-style: none;
  animation: rotator-cycle 16s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}
.rotator li {
  height: 1.05em;
  line-height: 1.05em;
  color: var(--cyan-text);
  white-space: nowrap;
  letter-spacing: -0.03em;
}
@keyframes rotator-cycle {
  0%,   18%  { transform: translateY(0); }
  20%,  38%  { transform: translateY(-1.05em); }
  40%,  58%  { transform: translateY(-2.10em); }
  60%,  78%  { transform: translateY(-3.15em); }
  80%,  98%  { transform: translateY(-4.20em); }
  100%       { transform: translateY(-5.25em); }
}

/* ===================== A-PLAYER STATEMENT + BIG NUMBERS ===================== */
.brand-statement {
  text-align: center;
  padding: var(--s-24) var(--s-8) var(--s-8);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.brand-statement::before {
  content: "";
  display: block;
  width: 64px; height: 76px;
  margin: 0 auto var(--s-10);
  background: url("assets/sb-logo-mark.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 40px var(--cyan-glow-48));
}
.brand-statement h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--stone);
  max-width: 42ch;
  margin: 0 auto;
}
/* Scroll-linked reveal: per-word gradient driven by the --reveal custom
   property (set by JS on every scroll frame). 0% = fully gray, 100% = fully ink.
   NO CSS transition: any smoothing would let word N keep fading while word N+1
   has already started, breaking the strict word-by-word rule. */
.reveal-flow {
  /* Acts as a normal paragraph until JS injects word spans. */
}
.reveal-flow .word {
  --reveal: 0%;
  display: inline-block;
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 50%, var(--stone) 50%, var(--stone) 100%);
  background-size: 220% 100%;
  background-position: calc(100% - var(--reveal)) 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-flow .word { --reveal: 100%; }
}

/* ===================== PLATFORM STRIP ===================== */
.platform-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: var(--s-10) 0 0;
  flex-wrap: wrap;
}
.platform-strip .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-right: var(--s-4);
}
.platform-strip svg {
  height: 24px;
  width: auto;
  color: var(--steel);
  opacity: 0.55;
  transition: opacity .2s, color .2s;
}
.platform-strip svg:hover { opacity: 1; color: var(--ink); }

.big-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-16);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--s-10) 0;
}
@media (max-width: 800px) { .big-numbers { grid-template-columns: 1fr; gap: var(--s-6); } }
.big-numbers .item {
  display: flex; flex-direction: column; gap: var(--s-2);
  align-items: center;
  text-align: center;
  padding: 0 var(--s-4);
  border-right: 1px solid var(--hairline);
}
.big-numbers .item:last-child { border-right: none; }
@media (max-width: 800px) {
  .big-numbers .item { border-right: none; border-bottom: 1px solid var(--hairline); padding-bottom: var(--s-6); }
  .big-numbers .item:last-child { border-bottom: none; }
}
.big-numbers .num {
  font-family: var(--font-sans);
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  background: linear-gradient(135deg, var(--ink) 0%, var(--cyan-700) 80%, var(--cyan-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.big-numbers .label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: var(--s-2);
}

/* ===================== NEUE ÄRA / TRUST RECESSION ===================== */
/* Section 03 is now a light section like the others; only its header is dark. */
.thesis-section {
  position: relative;
}

.thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 1000px) { .thesis-grid { grid-template-columns: 1fr; } }
.thesis-card {
  padding: var(--s-8);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.thesis-card.featured {
  background:
    radial-gradient(ellipse at top, rgba(0,204,255,0.10), transparent 60%),
    var(--paper);
  border-color: var(--cyan-500);
  box-shadow: var(--glow-sm);
}
.thesis-card .step {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.thesis-card h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.thesis-card p { color: var(--steel); font-size: 14.5px; line-height: 1.55; }

/* Subtle hover lift on the three thesis cards. */
.thesis-grid .thesis-card {
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              border-color 0.3s ease,
              box-shadow 0.35s ease;
}
.thesis-grid .thesis-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 204, 255, 0.55);
  box-shadow: 0 16px 40px -12px rgba(0, 204, 255, 0.22);
}

/* ---- Track-record-styled "moments" inside Section 03 -----------------------
   The section reads as a series of cinematic centered reveals, matching the
   brand-statement typography (clamp 26–40px headlines, centered, reveal-flow
   scroll animation). Each .thesis-block--moment centers its title + body. */

/* Section opener: big centered statement with per-word scroll reveal.
   Sits below the dark blue header box, replaces the old smaller intro. */
.thesis-opener {
  text-align: center;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--stone);
  max-width: 42ch;
  margin: 0 auto var(--s-20);
  text-wrap: balance;
}

/* Block in "moment" mode: centered layout, headline scaled to match the
   brand-statement above (clamp 26–40px) so the typography stays uniform. */
.thesis-block--moment { text-align: center; }
.thesis-block--moment .thesis-block-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  max-width: 32ch;
  margin: 0 auto var(--s-8);
  text-wrap: balance;
}
/* Three-paths block-title — sized as a section headline (smaller than the
   .big-numbers .num itself), but using the same navy-to-cyan gradient
   text-fill so it visually rhymes with our track-record numbers. */
.thesis-block--moment:has(.thesis-numbers) .thesis-block-title {
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 28ch;
  background: linear-gradient(135deg, var(--ink) 0%, var(--cyan-700) 80%, var(--cyan-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--ink);
}
.thesis-block--moment .thesis-block-body {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--steel);
  max-width: 62ch;
  margin: 0 auto var(--s-10);
}
.thesis-block--moment .thesis-block-body strong { color: var(--ink); font-weight: 500; }
.thesis-block--moment .thesis-grid { margin-top: var(--s-10); }
.thesis-block--moment .ki-stack-label { text-align: center; }
.thesis-block--moment .ki-stack { margin-top: var(--s-10); margin-bottom: var(--s-10); }
/* The reveal block contains the team-compare org chart — its inner cards
   stay left-aligned even though the block is centered. */
.thesis-block--moment .team-compare { text-align: left; }

/* Three-paths grid — mirrors the .big-numbers track-record treatment:
   hairlines top + bottom + between items, centered text, mono label,
   huge gradient headline. Scaled down a touch since the text is prose. */
.thesis-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-12);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--s-10) 0;
}
@media (max-width: 800px) { .thesis-numbers { grid-template-columns: 1fr; gap: var(--s-6); } }
.thesis-numbers .item {
  display: flex; flex-direction: column; gap: var(--s-3);
  align-items: center;
  text-align: center;
  padding: 0 var(--s-4);
  border-right: 1px solid var(--hairline);
}
.thesis-numbers .item .visual {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  margin-bottom: var(--s-2);
  border-radius: var(--r-md);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 55%, var(--cyan-glow-32), transparent 65%),
    linear-gradient(180deg, var(--snow), var(--mist));
  border: 1px solid var(--hairline);
  display: block;
}
.thesis-numbers .item .visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.thesis-numbers .item:last-child { border-right: none; }
@media (max-width: 800px) {
  .thesis-numbers .item { border-right: none; border-bottom: 1px solid var(--hairline); padding-bottom: var(--s-6); }
  .thesis-numbers .item:last-child { border-bottom: none; }
}
.thesis-numbers .num {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  background: linear-gradient(135deg, var(--ink) 0%, var(--cyan-700) 80%, var(--cyan-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}
.thesis-numbers .label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

/* Sequential block structure inside thesis-section (light mode). */
.thesis-block {
  margin-top: var(--s-10);
  padding-top: var(--s-8);
  border-top: 1px solid var(--hairline);
}
.thesis-block:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
/* The previous .thesis-block already ends with a hairline (its inner
   .thesis-numbers has a border-bottom). The next block's own top hairline
   would stack into a doubled line — suppress it. */
.thesis-block:has(.thesis-numbers) + .thesis-block {
  border-top: 0;
}
.thesis-step {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-text);
  margin-bottom: var(--s-4);
}
.thesis-block-title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.2;
  color: var(--ink);
  max-width: 30ch;
  margin: 0 0 var(--s-5);
}
.thesis-block-body {
  color: var(--steel);
  font-size: 16px;
  line-height: 1.65;
  max-width: 68ch;
  margin: 0 0 var(--s-6);
}
.thesis-block-body strong { color: var(--ink); font-weight: 500; }
.thesis-block .thesis-grid {
  margin-top: var(--s-6);
}
/* Centerpiece (org chart) block: widen title + tighten chart spacing. */
.thesis-block--centerpiece .thesis-block-title { max-width: 36ch; }
.thesis-block--centerpiece .team-compare { margin-top: var(--s-4); }
/* "Continued" — block reads as a continuation of the one above; suppress the hairline. */
.thesis-block--continued {
  border-top: 0;
  padding-top: 0;
  margin-top: var(--s-8);
}
/* CTA block: allow the headline to use the full section width and live on one line. */
.thesis-block--cta .thesis-block-title { max-width: none; }
@media (min-width: 900px) {
  .thesis-block--cta .thesis-block-title { white-space: nowrap; }
}
.thesis-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 0;
}

/* ===================== TEAM-COLLAPSE COMPARE ===================== */
.team-compare {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-6);
  align-items: stretch;
}
@media (max-width: 1000px) { .team-compare { grid-template-columns: 1fr; } }

.team-col {
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex; flex-direction: column; gap: var(--s-6);
}
.team-col.old {
  background: var(--snow);
  border: 1px solid var(--hairline);
}
.team-col.new {
  background:
    radial-gradient(ellipse at top, rgba(0,204,255,0.08), transparent 60%),
    var(--paper);
  border: 1px solid var(--cyan-500);
  box-shadow: var(--glow-sm);
}
.team-col h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
}
/* Blueprint "spec" badge — '[ 23 NODES ]' / '[ 3 NODES ]' next to each col title */
.team-col h3[data-spec]::after {
  content: attr(data-spec);
  display: inline-block;
  margin-left: var(--s-3);
  padding: 2px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--cyan-text);
  background: var(--cyan-glow-08);
  border: 1px solid var(--cyan-glow-32);
  border-radius: var(--r-sm);
  vertical-align: middle;
}

/* Blueprint corner brackets — diagonal pair (top-left + bottom-right). */
.team-col { position: relative; }
.team-col::before,
.team-col::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--cyan-400);
  pointer-events: none;
  opacity: 0.55;
}
.team-col::before {
  top: -1px; left: -1px;
  border-right: 0; border-bottom: 0;
  border-top-left-radius: var(--r-md);
}
.team-col::after {
  bottom: -1px; right: -1px;
  border-left: 0; border-top: 0;
  border-bottom-right-radius: var(--r-md);
}

/* Org-chart connector lines: animate draw-on when section enters viewport. */
.team-compare .org-row + .org-row::before {
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1);
}
.thesis-section.is-visible .team-compare .org-row + .org-row::before {
  transform: scaleY(1);
}
.team-compare .org-row:nth-child(2) + .org-row::before { transition-delay: 0.05s; }
.team-compare .org-row:nth-child(3) + .org-row::before { transition-delay: 0.20s; }
.team-compare .org-row:nth-child(4) + .org-row::before { transition-delay: 0.35s; }

/* Nodes: subtle scale-in once section is in view. */
.team-compare .org-node {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}
.thesis-section.is-visible .team-compare .org-node { opacity: 1; transform: scale(1); }
.thesis-section.is-visible .team-compare .org-row:nth-child(1) .org-node { transition-delay: 0.00s; }
.thesis-section.is-visible .team-compare .org-row:nth-child(2) .org-node { transition-delay: 0.15s; }
.thesis-section.is-visible .team-compare .org-row:nth-child(3) .org-node { transition-delay: 0.30s; }
.thesis-section.is-visible .team-compare .org-row:nth-child(4) .org-node { transition-delay: 0.45s; }

/* '+ 4 weitere' marked as overflow / failure flag — diagonal red dotted overlay. */
.org-node--overflow {
  color: rgba(220, 60, 60, 0.95) !important;
  border-color: rgba(220, 60, 60, 0.35) !important;
  background:
    repeating-linear-gradient(-45deg,
      rgba(220, 60, 60, 0.10) 0 4px,
      rgba(220, 60, 60, 0) 4px 9px),
    var(--mist) !important;
}

/* AI nodes: slow continuous halo pulse — communicates 'live system'. */
@keyframes ai-halo {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 204, 255, 0); }
  50%      { box-shadow: 0 0 0 6px rgba(0, 204, 255, 0.14); }
}
.team-col.new .org-node.ai { animation: ai-halo 3.4s ease-in-out infinite; }
.thesis-section.is-paused .team-col.new .org-node.ai { animation-play-state: paused; }

/* Respect prefers-reduced-motion for the org chart too. */
@media (prefers-reduced-motion: reduce) {
  .team-compare .org-row + .org-row::before,
  .team-compare .org-node { transform: none !important; opacity: 1 !important; transition: none !important; }
  .team-col.new .org-node.ai { animation: none !important; }
}
.team-col .summary {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.team-col.old .summary { color: var(--slate); }

.org-chart {
  display: flex; flex-direction: column;
  gap: var(--s-3);
  align-items: center;
  padding: var(--s-3) 0;
  position: relative;
}
.org-row {
  display: flex; gap: var(--s-2); flex-wrap: wrap;
  justify-content: center;
  position: relative;
  width: 100%;
}
.org-row + .org-row::before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--s-3));
  left: 50%;
  width: 1px;
  height: var(--s-3);
  background: var(--hairline);
}
.org-node {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-sm);
  background: var(--mist);
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--steel);
  border: 1px solid var(--hairline);
  white-space: nowrap;
}
.org-node svg {
  width: 12px; height: 12px;
  opacity: 0.65;
  flex: none;
}
.org-node.small {
  font-size: 10.5px;
  padding: 4px var(--s-2);
}
.org-node.small svg { width: 10px; height: 10px; }
.team-col.new .org-node {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--hairline);
}
.team-col.new .org-node.featured {
  background: var(--cyan-500);
  color: var(--ink);
  border-color: var(--cyan-500);
  font-weight: 500;
  font-size: 14px;
  padding: var(--s-3) var(--s-5);
  box-shadow: 0 6px 20px -4px var(--cyan-glow-48);
}
.team-col.new .org-node.featured svg { opacity: 0.85; color: var(--ink); width: 16px; height: 16px; }

/* AI sub-system row in new operation */
.team-col.new .org-row.ai-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
  width: 100%;
}
@media (max-width: 700px) {
  .team-col.new .org-row.ai-row { grid-template-columns: repeat(2, 1fr); }
}
.team-col.new .org-row.ai-row::before {
  height: var(--s-4);
  top: calc(-1 * var(--s-4));
}
.team-col.new .org-node.ai {
  background: var(--cyan-glow-08);
  border: 1px solid var(--cyan-glow-32);
  color: var(--cyan-text);
  font-size: 11px;
  padding: var(--s-3) var(--s-2);
  justify-content: center;
  white-space: normal;
  text-align: center;
  flex-direction: column;
  gap: 4px;
  min-height: 70px;
}
.team-col.new .org-node.ai svg { width: 22px; height: 22px; opacity: 0.9; color: var(--cyan-text); }

/* ===================== FULL-WIDTH DARK CTA BLOCK (shallow) ===================== */
.cta-block {
  position: relative;
  margin: var(--s-16) calc(-1 * var(--s-8));
  border-radius: 0;
  background:
    radial-gradient(ellipse at 25% 0%, rgba(0,204,255,0.18), transparent 55%),
    radial-gradient(ellipse at 75% 100%, rgba(0,204,255,0.10), transparent 60%),
    var(--ink);
  color: var(--paper);
  padding: clamp(28px, 4vw, 44px) clamp(32px, 6vw, 96px);
  overflow: hidden;
}
.cta-block-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 900px) {
  .cta-block-inner { grid-template-columns: 1fr; gap: var(--s-5); }
}
.cta-block .eyebrow { color: var(--cyan-300); display: inline-flex; }
.cta-block h3 {
  color: var(--paper);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  max-width: 36ch;
  margin-top: var(--s-2);
}
.cta-block h3 em { font-style: normal; color: var(--cyan-300); }
.cta-block p { color: var(--stone); margin-top: var(--s-2); max-width: 56ch; font-size: 14px; }
.cta-block .cta-button-area {
  display: flex; flex-direction: column; gap: var(--s-2);
  align-items: flex-start;
}
@media (max-width: 900px) { .cta-block .cta-button-area { align-items: stretch; } }
.cta-block .small-note {
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===================== YOUTUBE FACADE CARDS (clean grid) ===================== */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 1000px) { .yt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .yt-grid { grid-template-columns: 1fr; } }

.yt-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .25s, transform .2s;
}
.yt-card:hover {
  border-color: var(--cyan-500);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}
.yt-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
}
.yt-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.yt-thumb iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.yt-thumb .yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: var(--cyan-500);
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  transition: transform .2s ease, background .2s ease;
}
.yt-thumb .yt-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--cyan-400);
}
.yt-thumb .yt-play svg { width: 22px; height: 22px; margin-left: 3px; }
.yt-thumb .yt-tag {
  position: absolute;
  bottom: var(--s-3);
  left: var(--s-3);
  padding: 4px var(--s-2);
  background: rgba(0,0,0,0.72);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-xs);
  backdrop-filter: blur(4px);
}
.yt-meta {
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: 4px;
}
.yt-client {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-text);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.yt-title {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 500;
}

/* ===================== FEATURED PLAYER + SHORTS RAIL ===================== */
.yt-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: var(--s-8);
  align-items: start;
}
@media (max-width: 1080px) {
  .yt-stage { grid-template-columns: 1fr; gap: var(--s-10); }
}

/* ---- LEFT: Featured 16:9 long-form ---- */
.yt-feature { display: flex; flex-direction: column; gap: var(--s-5); min-width: 0; }

.yt-feature-card {
  display: block;
  background: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, box-shadow .25s ease, transform .2s ease;
  box-shadow: var(--el-1);
}
.yt-feature-card .yt-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 0;
}
.yt-feature-card:hover {
  border-color: var(--cyan-500);
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}
.yt-feature-card:hover .yt-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--cyan-400);
}

.yt-feature-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--s-6) var(--s-6) var(--s-5);
  background: linear-gradient(180deg, transparent, rgba(10,14,20,0.86) 60%, rgba(10,14,20,0.96));
  color: var(--paper);
  display: flex; flex-direction: column; gap: 4px;
  pointer-events: none;
}
.yt-feature-caption .yt-client {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.yt-feature-caption .yt-title {
  font-size: 19px;
  color: var(--paper);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 500;
  max-width: 38ch;
}
@media (max-width: 640px) {
  .yt-feature-caption { padding: var(--s-4) var(--s-4) var(--s-3); }
  .yt-feature-caption .yt-title { font-size: 15px; }
}

/* ---- Featured TABS (under the player) ---- */
.yt-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
@media (max-width: 640px) {
  .yt-tabs { grid-template-columns: 1fr; }
}

.yt-tab {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-2);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .22s ease, transform .15s ease, background .18s ease;
}
.yt-tab:hover {
  border-color: var(--cyan-500);
  box-shadow: var(--glow-sm);
  transform: translateY(-1px);
}
.yt-tab.is-active {
  border-color: var(--cyan-500);
  box-shadow: var(--glow-sm);
  background: var(--cyan-glow-08);
}
.yt-tab-thumb {
  flex: none;
  width: 88px;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--ink);
  position: relative;
}
.yt-tab-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.yt-tab.is-active .yt-tab-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cyan-glow-16), transparent);
  pointer-events: none;
}
.yt-tab-meta {
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.yt-tab-client {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--cyan-text);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.yt-tab-title {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- RIGHT: Shorts column ---- */
.yt-shorts {
  display: flex; flex-direction: column; gap: var(--s-4);
  min-width: 0;
}
.yt-shorts-label {
  display: inline-flex; align-items: center; gap: var(--s-2);
  align-self: flex-start;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-pill);
  background: var(--cyan-glow-08);
  border: 1px solid var(--cyan-glow-32);
  color: var(--cyan-text);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.yt-shorts-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 4px var(--cyan-glow-16);
  animation: yt-shorts-pulse 1.8s ease-in-out infinite;
}
@keyframes yt-shorts-pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--cyan-glow-16); }
  50%      { box-shadow: 0 0 0 8px var(--cyan-glow-08); }
}

.yt-short-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  align-self: center;
  width: 100%;
  max-width: 320px;
}
.yt-short-frame {
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  background: var(--ink);
  border: 1px solid var(--hairline);
  box-shadow:
    var(--el-1),
    inset 0 0 0 6px rgba(255,255,255,0.02),
    inset 0 0 0 7px rgba(10,14,20,0.6);
  overflow: hidden;
  position: relative;
  transition: border-color .2s ease, box-shadow .25s ease, transform .2s ease;
}
.yt-short-card:hover .yt-short-frame {
  border-color: var(--cyan-500);
  box-shadow:
    var(--glow-md),
    inset 0 0 0 6px rgba(255,255,255,0.02),
    inset 0 0 0 7px rgba(10,14,20,0.6);
  transform: translateY(-2px);
}
.yt-short-card:hover .yt-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--cyan-400);
}
.yt-short-frame > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.yt-short-frame > iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.yt-short-badge {
  position: absolute;
  top: var(--s-3); left: var(--s-3);
  z-index: 2;
  padding: 4px 8px;
  background: rgba(0,0,0,0.72);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-xs);
  backdrop-filter: blur(4px);
}
.yt-short-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--s-5) var(--s-4) var(--s-4);
  background: linear-gradient(180deg, transparent, rgba(10,14,20,0.85) 60%, rgba(10,14,20,0.96));
  color: var(--paper);
  display: flex; flex-direction: column; gap: 2px;
  pointer-events: none;
}
.yt-short-caption .yt-client {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--cyan-300);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.yt-short-caption .yt-title {
  font-size: 14px;
  color: var(--paper);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 500;
}

/* Shorts thumb-tab strip */
.yt-short-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}
.yt-short-tab {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  padding: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .22s ease, transform .15s ease, opacity .18s ease;
  opacity: 0.72;
}
.yt-short-tab img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.yt-short-tab:hover {
  opacity: 1;
  border-color: var(--cyan-500);
  transform: translateY(-1px);
}
.yt-short-tab.is-active {
  opacity: 1;
  border-color: var(--cyan-500);
  box-shadow: var(--glow-sm);
}
.yt-short-tab.is-active::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cyan-glow-16), transparent);
  pointer-events: none;
}

/* Channel link under the stage */
.yt-channel-link {
  margin-top: var(--s-8);
  text-align: center;
  color: var(--steel);
  font-size: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.yt-channel-link a { color: var(--cyan-text); }

/* Mobile: Shorts column centers and the rail wraps comfortably */
@media (max-width: 1080px) {
  .yt-shorts { align-items: center; }
  .yt-short-card { max-width: 280px; }
  .yt-short-tabs { max-width: 280px; }
}

/* Legacy case-card kept (unused now, but harmless) ===================== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 1000px) { .case-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.case-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
  min-height: 640px;
  display: flex; flex-direction: column;
  padding: var(--s-5);
  gap: var(--s-3);
}
.case-card .case-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 25%;
  z-index: -3;
}
.case-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,14,20,0.20) 0%, rgba(10,14,20,0.65) 38%, rgba(10,14,20,0.96) 75%, var(--ink) 100%);
  z-index: -2;
}
.case-card::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='138' height='80' viewBox='0 0 138 80'><g fill='none' stroke='%2300CCFF' stroke-width='0.9' stroke-linejoin='round' opacity='0.45'><polygon points='92,40 69,80 23,80 0,40 23,0 69,0'/><polygon points='161,0 138,40 92,40 69,0 92,-40 138,-40'/><polygon points='161,80 138,120 92,120 69,80 92,40 138,40'/></g></svg>");
  background-size: 138px 80px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.30;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.case-card .case-mark {
  align-self: flex-end;
  width: 32px; height: 32px;
}
.case-card .case-mark img { width: 100%; height: 100%; display: block; }

.case-card .case-quote {
  font-size: 13.5px;
  color: rgba(255,255,255,0.88);
  text-align: center;
  max-width: 24ch;
  margin: var(--s-16) auto var(--s-2);
  line-height: 1.5;
  font-style: italic;
}
.case-card .case-quote::before { content: "“"; color: var(--cyan-300); }
.case-card .case-quote::after  { content: "”"; color: var(--cyan-300); }

.case-card .case-name {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--paper);
  margin-top: var(--s-2);
}
.case-card .case-title {
  text-align: center;
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.case-card .case-divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: var(--s-3) 0 var(--s-2);
}

.case-card .case-play {
  display: grid; place-items: center;
  width: 100%;
  height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-sm);
  color: var(--paper);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.case-card .case-play:hover { background: rgba(255,255,255,0.10); border-color: var(--cyan-500); }
.case-card .case-play svg { width: 18px; height: 18px; margin-left: 2px; }

.case-card .case-stats {
  display: flex; flex-direction: column;
  margin-top: var(--s-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.case-card .case-stats > div {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--s-3) var(--s-4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.case-card .case-stats > div:last-child { border-bottom: 0; }
.case-card .case-stats .label {
  display: flex; align-items: center; gap: var(--s-2);
}
.case-card .case-stats .label svg { width: 14px; height: 14px; color: var(--cyan-300); }
.case-card .case-stats .value {
  font-family: var(--font-mono);
  color: var(--paper);
  font-weight: 500;
}

.case-card .case-cta {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--s-3) var(--s-5);
  background: var(--cyan-500);
  color: var(--ink);
  border-radius: var(--r-sm);
  font-weight: 500;
  font-size: 14px;
}
.case-card .case-cta:hover { background: var(--cyan-400); }
.case-card .case-cta .arrow {
  width: 28px; height: 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
}
.case-card .case-cta .arrow svg { width: 14px; height: 14px; }

/* ===================== DISCIPLINE MARQUEE ===================== */
.discipline-marquee {
  position: relative;
  overflow: hidden;
  padding: var(--s-8) 0;
}
.discipline-marquee::before,
.discipline-marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.discipline-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}
.discipline-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--paper), transparent);
}
.discipline-track {
  display: flex;
  gap: var(--s-8);
  width: max-content;
  align-items: stretch;
  animation: discipline-scroll 48s linear infinite;
}
.discipline-marquee:hover .discipline-track { animation-play-state: paused; }
@keyframes discipline-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.discipline-tile {
  flex: none;
  width: 220px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s-4);
  padding: var(--s-6) var(--s-5);
  background: var(--snow);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  text-align: center;
}
.discipline-tile .glyph {
  width: 60px; height: 60px;
  display: grid; place-items: center;
}
.discipline-tile .glyph svg { width: 50px; height: 50px; }
.discipline-tile .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Disciplines belt section — sits at the top of the page right after the
   brand-statement, no numbered chapter header, just a centered title above
   the full-bleed scrolling belt. */
.disciplines-belt-section {
  padding: 0;
  margin-top: 0 !important;
}
/* Symmetric tight spacing on both sides of the disciplines belt. */
.page > section.disciplines-belt-section + section { margin-top: var(--s-8); }
.disciplines-belt-section .disciplines-belt-title {
  text-align: center;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--s-2);
}
.disciplines-belt-section .disciplines-belt-sub {
  text-align: center;
  color: var(--steel);
  font-size: 13px;
  margin: 0 0 var(--s-4);
}

/* "Belt" variant — full-width strip with small tiles, mirroring the logo marquee. */
.discipline-marquee--belt {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  padding: var(--s-6) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}
.discipline-marquee--belt::before,
.discipline-marquee--belt::after { width: 120px; }
.discipline-marquee--belt .discipline-track { gap: 0; }
.discipline-marquee--belt .discipline-tile {
  width: auto;
  min-width: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-right: var(--s-12);
  flex-direction: row;
  gap: var(--s-3);
  text-align: left;
}
.discipline-marquee--belt .discipline-tile .glyph {
  width: 32px; height: 32px;
}
.discipline-marquee--belt .discipline-tile .glyph svg { width: 28px; height: 28px; }
.discipline-marquee--belt .discipline-tile .label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--steel);
  white-space: nowrap;
}
/* In the belt context, the manual <br> in labels would force vertical wrap — collapse it. */
.discipline-marquee--belt .discipline-tile .label br { display: none; }

.team-col .footnote {
  display: flex; flex-direction: column; gap: var(--s-2);
  border-top: 1px solid var(--hairline);
  padding-top: var(--s-4);
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12px;
}
.team-col .footnote li {
  display: flex; justify-content: space-between;
  color: var(--steel);
}
.team-col .footnote li b { color: var(--ink); font-weight: 500; }
.team-col.new .footnote li b { color: var(--cyan-text); }

/* ===================== VIDEO TESTIMONIAL GRID ===================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 1000px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .video-grid { grid-template-columns: 1fr; } }

.video-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .25s, transform .2s;
}
.video-card:hover {
  border-color: var(--cyan-500);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background:
    radial-gradient(ellipse at 50% 50%, var(--cyan-glow-32), transparent 70%),
    linear-gradient(135deg, var(--ink), var(--slate));
  display: grid; place-items: center;
  overflow: hidden;
}
.video-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.75;
}
.video-thumb .play {
  position: relative;
  z-index: 2;
  width: 60px; height: 60px;
  background: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 18px 36px rgba(0,0,0,0.35);
}
.video-thumb .play svg { width: 22px; height: 22px; color: var(--ink); margin-left: 3px; }
.video-thumb .duration {
  position: absolute;
  bottom: var(--s-3);
  right: var(--s-3);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 2px var(--s-2);
  background: rgba(0,0,0,0.7);
  color: var(--paper);
  border-radius: var(--r-xs);
  z-index: 2;
}
.video-meta {
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.video-meta .client {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-text);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.video-meta .title {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* ===================== AVATAR IMAGE OVERRIDE ===================== */
.testi-head .avatar.photo {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* ===================== SIGNATURE CASE SECTION (light) ===================== */
.signature-section {
  position: relative;
  background: var(--paper);
  color: var(--slate);
  padding: var(--s-8) 0 var(--s-12);
}

/* Signature case layout */
.signature-case {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: var(--s-12);
  align-items: start;
  padding: var(--s-10) 0;
  border-bottom: 1px solid var(--hairline);
}
.signature-case:last-of-type { border-bottom: 0; }
.signature-case-reverse .case-media   { order: 2; }
.signature-case-reverse .case-content { order: 1; }
@media (max-width: 1000px) {
  .signature-case { grid-template-columns: 1fr; gap: var(--s-8); }
  .signature-case-reverse .case-media   { order: 1; }
  .signature-case-reverse .case-content { order: 2; }
}

/* Case media (left column) */
.case-media { display: flex; flex-direction: column; gap: var(--s-6); }
.signature-video {
  display: block;
  background: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, box-shadow .25s ease, transform .2s ease;
  box-shadow: var(--el-1);
}
.signature-video .yt-thumb { aspect-ratio: 16 / 9; background: var(--ink); }
.signature-video:hover {
  border-color: var(--cyan-500);
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}
.signature-video:hover .yt-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--cyan-400);
}

/* Small "Auf YouTube ansehen" link under each video card */
.case-watch-link {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  transition: color .2s ease;
}
.case-watch-link:hover { color: var(--cyan-text); }
.case-watch-link svg { width: 12px; height: 12px; }

.case-quote {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--slate);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 46ch;
}
.case-attribution {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: var(--s-3);
  border-top: 1px solid var(--hairline);
}
.case-name {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.14em;
  font-weight: 500;
}
.case-role {
  font-size: 13px;
  color: var(--steel);
}

/* Case content (right column) */
.case-content { display: flex; flex-direction: column; gap: var(--s-12); }
.case-title {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  max-width: 30ch;
}
.case-title-tag {
  color: var(--steel);
  font-weight: 400;
  white-space: nowrap;
}
.case-block { display: flex; flex-direction: column; gap: var(--s-5); }
.case-block-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--steel);
  margin: 0 0 var(--s-1) 0;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

/* Bullets with checked-circle icons */
.case-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: var(--s-3);
}
.case-bullets li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--slate);
}
.case-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cyan-glow-08);
  border: 1px solid var(--cyan-glow-32);
}
.case-bullets li::after {
  content: "";
  position: absolute;
  left: 5px; top: 8px;
  width: 8px; height: 4px;
  border-left: 1.6px solid var(--cyan-text);
  border-bottom: 1.6px solid var(--cyan-text);
  transform: rotate(-45deg);
}

/* Stats grid */
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
@media (max-width: 560px) { .case-stats { grid-template-columns: 1fr; } }
.case-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: var(--s-4) var(--s-5);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  min-height: 92px;
  justify-content: center;
}
.case-stat-num {
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 500;
}
.case-stat-label {
  font-size: 12.5px;
  color: var(--steel);
  letter-spacing: 0.02em;
}

/* Cyan accent highlight tiles */
.case-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
@media (max-width: 560px) { .case-highlights { grid-template-columns: 1fr; } }
.case-highlight {
  display: flex; gap: var(--s-3);
  align-items: flex-start;
  padding: var(--s-3) var(--s-4);
  background: var(--cyan-glow-08);
  border: 1px solid var(--cyan-glow-32);
  border-radius: var(--r-md);
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink);
}
.case-hl-icon {
  flex: none;
  width: 20px; height: 20px;
  color: var(--cyan-text);
  display: grid; place-items: center;
}
.case-hl-icon svg { width: 16px; height: 16px; }

/* === Shorts library — horizontal marquee === */
.shorts-library {
  padding-top: var(--s-10);
  margin-top: var(--s-8);
  border-top: 1px solid var(--hairline);
}
.shorts-library-header { margin-bottom: var(--s-6); }

.shorts-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: var(--s-3) 0;
}
.shorts-marquee::before,
.shorts-marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.shorts-marquee::before { left: 0;  background: linear-gradient(90deg,  var(--paper), transparent); }
.shorts-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }
.shorts-track {
  display: flex;
  gap: var(--s-4);
  width: max-content;
  align-items: stretch;
  animation: shorts-scroll 70s linear infinite;
}
.shorts-marquee:hover .shorts-track { animation-play-state: paused; }
@keyframes shorts-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.shorts-tile {
  flex: none;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  width: 150px;
}
.shorts-tile .yt-short-frame {
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  background: var(--ink);
  border: 1px solid var(--hairline);
  overflow: hidden;
  position: relative;
  transition: border-color .2s ease, box-shadow .25s ease, transform .2s ease;
  box-shadow: var(--el-1);
}
.shorts-tile:hover .yt-short-frame {
  border-color: var(--cyan-500);
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}
.shorts-tile:hover .yt-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--cyan-400);
}
.shorts-tile .yt-play {
  width: 44px; height: 44px;
}
.shorts-tile .yt-short-badge {
  font-size: 9px;
  padding: 3px 6px;
}
.shorts-tile .yt-short-caption {
  padding: var(--s-3) var(--s-3) var(--s-3);
}
.shorts-tile .yt-short-caption .yt-client {
  font-size: 9.5px;
  letter-spacing: 0.10em;
}
.shorts-tile .yt-short-caption .yt-title {
  font-size: 11.5px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.signature-section .yt-channel-link {
  margin-top: var(--s-8);
}

/* "Weitere Stimme anzeigen" expand button + collapsed extra-cases container */
.more-cases {
  display: flex;
  justify-content: center;
  margin: var(--s-12) 0 0;
}
.more-cases-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-6);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.25s ease;
}
.more-cases-toggle:hover {
  border-color: var(--cyan-500);
  color: var(--cyan-text);
  box-shadow: var(--glow-sm);
}
.more-cases-toggle .arrow {
  display: inline-flex;
  width: 14px; height: 14px;
  transition: transform 0.2s ease;
}
.more-cases-toggle[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}
/* Smooth expand/collapse — JS toggles data-collapsed and inlines max-height.
   Eased on a long Apple-style curve so the long article list reveals luxuriously
   instead of snapping. Opacity + translate are slightly delayed against the
   height so the content feels like it's "rising into place" once the slot
   is opening, not flashing at frame 0. */
.extra-cases {
  overflow: hidden;
  transform: translateY(-16px);
  transition: max-height 1.05s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s,
              transform 0.85s cubic-bezier(0.32, 0.72, 0, 1) 0.05s,
              margin-top 1.05s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: max-height, opacity, transform;
}
.extra-cases[data-collapsed="true"] {
  max-height: 0;
  opacity: 0;
  margin-top: 0 !important;
  transform: translateY(-16px);
  pointer-events: none;
}
.extra-cases[data-collapsed="false"] {
  margin-top: var(--s-16);
  opacity: 1;
  transform: translateY(0);
}

/* ===================== TRUST BAR (slim direct CTA strip) ===================== */
.trust-bar {
  padding: 0;
  margin: var(--s-3) auto 0;
}
.trust-bar-inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: var(--s-6) clamp(var(--s-6), 4vw, var(--s-10));
  background:
    radial-gradient(ellipse at 0% 50%, rgba(0,204,255,0.18), transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(0,204,255,0.10), transparent 55%),
    var(--ink);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--s-6);
}
@media (max-width: 760px) {
  .trust-bar-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: var(--s-4);
  }
}
.trust-bar-content {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.trust-bar-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-text);
  align-self: flex-start;
}
@media (max-width: 760px) {
  .trust-bar-eyebrow { align-self: center; }
}
.trust-bar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.20);
}
.trust-bar-headline {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.2;
  color: var(--paper);
  max-width: 36ch;
}
.btn.btn-trust {
  background: var(--cyan-500);
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 10px 30px -10px rgba(0, 168, 214, 0.55);
}
.btn.btn-trust .arrow {
  background: var(--ink);
  color: var(--paper);
}
.btn.btn-trust:hover {
  background: var(--cyan-400);
  transform: translateY(-1px);
}

/* ===================== SHOWCASE (merged shorts + quotes) ===================== */
.showcase {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  padding: var(--s-6) 0 var(--s-4);
}
/* Compact strip that hugs the trust-bar above it. */
.showcase--compact {
  gap: var(--s-3);
  padding: var(--s-4) 0 0;
}
.page > section + section.showcase--compact { margin-top: var(--s-3); }
.showcase .yt-channel-link {
  margin-top: var(--s-2);
}
/* Make the testimonial-text marquee scroll in the opposite direction from the
   shorts above it — creates an "interleaved" visual rhythm without needing
   separate section headers. */
.showcase .testi-track { animation-direction: reverse; }

/* ===================== TEXT TESTIMONIAL MARQUEE ===================== */
.testi-marquee {
  position: relative;
  overflow: hidden;
  padding: var(--s-4) 0;
}
.testi-marquee::before,
.testi-marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.testi-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}
.testi-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--paper), transparent);
}
.testi-track {
  display: flex;
  gap: var(--s-5);
  width: max-content;
  align-items: stretch;
  animation: testi-scroll 90s linear infinite;
  will-change: transform;
}
.testi-marquee:hover .testi-track { animation-play-state: paused; }
@keyframes testi-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-33.3333%, 0, 0); }
}
.testi-track .testi-card {
  flex: none;
  width: 380px;
}
/* Compact variant — smaller cards directly under the CTA. */
.testi-marquee--compact { padding: var(--s-2) 0; }
.testi-marquee--compact .testi-track { gap: var(--s-3); }
.testi-marquee--compact .testi-card {
  width: 280px;
  padding: var(--s-4);
  gap: var(--s-3);
  border-radius: var(--r-md);
}
.testi-marquee--compact .testi-head .avatar { width: 48px; height: 48px; }
.testi-marquee--compact .testi-head .who .name { font-size: 13px; }
.testi-marquee--compact .testi-head .who .meta { font-size: 10px; }
.testi-marquee--compact .testi-card .body { font-size: 12.5px; line-height: 1.5; }
.testi-marquee--compact .testi-card .metric {
  font-size: 9.5px;
  padding: 4px var(--s-2);
}
.testi-marquee--compact .testi-card .metric svg { width: 11px; height: 11px; }
.testi-marquee--compact .testi-card .platform { width: 16px; height: 16px; top: var(--s-4); right: var(--s-4); }
.testi-marquee--compact .testi-card .platform svg { width: 16px; height: 16px; }

/* ===================== VERIFIED TESTIMONIAL CARD (Notus-style) ===================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 1100px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-4);
  box-shadow: var(--el-1);
  transition: border-color .2s ease, box-shadow .25s ease, transform .2s ease;
}
.testi-card:hover {
  border-color: var(--cyan-500);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}
.testi-head {
  display: flex; align-items: center; gap: var(--s-3);
}
.testi-head .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-300), var(--cyan-500));
  border: 1px solid var(--hairline);
  flex: none;
}
.testi-head .who { display: flex; flex-direction: column; min-width: 0; }
.testi-head .who .name {
  display: flex; align-items: center; gap: var(--s-2);
  color: var(--ink); font-size: 15px; font-weight: 500;
}
.testi-head .who .name .verified {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  background: var(--cyan-500);
  border-radius: 50%;
  color: var(--paper);
  flex: none;
}
.testi-head .who .name .verified svg { width: 10px; height: 10px; }
.testi-head .who .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.04em;
}
.testi-card .body {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.55;
}
.testi-card .metric {
  display: inline-flex; align-items: center; gap: var(--s-2);
  align-self: flex-start;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-pill);
  background: var(--cyan-glow-08);
  border: 1px solid var(--cyan-glow-32);
  color: var(--cyan-text);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: auto;
}
.testi-card .metric svg { width: 13px; height: 13px; }
.testi-card .platform {
  position: absolute; top: var(--s-5); right: var(--s-5);
  width: 22px; height: 22px;
  color: var(--stone);
  opacity: 0.6;
}
.testi-card .platform svg { width: 22px; height: 22px; }

/* ===================== SERVICE PILLAR GRID ===================== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--s-3);
}
@media (max-width: 1100px) { .pillar-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }

.pillar-icon {
  aspect-ratio: 1/1;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--snow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s-3);
  padding: var(--s-3);
  transition: border-color .2s ease, background .2s ease;
}
.pillar-icon:hover { border-color: var(--cyan-500); background: var(--paper); }
.pillar-icon .glyph {
  width: 36px; height: 36px;
  color: var(--cyan-text);
  display: grid; place-items: center;
}
.pillar-icon .glyph svg { width: 28px; height: 28px; }
.pillar-icon .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  line-height: 1.25;
}

/* ===================== SERVICE TIER DEEP-DIVE ===================== */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.tier-grid.tier-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1000px) { .tier-grid, .tier-grid.tier-grid-2 { grid-template-columns: 1fr; } }
.tier-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex; flex-direction: column; gap: var(--s-4);
  box-shadow: var(--el-1);
  position: relative;
  overflow: hidden;
}
.tier-card.featured {
  background:
    radial-gradient(ellipse at 25% 0%, rgba(0,204,255,0.24), transparent 55%),
    radial-gradient(ellipse at 75% 100%, rgba(0,204,255,0.14), transparent 60%),
    var(--ink);
  border-color: var(--cyan-500);
  box-shadow: var(--glow-md);
  color: var(--paper);
}
.tier-card.featured h3 { color: var(--paper); }
.tier-card.featured p { color: var(--stone); }
.tier-card.featured .features { color: var(--paper); }
.tier-card.featured .features li { color: var(--paper); }
.tier-card.featured .features li::before { background: var(--cyan-300); }
.tier-card.featured .tier-cover {
  background:
    radial-gradient(ellipse at 40% 60%, rgba(0,204,255,0.32), transparent 60%),
    rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
  color: var(--cyan-300);
}
.tier-card.featured .tier-meta { color: var(--cyan-300); }

.tier-card .tier-cta {
  margin-top: auto;
  padding-top: var(--s-5);
}
.tier-card .tier-cta .btn {
  width: 100%;
  justify-content: space-between;
}
.tier-card.featured .tier-cta .btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.20);
  color: var(--paper);
}
.tier-card.featured .tier-cta .btn-ghost .arrow {
  background: rgba(255,255,255,0.10);
  color: var(--paper);
}
.tier-card.featured .tier-cta .btn-ghost:hover {
  border-color: var(--cyan-300);
  color: var(--cyan-300);
}
.tier-card .tier-cover {
  width: 100%; aspect-ratio: 16/9;
  border-radius: var(--r-md);
  background:
    radial-gradient(ellipse at 40% 60%, var(--cyan-glow-32), transparent 60%),
    linear-gradient(180deg, var(--snow), var(--mist));
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  color: var(--cyan-text);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
  overflow: hidden;
  position: relative;
}
.tier-card .tier-cover > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.tier-card h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}
.tier-card .tier-meta {
  display: flex; gap: var(--s-4); flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tier-card p { color: var(--steel); font-size: 14px; }
.tier-card .features {
  display: flex; flex-direction: column; gap: var(--s-2);
  color: var(--slate); font-size: 14px;
  margin-top: var(--s-2);
}
.tier-card .features li {
  display: flex; gap: var(--s-2); align-items: flex-start;
}
.tier-card .features li::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--cyan-500);
}

/* ===================== 3-STEP PROCESS ===================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 1000px) { .process-grid { grid-template-columns: 1fr; } }
.process-card {
  display: flex; flex-direction: column; gap: var(--s-4);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  position: relative;
}
.process-card .frame {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--r-md);
  background:
    radial-gradient(ellipse at 50% 60%, var(--cyan-glow-32), transparent 60%),
    linear-gradient(135deg, var(--mist), var(--snow));
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.process-card .frame > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.process-card .frame .placeholder {
  width: 70%; height: 70%;
  background-image: repeating-linear-gradient(45deg, rgba(15,20,30,0.05) 0 6px, rgba(0,0,0,0) 6px 12px);
  border: 1px dashed var(--stone);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel);
  text-align: center;
  padding: var(--s-3);
}
.process-card .num-badge { align-self: flex-start; }
.process-card h3 { font-size: 20px; letter-spacing: -0.01em; }
.process-card p { color: var(--steel); font-size: 14px; }
.process-card .checks {
  display: flex; flex-direction: column; gap: var(--s-2);
  border-top: 1px solid var(--hairline);
  padding-top: var(--s-4);
  margin-top: var(--s-2);
}
.process-card .checks li {
  display: flex; align-items: center; gap: var(--s-2);
  font-size: 13px; color: var(--ink);
}
.process-card .checks svg {
  flex: none;
  width: 16px; height: 16px;
  color: var(--cyan-500);
}

/* ===================== ECOSYSTEM (Beyond the agency) ===================== */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 1000px) { .eco-grid { grid-template-columns: 1fr; } }

/* "Andere Wege" sub-section inside #leistungen — pairs the 3 eco-cards
   directly below the 3 tier cards as a single offer landscape. */
.other-ways {
  margin-top: var(--s-16);
  padding-top: var(--s-12);
}

/* KI-Marketing-Mentorship strip below the two main tiers — slim horizontal callout. */
.mentorship-bar {
  margin-top: var(--s-12);
  padding: var(--s-6) clamp(var(--s-6), 4vw, var(--s-10));
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: var(--snow);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--s-6);
}
@media (max-width: 760px) {
  .mentorship-bar { grid-template-columns: 1fr; }
}
.mentorship-bar .mentorship-content {
  display: flex; flex-direction: column;
  gap: var(--s-2);
}
.mentorship-bar .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-text);
  align-self: flex-start;
}
.mentorship-bar .eyebrow svg { width: 13px; height: 13px; }
.mentorship-bar h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 42ch;
}
.mentorship-bar p {
  color: var(--steel);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 70ch;
}
.mentorship-bar .mentorship-cta { white-space: nowrap; }
.other-ways-header {
  text-align: center;
  margin-bottom: var(--s-8);
  display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
}
.other-ways-header .eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-text);
  padding: 6px var(--s-3);
  background: var(--cyan-glow-08);
  border: 1px solid var(--cyan-glow-32);
  border-radius: var(--r-pill);
}
.other-ways-header .eyebrow svg { width: 12px; height: 12px; }
.other-ways-header h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 36ch;
}
.eco-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  overflow: hidden;
  display: flex; flex-direction: column; gap: var(--s-3);
  min-height: 260px;
  transition: border-color .2s, box-shadow .2s;
}
.eco-card:hover { border-color: var(--cyan-500); box-shadow: var(--glow-sm); }
.eco-card .eyebrow { margin-bottom: var(--s-2); }
.eco-card h3 { font-size: 22px; letter-spacing: -0.02em; }
.eco-card p { color: var(--steel); font-size: 14px; max-width: 38ch; }
.eco-card .arrow-link {
  display: inline-flex; align-items: center; gap: var(--s-2);
  margin-top: auto;
  color: var(--cyan-text);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eco-card .arrow-link svg { width: 14px; height: 14px; }

/* ===================== DUAL CTA BLOCK ===================== */
.dual-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-6);
  margin-top: var(--s-24);
}
@media (max-width: 1000px) { .dual-cta { grid-template-columns: 1fr; } }

.dual-cta .col {
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 72px);
  display: flex; flex-direction: column; gap: var(--s-5);
  overflow: hidden;
  position: relative;
}
.dual-cta .col.primary {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(0,204,255,0.20), transparent 60%),
    radial-gradient(ellipse at 70% 100%, rgba(0,204,255,0.12), transparent 60%),
    var(--ink);
  color: var(--paper);
}
.dual-cta .col.primary h3 { color: var(--paper); }
.dual-cta .col.primary .eyebrow { color: var(--cyan-300); }
.dual-cta .col.primary p { color: var(--stone); font-size: 15px; max-width: 42ch; }
.dual-cta .col.primary .features li { color: var(--paper); }
.dual-cta .col.primary .features li::before { background: var(--cyan-300); }
.dual-cta .col.primary .btn-ghost {
  background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.20);
}
.dual-cta .col.primary .btn-ghost .arrow { background: rgba(255,255,255,0.10); color: var(--paper); }

.dual-cta .col.alt {
  background: var(--snow);
  border: 1px solid var(--hairline);
  color: var(--slate);
}
.dual-cta .col h3 {
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.dual-cta .features {
  display: flex; flex-direction: column; gap: var(--s-2);
  margin-top: var(--s-2);
}
.dual-cta .features li {
  display: flex; align-items: flex-start; gap: var(--s-2);
  font-size: 14px;
}
.dual-cta .features li::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--cyan-500);
}
.dual-cta .alt-routes {
  display: flex; flex-direction: column; gap: var(--s-3);
  margin-top: var(--s-4);
}
.dual-cta .alt-routes a {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--s-4) var(--s-5);
  border: 1px solid var(--hairline);
  background: var(--paper);
  border-radius: var(--r-md);
  color: var(--ink);
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.dual-cta .alt-routes a:hover { border-color: var(--cyan-500); background: var(--paper); }
.dual-cta .alt-routes a small {
  display: block;
  color: var(--steel);
  font-size: 12px;
  margin-top: 2px;
}
.dual-cta .alt-routes a svg { color: var(--cyan-text); width: 18px; height: 18px; }

/* ===================== FOUNDER ===================== */
.founder {
  display: flex; flex-direction: column;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  gap: var(--s-4);
}
.founder .frame {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--r-md);
  background:
    radial-gradient(ellipse at 50% 60%, var(--cyan-glow-32), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--mist));
  display: grid; place-items: center;
  border: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.founder .frame .placeholder {
  width: 70%; height: 70%;
  background-image: repeating-linear-gradient(45deg, rgba(15,20,30,0.05) 0 6px, rgba(0,0,0,0) 6px 12px);
  border: 1px dashed var(--stone);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel);
  text-align: center;
  padding: var(--s-3);
}
.founder .frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Portrait variant for transparent-PNG cutouts that need to show the
   full figure (e.g. holding an award) without aggressive top/bottom crop.
   The figure stands on the bottom of the frame; cyan glow shows on either side. */
.founder--portrait .frame img {
  object-fit: contain;
  object-position: bottom center;
}
.founder .name { font-size: 18px; color: var(--ink); font-weight: 500; }
.founder .role { font-family: var(--font-mono); font-size: 12px; color: var(--cyan-text); letter-spacing: 0.08em; text-transform: uppercase; }
.founder .bio { color: var(--steel); font-size: 14px; line-height: 1.65; margin: 0; }
.founder .proof {
  display: flex; flex-direction: column; gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  border-top: 1px solid var(--hairline);
  padding-top: var(--s-4);
}
.founder .proof li { display: flex; justify-content: space-between; gap: var(--s-4); }
.founder .proof li span:first-child { color: var(--steel); }

/* ===================== TESTIMONIAL ===================== */
.testimonial {
  background: var(--snow);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex; flex-direction: column; gap: var(--s-5);
}
.testimonial.featured {
  background:
    radial-gradient(ellipse at top right, rgba(0,204,255,0.10), transparent 60%),
    var(--paper);
  border-color: var(--cyan-500);
  box-shadow: var(--glow-sm);
}
.testimonial .quote {
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.testimonial .quote::before { content: "“"; color: var(--cyan-text); margin-right: 2px; }
.testimonial .quote::after  { content: "”"; color: var(--cyan-text); margin-left: 2px; }
.testimonial .source { display: flex; gap: var(--s-3); align-items: center; }
.testimonial .source .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-300), var(--cyan-500));
  border: 1px solid var(--hairline);
}
.testimonial .source .who { display: flex; flex-direction: column; }
.testimonial .source .who .name { color: var(--ink); font-size: 14px; }
.testimonial .source .who .meta { color: var(--steel); font-size: 12px; font-family: var(--font-mono); }

/* ===================== PROCESS ROW ===================== */
.process-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 900px) { .process-row { grid-template-columns: 1fr; } }
.process-step {
  display: flex; flex-direction: column; gap: var(--s-3);
  padding: var(--s-6);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: var(--snow);
}
.process-step h4 { font-size: 18px; }
.process-step p { color: var(--steel); font-size: 14px; }
.process-step .duration {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===================== ROUTING CARDS ===================== */
.route-card {
  position: relative;
  padding: var(--s-10);
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  background: var(--paper);
  display: flex; flex-direction: column; gap: var(--s-4);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .25s ease;
}
.route-card:hover { border-color: var(--cyan-500); box-shadow: var(--glow-md); }
.route-card .eyebrow { margin-bottom: var(--s-2); }
.route-card h3 {
  font-size: 28px;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.route-card p { color: var(--steel); font-size: 15px; max-width: 42ch; }

/* ===================== FAQ ===================== */
.faq {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.faq details {
  padding: var(--s-6) var(--s-4);
  border-bottom: 1px solid var(--hairline);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--cyan-text);
  font-size: 22px;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: var(--s-4);
  color: var(--steel);
  font-size: 15px;
  max-width: 72ch;
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  position: relative;
  margin-top: var(--s-24);
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse at 30% 0%, rgba(0,204,255,0.20), transparent 60%),
    radial-gradient(ellipse at 70% 100%, rgba(0,204,255,0.12), transparent 60%),
    var(--ink);
  color: var(--paper);
  padding: clamp(48px, 9vh, 96px) var(--s-12);
  overflow: hidden;
}
.final-cta h2 {
  color: var(--paper);
  font-size: clamp(32px, 4.4vw, 56px);
  max-width: 22ch;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.final-cta h2 em { font-style: normal; color: var(--cyan-300); }
.final-cta p { color: var(--stone); margin-top: var(--s-5); max-width: 56ch; font-size: 17px; }
.final-cta .ctas { margin-top: var(--s-10); display: flex; gap: var(--s-4); flex-wrap: wrap; }
.final-cta .btn-ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.20); }
.final-cta .btn-ghost .arrow { background: rgba(255,255,255,0.10); color: var(--paper); }
.final-cta .btn-ghost:hover { border-color: var(--cyan-500); color: var(--cyan-300); }

/* ===================== FOOTER ===================== */
footer.site-footer {
  margin-top: var(--s-24);
  padding: var(--s-12) var(--s-8) var(--s-8);
  border-top: 1px solid var(--hairline);
  max-width: var(--max-content);
  margin-left: auto; margin-right: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-10);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-grid h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: var(--s-4);
  font-weight: 500;
}
.footer-grid ul { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-grid a { color: var(--steel); font-size: 14px; }
.footer-grid a:hover { color: var(--ink); }
.footer-bar {
  margin-top: var(--s-12);
  padding-top: var(--s-6);
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--stone);
}

/* ===================== LEGAL PAGES (Impressum, Datenschutz) ===================== */
.legal-page {
  padding-top: var(--s-12);
  padding-bottom: var(--s-20);
}
.legal-prose {
  max-width: 72ch;
  margin: 0 auto;
}
.legal-header {
  margin-bottom: var(--s-12);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--hairline);
}
.legal-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-text);
  margin-bottom: var(--s-3);
}
.legal-prose h1 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.legal-prose section {
  margin-bottom: var(--s-10);
}
.legal-prose h2 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 var(--s-4);
}
.legal-prose p {
  color: var(--steel);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 var(--s-3);
}
.legal-prose ul {
  margin: 0 0 var(--s-3);
  padding-left: var(--s-5);
}
.legal-prose ul li {
  color: var(--steel);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: var(--s-1);
}
.legal-prose a {
  color: var(--cyan-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.legal-prose a:hover { color: var(--cyan-500); }
.legal-status {
  margin-top: var(--s-12);
  padding-top: var(--s-6);
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ===================== KI-TOOL STACK BELT (Section 03, Block 03) =====================
   Scrolling marquee of the AI / marketing tools that power the infrastructure.
   Light-mode chips so the colourful brand logos pop; seamless loop via 2 sets
   + a -50% translate. Sits between the Block-03 body and the org-chart. */
.ki-stack {
  margin: var(--s-8) 0 var(--s-10);
}
.ki-stack-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-text);
  margin-bottom: var(--s-4);
}
.ki-marquee {
  position: relative;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ki-marquee-track {
  display: flex;
  width: max-content;
  gap: var(--s-3);
  animation: ki-marquee-scroll 48s linear infinite;
  will-change: transform;
}
.ki-marquee:hover .ki-marquee-track { animation-play-state: paused; }
@keyframes ki-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.ki-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  padding: 11px 20px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--steel);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s cubic-bezier(0.2,0.7,0.2,1);
}
.ki-chip:hover {
  border-color: var(--cyan-500);
  box-shadow: 0 0 24px -8px var(--cyan-glow-48);
  transform: translateY(-2px);
}
.ki-chip-icon {
  height: 22px; width: auto; max-width: 90px;
  object-fit: contain;
  display: block;
  flex: none;
}
.ki-chip.is-wordmark { padding: 11px 22px; }
.ki-chip.is-wordmark .ki-chip-icon { height: 20px; max-width: 130px; }
.ki-chip-name { color: var(--ink); }
@media (max-width: 640px) {
  .ki-chip { padding: 9px 16px; font-size: 13px; gap: 8px; }
  .ki-chip-icon { height: 19px; }
  .ki-marquee-track { animation-duration: 32s; }
}

