/* ================================================
   MOQR — Stylesheet
   Aesthetic: Precision Instrument / B2B Refined
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&family=Space+Grotesk:wght@400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:       #0f1923;
  --navy-mid:   #162233;
  --navy-soft:  #1e2f42;
  --card-bg:    #f7f6f3;
  --white:      #faf9f7;
  --grey-100:   #eceae6;
  --grey-300:   #b8b4ac;
  --grey-500:   #7a7670;
  --cyan:       #00c8a8;
  --cyan-dim:   #009e84;
  --cyan-ghost: rgba(0,200,168,.08);
  --signal-lime:#a9d144;
  --text-main:  #1a1714;
  --text-soft:  #4a4740;
  --text-muted: #7a7670;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Instrument Sans', sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --shadow-card: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.07);
  --shadow-lift: 0 4px 24px rgba(0,0,0,.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--mid  { background: var(--navy-mid); color: var(--white); }
.section--grey { background: var(--grey-100); }

.label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  display: block;
}
.section--dark .label,
.section--mid .label { color: var(--cyan); }

h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; }

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.015em;
}
h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 640px;
}
.section--dark .lead { color: rgba(255,255,255,.7); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--cyan);
  color: var(--navy);
}
.btn--primary:hover { background: #00e0bb; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,200,168,.3); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--outline:hover { border-color: var(--cyan); color: var(--cyan); }

.btn--ghost {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--grey-300);
}
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }

.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover { background: var(--navy-soft); transform: translateY(-1px); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,25,35,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .3s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--white);
}
.nav__logo span { color: var(--cyan); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: 44px;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255,255,255,.65);
  padding: 7px 11px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a.active,
.nav__links a[aria-current="page"] {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

.nav__cta { margin-left: 16px; }
.nav__cta .btn { padding: 10px 20px; font-size: .82rem; }

/* ── Language switcher ── */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 4px;
  margin-left: auto;
  margin-right: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.nav__lang a {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.72);
  padding: 6px 10px;
  border-radius: 999px;
  transition: all .2s;
  text-decoration: none;
}
.nav__lang a:hover { color: rgba(255,255,255,.95); }
.nav__lang a.active {
  background: var(--cyan);
  color: var(--navy);
}

.nav__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Hero ── */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,200,168,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,168,.3), transparent);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__content { position: relative; z-index: 2; min-width: 0; }
.hero__visual { min-width: 0; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0,200,168,.1);
  border: 1px solid rgba(0,200,168,.2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 28px;
  max-width: 100%;
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  hyphens: auto;
  overflow-wrap: break-word;
}
.hero h1 em { font-style: normal; color: var(--cyan); }

.hero__claim {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 24px;
  line-height: 1.4;
}
.hero__claim strong { color: var(--cyan); }

.hero__text {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
  overflow-wrap: anywhere;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.hero__tagline {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  border-left: 2px solid var(--cyan);
  padding-left: 14px;
}

/* ── Hero Visual ── */
.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero--simple {
  padding-bottom: 96px;
}
.hero--simple .hero__inner {
  grid-template-columns: minmax(0, 820px);
  justify-content: start;
}
.hero--simple h1 {
  font-size: clamp(2.7rem, 6.4vw, 5.1rem);
  max-width: 920px;
}
.hero--simple .hero__text {
  max-width: 720px;
}
.hero--product h1 {
  max-width: 880px;
}
.overview-note {
  margin-top: 32px;
  padding: 22px 26px;
  border-left: 3px solid var(--cyan);
  background: rgba(15,25,35,.04);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--text-soft);
  line-height: 1.7;
}
.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.product-card--dark {
  background: var(--navy);
  color: var(--white);
  border-color: rgba(255,255,255,.08);
}
.product-card--dark p,
.product-card--dark .product-card__list li {
  color: rgba(255,255,255,.68);
}
.product-card--dark .product-card__foot {
  border-color: rgba(255,255,255,.1);
  color: var(--cyan);
}

.scenario-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.scenario-card,
.offer-card,
.notice-box {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.scenario-card__tag,
.offer-card__tag {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-dim);
}
.scenario-card h3,
.offer-card h3 {
  margin-bottom: 12px;
}
.scenario-card p,
.offer-card p,
.notice-box p {
  color: var(--text-soft);
  font-size: .94rem;
  line-height: 1.7;
}
.notice-box {
  margin-top: 36px;
  border-left: 3px solid var(--cyan);
}
.notice-box h3 {
  margin-bottom: 12px;
}

.flow-diagram {
  width: 100%;
  max-width: 400px;
}

/* ── Section headers ── */
.section__header { margin-bottom: 56px; }
.section__header p { margin-top: 16px; }

/* ── Problem Section ── */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.problem__grid > * { min-width: 0; }
.problem__questions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem__questions li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--grey-100);
  font-size: .95rem;
  color: var(--text-soft);
  transition: all .25s;
  box-shadow: var(--shadow-card);
}
.problem__questions li:hover {
  border-color: var(--cyan);
  transform: translateX(4px);
  box-shadow: var(--shadow-lift);
}
.problem__questions li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 6px;
  flex-shrink: 0;
}
.problem__conclusion {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  border-left: 3px solid var(--cyan);
}

/* ── Solution Cards ── */
.solution__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.sol-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all .25s;
}
.sol-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(0,200,168,.3);
  transform: translateY(-3px);
}
.sol-card__icon {
  width: 40px; height: 40px;
  background: var(--cyan-ghost);
  border: 1px solid rgba(0,200,168,.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.sol-card h3 { color: var(--white); margin-bottom: 12px; }
.sol-card p { color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.65; }

/* Product System */
.product-system__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all .25s;
}
.product-card:hover {
  border-color: rgba(0,200,168,.35);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}
.product-card__kicker {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-dim);
  margin-bottom: 12px;
}
.product-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}
.product-card p {
  color: var(--text-soft);
  font-size: .94rem;
  line-height: 1.7;
}
.product-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.product-card__list li {
  display: flex;
  gap: 10px;
  color: var(--text-soft);
  font-size: .88rem;
  line-height: 1.5;
}
.product-card__list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 7px;
  flex-shrink: 0;
}
.product-card__foot {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--grey-100);
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 700;
  color: var(--navy);
}
.product-flow {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.product-flow__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
}
.product-flow__item span {
  color: rgba(255,255,255,.62);
  font-size: .9rem;
  line-height: 1.6;
}
.product-flow__arrow {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
}

