/* =======================================================================
   SUPPS — Corporate Design Style Guide Implementation
   Colors · Typography · Spacing · UI per SUPPS Style Guide v1
   ======================================================================= */

/* ---------------------------- LOCAL FONTS ----------------------------- */
@font-face {
  font-family: "Controller";
  src: url("assets/font/controller-one.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Controller";
  src: url("assets/font/controller-two-oblique.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Controller";
  src: url("assets/font/controller-three.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Controller";
  src: url("assets/font/controller-four.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Controller";
  src: url("assets/font/controller-five.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Controller";
  src: url("assets/font/controller-five-oblique.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* ------------------------------- TOKENS ------------------------------- */
:root {
  /* Primary Base */
  --bg:        #0A0A0B; /* Deep Black — backgrounds */
  --bg-2:      #111214; /* Soft Black — alternating sections */
  --bg-3:      #16161A; /* Panel / card surface */

  /* UI Neutrals */
  --line:      #1C1C1C; /* Divider */
  --line-2:    #2A2A2A; /* Border */

  /* Ink */
  --ink:       #F5F5F5; /* Off White — headlines, primary text */
  --muted:     #B8B8B8; /* Body text */
  --muted-2:   #8A8A8A; /* Small labels */

  /* Accent — Electric Blue */
  --accent:       #2D6BFF;
  --accent-2:     #1F55E0;
  --accent-glow:  rgba(45,107,255,.28);

  /* Radius (style guide: 6–10px buttons, 12px cards) */
  --r-btn:  8px;
  --r-card: 12px;
  --r-input: 8px;

  /* Spacing — 8px grid */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  48px;
  --sp-6:  64px;
  --sp-7:  80px;
  --sp-8:  96px;
  --sp-9:  120px; /* Section vertical padding */

  --container: 1280px;
  --pad-x:     clamp(20px, 4vw, 56px);

  /* Typography families */
  --display: "Inter", "Helvetica Neue", ui-sans-serif, -apple-system, system-ui, sans-serif;
  --title:   "Controller", "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --ease:     cubic-bezier(.6, .05, .25, 1);
}

/* ------------------------------- RESET -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* Prevent language flash: hide until i18n applied */
html[data-i18n-pending="1"] body { opacity: 0; }
html:not([data-i18n-pending="1"]) body { transition: opacity .18s ease; }
body {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ------------------------------- RTL ---------------------------------- */
html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .hero__content,
html[dir="rtl"] .about__body,
html[dir="rtl"] .story__body,
html[dir="rtl"] .founder__copy,
html[dir="rtl"] .location__copy,
html[dir="rtl"] .contact__copy,
html[dir="rtl"] .phero__copy { text-align: right; }

/* Swap hero text/image columns for RTL */
html[dir="rtl"] .hero__grid { grid-template-columns: 1fr minmax(0, 640px); }
html[dir="rtl"] .hero__grid--about { grid-template-columns: 1fr minmax(0, 760px); }

/* Home hero (RTL): photo pane on LEFT, black fades from RIGHT → LEFT */
html[dir="rtl"] .hero__top::before {
  left: 0;
  right: auto;
  /* Fade inside the image pane (no hard seam on the right edge) */
  background-image:
    linear-gradient(
      90deg,
      rgba(10,10,11,0) 0%,
      rgba(10,10,11,0) 52%,
      rgba(10,10,11,.28) 68%,
      rgba(10,10,11,.78) 86%,
      rgba(10,10,11,1) 100%
    ),
    url("assets/img/optimized/hero2.jpg");
  background-size: 100% 100%, cover;
  background-position: left top, center left;
  background-repeat: no-repeat;
}

html[dir="rtl"] .hero__overlay {
  background:
    /* RTL: keep overlay only for vertical depth */
    linear-gradient(
      180deg,
      rgba(10,10,11,.3) 0%,
      rgba(10,10,11,0) 22%,
      rgba(10,10,11,0) 72%,
      rgba(10,10,11,.5) 100%
    );
}

/* About hero (RTL only): photo starts LEFT → fades darker to the RIGHT */
html[dir="rtl"] .page--about .hero__top::before {
  left: 0;
  right: auto;
  background-image:
    linear-gradient(
      90deg,
      rgba(10,10,11,0) 0%,
      rgba(10,10,11,0) 52%,
      rgba(10,10,11,.35) 68%,
      rgba(10,10,11,.82) 86%,
      rgba(10,10,11,1) 100%
    ),
    url("assets/img/optimized/supps.jpg");
  background-size: 100% 100%, cover;
  background-position: left top, center left;
  background-repeat: no-repeat;
}

html[dir="rtl"] .page--about .hero__overlay--about {
  background:
    linear-gradient(90deg, rgba(10,10,11,0) 0%, rgba(10,10,11,0) 58%, rgba(10,10,11,.38) 76%, rgba(10,10,11,.92) 100%),
    radial-gradient(100% 70% at 85% 20%, rgba(45,107,255,.16), rgba(10,10,11,0) 60%),
    radial-gradient(80% 60% at 15% 35%, rgba(255,255,255,.06), rgba(10,10,11,0) 62%),
    linear-gradient(180deg, rgba(10,10,11,.22) 0%, rgba(10,10,11,0) 26%, rgba(10,10,11,.55) 100%);
}

/* Lists and separators */
html[dir="rtl"] .ps:not(:last-child)::after { right: auto; left: 0; }
html[dir="rtl"] .kpi { border-right: 0; border-left: 1px solid var(--line); }
html[dir="rtl"] .kpi:last-child { border-left: 0; }
html[dir="rtl"] .checks li { padding-left: 0; padding-right: 28px; }
html[dir="rtl"] .checks li::before { left: auto; right: 0; transform: rotate(135deg); }
html[dir="rtl"] .contact__meta li { grid-template-columns: 1fr 170px; }
html[dir="rtl"] .contact__meta li span { text-align: right; }
html[dir="rtl"] .contact__meta li b { text-align: left; }

/* RTL: hero caption chip should sit on the left */
html[dir="rtl"] .hero__caption {
  left: var(--pad-x);
  right: auto;
}

/* RTL: keep product carousel mechanics stable (LTR track), keep card text RTL */
html[dir="rtl"] .pcar__viewport,
html[dir="rtl"] .pcar__track {
  direction: ltr;
}
html[dir="rtl"] .pcard { direction: rtl; }
html[dir="rtl"] .pcard__meta { left: auto; right: 14px; text-align: right; }
html[dir="rtl"] .pcard__num { right: auto; left: 14px; }

/* RTL: keep phone numbers readable (don't bidi-flip digits) */
html[dir="rtl"] a[href^="tel:"] {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--title); font-weight: 700; letter-spacing: -0.01em; }

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

/* ------------------------------ LAYOUT -------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.eyebrow__sep {
  opacity: .7;
  margin: 0 2px;
}
.eyebrow__flag {
  display: inline-block;
  width: 16px;
  height: 10px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.10);
  transform: translateY(0.5px);
  /* Germany flag (horizontal stripes) — CSS, avoids any asset/caching issues */
  background-image: linear-gradient(
    to bottom,
    #000000 0%,
    #000000 33.333%,
    #DD0000 33.333%,
    #DD0000 66.666%,
    #FFCE00 66.666%,
    #FFCE00 100%
  );
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.accent { color: var(--ink); position: relative; }
.accent::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: .08em;
  height: .12em; background: var(--accent);
  transform-origin: left;
  animation: dash 1.2s var(--ease-out) both .3s;
}
@keyframes dash { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* H2 — section headline per style guide: 36–48px */
.h-section {
  font-family: var(--title);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0.02em; /* more visible tracking */
  font-weight: 700;
  color: var(--ink);
  text-transform: capitalize;
}

/* ------------------------------ BUTTONS ------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-btn);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s var(--ease-out), background .25s var(--ease-out),
    color .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s var(--ease-out);
  will-change: transform;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px var(--accent-glow), 0 0 0 6px rgba(45,107,255,.08);
}
.btn--ghost {
  background: transparent;
  color: currentColor;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding: 8px 0 10px;
  letter-spacing: .14em;
  font-weight: 500;
}
.btn--ghost:hover { color: var(--accent); border-color: var(--accent); }
.btn--ghost svg { transition: transform .25s var(--ease-out); }
.btn--ghost:hover svg { transform: translateX(4px); }

.btn--sm { padding: 10px 16px; font-size: 11px; }
.btn--lg { padding: 16px 28px; font-size: 13px; }

/* ---------------------------- NAVIGATION ------------------------------ */
/* Fixed so the hero image shows through the glass-blurred nav bar */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  background: rgba(10,10,11,.35);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(10,10,11,.78);
}

.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 72px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.nav__logo {
  height: 32px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}
/* Wordmark — Space Grotesk Bold with +120 tracking per style guide */
.nav__wordmark {
  font-family: var(--title);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--ink);
}

.nav__menu {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.nav__menu a {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color .25s var(--ease-out);
}
.nav__menu a.is-active { color: var(--ink); }
.nav__menu a.is-active::after { width: 100%; }
.nav__menu a::after {
  content: "";
  position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px; background: var(--accent);
  transform: translateX(-50%);
  transition: width .25s var(--ease-out);
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a:hover::after { width: 100%; }

.nav__actions {
  display: flex; align-items: center; gap: 16px;
}

.langswitch {
  display: inline-flex;
  padding: 4px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.lang {
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--muted-2);
  border-radius: 999px;
  transition: all .25s var(--ease-out);
}
.lang:hover { color: var(--ink); }
.lang.is-active { background: var(--ink); color: var(--bg); }

.nav__burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
}
.nav__burger span {
  width: 18px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}
body.is-menuopen .nav__burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.is-menuopen .nav__burger span:nth-child(2) { opacity: 0; }
body.is-menuopen .nav__burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ------------------------------- HERO --------------------------------- */
/* Solid black hero. Photo covers only the right 70%, soft blend on its left
   edge so the image never looks stretched. Sits under the fixed glass nav. */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--bg);
  isolation: isolate;
}

/* Top area carries the hero photo. Bottom (icon list) stays solid black. */
.hero__top {
  position: relative;
  overflow: hidden;
  padding: calc(72px + clamp(40px, 7.2vw, 96px)) 0 22px;
  min-height: clamp(556px, 86vh, 751px); /* keeps procstrip visible above fold */
}

/* Right-aligned photo pane (70% of hero width) — ONLY for hero__top */
.hero__top::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 70%;
  background-image: url("assets/img/optimized/hero2.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Left→right blend: keep left pure black, fade image softly into it.
   Plus subtle vertical vignette for depth. */
.hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(10,10,11,1) 30%,
      rgba(10,10,11,.78) 38%,
      rgba(10,10,11,.28) 50%,
      rgba(10,10,11,0) 68%
    ),
    linear-gradient(
      180deg,
      rgba(10,10,11,.3) 0%,
      rgba(10,10,11,0) 22%,
      rgba(10,10,11,0) 72%,
      rgba(10,10,11,.5) 100%
    );
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  min-height: auto;
  margin-top: -32px; /* move content up (8px grid) */
  padding-bottom: 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

/* H1 per style guide: 72–96px, line-height 90–100%, tracking -1%–0% */
.hero__title {
  font-family: var(--title);
  font-weight: 700;
  font-size: clamp(45px, 6.8vw, 65px);
  line-height: .94;
  letter-spacing: 0.02em;
  margin-top: 14px;
  text-transform: capitalize;
  color: var(--ink);
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero__subtitle {
  font-family: var(--title);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.2em;
  text-transform: capitalize;
  color: var(--ink);
  margin: 4px 0 8px;
}
.hero__body {
  max-width: 48ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.hero__cta {
  display: flex; align-items: center; gap: 24px;
  margin-top: 14px;
}

/* Live-Production caption chip — sits bottom-right over the image */
.hero__caption {
  position: absolute;
  right: var(--pad-x);
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(10,10,11,.45);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
}
.hero__caption-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.hero__bottom { background: var(--bg); }

/* ---------------------------- ABOUT PAGE ------------------------------ */
.page--about .hero__top::before {
  /* About hero photo pane (matches homepage hero behavior) */
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 70%;
  /* Fade the photo INTO the black area (prevents a hard seam) */
  background-image:
    linear-gradient(
      90deg,
      rgba(10,10,11,1) 0%,
      rgba(10,10,11,.92) 12%,
      rgba(10,10,11,.35) 26%,
      rgba(10,10,11,0) 44%
    ),
    url("assets/img/optimized/supps.jpg");
  background-size: 100% 100%, cover;
  background-position: left top, center right;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero--about .hero__top {
  min-height: clamp(520px, 78vh, 720px);
  padding-bottom: 36px;
}
.hero__overlay--about {
  background:
    /* Smooth left-edge blend (kills the hard seam) */
    linear-gradient(
      90deg,
      rgba(10,10,11,1) 0%,
      rgba(10,10,11,.92) 18%,
      rgba(10,10,11,.45) 34%,
      rgba(10,10,11,0) 52%
    ),
    /* Depth + premium glow */
    radial-gradient(100% 70% at 15% 20%, rgba(45,107,255,.16), rgba(10,10,11,0) 60%),
    radial-gradient(80% 60% at 85% 35%, rgba(255,255,255,.06), rgba(10,10,11,0) 62%),
    /* Subtle vertical vignette */
    linear-gradient(180deg, rgba(10,10,11,.22) 0%, rgba(10,10,11,0) 26%, rgba(10,10,11,.55) 100%);
}

/* RTL override (About hero): photo starts on LEFT, fade to BLACK on RIGHT */
html[dir="rtl"] .page--about .hero__top::before {
  left: 0 !important;
  right: auto !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(10,10,11,0) 0%,
      rgba(10,10,11,0) 58%,
      rgba(10,10,11,.42) 74%,
      rgba(10,10,11,.9) 90%,
      rgba(10,10,11,1) 100%
    ),
    url("assets/img/optimized/supps.jpg") !important;
  background-size: 100% 100%, cover !important;
  background-position: left top, center left !important;
  background-repeat: no-repeat !important;
}

/* RTL overlay direction: darkest on RIGHT → fades towards LEFT */
html[dir="rtl"] .page--about .hero__overlay.hero__overlay--about {
  background:
    linear-gradient(
      90deg,
      rgba(10,10,11,0) 0%,
      rgba(10,10,11,0) 56%,
      rgba(10,10,11,.38) 74%,
      rgba(10,10,11,.92) 100%
    ),
    radial-gradient(100% 70% at 85% 20%, rgba(45,107,255,.16), rgba(10,10,11,0) 60%),
    radial-gradient(80% 60% at 15% 35%, rgba(255,255,255,.06), rgba(10,10,11,0) 62%),
    linear-gradient(180deg, rgba(10,10,11,.22) 0%, rgba(10,10,11,0) 26%, rgba(10,10,11,.55) 100%) !important;
}
.hero__grid--about { grid-template-columns: minmax(0, 760px) 1fr; }

/* Center the 4-item strip on About page */
.hero-strip .procstrip__grid {
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  column-gap: 28px;
}

.story {
  background: var(--bg);
  color: var(--ink);
  padding: var(--sp-9) 0;
  border-top: 1px solid var(--line);
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(24px, 5vw, 72px);
}
.story__head { position: sticky; top: 100px; align-self: start; }
.story__body { display: flex; flex-direction: column; gap: 12px; }
.story__p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 58ch;
}
.story__p--end {
  color: var(--ink);
  font-weight: 500;
  margin-top: 8px;
}

.az {
  background: var(--bg-2);
  color: var(--ink);
  padding: var(--sp-9) 0;
  position: relative;
}
.az__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
.az__lede {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 56ch;
}
.az__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.az__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: transform .6s var(--ease-out), border-color .35s var(--ease-out), background .35s var(--ease-out);
  will-change: transform;
}
.az__item:hover,
.az__item:focus-within {
  transform: translate3d(22px, 0, 0);
  border-bottom-color: var(--accent);
  background: linear-gradient(90deg, rgba(45,107,255,.10), rgba(45,107,255,0) 55%);
}
.az__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--muted-2);
  padding-top: 4px;
}
.az__txt {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.location {
  background: var(--bg);
  color: var(--ink);
  padding: var(--sp-9) 0;
  border-top: 1px solid var(--line);
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
.location__body {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 56ch;
}
.location__meta {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
}
.location__figure { margin: 0; }
.location__media {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.7);
}
.location__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,10,11,.18) 0%, rgba(10,10,11,.46) 100%),
    radial-gradient(90% 70% at 30% 20%, rgba(45,107,255,.10), rgba(10,10,11,0) 62%);
  mix-blend-mode: multiply;
}
.location__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid var(--line-2);
  background: var(--bg-3);
  display: block;
}

