/* ============================================================
   amann one — Bold Blocks
   Warm editorial · cream + terracotta/amber · big bold type
   ============================================================ */

:root {
  --cream: #f6efe3;
  --cream-2: #efe5d4;
  --paper: #fffaf2;
  --ink: #1c1a17;
  --ink-2: #3a352e;
  --ink-soft: #6b6256;
  --terra: #d2542f;
  --terra-d: #b1431f;
  --amber: #eba12c;
  --amber-d: #cf8413;
  --plum: #8a3b54;
  --teal: #15706b;
  --sage: #5f7a52;
  --line: rgba(28, 26, 23, 0.14);
  --hair: rgba(28, 26, 23, 0.08);
  --disp: 'Archivo', sans-serif;
  --sans: 'Hanken Grotesk', sans-serif;
  --r-lg: 34px;
  --r-md: 26px;
  --r-sm: 18px;
  --shadow: 0 30px 60px -28px rgba(40, 25, 12, 0.42);
  --shadow-sm: 0 16px 34px -20px rgba(40, 25, 12, 0.36);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.preload, html.preload * { transition: none !important; animation: none !important; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--terra); color: #fff; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ---------- KICKER / EYEBROW ---------- */
.kick {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra);
}
.kick .dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; flex: none; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--disp); font-weight: 700; font-size: 16px;
  padding: 16px 30px; border-radius: 100px; cursor: pointer;
  border: 2px solid var(--ink); white-space: nowrap;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn .ar { transition: transform .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:hover .ar { transform: translateX(4px); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { box-shadow: var(--shadow-sm); }
.btn-terra { background: var(--terra); color: #fff; border-color: var(--terra); }
.btn-terra:hover { background: var(--terra-d); border-color: var(--terra-d); }
.btn-out { background: transparent; color: var(--ink); }
.btn-out:hover { background: var(--ink); color: var(--cream); }
.btn-amber { background: var(--amber); color: var(--ink); border-color: var(--ink); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 80;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(246, 239, 227, 0.86);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--hair);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  font-family: var(--disp); font-weight: 900; font-size: 25px;
  letter-spacing: -0.025em; white-space: nowrap;
}
.brand b { color: var(--terra); }
.nav-links { display: flex; gap: 30px; font-size: 15px; font-weight: 600; color: var(--ink-2); }
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: var(--terra); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  background: var(--ink); color: var(--cream);
  font-family: var(--disp); font-weight: 700; font-size: 15px;
  padding: 12px 24px; border-radius: 100px; white-space: nowrap;
  transition: background .2s ease, transform .15s ease;
}
.nav-cta:hover { background: var(--terra); transform: translateY(-1px); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 2px solid var(--ink);
  border-radius: 50%; background: transparent; cursor: pointer; position: relative;
}
.nav-toggle .ham, .nav-toggle .ham::before, .nav-toggle .ham::after {
  content: ""; position: absolute; left: 50%; width: 18px; height: 2.4px;
  background: var(--ink); border-radius: 2px; margin-left: -9px;
  transition: transform .3s ease, opacity .15s ease;
}
.nav-toggle .ham { top: 50%; margin-top: -1.2px; }
.nav-toggle .ham::before { top: -6px; }
.nav-toggle .ham::after { top: 6px; }
.nav-open .nav-toggle .ham { background: transparent; }
.nav-open .nav-toggle .ham::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle .ham::after { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 18px 16px 0; }
.hero-block {
  position: relative; background: var(--amber); border-radius: var(--r-lg);
  padding: 64px 64px 60px; overflow: hidden;
  max-width: 1240px; margin: 0 auto;
}
.hero-block::before {
  content: ""; position: absolute; right: -130px; top: -130px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f4c264, #e08a1f); pointer-events: none;
}
.hero-block::after {
  content: ""; position: absolute; right: 190px; bottom: -110px;
  width: 260px; height: 260px; border-radius: 50%; background: var(--terra);
  opacity: .92; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.36fr 1fr; gap: 52px; align-items: center;
}
.hero-copy .kick { color: var(--terra-d); margin-bottom: 22px; }
.hero h1 {
  font-family: var(--disp); font-weight: 900; color: var(--ink);
  font-size: clamp(44px, 6vw, 82px); line-height: 0.92; letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero h1 .hl {
  background: var(--ink); color: var(--amber); padding: 0 14px;
  border-radius: 10px; display: inline-block; transform: rotate(-1.5deg);
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px); font-weight: 500; line-height: 1.5;
  color: #5a4a26; max-width: 480px; margin: 28px 0 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-card { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 3 / 3.5; background: linear-gradient(155deg, #2a2723, #131210);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.sticker {
  position: absolute; font-family: var(--disp); font-weight: 800; font-size: 14px;
  padding: 12px 18px; border-radius: 100px; border: 2px solid var(--ink); z-index: 3;
  white-space: nowrap;
}
.sticker-1 { top: -16px; right: -12px; background: var(--terra); color: #fff; border-color: var(--terra); transform: rotate(7deg); }
.sticker-2 { bottom: 26px; left: -30px; background: var(--cream); color: var(--ink); transform: rotate(-6deg); }

/* ============================================================
   MARQUEE STAT STRIP
   ============================================================ */
.strip { background: var(--ink); color: var(--cream); margin-top: 28px; padding: 20px 0; overflow: hidden; }
.strip-row {
  display: flex; gap: 44px; white-space: nowrap; width: max-content;
  font-family: var(--disp); font-weight: 700; font-size: 19px; align-items: center;
  animation: strip-scroll 28s linear infinite;
}
.strip-row span { display: inline-flex; align-items: center; gap: 44px; }
.strip-row .s { color: var(--amber); }
@keyframes strip-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-row { animation: none; } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.sec { padding: 96px 0; }
.sec-tight { padding: 76px 0; }
.sec-head { margin-bottom: 52px; }
.sec-head .kick { margin-bottom: 16px; }
.sec-head h2 {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(34px, 4.4vw, 58px); line-height: 0.98; letter-spacing: -0.03em;
  text-wrap: balance;
}
.sec-head h2 em { font-style: normal; color: var(--terra); }
.sec-head p {
  font-size: clamp(17px, 1.4vw, 19px); font-weight: 500; color: var(--ink-soft);
  line-height: 1.55; margin-top: 20px; max-width: 580px;
}
.sec-head.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.sec-head.split p { margin-top: 0; max-width: 360px; }
.sec-head.center { text-align: center; }
.sec-head.center .kick { justify-content: center; }
.sec-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- POTENZIAL — color cards ---------- */
.cards-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ccard {
  border-radius: var(--r-md); padding: 38px 36px 40px; border: 2px solid var(--ink);
  position: relative; min-height: 240px; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ccard:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.ccard .ci { font-family: var(--disp); font-weight: 900; font-size: 42px; opacity: .26; margin-bottom: auto; }
.ccard h3 { font-family: var(--disp); font-weight: 800; font-size: clamp(22px, 2vw, 28px); line-height: 1.05; letter-spacing: -0.015em; margin: 18px 0 12px; }
.ccard p { font-size: 16px; font-weight: 500; line-height: 1.5; }
.c-terra { background: var(--terra); color: #fff; }
.c-terra p { color: #ffe7dd; }
.c-amber { background: var(--amber); color: var(--ink); }
.c-amber p { color: #574722; }
.c-plum { background: var(--plum); color: #fff; }
.c-plum p { color: #f3dce3; }
.c-teal { background: var(--teal); color: #fff; }
.c-teal p { color: #d2ebe8; }

/* ============================================================
   ANGEBOT — modules + process
   ============================================================ */
.offering { background: var(--paper); }
.modules { border-top: 3px solid var(--ink); }
.module {
  display: grid; grid-template-columns: 96px 1.1fr 1.5fr; gap: 28px; align-items: baseline;
  padding: 28px 14px; border-bottom: 1px solid var(--line); position: relative;
  transition: background .2s ease, padding-left .2s ease;
}
.module:hover { background: var(--cream); padding-left: 24px; }
.module .m-num { font-family: var(--disp); font-weight: 900; font-size: 30px; color: var(--terra); }
.module .m-name { font-family: var(--disp); font-weight: 800; font-size: clamp(20px, 1.8vw, 25px); letter-spacing: -0.015em; line-height: 1.1; }
.module .m-desc { font-size: 16.5px; font-weight: 500; color: var(--ink-soft); line-height: 1.55; }

.process-head { display: flex; align-items: center; gap: 18px; margin: 56px 0 24px; }
.process-head .kick { white-space: nowrap; }
.process-head .ph-rule { flex: 1; height: 2px; background: var(--line); }
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pstep {
  border: 2px solid var(--ink); border-radius: var(--r-md); padding: 30px 30px 34px;
  background: var(--cream); transition: transform .2s ease;
}
.pstep:hover { transform: translateY(-4px); }
.pstep .pn { font-family: var(--disp); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra); margin-bottom: 16px; }
.pstep h4 { font-family: var(--disp); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 11px; }
.pstep p { font-size: 15.5px; font-weight: 500; color: var(--ink-soft); line-height: 1.55; }

.offer-foot {
  margin-top: 40px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; padding: 26px 32px; background: var(--ink); color: var(--cream);
  border-radius: var(--r-md);
}
.offer-foot .of-label { font-size: 15.5px; font-weight: 500; color: #cfc6b6; }
.offer-foot .of-label b { color: var(--amber); font-weight: 700; }
.offer-foot .btn-amber:hover { transform: translateY(-2px); }

/* ---------- MESH DIAGRAM — 5 modules as one system ---------- */
.mesh-wrap { margin-top: 72px; }
.mesh-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.mesh-head h3 { font-family: var(--disp); font-weight: 900; font-size: clamp(26px, 3.2vw, 40px); line-height: 0.98; letter-spacing: -0.025em; }
.mesh-head h3 em { font-style: normal; color: var(--terra); }
.mesh-head p { font-size: clamp(16px, 1.4vw, 18px); font-weight: 500; color: var(--ink-soft); line-height: 1.55; margin-top: 16px; }
.mesh { position: relative; width: 100%; max-width: 660px; aspect-ratio: 1 / 1; margin: 0 auto; container-type: size; }
.mesh-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.mesh-ring { fill: none; stroke: var(--line); stroke-width: 0.5; stroke-dasharray: 1.6 1.8; }
.mesh-spoke { stroke: rgba(28,26,23,0.16); stroke-width: 0.4; }
.mesh-arrow { fill: var(--terra); }

.mesh-hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 33cqmin; height: 33cqmin; border-radius: 50%; background: var(--ink);
  color: var(--cream); display: grid; place-content: center; text-align: center;
  border: 3px solid var(--amber); box-shadow: var(--shadow-sm); padding: 3cqmin; z-index: 3;
}
.mesh-hub .mh-k { font-family: var(--disp); font-weight: 700; font-size: 2.5cqmin; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.6cqmin; }
.mesh-hub .mh-curve { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.mesh-hub .mh-curve text { font-family: var(--disp); font-weight: 700; font-size: 6.1px; letter-spacing: 0.9px; fill: var(--amber); }
.mesh-hub .mh-t { font-family: var(--disp); font-weight: 900; font-size: 5.6cqmin; line-height: 0.94; letter-spacing: -0.02em; }

.mesh-node {
  position: absolute; transform: translate(-50%, -50%); width: 30cqmin;
  border: 2px solid var(--ink); border-radius: 4cqmin; padding: 2.6cqmin 2.6cqmin 3cqmin;
  text-align: center; z-index: 2; transition: transform .2s ease, box-shadow .2s ease;
}
.mesh-node:hover { transform: translate(-50%, -50%) scale(1.05); box-shadow: var(--shadow-sm); }
.mesh-node .mn-num { font-family: var(--disp); font-weight: 900; font-size: 4.4cqmin; line-height: 1; opacity: 0.85; }
.mesh-node .mn-name { font-family: var(--disp); font-weight: 800; font-size: 3.1cqmin; line-height: 1.08; letter-spacing: -0.01em; margin-top: 1cqmin; }
.mn-terra { background: var(--terra); color: #fff; }
.mn-amber { background: var(--amber); color: #fff; }
.mn-plum { background: var(--plum); color: #fff; }
.mn-teal { background: var(--teal); color: #fff; }
.mn-ink { background: var(--ink); color: var(--cream); }
.mn-blue { background: #2f6193; color: #fff; }
.mesh-node.mn-1 { left: 50%; top: 9%; }
.mesh-node.mn-2 { left: 88.5%; top: 37%; }
.mesh-node.mn-3 { left: 73.5%; top: 85%; }
.mesh-node.mn-4 { left: 26.5%; top: 85%; }
.mesh-node.mn-5 { left: 11.5%; top: 37%; }

@media (max-width: 620px) {
  /* Stack the diagram into a readable vertical flow on small screens */
  .mesh { max-width: 360px; aspect-ratio: auto; container-type: normal; padding: 4px 0; }
  .mesh-svg, .mesh-hub { display: none; }
  .mesh-node { position: relative; left: auto !important; top: auto !important; transform: none; width: 100%; display: flex; align-items: center; gap: 16px; text-align: left; padding: 18px 22px; border-radius: 18px; margin-bottom: 12px; }
  .mesh-node:hover { transform: none; }
  .mesh-node::after { content: "↓"; position: absolute; left: 50%; bottom: -19px; transform: translateX(-50%); font-family: var(--disp); font-weight: 900; font-size: 18px; color: var(--terra); }
  .mesh-node.mn-5::after { content: "↻ speist das Mandat"; font-size: 12px; letter-spacing: 0.04em; bottom: -24px; white-space: nowrap; }
  .mesh-node .mn-num { font-size: 26px; flex: none; }
  .mesh-node .mn-name { font-size: 18px; margin-top: 0; }
}

/* ============================================================
   INVESTITION — pricing
   ============================================================ */
.invest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.ivcard {
  display: flex; flex-direction: column; border-radius: var(--r-lg);
  padding: 40px 32px; border: 2px solid var(--ink); background: var(--paper);
}
.ivcard.accent { border-color: var(--terra); background: var(--cream-2); position: relative; }
.iv-badge { position: absolute; top: -14px; right: 24px; font-family: var(--disp); font-size: 12.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: var(--terra); border-radius: 999px; padding: 7px 16px; box-shadow: var(--shadow-sm); white-space: nowrap; }
.ivcard.accent .iv-kicker { color: var(--terra); }
.iv-once { display: inline-block; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--terra); background: rgba(210,84,47,0.1); border-radius: 999px; padding: 4px 11px; margin-left: 4px; vertical-align: middle; }
.ivcard.feature { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.iv-kicker { font-family: var(--disp); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); margin-bottom: 22px; }
.ivcard.feature .iv-kicker { color: var(--amber); }
.iv-price { font-family: var(--disp); font-weight: 900; line-height: 1; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; letter-spacing: -0.02em; }
.iv-price .amt { font-size: clamp(46px, 5vw, 60px); white-space: nowrap; }
.iv-price .amt .cents { font-size: 0.5em; vertical-align: baseline; }
.iv-price.free .amt { color: var(--terra); }
.iv-price .per { font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--ink-soft); }
.ivcard.feature .iv-price .per { color: #b8af9f; }
.iv-note { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); margin-bottom: 28px; }
.ivcard.feature .iv-note { color: #b8af9f; }
.iv-name { font-family: var(--disp); font-weight: 800; font-size: clamp(22px, 2vw, 27px); letter-spacing: -0.015em; margin-bottom: 12px; }
.iv-desc { font-size: 15.5px; font-weight: 500; line-height: 1.6; color: var(--ink-soft); margin-bottom: 26px; }
.ivcard.feature .iv-desc { color: #cfc6b6; }
.iv-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.iv-list li { display: grid; grid-template-columns: 22px 1fr; gap: 13px; font-size: 15px; font-weight: 500; line-height: 1.45; align-items: start; }
.iv-list .ck { width: 21px; height: 21px; border-radius: 50%; background: var(--terra); color: #fff; display: grid; place-items: center; margin-top: 1px; }
.ivcard.feature .iv-list .ck { background: var(--amber); color: var(--ink); }
.iv-list .ck svg { width: 12px; height: 12px; }
.iv-foot { margin-top: auto; }
.iv-foot .btn { width: 100%; justify-content: center; }
.ivcard.feature .iv-foot .btn-amber { border-color: var(--amber); }
.iv-placeholder { color: var(--amber-d); border-bottom: 2px dashed rgba(207,132,19,0.6); padding-bottom: 1px; }
.ivcard.feature .iv-placeholder { color: var(--amber); border-color: rgba(235,161,44,0.6); }
.iv-editnote { margin-top: 14px; font-size: 11.5px; font-style: italic; color: #9a917f; text-align: center; line-height: 1.5; }
.invest-valid { text-align: center; margin-top: 28px; font-family: var(--sans); font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.invest-valid strong { color: var(--terra); font-weight: 700; }
.invest-company {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 16px; max-width: 680px; margin: 30px auto 0;
  padding: 34px 40px; border: 2px solid var(--ink); border-radius: var(--r-lg);
  background: var(--paper);
}
.invest-company .ic-tag {
  font-family: var(--disp); font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--terra);
}
.invest-company p { font-family: var(--sans); font-size: 18px; font-weight: 500; line-height: 1.5; color: var(--ink); margin: 0; }
.invest-company p strong { font-weight: 700; }

/* ============================================================
   PROFILCHECK FORM
   ============================================================ */
.pcheck { background: var(--cream-2); }
.pcheck-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 64px; align-items: center; }
.pcheck-list { list-style: none; display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.pcheck-list li { display: grid; grid-template-columns: 40px 1fr; gap: 18px; align-items: start; }
.pcheck-list .ck { width: 38px; height: 38px; border-radius: 12px; background: var(--terra); color: #fff; display: grid; place-items: center; }
.pcheck-list .ck svg { width: 19px; height: 19px; }
.pcheck-list .pl-title { font-family: var(--disp); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; margin-bottom: 5px; }
.pcheck-list .pl-text { font-size: 16px; font-weight: 500; color: var(--ink-soft); line-height: 1.5; }

.pcheck-card { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-lg); padding: 40px 38px; position: relative; box-shadow: var(--shadow-sm); }
.pcc-head { font-family: var(--disp); font-weight: 900; font-size: 27px; letter-spacing: -0.02em; }
.pcc-sub { font-size: 15px; font-weight: 500; color: var(--ink-soft); margin: 6px 0 26px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-family: var(--disp); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  padding: 14px 16px; border: 2px solid var(--line); border-radius: 14px;
  background: var(--cream); transition: border-color .2s ease, background .2s ease;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: #a59c8d; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--terra); background: #fff; }
.consent { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; margin: 6px 0 22px; cursor: pointer; }
.consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent .box { width: 24px; height: 24px; border: 2px solid var(--ink); border-radius: 7px; display: grid; place-items: center; color: transparent; transition: background .15s ease, color .15s ease; }
.consent .box svg { width: 14px; height: 14px; }
.consent input:checked + .box { background: var(--terra); border-color: var(--terra); color: #fff; }
.consent input:focus-visible + .box { box-shadow: 0 0 0 3px rgba(210,84,47,0.3); }
.consent-text { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); line-height: 1.5; }
.pcheck-submit { width: 100%; justify-content: center; margin-top: 4px; }
.form-status { font-size: 14px; font-weight: 600; margin-top: 14px; min-height: 1em; }
.form-status.err { color: var(--terra-d); }
.pcheck-note { font-size: 12px; font-weight: 500; color: #9a917f; margin-top: 16px; line-height: 1.5; }
.pcheck-note a { color: var(--terra); text-decoration: underline; }
.pcheck-company { text-align: center; margin-top: 48px; font-family: var(--sans); font-size: 20px; font-weight: 500; color: var(--ink-soft); }
.pcheck-company strong { color: var(--ink); font-weight: 700; }
.pcheck-company a { color: var(--terra); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.pcheck-success { display: none; text-align: center; padding: 20px 8px; }
.pcheck-card.is-sent .pcheck-form { display: none; }
.pcheck-card.is-sent .pcheck-success { display: block; }
.ps-ring { width: 70px; height: 70px; border-radius: 50%; background: var(--terra); color: #fff; display: grid; place-items: center; margin: 0 auto 22px; }
.ps-ring svg { width: 34px; height: 34px; }
.pcheck-success h3 { font-family: var(--disp); font-weight: 900; font-size: 26px; letter-spacing: -0.02em; margin-bottom: 10px; }
.pcheck-success p { font-size: 16px; font-weight: 500; color: var(--ink-soft); line-height: 1.55; max-width: 340px; margin: 0 auto; }

/* ============================================================
   PERSÖNLICH
   ============================================================ */
.persona { background: var(--plum); color: #fff; }
.persona-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.persona-portrait { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; object-position: 50% 18%; border: 3px solid var(--amber); margin-bottom: 26px; }
.persona-aside .kick { color: var(--amber); display: inline-flex; margin-bottom: 14px; }
.persona-name { font-family: var(--disp); font-weight: 900; font-size: clamp(30px, 3vw, 42px); line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 8px; }
.persona-role { font-family: var(--disp); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #e6b9c6; margin-bottom: 30px; }
.persona-facts { list-style: none; border-top: 1px solid rgba(255,255,255,0.22); }
.persona-facts li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.22); font-size: 14.5px; font-weight: 500; }
.persona-facts .pf-key { color: #e6b9c6; }
.persona-facts .pf-val { font-family: var(--disp); font-weight: 700; }
.persona-body { max-width: 640px; }
.persona-lead { font-family: var(--disp); font-weight: 800; font-size: clamp(24px, 2.6vw, 33px); line-height: 1.22; letter-spacing: -0.02em; margin-bottom: 28px; }
.persona-lead em { font-style: normal; color: var(--amber); }
.persona-body p { font-size: 17px; font-weight: 500; line-height: 1.75; color: #f1dee5; margin-bottom: 20px; }
.persona-body p strong { color: #fff; font-weight: 700; }
.persona-edit { color: var(--amber); border-bottom: 2px dashed rgba(235,161,44,0.5); padding-bottom: 1px; }
.persona-pull { margin: 32px 0 8px; padding: 6px 0 6px 28px; border-left: 3px solid var(--amber); font-family: var(--disp); font-style: italic; font-weight: 600; font-size: clamp(20px, 2.1vw, 25px); line-height: 1.4; color: #fff; }
.persona-sign { margin-top: 30px; display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.persona-sign .sg { font-family: var(--disp); font-style: italic; font-weight: 700; font-size: 32px; color: var(--amber); }
.persona-sign .sg-note { font-size: 13.5px; font-weight: 500; color: #e6b9c6; }
.persona-editnote { margin-top: 26px; font-size: 12px; font-style: italic; color: #d8b3c0; line-height: 1.6; border-top: 1px dashed rgba(255,255,255,0.25); padding-top: 16px; }

/* ============================================================
   REFERENZEN
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tcard { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-md); padding: 36px 34px 32px; display: flex; flex-direction: column; transition: transform .2s ease; }
.tcard:nth-child(4n+1) { background: var(--paper); }
.tcard:hover { transform: translateY(-4px); }
.tcard .tq { font-family: var(--disp); font-weight: 900; font-size: 56px; line-height: 0.6; color: var(--terra); height: 30px; }
.tcard p { font-size: 16.5px; font-weight: 500; line-height: 1.62; margin: 14px 0 24px; }
.tcard .tmeta { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.tcard .tdot { width: 40px; height: 40px; border-radius: 50%; background: var(--amber); color: var(--ink); display: grid; place-items: center; font-family: var(--disp); font-weight: 900; font-size: 16px; flex: none; }
.tcard .twho { font-family: var(--disp); font-weight: 800; font-size: 16px; }
.tcard .trole { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); margin-top: 2px; }

/* ============================================================
   EXKLUSIVITÄT
   ============================================================ */
.exclusive { background: var(--teal); color: #fff; }
.excl-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.excl-inner .kick { color: #aee3dd; margin-bottom: 18px; }
.excl-inner h2 { font-family: var(--disp); font-weight: 900; font-size: clamp(34px, 4.2vw, 56px); line-height: 0.98; letter-spacing: -0.03em; }
.excl-inner .excl-p { font-size: 18px; font-weight: 500; line-height: 1.6; color: #d2ece9; margin-top: 20px; max-width: 460px; }
.mandate-stack { display: flex; flex-direction: column; gap: 14px; }
.mandate { display: flex; align-items: center; gap: 18px; padding: 22px 26px; border: 2px solid rgba(255,255,255,0.4); border-radius: var(--r-sm); background: rgba(255,255,255,0.06); }
.mandate.open { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.mandate-dot { width: 13px; height: 13px; border-radius: 50%; background: #aee3dd; flex: none; }
.mandate.open .mandate-dot { background: var(--terra); }
.mandate-label { font-family: var(--disp); font-weight: 800; font-size: 19px; }
.mandate-status { margin-left: auto; font-family: var(--disp); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; }

/* ============================================================
   WEGBEGLEITER — logo marquee
   ============================================================ */
.clients { background: var(--cream); }
.clients-marquee { overflow: hidden; margin-top: 8px; position: relative; }
.clients-track { display: flex; gap: 26px; width: max-content; will-change: transform; }
.client-cell {
  width: 230px; height: 130px; flex: none; background: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--r-sm); padding: 26px;
  display: grid; place-items: center;
}
.client-cell image-slot { width: 100%; height: 100%; --is-empty-bg: transparent; }
.client-name {
  font-family: var(--disp); font-weight: 800; font-size: 23px; letter-spacing: -0.01em;
  line-height: 1.04; text-align: center; color: var(--ink); opacity: 0.5;
  transition: opacity .25s ease; text-wrap: balance;
}
.client-cell:hover .client-name { opacity: 1; }

/* ============================================================
   KONTAKT CTA
   ============================================================ */
.contact { padding: 30px 16px; }
.contact-block {
  position: relative; max-width: 1240px; margin: 0 auto; text-align: center;
  background: var(--terra); color: #fff; border-radius: var(--r-lg);
  padding: 88px 40px 92px; overflow: hidden;
}
.contact-block::before { content: ""; position: absolute; left: -120px; bottom: -140px; width: 420px; height: 420px; border-radius: 50%; background: var(--terra-d); pointer-events: none; }
.contact-block::after { content: ""; position: absolute; right: -90px; top: -120px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.10); pointer-events: none; }
.contact-inner { position: relative; z-index: 2; }
.contact-inner .kick { color: #ffd9cb; justify-content: center; margin-bottom: 22px; }
.contact-inner h2 { font-family: var(--disp); font-weight: 900; font-size: clamp(38px, 5vw, 68px); line-height: 0.96; letter-spacing: -0.03em; }
.contact-inner h2 em { font-style: normal; color: var(--ink); }
.contact-inner > p { font-size: clamp(17px, 1.6vw, 20px); font-weight: 500; color: #ffe7dd; line-height: 1.55; max-width: 560px; margin: 22px auto 36px; }
.contact-inner .btn-ink { font-size: 17px; padding: 18px 38px; }
.contact-meta { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; font-size: 15px; font-weight: 600; color: #ffe7dd; }
.contact-meta a { border-bottom: 1px solid rgba(255,255,255,0.45); }

/* ============================================================
   WEBENTWICKLUNG — personal side offering
   ============================================================ */
.webdev { padding: 64px 16px 96px; }
.webdev-card {
  position: relative; max-width: 1240px; margin: 0 auto; overflow: hidden;
  background: var(--sage); color: #fff; border-radius: var(--r-lg);
  padding: 64px 64px 68px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.webdev-card::after {
  content: ""; position: absolute; right: -80px; bottom: -110px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.08); pointer-events: none;
}
.webdev-main, .webdev-body { position: relative; z-index: 2; }
.webdev-card .kick { color: #d6e4ca; margin-bottom: 18px; }
.wd-head { font-family: var(--disp); font-weight: 900; font-size: clamp(32px, 3.6vw, 50px); line-height: 0.98; letter-spacing: -0.03em; }
.wd-head em { font-style: normal; color: var(--ink); }
.webdev-body p { font-size: clamp(16px, 1.5vw, 19px); font-weight: 500; line-height: 1.62; color: #eef3ea; margin-bottom: 28px; }
.webdev-body .btn-ink:hover { box-shadow: var(--shadow-sm); }

@media (max-width: 720px) {
  .webdev-card { grid-template-columns: 1fr; gap: 26px; padding: 48px 28px 52px; }
}
.contact-meta a:hover { color: #fff; border-color: #fff; }
.contact-meta .sep { color: rgba(255,255,255,0.5); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--ink); color: #cfc6b6; padding: 72px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand .brand-mark { font-family: var(--disp); font-weight: 900; font-size: 26px; letter-spacing: -0.025em; color: var(--cream); }
.footer-brand .brand-mark b { color: var(--terra); }
.footer-tag { font-size: 15px; font-weight: 500; line-height: 1.6; margin-top: 16px; max-width: 280px; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.footer-col h4 { font-family: var(--disp); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; font-size: 15px; font-weight: 500; color: #cfc6b6; margin-bottom: 11px; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-col .addr-line { white-space: nowrap; font-size: 14px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; font-size: 14px; font-weight: 500; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.22); display: grid; place-items: center; color: #cfc6b6; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.social-links a:hover { background: var(--terra); border-color: var(--terra); color: #fff; }
.social-links svg { width: 17px; height: 17px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }
  .reveal.in { opacity: 1; transform: none; }
  html.motion-done .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .wrap { padding: 0 32px; }
  .hero-block { padding: 52px 44px 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 420px; }
  .invest-grid { grid-template-columns: 1fr; }
  .pcheck-grid { grid-template-columns: 1fr; gap: 44px; }
  .persona-grid { grid-template-columns: 1fr; gap: 40px; }
  .persona-aside { display: grid; grid-template-columns: 150px 1fr; gap: 28px; align-items: center; }
  .persona-portrait { margin-bottom: 0; }
  .persona-facts { grid-column: 1 / -1; }
  .excl-inner { grid-template-columns: 1fr; gap: 40px; }
  .sec-head.split { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.nav-open .nav-links {
    display: flex; position: absolute; top: 100%; left: 16px; right: 16px;
    flex-direction: column; gap: 4px; background: var(--paper);
    border: 2px solid var(--ink); border-radius: var(--r-md); padding: 16px;
    box-shadow: var(--shadow); font-size: 17px;
  }
  .nav.nav-open .nav-links a { padding: 12px 14px; border-radius: 12px; }
  .nav.nav-open .nav-links a:hover { background: var(--cream); }
  .nav.nav-open { background: rgba(246, 239, 227, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  .nav-inner { position: relative; }

  .sec, .sec-tight { padding: 64px 0; }
  .sec-head { margin-bottom: 38px; }
  .cards-4, .testi-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .ccard { min-height: 0; padding: 30px 28px 32px; }

  .module { grid-template-columns: 56px 1fr; row-gap: 6px; padding: 24px 0; }
  .module:hover { padding-left: 0; }
  .module .m-desc { grid-column: 2; }
  .module .m-num { grid-row: span 2; }

  .ivcard { padding: 36px 28px; }
  .pcheck-card { padding: 32px 26px; }
  .offer-foot { padding: 24px 26px; }
  .contact-block { padding: 64px 28px 68px; }
  .persona { }
  .persona-aside { grid-template-columns: 1fr; text-align: left; }
  .persona-portrait { width: 110px; height: 110px; }
}

@media (max-width: 460px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 12px 10px 0; }
  .hero-block { padding: 40px 26px 40px; border-radius: var(--r-md); }
  .hero-block::after { display: none; }
  .sticker-2 { left: -8px; }
  .sticker-1 { right: 0; }
  .nav-inner { padding: 16px 20px; }
  .client-cell { width: 180px; height: 110px; padding: 20px; }
  .contact-meta { gap: 8px 12px; }
}

/* ============================================================
   LEGAL PAGES — Impressum / Datenschutz
   ============================================================ */
.page-head { padding: 76px 0 44px; }
.back-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--disp); font-weight: 700; font-size: 15px;
  color: var(--ink-soft); margin-bottom: 30px;
  transition: gap .2s ease, color .2s ease;
}
.back-link:hover { color: var(--terra); gap: 13px; }
.back-link .arr { transition: transform .2s ease; }
.back-link:hover .arr { transform: translateX(-3px); }
.page-head .kick { margin-bottom: 18px; }
.page-title {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(46px, 8vw, 100px); line-height: 0.9; letter-spacing: -0.04em;
}
.page-title em { font-style: normal; color: var(--terra); }
.page-lead {
  font-size: clamp(17px, 1.5vw, 20px); font-weight: 500; color: var(--ink-soft);
  line-height: 1.55; margin-top: 24px; max-width: 620px;
}

.legal-main { padding-bottom: 40px; }
.legal { max-width: 820px; }
.legal-block { padding: 46px 0; border-top: 2px solid var(--line); }
.legal-block:first-child { border-top: 0; padding-top: 6px; }
.legal-kicker { margin-bottom: 14px; }
.legal-title {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(27px, 3.4vw, 40px); line-height: 1.02; letter-spacing: -0.025em;
  margin-bottom: 24px; text-wrap: balance;
}
.legal-sub { font-family: var(--disp); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; color: var(--ink); margin: 32px 0 10px; }
.legal p { font-size: 16.5px; font-weight: 400; color: var(--ink-2); line-height: 1.72; margin-bottom: 16px; }
.legal p strong, .legal address strong { color: var(--ink); font-weight: 700; }
.legal a.inline {
  color: var(--terra); font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
  text-decoration-thickness: 1px; text-decoration-color: rgba(210,84,47,0.4);
  transition: text-decoration-color .2s ease;
}
.legal a.inline:hover { text-decoration-color: var(--terra); }
.legal-address { font-style: normal; font-size: 17px; color: var(--ink); line-height: 1.9; white-space: pre-line; margin-bottom: 6px; }
.data-row { display: grid; grid-template-columns: 200px 1fr; gap: 8px 28px; margin: 22px 0; }
.data-row dt { font-family: var(--disp); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); padding-top: 4px; }
.data-row dd { font-size: 16.5px; color: var(--ink); white-space: pre-line; }
.ph { color: var(--terra-d); background: rgba(210,84,47,0.09); border-radius: 5px; padding: 1px 6px; }
.note {
  margin-top: 26px; padding: 20px 24px; border: 2px solid var(--amber);
  border-radius: var(--r-sm); background: rgba(235,161,44,0.1);
  font-size: 14.5px; color: var(--ink-2); line-height: 1.62;
}
.note b { color: var(--amber-d); font-weight: 700; }
ul.src-list { list-style: none; margin: 8px 0 0; }
ul.src-list li { font-size: 16px; color: var(--ink-2); line-height: 1.55; padding: 16px 0; border-bottom: 1px solid var(--hair); display: grid; grid-template-columns: 1fr auto; gap: 6px 18px; align-items: baseline; }
ul.src-list li:last-child { border-bottom: 0; }
ul.src-list .src-what { color: var(--ink); font-weight: 600; }
ul.src-list .src-credit { color: var(--ink-soft); text-align: right; }
.toc { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.toc a {
  font-family: var(--disp); font-weight: 700; font-size: 13.5px;
  color: var(--ink-2); background: var(--paper);
  border: 2px solid var(--line); border-radius: 100px; padding: 8px 16px;
  transition: border-color .2s ease, color .2s ease;
}
.toc a:hover { border-color: var(--terra); color: var(--terra); }

@media (max-width: 600px) {
  .data-row { grid-template-columns: 1fr; gap: 2px; }
  .data-row dt { padding-top: 14px; }
  ul.src-list li { grid-template-columns: 1fr; }
  ul.src-list .src-credit { text-align: left; }
  .legal-block { padding: 38px 0; }
}

/* ============================================================
   KONTAKT PAGE
   ============================================================ */
.contact-main { padding-bottom: 96px; }
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: start; }
.contact-aside { display: flex; flex-direction: column; gap: 30px; }
.contact-meta-title { font-family: var(--disp); font-weight: 900; font-size: 27px; letter-spacing: -0.02em; margin-bottom: 6px; }
.detail-list { list-style: none; }
.detail-list li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; padding: 20px 0; border-bottom: 1px solid var(--hair); }
.detail-list li:last-child { border-bottom: 0; }
.detail-list .di { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--ink); display: grid; place-items: center; color: var(--terra); }
.detail-list .di svg { width: 19px; height: 19px; }
.detail-list .dl-label { font-family: var(--disp); font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.detail-list .dl-value { font-size: 16.5px; font-weight: 500; color: var(--ink); line-height: 1.5; }
.detail-list .dl-value a { transition: color .2s ease; }
.detail-list .dl-value a:hover { color: var(--terra); }
.map-frame { border: 2px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; background: var(--paper); }
.map-frame iframe { display: block; width: 100%; height: 300px; border: 0; }
.map-cap { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 16px 22px; border-top: 2px solid var(--line); font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }
.map-cap a { color: var(--terra); font-weight: 700; display: inline-flex; align-items: center; gap: 7px; transition: gap .2s ease; }
.map-cap a:hover { gap: 11px; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .detail-list li { grid-template-columns: 40px 1fr; gap: 14px; }
  .detail-list .di { width: 40px; height: 40px; }
  .map-frame iframe { height: 250px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   TOOLS PAGE — LinkedIn tools
   ============================================================ */
.tools-hero { padding: 18px 16px 0; }
.tools-hero-block {
  position: relative; background: var(--teal); border-radius: var(--r-lg);
  padding: 70px 64px 64px; overflow: hidden; max-width: 1240px; margin: 0 auto;
  color: #fff;
}
.tools-hero-block::before {
  content: ""; position: absolute; right: -120px; top: -140px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a948c, #0f5d58); pointer-events: none;
}
.tools-hero-block::after {
  content: ""; position: absolute; left: -90px; bottom: -120px;
  width: 240px; height: 240px; border-radius: 50%; background: var(--amber);
  opacity: .9; pointer-events: none;
}
.tools-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; }
.tools-hero-copy .kick { color: #b9e3df; margin-bottom: 22px; }
.tools-hero-copy .kick .dot { background: var(--amber); }
.tools-hero h1 {
  font-family: var(--disp); font-weight: 900; color: #fff;
  font-size: clamp(38px, 4.6vw, 64px); line-height: 0.96; letter-spacing: -0.03em;
  text-wrap: balance;
}
.tools-hero h1 .hl { color: var(--amber); }
.tools-hero-sub {
  font-size: clamp(17px, 1.5vw, 20px); font-weight: 500; line-height: 1.55;
  color: #d6ece9; max-width: 500px; margin: 26px 0 0;
}

/* URL before/after demo */
.url-demo { position: relative; display: flex; flex-direction: column; gap: 16px; }
.url-card { background: var(--paper); border-radius: var(--r-md); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.url-card .uc-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--disp); font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.url-card.before .uc-tag { color: var(--terra); }
.url-card.after .uc-tag { color: var(--teal); }
.uc-tag .uc-dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.url-bar { display: flex; align-items: center; gap: 10px; background: var(--cream); border: 1.5px solid var(--line); border-radius: 100px; padding: 11px 16px; font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink); word-break: break-all; }
.url-bar .lock { flex-shrink: 0; color: var(--ink-soft); }
.url-bar .lock svg { width: 14px; height: 14px; display: block; }
.url-card.before .url-bar .u-rand { color: var(--terra-d); background: rgba(210,84,47,0.13); border-radius: 5px; padding: 0 4px; }
.url-card.after .url-bar .u-name { color: var(--teal); font-weight: 700; }
.url-arrow { align-self: center; width: 40px; height: 40px; border-radius: 50%; background: var(--amber); color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.url-arrow svg { width: 20px; height: 20px; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step-card { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-md); padding: 34px 30px; position: relative; }
.step-num { font-family: var(--disp); font-weight: 900; font-size: 15px; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--cream); display: grid; place-items: center; margin-bottom: 22px; }
.step-card.s2 .step-num { background: var(--teal); }
.step-card.s3 .step-num { background: var(--amber); color: var(--ink); }
.step-title { font-family: var(--disp); font-weight: 800; font-size: 21px; letter-spacing: -0.01em; margin-bottom: 10px; }
.step-desc { font-size: 16px; font-weight: 500; color: var(--ink-soft); line-height: 1.55; }

/* Tool embed */
.tool-embed { background: var(--cream-2); }
.embed-shell { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.embed-frame {
  width: 100%; max-width: 540px; margin: 34px auto 0;
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-lg);
  padding: 20px; box-shadow: var(--shadow); overflow: hidden;
}
.embed-frame iframe { display: block; width: 100%; max-width: 500px; height: 600px; border: none; margin: 0 auto; border-radius: var(--r-sm); background: var(--paper); }
.embed-note { margin-top: 22px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; }
.embed-note svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }

@media (max-width: 900px) {
  .tools-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .tools-hero { padding: 12px 10px 0; }
  .tools-hero-block { padding: 44px 26px 44px; border-radius: var(--r-md); }
  .tools-hero-block::after { display: none; }
  .embed-frame { padding: 14px; }
}