/* ── Overview redesign: derived from the printed MOQR card ── */
.home-redesign {
  --navy: #061b26;
  --navy-mid: #0b2531;
  --navy-soft: #11313d;
  --cyan: #00b4af;
  --cyan-dim: #008f8b;
  --white: #edf4f4;
  --card-bg: #f4f2ed;
  --grey-100: #e7e4de;
  --font-display: 'Space Grotesk', sans-serif;
}
.home-redesign .label,
.home-redesign .product-card__kicker,
.home-redesign .context-signal__label {
  font-family: 'IBM Plex Mono', monospace;
}
.home-redesign .container { max-width: 1180px; }
.home-redesign .nav {
  background: rgba(6,27,38,.94);
  border-bottom-color: rgba(0,180,175,.16);
}
.home-redesign .nav__logo,
.home-redesign .footer__logo {
  letter-spacing: .04em;
}
.home-redesign .hero--overview {
  min-height: 760px;
  padding-top: 156px;
  padding-bottom: 112px;
  background:
    linear-gradient(rgba(0,180,175,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,175,.04) 1px, transparent 1px),
    var(--navy);
  background-size: 72px 72px;
}
.home-redesign .hero--overview::before {
  top: auto;
  right: -12%;
  bottom: -42%;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(0,180,175,.13), transparent 68%);
}
.home-redesign .hero--overview .hero__inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 72px;
}
.home-redesign .hero__eyebrow {
  position: relative;
  padding: 0 0 0 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .7rem;
  letter-spacing: .16em;
}
.home-redesign .hero__eyebrow::before {
  width: 22px;
  height: 1px;
  border-radius: 0;
  background: var(--signal-lime);
  animation: none;
  position: absolute;
  left: 0;
}
.home-redesign .hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.7vw, 5.5rem);
  font-weight: 600;
  line-height: .99;
  letter-spacing: -.045em;
  margin-bottom: 30px;
}
.home-redesign .hero h1 em {
  font-weight: 600;
  color: var(--cyan);
}
.home-redesign .hero__claim {
  max-width: 620px;
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.home-redesign .hero__text {
  max-width: 620px;
  color: rgba(237,244,244,.68);
}
.home-redesign .hero__tagline {
  border-left-color: var(--signal-lime);
  color: rgba(237,244,244,.52);
}
.home-redesign .btn--primary {
  background: var(--signal-lime);
  color: var(--navy);
}
.home-redesign .btn--primary:hover {
  background: #b8dd55;
  box-shadow: 0 8px 28px rgba(169,209,68,.2);
}

.context-signal {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
}
.context-signal__orbit,
.context-signal__arc {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(0,180,175,.22);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.context-signal__orbit--1 { width: 43%; height: 43%; }
.context-signal__orbit--2 { width: 68%; height: 68%; }
.context-signal__orbit--3 { width: 94%; height: 94%; border-color: rgba(0,180,175,.12); }
.context-signal__arc {
  border-color: transparent;
  border-top-color: var(--cyan);
  border-right-color: rgba(0,180,175,.45);
}
.context-signal__arc--1 { width: 104%; height: 104%; transform: translate(-50%,-50%) rotate(24deg); }
.context-signal__arc--2 { width: 76%; height: 76%; transform: translate(-50%,-50%) rotate(196deg); opacity: .55; }
.context-signal__route {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44%;
  border-top: 1px dashed var(--signal-lime);
  transform: rotate(-28deg);
  transform-origin: left center;
}
.context-signal__point {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.context-signal__point--scan {
  left: calc(50% - 5px);
  top: calc(50% - 5px);
  background: var(--cyan);
  box-shadow: 0 0 0 9px rgba(0,180,175,.12);
}
.context-signal__point--follow {
  right: 10%;
  top: 28%;
  background: var(--signal-lime);
  box-shadow: 0 0 18px rgba(169,209,68,.5);
}
.context-signal__label {
  position: absolute;
  color: rgba(237,244,244,.55);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.context-signal__label--scan { left: 34%; top: 56%; }
.context-signal__label--follow { right: 0; top: 20%; color: var(--signal-lime); }
.context-signal__core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(0,180,175,.45);
  display: grid;
  grid-template-columns: repeat(3, 8px);
  grid-auto-rows: 8px;
  gap: 5px;
  place-content: center;
  background: rgba(11,37,49,.88);
  border-radius: 10px;
}
.context-signal__core i { display: block; background: var(--cyan); }
.context-signal__core i:nth-child(2) { grid-column: 3; }
.context-signal__core i:nth-child(3) { grid-column: 1; }
.context-signal__core i:nth-child(4) { grid-column: 2; }
.context-signal__core i:nth-child(5) { grid-column: 3; opacity: .45; }

.home-redesign #produkte {
  position: relative;
  background: var(--card-bg);
}
.home-redesign #produkte::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - 590px);
  width: min(170px, 18vw);
  height: 4px;
  background: linear-gradient(90deg, var(--signal-lime) 0 32%, var(--cyan) 32% 100%);
}
.home-redesign .section__header--editorial {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  column-gap: 72px;
  align-items: end;
}
.home-redesign .section__header--editorial .label { grid-column: 1 / -1; }
.home-redesign .section__header--editorial h2 {
  font-size: clamp(2.35rem, 4.3vw, 4.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.04em;
}
.home-redesign .section__header--editorial p { margin: 0 0 4px; }
.home-redesign .product-system__grid--route {
  position: relative;
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid rgba(6,27,38,.16);
  border-bottom: 1px solid rgba(6,27,38,.16);
}
.home-redesign .product-system__grid--route::before {
  content: '';
  position: absolute;
  top: -5px;
  left: calc(50% - 4px);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--signal-lime);
  z-index: 3;
}
.home-redesign .product-card {
  position: relative;
  border: 0;
  border-radius: 0;
  padding: 56px 54px 50px;
  box-shadow: none;
  transform: none;
}
.home-redesign .product-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}
.home-redesign .product-card--meet {
  background: var(--navy);
  color: var(--white);
}
.home-redesign .product-card--follow {
  background: #fff;
  border-right: 1px solid rgba(6,27,38,.1);
}
.home-redesign .product-card__number {
  position: absolute;
  right: 32px;
  top: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 3rem;
  color: rgba(0,180,175,.14);
  line-height: 1;
}
.home-redesign .product-card__kicker {
  color: var(--cyan);
  letter-spacing: .15em;
  margin-bottom: 28px;
}
.home-redesign .product-card h3 {
  max-width: 19ch;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -.025em;
  margin-bottom: 24px;
}
.home-redesign .product-card--meet p,
.home-redesign .product-card--meet .product-card__list li {
  color: rgba(237,244,244,.69);
}
.home-redesign .product-card__list li::before {
  width: 6px;
  height: 6px;
  border-radius: 0;
  transform: rotate(45deg);
}
.home-redesign .product-card--meet .product-card__list li::before { background: var(--signal-lime); }
.home-redesign .product-card--meet .product-card__foot {
  border-color: rgba(237,244,244,.13);
  color: var(--signal-lime);
}
.home-redesign .product-card__actions .btn { padding-inline: 20px; }
.home-redesign .product-card--meet .btn--ghost {
  color: var(--white);
  border-color: rgba(237,244,244,.3);
}
.home-redesign .product-card--meet .btn--ghost:hover {
  color: var(--signal-lime);
  border-color: var(--signal-lime);
}
.home-redesign .product-flow--signal {
  margin-top: 32px;
  padding: 26px 0;
  background: transparent;
  color: var(--navy);
  border-radius: 0;
  border-bottom: 1px solid rgba(6,27,38,.16);
}
.home-redesign .product-flow--signal .product-flow__item {
  padding: 0 32px;
}
.home-redesign .product-flow--signal .product-flow__item strong { color: var(--cyan-dim); }
.home-redesign .product-flow--signal .product-flow__item span { color: var(--text-soft); }
.home-redesign .product-flow--signal .product-flow__arrow {
  position: relative;
  width: 96px;
  text-align: center;
  color: var(--navy);
}
.home-redesign .product-flow--signal .product-flow__arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px dashed var(--cyan);
}
.home-redesign .product-flow--signal .product-flow__arrow span {
  position: relative;
  z-index: 1;
  padding-left: 6px;
  background: var(--card-bg);
  color: var(--signal-lime);
}
.home-redesign .cta-section {
  background:
    radial-gradient(circle at 84% 74%, rgba(0,180,175,.12), transparent 30%),
    var(--navy);
}
.home-redesign .contact__card { border-radius: 0; border-color: rgba(0,180,175,.18); }