.imgph {
  aspect-ratio: 16/10;
  border-radius: var(--r-card);
  border: 1px solid var(--line-2);
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 20% 15%, rgba(45,107,255,.22), rgba(45,107,255,0) 55%),
    radial-gradient(110% 110% at 80% 40%, rgba(255,255,255,.08), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(17,18,20,.9), rgba(10,10,11,.92));
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.7);
  position: relative;
}
.imgph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .35;
  pointer-events: none;
}
.imgph__inner {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 14px;
  background: rgba(10,10,11,.55);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.imgph__kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.imgph__title {
  font-family: var(--title);
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--ink);
}
.imgph--portrait { aspect-ratio: 4/5; }

.founder {
  background: var(--bg-2);
  color: var(--ink);
  padding: var(--sp-9) 0;
  border-top: 1px solid var(--line);
}
.founder__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
.founder__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-card);
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.7);
  background: var(--bg-3);
}
.founder__body { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.founder__p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 56ch;
}

.taglines {
  background: var(--bg);
  color: var(--ink);
  padding: var(--sp-9) 0;
  border-top: 1px solid var(--line);
}
.taglines__head { max-width: 720px; }
.taglines__grid {
  margin-top: var(--sp-6);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
}
.tag {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--r-card);
  padding: 26px 22px;
  min-height: 170px;
  position: relative;
  overflow: hidden;
}
.tag::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,107,255,.10), transparent 60%);
  opacity: .9;
  pointer-events: none;
}
.tag__num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--muted-2);
}
.tag__text {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.22;
  letter-spacing: .005em;
  font-weight: 100;
  color: var(--ink);
}