/* ── Overview redesign v2: one continuous route ── */
.home-redesign #produkte {
  overflow: hidden;
}
.home-redesign #produkte::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 88px;
  width: 156px;
  height: 156px;
  opacity: .22;
  background-image: radial-gradient(circle, var(--cyan) 1.4px, transparent 1.6px);
  background-size: 13px 13px;
  pointer-events: none;
}
.home-redesign .section__header--editorial {
  position: relative;
  z-index: 1;
  margin-bottom: 76px;
}
.home-redesign .product-system__grid--route {
  display: block;
  margin-top: 0;
  border: 0;
  isolation: isolate;
}
.home-redesign .product-system__grid--route::before {
  top: 34px;
  bottom: 34px;
  left: 50%;
  width: 1px;
  height: auto;
  border-radius: 0;
  background: repeating-linear-gradient(to bottom, var(--cyan) 0 5px, transparent 5px 12px);
  opacity: .55;
  z-index: -1;
}
.home-redesign .product-card {
  width: calc(100% - 104px);
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  grid-template-areas:
    'kicker visual'
    'title visual'
    'copy visual'
    'list visual'
    'foot visual'
    'actions visual';
  column-gap: clamp(44px, 5vw, 74px);
  align-content: center;
  overflow: hidden;
}
.home-redesign .product-card--meet {
  margin-right: 104px;
  padding: 72px 70px 64px;
  border-left: 4px solid var(--signal-lime);
  background:
    radial-gradient(circle at 8% 110%, rgba(0,180,175,.17), transparent 34%),
    var(--navy);
}
.home-redesign .product-card--meet::after {
  content: '';
  position: absolute;
  left: -175px;
  bottom: -220px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(0,180,175,.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(0,180,175,.035),
    0 0 0 105px rgba(0,180,175,.025);
  pointer-events: none;
}
.home-redesign .product-card--follow {
  margin: 76px 0 0 104px;
  padding: 72px 70px 64px;
  border-right: 4px solid var(--cyan);
  background: #fff;
}
.home-redesign .product-card__kicker { grid-area: kicker; align-self: end; }
.home-redesign .product-card h3 { grid-area: title; align-self: start; }
.home-redesign .product-card > p { grid-area: copy; align-self: start; }
.home-redesign .product-card__list { grid-area: list; }
.home-redesign .product-card__foot { grid-area: foot; }
.home-redesign .product-card__actions { grid-area: actions; }
.home-redesign .product-card__visual {
  grid-area: visual;
  position: relative;
  align-self: stretch;
  min-height: 390px;
  overflow: hidden;
}
.home-redesign .product-card__visual--meet {
  border: 1px solid rgba(0, 180, 175, .25);
  background:
    linear-gradient(rgba(0, 180, 175, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 175, .05) 1px, transparent 1px),
    rgba(255, 255, 255, .025);
  background-size: 34px 34px;
}
.home-redesign .product-visual__ring {
  position: absolute;
  left: 50%;
  top: 42%;
  border: 1px solid rgba(0, 180, 175, .42);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.home-redesign .product-visual__ring--1 { width: 242px; height: 242px; }
.home-redesign .product-visual__ring--2 { width: 174px; height: 174px; opacity: .72; }
.home-redesign .product-visual__ring--3 { width: 108px; height: 108px; opacity: .5; }
.home-redesign .product-visual__core {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 72px;
  height: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 13px;
  border: 1px solid var(--cyan);
  background: var(--navy);
  transform: translate(-50%, -50%);
}
.home-redesign .product-visual__core i { background: var(--cyan); }
.home-redesign .product-visual__core i:nth-child(2),
.home-redesign .product-visual__core i:nth-child(3) { opacity: .38; }
.home-redesign .product-visual__route {
  position: absolute;
  left: 50%;
  top: calc(42% + 122px);
  bottom: 36px;
  border-left: 1px dashed rgba(0, 180, 175, .72);
}
.home-redesign .product-visual__target {
  position: absolute;
  left: 50%;
  bottom: 25px;
  width: 13px;
  height: 13px;
  background: var(--signal-lime);
  transform: translateX(-50%) rotate(45deg);
}
.home-redesign .product-card__visual--follow {
  min-height: 410px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 38px 1.15fr .85fr;
  gap: 12px;
  border: 1px solid rgba(0, 143, 139, .2);
  background:
    linear-gradient(rgba(0, 143, 139, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 143, 139, .07) 1px, transparent 1px),
    #e6f2ef;
  background-size: 34px 34px;
}
.home-redesign .follow-visual__bar {
  grid-column: 1 / -1;
  position: relative;
  border: 1px solid rgba(0, 143, 139, .28);
  background: rgba(255, 255, 255, .72);
}
.home-redesign .follow-visual__bar::before,
.home-redesign .follow-visual__bar::after {
  content: '';
  position: absolute;
  top: 14px;
  width: 32px;
  height: 7px;
  background: var(--cyan-dim);
}
.home-redesign .follow-visual__bar::before { left: 15px; }
.home-redesign .follow-visual__bar::after { right: 15px; width: 54px; opacity: .35; }
.home-redesign .follow-visual__tile {
  position: relative;
  border: 1px solid rgba(0, 143, 139, .22);
  background: rgba(255, 255, 255, .84);
}
.home-redesign .follow-visual__tile::before,
.home-redesign .follow-visual__tile::after {
  content: '';
  position: absolute;
  left: 18px;
  bottom: 22px;
  height: 4px;
  background: var(--cyan-dim);
}
.home-redesign .follow-visual__tile::before { width: 56%; }
.home-redesign .follow-visual__tile::after { bottom: 12px; width: 34%; opacity: .42; }
.home-redesign .follow-visual__tile--wide {
  grid-column: 1 / -1;
  background: var(--cyan-dim);
}
.home-redesign .follow-visual__tile--wide::before,
.home-redesign .follow-visual__tile--wide::after { background: #fff; }
.home-redesign .follow-visual__mail {
  position: absolute;
  right: 14px;
  bottom: 13px;
  width: 46%;
  min-width: 150px;
  padding: 20px 18px;
  border: 1px solid rgba(6, 27, 38, .18);
  background: var(--signal-lime);
  box-shadow: -12px 12px 0 rgba(255, 255, 255, .74);
}
.home-redesign .follow-visual__mail i {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 8px;
  background: rgba(6, 27, 38, .72);
}
.home-redesign .follow-visual__mail i:first-child { margin-top: 0; }
.home-redesign .follow-visual__mail i:nth-child(2) { width: 78%; }
.home-redesign .follow-visual__mail i:nth-child(3) { width: 48%; }
.home-redesign .product-card__signal {
  display: none;
}
.home-redesign .product-card--meet .product-card__signal { right: 30px; bottom: 28px; }
.home-redesign .product-card--follow .product-card__signal { left: 30px; top: 28px; }
.home-redesign .product-card__signal span {
  width: 7px;
  height: 7px;
  background: var(--cyan);
}
.home-redesign .product-card__signal span:nth-child(2) { opacity: .55; }
.home-redesign .product-card__signal span:nth-child(3) { background: var(--signal-lime); }
.home-redesign .product-card--follow .product-card__signal {
  left: auto;
  right: 38px;
  top: auto;
  bottom: 36px;
  width: 118px;
  flex-direction: column;
  gap: 9px;
  padding: 18px 20px;
  border: 1px solid rgba(0,143,139,.22);
  background: rgba(255,255,255,.5);
}
.home-redesign .product-card--follow .product-card__signal::before {
  content: '';
  position: absolute;
  left: -14px;
  top: -14px;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(0,143,139,.12);
  z-index: -1;
}
.home-redesign .product-card--follow .product-card__signal span {
  height: 2px;
  width: 100%;
  background: var(--cyan-dim);
  opacity: .58;
}
.home-redesign .product-card--follow .product-card__signal span:nth-child(2) {
  width: 72%;
  opacity: .4;
}
.home-redesign .product-card--follow .product-card__signal span:nth-child(3) {
  width: 42%;
  background: var(--signal-lime);
  opacity: 1;
}
.home-redesign .product-card--follow::after {
  display: none;
}
.home-redesign .product-card--follow > * {
  position: relative;
  z-index: 1;
}
.home-redesign .product-card--follow .product-card__number { left: auto; right: 32px; }
.home-redesign .product-flow--signal {
  position: relative;
  margin: 52px 0 0;
  padding: 46px 70px 54px;
  border-top: 1px solid rgba(6,27,38,.14);
  border-bottom: 1px solid rgba(6,27,38,.14);
  background: rgba(255,255,255,.38);
}
.home-redesign .product-flow--signal::before,
.home-redesign .product-flow--signal::after {
  content: '';
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
}
.home-redesign .product-flow--signal::before { left: 24%; background: var(--cyan); }
.home-redesign .product-flow--signal::after { right: 24%; background: var(--signal-lime); }

.home-redesign .cta-section {
  min-height: 600px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0,180,175,.28);
}
.home-redesign .cta-section::after {
  content: '';
  position: absolute;
  right: -160px;
  top: 50%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(0,180,175,.15);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 64px rgba(0,180,175,.025), 0 0 0 130px rgba(0,180,175,.018);
}
.home-redesign .cta-route {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 72px;
  background: repeating-linear-gradient(to bottom, var(--signal-lime) 0 5px, transparent 5px 11px);
}
.home-redesign .cta-route span {
  position: absolute;
  left: -5px;
  bottom: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--signal-lime);
  box-shadow: 0 0 18px rgba(169,209,68,.45);
}
.home-redesign .cta__inner {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 110px;
  align-items: center;
}
.home-redesign .cta__inner h2 {
  max-width: 14ch;
  font-size: clamp(2.45rem, 4.5vw, 4.35rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.04em;
}
.home-redesign .cta__inner p { max-width: 590px; }
.home-redesign .contact__card--endpoint {
  padding: 10px 0 10px 38px;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(0,180,175,.4);
}
.home-redesign .contact__card--endpoint h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
}
.home-redesign .contact__card--endpoint .contact__items { gap: 0; }
.home-redesign .contact__card--endpoint .contact__item {
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(237,244,244,.1);
  border-radius: 0;
}

/* ── Product screenshots: stable slots for localized app captures ── */
.hero--showcase {
  padding-top: 132px;
  padding-bottom: 88px;
}
.hero--showcase .hero__inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(48px, 7vw, 92px);
}
.hero--showcase .hero__content { max-width: 720px; }
.product-showcase {
  align-self: stretch;
  min-height: 520px;
}
.screen-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6,27,38,.16);
  background: #f4f1ea;
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
}
.screen-placeholder::before {
  content: attr(data-slot);
  position: absolute;
  z-index: 3;
  right: 14px;
  top: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .62rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.72);
}
.screen-placeholder--portrait {
  width: min(100%, 330px);
  aspect-ratio: .63;
  border-radius: 24px;
}
.screen-placeholder--landscape {
  width: min(100%, 520px);
  aspect-ratio: 1.28;
  border-radius: 4px;
}
.screen-placeholder__chrome {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.screen-placeholder__chrome span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.screen-placeholder__chrome span:nth-child(2) { opacity: .55; }
.screen-placeholder__chrome span:nth-child(3) { background: var(--signal-lime); }
.screen-placeholder__body {
  height: calc(100% - 54px);
  padding: clamp(20px, 4vw, 34px);
  display: grid;
  align-content: start;
  gap: 14px;
}
.screen-placeholder__body i { display: block; }
.screen-placeholder__headline {
  width: 78%;
  height: 18px;
  margin-bottom: 5px;
  background: var(--navy);
}
.screen-placeholder__line {
  width: 58%;
  height: 6px;
  margin-bottom: 12px;
  background: rgba(6,27,38,.24);
}
.screen-placeholder__field {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(6,27,38,.24);
  background: rgba(255,255,255,.72);
}
.screen-placeholder__field--short { width: 72%; }
.screen-placeholder__button {
  width: 100%;
  height: 46px;
  margin-top: 5px;
  background: var(--cyan);
}
.screen-placeholder__choice {
  height: 62px;
  border: 1px solid rgba(6,27,38,.16);
  background: rgba(255,255,255,.84);
}
.screen-placeholder__copy {
  height: 58px;
  background: repeating-linear-gradient(to bottom, rgba(6,27,38,.22) 0 2px, transparent 2px 12px);
}
.screen-placeholder__copy--short { width: 68%; }
.screen-placeholder__contact {
  height: 46px;
  border-left: 3px solid var(--cyan);
  background: rgba(0,180,175,.08);
}
.screen-placeholder--meet {
  transform: rotate(1.4deg);
  border-color: rgba(0,180,175,.35);
}
.screen-placeholder--meet .screen-placeholder__body {
  background: linear-gradient(var(--navy) 0 29%, #f4f1ea 29% 100%);
  padding-top: 48%;
}
.screen-placeholder--meet .screen-placeholder__headline {
  position: absolute;
  left: 26px;
  top: 88px;
  width: 72%;
  height: 34px;
  background: var(--white);
}
.screen-placeholder--questions .screen-placeholder__body {
  grid-template-columns: 1fr 1fr;
}
.screen-placeholder--questions .screen-placeholder__headline,
.screen-placeholder--questions .screen-placeholder__button { grid-column: 1 / -1; }
.screen-placeholder--result .screen-placeholder__body {
  background: linear-gradient(180deg, #edf4f4, #f4f1ea);
}

.screen-placeholder--dashboard .screen-placeholder__body {
  grid-template-columns: 1fr 1fr;
  background: #f4f1ea;
}
.screen-placeholder__tile {
  min-height: 74px;
  background: #16856f;
}
.screen-placeholder__tile--wide {
  grid-column: 1 / -1;
  min-height: 108px;
  background: #0f6555;
}
.screen-placeholder--dashboard .screen-placeholder__headline { grid-column: 1 / -1; }
.screen-placeholder--capture .screen-placeholder__body,
.screen-placeholder--context .screen-placeholder__body {
  grid-template-columns: 1fr 1fr;
}
.screen-placeholder--capture .screen-placeholder__scan {
  grid-row: span 3;
  min-height: 174px;
  border: 1px dashed rgba(6,27,38,.28);
  background:
    linear-gradient(45deg, transparent 48%, var(--cyan) 49% 51%, transparent 52%),
    rgba(0,180,175,.08);
}
.screen-placeholder--capture .screen-placeholder__button { grid-column: 2; }
.screen-placeholder--context .screen-placeholder__headline,
.screen-placeholder--context .screen-placeholder__copy,
.screen-placeholder--context .screen-placeholder__button { grid-column: 1 / -1; }
.screen-placeholder--mail .screen-placeholder__body {
  padding: 30px 42px;
  background: #fff;
}
.screen-placeholder__mail-head {
  height: 40px;
  border-bottom: 1px solid rgba(6,27,38,.14);
  background: linear-gradient(90deg, var(--cyan) 0 18%, transparent 18%);
}
.product-screens {
  display: grid;
  gap: 28px;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(6,27,38,.14);
}
.product-screens--meet {
  grid-template-columns: repeat(2, minmax(0, 310px));
  justify-content: center;
}
.product-preview-section .product-screens--meet {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}
.product-screens--follow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.product-screens--follow .screen-placeholder:first-child {
  grid-column: 1 / -1;
  width: min(100%, 720px);
  justify-self: center;
}
.product-screens .screen-placeholder {
  width: 100%;
  box-shadow: 0 16px 38px rgba(6,27,38,.12);
}
.product-screens--meet .screen-placeholder:nth-child(2) { margin-top: 54px; }
.product-page--follow .hero--showcase {
  background:
    linear-gradient(rgba(0,143,139,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,143,139,.055) 1px, transparent 1px),
    linear-gradient(115deg, #f7f4ee 0 58%, #e4f1ee 58% 100%);
  background-size: 38px 38px, 38px 38px, auto;
  border-bottom: 1px solid rgba(0,143,139,.18);
}
.product-page--follow .hero--showcase::after {
  height: 4px;
  background: linear-gradient(90deg, var(--signal-lime) 0 18%, var(--cyan) 18% 38%, transparent 38%);
}
.product-page--follow .hero--showcase h1 { color: var(--navy); }
.product-page--follow .hero--showcase .hero__claim { color: rgba(6,27,38,.86); }
.product-page--follow .hero--showcase .hero__text { color: rgba(6,27,38,.68); }
.product-page--follow .hero--showcase .hero__eyebrow {
  background: rgba(255,255,255,.68);
  border-color: rgba(0,143,139,.26);
  color: var(--cyan-dim);
}
.product-page--follow .hero--showcase .btn--outline {
  border-color: rgba(6,27,38,.32);
  color: var(--navy);
}
.product-page--follow .hero--showcase .btn--outline:hover {
  border-color: var(--cyan-dim);
  background: rgba(0,143,139,.08);
}
.product-page--follow .hero--showcase .screen-placeholder {
  box-shadow: 18px 18px 0 rgba(168,211,58,.78), 0 24px 55px rgba(6,27,38,.15);
}
.product-page .hero--showcase .btn--primary,
.product-page .cta-section--overview .btn--primary,
.product-page .nav__cta .btn--primary {
  background: var(--signal-lime);
  color: var(--navy);
}
.product-page .hero--showcase .btn--primary:hover,
.product-page .cta-section--overview .btn--primary:hover,
.product-page .nav__cta .btn--primary:hover {
  background: #b9df55;
  box-shadow: 0 6px 20px rgba(169,209,68,.24);
}
.product-page--follow .hero--showcase .hero__eyebrow::before,
.product-page--meet .hero--showcase .hero__eyebrow::before {
  background: var(--signal-lime);
}
.product-page--follow .product-showcase { min-height: 430px; }

/* Product pages: shared editorial system, with distinct Meet and Follow modes */
.product-page .section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(92px, 10vw, 138px);
  padding-bottom: clamp(92px, 10vw, 138px);
}
.product-page .section__header {
  max-width: 880px;
  margin-bottom: clamp(48px, 6vw, 76px);
}
.product-page .section__header .label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: .15em;
}
.product-page .section__header .label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--cyan);
}
.product-page .section__header h2 {
  max-width: 850px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.product-page .section__header .lead {
  max-width: 700px;
  font-size: 1.03rem;
}
.product-page .process__steps {
  gap: 12px;
}
.product-page .process__steps::before {
  top: 25px;
  left: 0;
  right: 0;
  background: repeating-linear-gradient(90deg, var(--cyan) 0 7px, transparent 7px 15px);
  opacity: .35;
}
.product-page .process__step {
  min-height: 255px;
  padding: 76px 24px 28px;
  text-align: left;
  border: 1px solid rgba(6,27,38,.12);
  background: rgba(255,255,255,.78);
}
.product-page .process__step:first-child { padding-left: 24px; }
.product-page .process__step:last-child { padding-right: 24px; }
.product-page .step__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: var(--navy);
  color: var(--cyan);
  font-family: 'IBM Plex Mono', monospace;
}
.product-page .process__step:hover .step__num,
.product-page .step__num--highlight {
  border: 0;
  background: var(--cyan);
  color: var(--navy);
  transform: none;
}
.product-page .process__step h3 {
  font-size: 1.08rem;
  margin-bottom: 14px;
}
.product-page .process__step p {
  font-size: .91rem;
  line-height: 1.65;
}
.product-page .cta-section {
  padding-top: clamp(96px, 10vw, 140px);
  padding-bottom: clamp(96px, 10vw, 140px);
  background:
    linear-gradient(rgba(0,180,175,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,175,.035) 1px, transparent 1px),
    var(--navy);
  background-size: 38px 38px;
}
.product-page .cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 72px;
  background: repeating-linear-gradient(to bottom, var(--signal-lime) 0 6px, transparent 6px 12px);
}
.product-page .contact__card {
  border-radius: 0;
  border-top: 3px solid var(--cyan);
  box-shadow: 14px 14px 0 rgba(0,180,175,.11);
}

/* Meet keeps the visual language of the card: dark fields, scan signals and circles. */
.product-page--meet .section--grey {
  background:
    radial-gradient(circle at 92% 12%, rgba(0,180,175,.11), transparent 24%),
    #eef1ed;
}
.product-page--meet .hero--showcase::after {
  height: 4px;
  background: linear-gradient(90deg, var(--signal-lime) 0 12%, var(--cyan) 12% 34%, transparent 34%);
}
.product-page--meet .hero--showcase .screen-placeholder {
  box-shadow: 14px 14px 0 rgba(169,209,68,.42), 0 24px 55px rgba(0,0,0,.2);
}
.product-page--meet .section--grey::after {
  content: '';
  position: absolute;
  right: -170px;
  top: 80px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(0,180,175,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(0,180,175,.035), 0 0 0 108px rgba(0,180,175,.025);
  pointer-events: none;
}
.product-page--meet .process__step:nth-child(3) {
  background: var(--navy);
  border-color: var(--navy);
  border-top: 4px solid var(--signal-lime);
}
.product-page--meet .process__step:nth-child(3) .step__num {
  background: var(--signal-lime);
  color: var(--navy);
}
.product-page--meet .process__step:nth-child(3) h3 { color: var(--white); }
.product-page--meet .process__step:nth-child(3) p { color: rgba(255,255,255,.65); }
.product-page--meet .features__grid {
  gap: 0;
  border-top: 1px solid rgba(6,27,38,.14);
}
.product-page--meet .feature-item {
  min-height: 104px;
  border: 0;
  border-bottom: 1px solid rgba(6,27,38,.14);
  border-radius: 0;
  background: transparent;
}
.product-page--meet .feature-item:nth-child(odd) { border-right: 1px solid rgba(6,27,38,.14); }
.product-page--meet .feature-item:hover {
  border-color: rgba(6,27,38,.14);
  background: rgba(0,180,175,.06);
  transform: none;
}
.product-page--meet .feature-item__dot {
  width: 11px;
  height: 11px;
  border-radius: 0;
  transform: rotate(45deg);
}
.product-page--meet .feature-item:nth-child(3n + 1) .feature-item__dot {
  background: var(--signal-lime);
}

/* Follow is a lighter workspace: flat modules, visible structure and lime decisions. */
.product-page--follow .section--grey {
  background:
    linear-gradient(rgba(0,143,139,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,143,139,.055) 1px, transparent 1px),
    #e7f1ee;
  background-size: 38px 38px;
}
.product-page--follow .scenario-grid,
.product-page--follow .offer-grid {
  gap: 0;
  border-top: 1px solid rgba(6,27,38,.16);
  border-left: 1px solid rgba(6,27,38,.16);
}
.product-page--follow .scenario-card,
.product-page--follow .offer-card {
  min-height: 290px;
  padding: 34px 30px;
  border: 0;
  border-right: 1px solid rgba(6,27,38,.16);
  border-bottom: 1px solid rgba(6,27,38,.16);
  border-radius: 0;
  box-shadow: none;
  background: rgba(255,255,255,.68);
}
.product-page--follow .scenario-card:nth-child(2),
.product-page--follow .offer-card:nth-child(2) {
  background: rgba(255,255,255,.92);
}
.product-page--follow .scenario-card__tag,
.product-page--follow .offer-card__tag {
  padding: 7px 10px;
  margin-bottom: 34px;
  background: var(--navy);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
}
.product-page--follow .scenario-card:nth-child(2) .scenario-card__tag,
.product-page--follow .offer-card:nth-child(2) .offer-card__tag {
  background: var(--signal-lime);
  color: var(--navy);
}
.product-page--follow .process__step:last-child {
  border-top: 4px solid var(--signal-lime);
}
.product-page--follow .process__step:last-child .step__num {
  background: var(--signal-lime);
  color: var(--navy);
}
.product-page--follow .notice-box {
  position: relative;
  max-width: 920px;
  margin: 72px 0 0 auto;
  padding: 38px 44px 40px 74px;
  border: 0;
  border-radius: 0;
  background: var(--signal-lime);
  box-shadow: -14px 14px 0 #e4f1ee;
}
.product-page--follow .notice-box::before {
  content: '✓';
  position: absolute;
  left: 28px;
  top: 35px;
  font-size: 1.45rem;
  color: var(--navy);
}
.product-page--follow .notice-box h3,
.product-page--follow .notice-box p { color: var(--navy); }
.product-page--follow .notice-box p { max-width: 760px; }

.product-page--follow {
  --navy: #061b26;
  --navy-mid: #0b2531;
  --navy-soft: #11313d;
  --cyan: #00b4af;
  --cyan-dim: #008f8b;
  --white: #edf4f4;
  --font-display: 'Space Grotesk', sans-serif;
}
.product-page--follow h1,
.product-page--follow h2,
.product-page--follow h3 {
  hyphens: none;
  overflow-wrap: break-word;
}
.product-page--meet {
  --navy: #061b26;
  --navy-mid: #0b2531;
  --navy-soft: #11313d;
  --cyan: #00b4af;
  --cyan-dim: #008f8b;
  --white: #edf4f4;
  --font-display: 'Space Grotesk', sans-serif;
}
.product-page--meet h1,
.product-page--meet h2,
.product-page--meet h3 {
  hyphens: none;
  overflow-wrap: break-word;
}

/* Localized product pages retain their copy while sharing the redesigned system. */
.product-page--meet .hero--simple.hero--product {
  background:
    radial-gradient(circle at 88% 18%, rgba(0,180,175,.13), transparent 27%),
    var(--navy);
  border-bottom: 4px solid var(--signal-lime);
}
.product-page--follow .hero--simple.hero--product {
  background:
    linear-gradient(rgba(0,143,139,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,143,139,.055) 1px, transparent 1px),
    linear-gradient(115deg, #f7f4ee, #e4f1ee);
  background-size: 38px 38px, 38px 38px, auto;
  border-bottom: 4px solid var(--signal-lime);
}
.product-page--follow .hero--simple.hero--product h1 { color: var(--navy); }
.product-page--follow .hero--simple.hero--product .hero__claim { color: rgba(6,27,38,.86); }
.product-page--follow .hero--simple.hero--product .hero__text { color: rgba(6,27,38,.68); }
.product-page--follow .hero--simple.hero--product .hero__eyebrow {
  background: rgba(255,255,255,.68);
  border-color: rgba(0,143,139,.26);
  color: var(--cyan-dim);
}
.product-page--follow .hero--simple.hero--product .btn--outline {
  border-color: rgba(6,27,38,.32);
  color: var(--navy);
}
.home-redesign .hero--overview .hero__inner:not(:has(.hero__visual)) {
  grid-template-columns: minmax(0, 900px);
}

/* Legal pages use the brand system without competing with the legal content. */
.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,143,139,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,143,139,.035) 1px, transparent 1px),
    #f4f1ea;
  background-size: 38px 38px;
  font-family: 'Space Grotesk', sans-serif;
}
.legal-page::before {
  content: 'MOQR';
  display: block;
  padding: 25px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 4px solid var(--signal-lime);
  background: var(--navy);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .16em;
}
.legal-page .section { padding: clamp(64px, 8vw, 108px) 0; }
.legal-page h1 {
  max-width: 860px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  letter-spacing: -.055em;
}
.legal-page main .container > div {
  padding: clamp(28px, 5vw, 56px);
  border-top: 3px solid var(--cyan);
  background: rgba(255,255,255,.78);
  box-shadow: 14px 14px 0 rgba(0,180,175,.08);
}
.legal-page main p { overflow-wrap: anywhere; }
.legal-page main a:not(.btn) { color: var(--cyan-dim); }