/* ---------------------------- PORTFOLIO ------------------------------- */
.phero {
  padding: calc(72px + var(--sp-7)) 0 var(--sp-6);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.phero::before {
  content: "";
  position: absolute;
  inset: -12% -6%;
  background-image: var(--phero-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  filter: saturate(.95) contrast(1.08) brightness(.42);
  opacity: 1;
  z-index: 0;
}
.phero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 18% 22%, rgba(10,10,11,.72), rgba(10,10,11,0) 62%),
    linear-gradient(180deg, rgba(10,10,11,.82) 0%, rgba(10,10,11,.62) 44%, rgba(10,10,11,.92) 100%);
  z-index: 1;
  pointer-events: none;
}
.phero__grid { position: relative; z-index: 2; }
.phero__grid { display: grid; grid-template-columns: 1fr; }
.phero__copy { max-width: 900px; }
.phero__lede {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.55;
  max-width: 60ch;
}

.bento {
  background: var(--bg-2);
  padding: var(--sp-9) 0;
}
.bento__grid {
  /* Masonry-style layout (prevents empty grid gaps) */
  column-count: 3;
  column-gap: var(--sp-2);
}
.bento__item {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-3);
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.6);
  transition: transform .45s var(--ease-out), border-color .45s var(--ease-out), box-shadow .45s var(--ease-out);
  will-change: transform;
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 var(--sp-2);
}
.bento__item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,10,11,.18) 0%, rgba(10,10,11,.55) 100%),
    radial-gradient(80% 70% at 22% 18%, rgba(45,107,255,.12), rgba(10,10,11,0) 65%);
  opacity: .95;
  mix-blend-mode: multiply;
}
.bento__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .8s var(--ease-out), filter .6s var(--ease-out);
  filter: saturate(.92) contrast(1.06) brightness(.92);
}
.bento__item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 40px 80px -55px rgba(0,0,0,.75), 0 0 0 1px rgba(45,107,255,.20);
}
.bento__item:hover img { transform: scale(1.06); }
.bento__item:hover img { filter: saturate(1) contrast(1.08) brightness(.98); }
.bento__item:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 40px 80px -55px rgba(0,0,0,.75), 0 0 0 1px rgba(45,107,255,.20), 0 0 0 6px rgba(45,107,255,.08);
}

@media (max-width: 1100px) {
  .bento__grid { column-count: 2; }
}
@media (max-width: 720px) {
  .bento__grid { column-count: 1; }
}

/* Lightbox */
body.is-lightbox { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.lightbox.is-open { display: block; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,11,.78);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}
.lightbox__dialog {
  position: absolute;
  inset: clamp(18px, 3vw, 34px);
  display: grid;
  place-items: center;
  border-radius: 16px;
}
.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 60px 120px -70px rgba(0,0,0,.9);
  background: rgba(17,18,20,.9);
}
.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,10,11,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out);
}
.lightbox__close:hover { transform: translateY(-1px); border-color: rgba(45,107,255,.7); }

/* ------------------------- PROCESS STRIP (7) -------------------------- */
.procstrip {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.procstrip--hero {
  /* Must NOT show hero image behind */
  background: var(--bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin-top: 0;
}
.procstrip--hero .ps__icon { background: transparent; }
.procstrip--hero .ps__title { font-size: 10px; }
.procstrip--hero .ps__num { font-size: 9px; }
.procstrip__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: center;
}
.ps {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 8px;
  position: relative;
  transition: color .25s var(--ease-out);
}
.ps:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--line);
}
.ps__icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--muted);
  flex: 0 0 38px;
  transition: color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.ps:hover .ps__icon { color: var(--accent); border-color: var(--accent); }