/* ── Process / Steps ── */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 28px; right: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--grey-300), var(--grey-300));
  z-index: 0;
}
.process__step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}
.process__step:first-child { padding-left: 0; }
.process__step:last-child { padding-right: 0; }

.step__num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--grey-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto 20px;
  transition: all .25s;
}
.process__step:hover .step__num {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
  transform: scale(1.1);
}
.step__num--highlight {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cyan);
}
.process__step h3 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}
.process__step p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Second row */
.process__note {
  margin-top: 48px;
  padding: 20px 28px;
  background: var(--cyan-ghost);
  border: 1px solid rgba(0,200,168,.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 16px;
}
.process__note-icon {
  width: 36px; height: 36px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  font-size: 1rem;
}
.process__note p {
  font-size: .9rem;
  color: var(--text-soft);
  font-weight: 500;
}
.process__note strong { color: var(--cyan-dim); }

/* ── Examples ── */
.examples__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.example-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-card);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.example-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.example-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.example-card:hover::before { transform: scaleX(1); }

.example-card__tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--grey-100);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.example-card h3 { margin-bottom: 12px; font-size: 1.05rem; }
.example-card p { font-size: .9rem; color: var(--text-soft); line-height: 1.7; }

/* ── Features Grid ── */
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-md);
  transition: all .2s;
}
.feature-item:hover {
  background: #f8faf9;
  border-color: rgba(0,200,168,.2);
}
.feature-item__dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.feature-item span {
  font-size: .92rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.section--dark .feature-item {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.07);
}
.section--dark .feature-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(0,200,168,.2);
}
.section--dark .feature-item span {
  color: rgba(255,255,255,.8);
}