.ps__icon svg { width: 18px; height: 18px; stroke-width: 1.5; }
.ps__meta { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.ps__num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: .16em;
}
.ps__title {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
  line-height: 1.3;
}

/* ------------------------- PRODUCT CATEGORIES ------------------------- */
.products {
  background: var(--bg-2);
  color: var(--ink);
  padding: var(--sp-9) 0;
  position: relative;
}
.products__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
.products__head .h-section {
  font-family: var(--title);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
  margin-bottom: 22px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.products__lede {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 32ch;
}
.products__meta {
  display: flex; align-items: center; gap: 14px;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
}
.rule { width: 28px; height: 1.5px; background: var(--muted-2); display: inline-block; }
.flag {
  display: inline-flex;
  width: 22px; height: 14px;
  border: 1px solid var(--line-2);
  border-radius: 1px;
  overflow: hidden;
  flex-direction: column; /* Germany flag is horizontal stripes */
}
.flag span { flex: 1 1 0; width: 100%; }

.products__carousel { width: 100%; }
.pcar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-bottom: 14px;
}
.pcar__hint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.pcar__controls { display: inline-flex; gap: 10px; }
.pcar__btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(17,18,20,.6);
  color: var(--ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .2s var(--ease-out), border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.pcar__btn:hover { transform: translateY(-1px); border-color: var(--accent); }
.pcar__btn:active { transform: translateY(0); }

.pcar__viewport {
  overflow: hidden;
  border-radius: var(--r-card);
}
.pcar__track {
  display: flex;
  gap: var(--sp-2);
  will-change: transform;
  transition: transform .6s var(--ease-out);
  padding-bottom: 2px; /* avoid subpixel cut */
}
.pcar__track.is-dragging { transition: none; cursor: grabbing; }
.pcar__viewport { cursor: grab; }

/* 4 visible cards on desktop */
.pcar__track > [data-carousel-item] { flex: 0 0 calc((100% - (var(--sp-2) * 3)) / 4); }
.pcard {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--r-card);
  padding: 0; /* let visuals fill card; labels overlay */
  aspect-ratio: 3/4;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              border-color .35s var(--ease-out), background .35s var(--ease-out);
  will-change: transform;
  overflow: hidden;
}
.pcard:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5), 0 0 0 1px rgba(45,107,255,.2);
}
.pcard__meta {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.35;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(10,10,11,.55);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pcard__meta span:first-child { font-weight: 500; }
.pcard__meta span:last-child { color: var(--muted-2); }
.pcard__num {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: .18em;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(10,10,11,.55);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pcard__visual {
  flex: 1;
  margin-top: 0;
  border-radius: 0;
  overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,.08), rgba(255,255,255,0) 55%), var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* full-bleed */
}
.pcard__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* bigger product presence */
  display: block;
  transition: transform .7s var(--ease-out);
}
.pcard:hover .pcard__visual img { transform: scale(1.04); }

@media (max-width: 1100px) {
  /* 2 visible cards on tablet */
  .pcar__track > [data-carousel-item] { flex-basis: calc((100% - (var(--sp-2) * 1)) / 2); }
}

@media (max-width: 720px) {
  /* 1 visible card on mobile */
  .pcar__track > [data-carousel-item] { flex-basis: 100%; }
  .pcar__top { margin-bottom: 10px; }
}

/* ----------------------------- ABOUT ---------------------------------- */
.about {
  background: var(--bg);
  color: var(--ink);
  padding: var(--sp-9) 0;
  border-top: 1px solid var(--line);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(24px, 5vw, 72px);
}
.about__intro { position: sticky; top: 100px; align-self: start; }
.about__intro .eyebrow { margin-bottom: 14px; }
.about__intro .h-section { margin-top: var(--sp-1); }
.about__body .lede {
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 24px;
  max-width: 44ch;
  font-family: var(--display);
}
.about__body .body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 56ch;
}
.kpis {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kpi {
  padding: var(--sp-3) var(--sp-3) var(--sp-3) 0;
  border-right: 1px solid var(--line);
}
.kpi:last-child { border-right: 0; }
.kpi__num {
  display: block;
  font-family: var(--title);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1;
  color: var(--ink);
}
.kpi__lbl {
  display: block; margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ----------------------------- SERVICES ------------------------------- */
.services {
  background: var(--bg-2);
  color: var(--ink);
  padding: var(--sp-9) 0;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  inset: -12% 0; /* extra for parallax movement */
  background-image: url("assets/optimized/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, var(--services-parallax, 0px), 0) scale(1.05);
  filter: saturate(.95) contrast(1.05) brightness(.55);
  opacity: 1;
  z-index: 0;
  will-change: transform;
}
.services::after {
  /* readability overlay */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 20% 20%, rgba(10,10,11,.55), rgba(10,10,11,0) 60%),
    linear-gradient(180deg, rgba(10,10,11,.72) 0%, rgba(10,10,11,.55) 40%, rgba(10,10,11,.8) 100%);
  z-index: 1;
  pointer-events: none;
}
.services > .container { position: relative; z-index: 2; }
.services__head {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: var(--sp-6);
  max-width: 720px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
}
.svc {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--r-card);
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  min-height: 240px;
  display: flex; flex-direction: column;
  position: relative;
  transition:
    border-color .55s var(--ease-out),
    box-shadow .55s var(--ease-out),
    transform .35s var(--ease-out),
    background .55s var(--ease-out);
}
.svc:hover {
  border-color: rgba(45,107,255,.85);
  transform: translateY(-2px);
  box-shadow:
    0 22px 44px -26px rgba(0,0,0,.65),
    0 0 0 1px rgba(45,107,255,.22),
    0 0 0 6px rgba(45,107,255,.06);
}
.svc:hover .svc__chev { color: var(--accent); transform: translateX(4px); }
.svc__idx {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .18em;
  color: var(--muted-2);
  margin-bottom: 28px;
}
.svc__title {
  font-family: var(--title);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: 0.015em;
  margin-bottom: 10px;
  color: var(--ink);
  text-transform: capitalize;
}
.svc__desc {
  color: var(--muted);
  font-size: 14px; line-height: 1.6;
  flex: 1;
}
.svc__chev {
  position: absolute;
  top: var(--sp-4); right: var(--sp-3);
  font-size: 18px;
  color: var(--muted-2);
  transition: transform .35s var(--ease-out), color .35s var(--ease-out);
}
.svc--cta {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--ink);
  position: relative;
}
.svc--cta::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(45,107,255,.08), transparent 60%);
  pointer-events: none;
}
.svc--cta:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px -20px var(--accent-glow), 0 0 0 1px rgba(45,107,255,.2);
}
.svc--cta .btn {
  align-self: flex-start;
  margin-top: 18px;
}