/* ── QR Reuse section ── */
.reuse__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reuse__inner > * { min-width: 0; }
.reuse__visual {
  display: flex;
  justify-content: center;
}
.qr-anim {
  position: relative;
  width: 220px; height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,200,168,.2);
  animation: ringpulse 3s ease-in-out infinite;
}
.qr-ring:nth-child(1) { width: 100%; height: 100%; animation-delay: 0s; }
.qr-ring:nth-child(2) { width: 75%; height: 75%; animation-delay: .5s; }
.qr-ring:nth-child(3) { width: 50%; height: 50%; animation-delay: 1s; }

@keyframes ringpulse {
  0%,100% { opacity: .4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
.qr-center {
  position: relative;
  z-index: 2;
  width: 90px; height: 90px;
  background: var(--navy-soft);
  border: 1.5px solid rgba(0,200,168,.4);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── For Whom ── */
.forwhom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.forwhom__item {
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-md);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  transition: all .2s;
}
.forwhom__item:hover { border-color: var(--cyan); color: var(--text-main); }
.forwhom__item::before {
  content: '→';
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cyan);
  font-size: .9rem;
}

/* ── Not For Section ── */
.notfor__box {
  background: var(--grey-100);
  border-radius: var(--r-lg);
  padding: 40px 48px;
  border-left: 4px solid var(--grey-300);
}
.notfor__box h2 { margin-bottom: 16px; color: var(--text-main); }
.notfor__box p { color: var(--text-soft); line-height: 1.75; }
.notfor__box p + p { margin-top: 12px; }

/* ── Origin Story ── */
.origin__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.origin__inner > * { min-width: 0; }
.origin__marker {
  padding: 28px;
  background: var(--cyan-ghost);
  border: 1px solid rgba(0,200,168,.2);
  border-radius: var(--r-lg);
  text-align: center;
}
.origin__marker .big {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  display: block;
}
.origin__marker p {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── CTA / Contact ── */
.cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,200,168,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta__inner > * { min-width: 0; }
.cta__hints {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}
.cta__hints li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.cta__hints li::before {
  content: '·';
  color: var(--cyan);
  font-size: 1.4rem;
  line-height: 1;
  margin-top: -1px;
  flex-shrink: 0;
}
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.contact__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 32px;
}
.contact__card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact__items { display: flex; flex-direction: column; gap: 14px; }
.contact__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.06);
  transition: all .2s;
}
.contact__item:hover { border-color: rgba(0,200,168,.3); color: var(--white); }
.contact__item a { color: inherit; transition: color .2s; }
.contact__item a:hover { color: var(--cyan); }