/* ------------------------- PROCESS DETAILED --------------------------- */
.process {
  background: var(--bg);
  color: var(--ink);
  padding: var(--sp-9) 0;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: -16% 0; /* extra for parallax movement */
  background-image: url("assets/optimized/bg2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, var(--process-parallax, 0px), 0) scale(1.06);
  filter: saturate(.95) contrast(1.05) brightness(.48);
  opacity: 1;
  z-index: 0;
  will-change: transform;
}
.process::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 18% 20%, rgba(10,10,11,.62), rgba(10,10,11,0) 62%),
    linear-gradient(180deg, rgba(10,10,11,.78) 0%, rgba(10,10,11,.62) 44%, rgba(10,10,11,.9) 100%);
  z-index: 1;
  pointer-events: none;
}
.process > .container { position: relative; z-index: 2; }
.process__head {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: var(--sp-6);
  max-width: 720px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: border-color .35s var(--ease-out);
}
.step:hover { border-top-color: var(--accent); }
.step__num {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .16em;
  color: var(--muted-2);
  padding-top: 6px;
  position: relative;
}
.step__num::after {
  content: ""; position: absolute;
  right: 16px; top: 10px; width: 30px; height: 1px; background: var(--line);
}
.step__content h3 {
  font-family: var(--title);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: -.005em;
  margin-bottom: 10px;
  color: var(--ink);
  text-transform: capitalize;
}
.step__content p {
  color: var(--muted);
  font-size: 14px; line-height: 1.65;
  margin: 0 0 12px; max-width: 52ch;
}
.step__dur em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
}

/* ----------------------------- QUALITY -------------------------------- */
.quality {
  background: var(--bg-2);
  color: var(--ink);
  padding: var(--sp-9) 0;
}
.quality__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
.quality__copy .h-section { margin-top: var(--sp-1); }
.quality__copy .lede {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
  margin: 24px 0 28px;
  font-family: var(--display);
}
.checks {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 20px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 500;
}
.checks li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}
.checks li::before {
  content: "";
  position: absolute; left: 0; top: 5px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.quality__plate .plate {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--r-card);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.6);
  font-family: var(--mono);
}
.plate__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line-2);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--ink);
}
.plate__row:last-child { border-bottom: 0; }
.plate__row .ok {
  font-style: normal;
  color: var(--accent);
  font-size: 14px;
}
.plate__row--wide b {
  font-weight: 500; letter-spacing: .12em;
  color: var(--ink);
  font-size: 11px;
}
.plate__foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  display: flex; justify-content: space-between;
  font-size: 10px; letter-spacing: .18em;
  color: var(--muted-2); text-transform: uppercase;
}

/* ---------------------------- CASE STUDY ------------------------------ */
.case {
  background: var(--bg);
  color: var(--ink);
  padding: var(--sp-9) 0;
  border-top: 1px solid var(--line);
}
.case__head {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: var(--sp-5);
}
.case__head .h-section span { display: inline; }
.case__head .accent { margin-left: 14px; color: var(--muted); }
.case__head .accent::after { background: var(--accent); }
.case__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}
.case__lede { grid-column: 1 / -1; max-width: 60ch; }
.case__lede .lede {
  font-family: var(--display);
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}
.case__timeline {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.tl {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: transform .6s var(--ease-out), border-color .35s var(--ease-out), background .35s var(--ease-out);
  will-change: transform;
}
.tl:hover,
.tl:focus-within {
  transform: translate3d(22px, 0, 0);
  border-bottom-color: var(--accent);
  background: linear-gradient(90deg, rgba(45,107,255,.10), rgba(45,107,255,0) 55%);
}
.tl__day {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--accent);
  text-transform: uppercase;
}
.tl__evt {
  font-family: var(--display);
  font-size: 16px; font-weight: 600;
  color: var(--ink);
}
.case__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  align-self: start;
  border: 1px solid var(--line-2);
  border-radius: var(--r-card);
  overflow: hidden;
}
.metric {
  background: var(--bg-3);
  padding: 26px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.metric b {
  font-family: var(--title);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--ink);
}
.metric span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ----------------------------- CONTACT -------------------------------- */
.contact {
  background: var(--bg-2);
  color: var(--ink);
  padding: var(--sp-9) 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: ""; position: absolute; top: -20%; right: -10%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  pointer-events: none;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  position: relative;
}
.contact__copy .h-section { margin-top: var(--sp-1); }
.contact__copy .lede {
  font-family: var(--display);
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--muted);
  max-width: 44ch;
  margin: 24px 0 28px;
  line-height: 1.55;
}
.contact__meta {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.contact__meta li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
}
.contact__meta li span {
  color: var(--muted-2); text-transform: uppercase;
  white-space: nowrap;
}
.contact__meta li b {
  font-weight: 500;
  color: var(--ink);
}
.contact__link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,245,245,.22);
  transition: border-color .25s var(--ease-out), color .25s var(--ease-out);
}
.contact__link:hover {
  color: var(--accent);
  border-color: rgba(45,107,255,.65);
}
.contact__meta-break {
  height: 18px;
  border-bottom: 1px solid transparent;
}

/* Form */
.form {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.field__lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-input);
  padding: 14px 16px;
  color: var(--ink);
  font-size: 15px;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
  font-family: var(--display);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(45,107,255,.04);
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='1.5'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
}
.field select option { background: var(--bg); color: var(--ink); }

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px; color: var(--muted);
  line-height: 1.5;
}
.consent input {
  width: 16px; height: 16px; margin-top: 2px;
  accent-color: var(--accent);
}

.form__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.form__status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--muted-2);
}
.form__status.is-ok { color: #1dbd7c; }
.form__status.is-err { color: #ff5b5b; }

/* Captcha */
.captcha {
  display: flex;
  justify-content: flex-start;
}
.captcha .cf-turnstile {
  transform-origin: left top;
}

/* ----------------------------- FOOTER --------------------------------- */
.footer {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(60px, 8vw, 100px) 0 40px;
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.nav__brand--footer { margin-bottom: 14px; }
.footer__brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 28ch;
  line-height: 1.6;
  margin: 0;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer__nav h4 {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 14px; font-weight: 500;
}
.footer__nav a, .footer__nav span {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  color: var(--ink);
  padding: 5px 0;
  transition: color .25s var(--ease-out);
}
.footer__nav a:hover { color: var(--accent); }
.footer__legal {
  grid-column: 1 / -1;
  margin-top: 48px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2);
}

/* ------------------------------ MOTION -------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------- RESPONSIVE ------------------------------ */
@media (max-width: 1100px) {
  :root {
    --sp-9: 96px;
  }
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__actions { gap: 10px; }

  .hero__top::before { width: 100%; background-position: 70% center; }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__title { font-size: clamp(48px, 12vw, 84px); }
  .hero__caption { right: var(--pad-x); left: auto; }

  .procstrip__grid { grid-template-columns: repeat(4, 1fr); row-gap: 22px; }
  .ps:nth-child(4)::after { display: none; }

  .products__grid { grid-template-columns: 1fr; }
  .products__cards { grid-template-columns: repeat(3, 1fr); }

  .about__grid { grid-template-columns: 1fr; }
  .about__intro { position: static; }

  .story__grid { grid-template-columns: 1fr; }
  .story__head { position: static; }
  .az__grid { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .founder__grid { grid-template-columns: 1fr; }
  .taglines__grid { grid-template-columns: 1fr; }

  .hero-strip .procstrip__grid { grid-template-columns: repeat(2, max-content); }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: 1fr; }

  .quality__grid { grid-template-columns: 1fr; }

  .case__grid { grid-template-columns: 1fr; gap: 36px; }

  .contact__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  :root {
    --sp-9: 72px;
  }
  .nav__wordmark { font-size: 13px; letter-spacing: .12em; }
  .langswitch { display: none; }
  .nav .btn { display: none; }

  .hero {
    background-position: 60% center;
    padding-top: calc(72px + 40px);
    min-height: clamp(560px, 100vh, 760px);
  }
  .hero__top { min-height: clamp(556px, 82vh, 751px); }
  .hero__grid { margin-top: -16px; padding-bottom: 0; }
  .hero__overlay {
    top: 0; left: 0; right: 0; bottom: 0;
    background:
      linear-gradient(180deg, rgba(10,10,11,.5) 0%, rgba(10,10,11,.7) 40%, rgba(10,10,11,.92) 100%),
      linear-gradient(90deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.25) 100%);
  }
  .hero__title { font-size: clamp(42px, 13vw, 64px); }
  .hero__subtitle { font-size: 16px; }
  .hero__cta { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero__caption {
    position: relative;
    right: auto; bottom: auto;
    margin-top: 24px;
    align-self: flex-start;
  }

  .procstrip__grid { grid-template-columns: repeat(2, 1fr); }
  .ps:nth-child(n)::after { display: none; }

  .products__cards { grid-template-columns: repeat(2, 1fr); }
  .pcard:last-child { grid-column: span 2; aspect-ratio: 16/10; }

  .kpis { grid-template-columns: repeat(2, 1fr); }
  .kpi { border-bottom: 1px solid var(--line); }
  .kpi:nth-child(2n) { border-right: 0; }
  .kpi:nth-child(n+3) { border-bottom: 0; }

  .services__grid { grid-template-columns: 1fr; }

  .form__row { grid-template-columns: 1fr; }
  .contact__meta li { grid-template-columns: 120px 1fr; }

  .footer__nav { grid-template-columns: 1fr; gap: 20px; }
  .footer__legal { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Mobile menu overlay */
  body.is-menuopen .nav__menu {
    display: flex; flex-direction: column;
    position: fixed; inset: 72px 0 0 0;
    background: rgba(10,10,11,.96);
    backdrop-filter: blur(16px);
    padding: 32px var(--pad-x);
    gap: 24px;
    align-items: flex-start;
    z-index: 60;
  }
  body.is-menuopen .nav__menu a {
    font-size: 18px;
    letter-spacing: .06em;
  }
}