/* Shared final section used by the overview and Follow. */
.cta-section.cta-section--overview {
  min-height: 650px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0,180,175,.28);
  background:
    linear-gradient(rgba(0,180,175,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,175,.035) 1px, transparent 1px),
    #061b26;
  background-size: 38px 38px;
}
.cta-section.cta-section--overview::before { display: none; }
.cta-section.cta-section--overview > .container { max-width: 1180px; }
.cta-section.cta-section--overview::after {
  content: '';
  position: absolute;
  right: -160px;
  top: 50%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(0,180,175,.15);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 64px rgba(0,180,175,.025), 0 0 0 130px rgba(0,180,175,.018);
}
.cta-section--overview .cta-route {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 72px;
  background: repeating-linear-gradient(to bottom, var(--signal-lime) 0 5px, transparent 5px 11px);
}
.cta-section--overview .cta-route span {
  position: absolute;
  left: -5px;
  bottom: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--signal-lime);
  box-shadow: 0 0 18px rgba(169,209,68,.45);
}
.cta-section--overview .cta__inner {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 110px;
  align-items: center;
}
.cta-section--overview .cta__inner h2 {
  max-width: 14ch;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.45rem, 4.5vw, 4.35rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.04em;
}
.cta-section--overview .cta__inner p { max-width: 590px; }
.cta-section--overview .contact__card--endpoint {
  padding: 10px 0 10px 38px;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(0,180,175,.4);
  border-radius: 0;
  box-shadow: none;
}
.cta-section--overview .contact__card--endpoint h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
}
.cta-section--overview .contact__card--endpoint .contact__items { gap: 0; }
.cta-section--overview .contact__card--endpoint .contact__item {
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(237,244,244,.1);
  border-radius: 0;
}
.contact__icon {
  width: 34px; height: 34px;
  background: rgba(0,200,168,.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
  font-size: .95rem;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--white);
}
.footer__logo span { color: var(--cyan); }
.footer__note {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer__links a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer__links a:hover { color: rgba(255,255,255,.8); }

/* Redesigned footer for the MOQR overview and product family */
.home-redesign .footer,
.product-page .footer {
  position: relative;
  overflow: hidden;
  padding: 70px 0 42px;
  background:
    linear-gradient(rgba(0,180,175,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,175,.035) 1px, transparent 1px),
    var(--navy);
  background-size: 38px 38px;
  border-top: 0;
}
.home-redesign .footer::before,
.product-page .footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: min(360px, 44vw);
  height: 4px;
  background: linear-gradient(90deg, var(--signal-lime) 0 30%, var(--cyan) 30% 100%);
}
.home-redesign .footer::after,
.product-page .footer::after {
  content: '';
  position: absolute;
  right: -74px;
  bottom: -74px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(0,180,175,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(0,180,175,.025);
}
.home-redesign .footer > .container,
.product-page .footer > .container {
  max-width: 1180px;
}
.home-redesign .footer__inner,
.product-page .footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: end;
  gap: clamp(32px, 5vw, 72px);
}
.home-redesign .footer__logo,
.product-page .footer__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}
.home-redesign .footer__note,
.product-page .footer__note {
  max-width: 420px;
  padding-left: 22px;
  border-left: 2px solid var(--cyan);
  color: rgba(255,255,255,.52);
  line-height: 1.65;
}
.home-redesign .footer__note a,
.product-page .footer__note a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}
.home-redesign .footer__note a:hover,
.product-page .footer__note a:hover { color: var(--cyan); }
.home-redesign .footer__links,
.product-page .footer__links {
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.home-redesign .footer__links li,
.product-page .footer__links li { display: flex; }
.home-redesign .footer__links a,
.product-page .footer__links a {
  padding: 13px 12px;
  color: rgba(255,255,255,.58);
  font-family: 'IBM Plex Mono', monospace;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-redesign .footer__links a:hover,
.product-page .footer__links a:hover {
  color: var(--navy);
  background: var(--signal-lime);
}

/* ── Mobile Nav Overlay ── */
.nav--open .nav__mobile-menu {
  display: flex;
}
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.nav__mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav__mobile-menu a.active,
.nav__mobile-menu a[aria-current="page"] {
  color: var(--white);
  background: rgba(0,200,168,.12);
}
.nav__mobile-menu a:last-child { border-bottom: none; }
.nav__mobile-menu .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__lang { margin-left: auto; margin-right: 8px; }
  .nav__lang a { font-size: .75rem; padding: 6px 9px; }

  .hero { padding-top: 96px; padding-bottom: 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__content,
  .hero__visual { width: 100%; }
  .hero__visual { display: none; }
  .hero h1,
  .hero__claim,
  .hero__text,
  .hero__tagline,
  .lead {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
  .hero__eyebrow {
    flex-wrap: wrap;
    white-space: normal;
  }
  .flow-diagram {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .problem__grid { grid-template-columns: 1fr; gap: 40px; }
  .solution__cards { grid-template-columns: 1fr; }
  .product-system__grid { grid-template-columns: 1fr; }
  .product-flow { grid-template-columns: 1fr; gap: 18px; }
  .product-flow__arrow { transform: rotate(90deg); text-align: center; }
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .process__steps::before { display: none; }
  .examples__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .scenario-grid,
  .offer-grid { grid-template-columns: 1fr; }
  .reuse__inner { grid-template-columns: 1fr; gap: 40px; }
  .forwhom__grid { grid-template-columns: repeat(2, 1fr); }
  .notfor__box { padding: 28px 24px; }
  .origin__inner { grid-template-columns: 1fr; gap: 32px; }
  .cta__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__links { display: flex; flex-wrap: wrap; gap: 14px; }
  .home-redesign .footer,
  .product-page .footer { padding: 58px 0 38px; }
  .home-redesign .footer__inner,
  .product-page .footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }
  .home-redesign .footer__note,
  .product-page .footer__note {
    max-width: 100%;
    padding-left: 16px;
  }
  .home-redesign .footer__links,
  .product-page .footer__links {
    width: 100%;
    gap: 0;
  }
  .home-redesign .footer__links a,
  .product-page .footer__links a { padding: 12px 10px; }

  .home-redesign .hero--overview {
    min-height: 0;
    padding-top: 112px;
    padding-bottom: 72px;
    background-size: 48px 48px;
  }
  .home-redesign .hero--overview .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .home-redesign .hero h1 {
    font-size: clamp(2.8rem, 12.5vw, 4.25rem);
    line-height: 1.01;
    letter-spacing: -.045em;
    hyphens: none;
  }
  .home-redesign .hero h1 br { display: none; }
  .home-redesign .hero__claim,
  .home-redesign .hero__text,
  .home-redesign .hero__tagline { hyphens: none; }
  .home-redesign .section__header--editorial {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-redesign .section__header--editorial .label { grid-column: 1; }
  .home-redesign .section__header--editorial h2 {
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }
  .home-redesign .product-system__grid--route { margin-top: 48px; }
  .home-redesign .product-system__grid--route::before { left: 28px; }
  .home-redesign .product-card { padding: 44px 28px 40px; }
  .home-redesign .product-card--follow { border-right: 0; }
  .home-redesign .product-card__number { right: 24px; top: 20px; font-size: 2.5rem; }
  .home-redesign .product-flow--signal { grid-template-columns: 1fr; }
  .home-redesign .product-flow--signal .product-flow__item { padding: 0; }
  .home-redesign .product-flow--signal .product-flow__arrow {
    width: 48px;
    margin-left: 18px;
    transform: rotate(90deg);
  }
  .home-redesign #produkte::after {
    top: 64px;
    right: -72px;
  }
  .home-redesign .section__header--editorial { margin-bottom: 48px; }
  .home-redesign .product-system__grid--route::before {
    left: 24px;
    top: 18px;
    bottom: 18px;
  }
  .home-redesign .product-card {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      'kicker'
      'title'
      'copy'
      'visual'
      'list'
      'foot'
      'actions';
    gap: 0;
  }
  .home-redesign .product-card--meet {
    margin: 0;
    padding: 50px 30px 42px;
  }
  .home-redesign .product-card--follow {
    margin: 52px 0 0;
    padding: 50px 30px 42px;
    grid-template-columns: 1fr;
    grid-template-areas:
      'kicker'
      'title'
      'copy'
      'visual'
      'list'
      'foot'
      'actions';
    background: #fff;
  }
  .home-redesign .product-card--follow::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 22%;
  }
  .home-redesign .product-card--follow .product-card__signal { display: none; }
  .home-redesign .product-card--follow .product-card__kicker,
  .home-redesign .product-card--follow h3 { padding-left: 0; }
  .home-redesign .product-card__visual {
    min-height: 260px;
    margin: 30px 0 34px;
  }
  .home-redesign .product-card__visual--follow {
    min-height: 280px;
    padding: 24px;
  }
  .home-redesign .product-visual__ring--1 { width: 190px; height: 190px; }
  .home-redesign .product-visual__ring--2 { width: 136px; height: 136px; }
  .home-redesign .product-visual__ring--3 { width: 84px; height: 84px; }
  .home-redesign .product-card__kicker { margin-bottom: 20px; }
  .home-redesign .product-card h3 { margin-bottom: 24px; }
  .home-redesign .product-card > p { align-self: auto; }
  .home-redesign .product-flow--signal {
    margin-top: 42px;
    padding: 36px 24px 42px;
  }
  .home-redesign .product-flow--signal::before { left: 22%; }
  .home-redesign .product-flow--signal::after { right: 22%; }
  .home-redesign .cta-section {
    min-height: 0;
    padding-top: 100px;
  }
  .home-redesign .cta-section::after {
    right: -330px;
    width: 440px;
    height: 440px;
  }
  .home-redesign .cta-route { left: 24px; height: 58px; }
  .home-redesign .cta__inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .home-redesign .cta__inner h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }
  .home-redesign .contact__card--endpoint { padding-left: 24px; }

  .cta-section.cta-section--overview {
    min-height: 0;
    padding-top: 100px;
  }
  .cta-section.cta-section--overview::after {
    right: -330px;
    width: 440px;
    height: 440px;
  }
  .cta-section--overview .cta-route { left: 24px; height: 58px; }
  .cta-section--overview .cta__inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .cta-section--overview .cta__inner h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }
  .cta-section--overview .contact__card--endpoint { padding-left: 24px; }

  .product-page .hero--showcase {
    padding-top: 112px;
    padding-bottom: 72px;
  }
  .product-page .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }
  .cta-section.cta-section--overview {
    padding-top: 100px;
    padding-bottom: 64px;
  }
  .product-page .section__header h2 {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }
  .product-page .process__steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .product-page .process__step {
    min-height: 0;
    padding: 72px 24px 28px;
  }
  .product-page--meet .feature-item:nth-child(odd) { border-right: 0; }
  .product-page--follow .scenario-grid,
  .product-page--follow .offer-grid {
    border-left: 0;
  }
  .product-page--follow .scenario-card,
  .product-page--follow .offer-card {
    min-height: 0;
    border-left: 1px solid rgba(6,27,38,.16);
  }
  .product-page--follow .notice-box {
    margin-top: 56px;
    padding: 68px 28px 32px;
    box-shadow: -8px 8px 0 #e4f1ee;
  }
  .product-page--follow .notice-box::before {
    left: 28px;
    top: 24px;
  }
  .product-page .hero--showcase .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .product-page .hero--showcase .hero__visual {
    display: flex;
    width: 100%;
    min-height: 0;
  }
  .product-page .product-showcase .screen-placeholder--portrait { max-width: 280px; }
  .product-page .product-showcase .screen-placeholder--landscape { max-width: 430px; }
  .product-screens {
    display: flex;
    gap: 18px;
    margin-inline: -24px;
    padding: 44px 24px 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .product-screens .screen-placeholder {
    width: min(78vw, 310px);
    min-width: min(78vw, 310px);
    scroll-snap-align: center;
  }
  .product-screens--follow .screen-placeholder {
    width: min(84vw, 420px);
    min-width: min(84vw, 420px);
  }
  .product-screens--follow .screen-placeholder:first-child {
    width: min(84vw, 420px);
    min-width: min(84vw, 420px);
  }
  .product-screens--meet .screen-placeholder:nth-child(2) { margin-top: 0; }
}

@media (max-width: 480px) {
  .forwhom__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .home-redesign .product-card__actions .btn { width: 100%; justify-content: center; }
}
