/* ============================================================
   Concept Factory — website UI kit shared styles
   Cinematic, dark, photography-led. Links AFTER styles.css
   (which provides brand tokens + fonts). One magenta accent.
   ============================================================ */
:root {
  --site-bg: #060607;
  --site-panel: #0c0d10;
  --site-panel-2: #101116;
  --ink-1: #f3f2f2;
  --ink-2: rgba(243,242,242,0.64);
  --ink-3: rgba(243,242,242,0.40);
  --hair: rgba(255,255,255,0.12);
  --hair-mag: rgba(230,0,126,0.40);
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --nav-h: 76px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--site-bg); color: var(--ink-1);
  font-family: var(--font-body); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1280px, 100% - 96px); margin-inline: auto; }
.wrap-wide { width: min(1500px, 100% - 80px); margin-inline: auto; }

/* ---------- type ---------- */
.dsp { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; letter-spacing: -0.01em; line-height: 0.96; }
.script { font-family: var(--font-script); font-weight: 400; text-transform: none; color: var(--cf-magenta); line-height: 0.9; }
.mg { color: var(--cf-magenta); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 13px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: 13px; letter-spacing: 0.2em; color: var(--ink-2);
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--cf-magenta); flex: 0 0 auto; }
.eyebrow.c::after { content: ""; width: 30px; height: 2px; background: var(--cf-magenta); flex: 0 0 auto; }
.tagline {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 600;
  font-size: 14px; letter-spacing: 0.18em; color: rgba(255,255,255,0.82);
}
.tagline::before, .tagline::after { content: ""; height: 2px; width: 42px; background: var(--cf-magenta); }
.lead { font-size: 19px; line-height: 1.62; color: var(--ink-2); }

/* ---------- icons ---------- */
.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; display: block; }
svg[aria-hidden] { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 28px; cursor: pointer; border: 2px solid transparent;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: 14px; letter-spacing: 0.12em; border-radius: 3px;
  transition: background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out), transform .12s var(--ease-out);
}
.btn .icon { width: 18px; height: 18px; stroke-width: 2; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--cf-magenta); color: #fff; }
.btn-primary:hover { background: #fff; color: #000; }
.btn-ghost { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-ghost:hover { background: #fff; color: #000; border-color: #fff; }
.btn-dark { background: #000; color: #fff; }
.btn-dark:hover { background: var(--cf-magenta); color: #fff; }
.btn-sm { height: 44px; padding: 0 20px; font-size: 13px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px; transition: background .3s var(--ease-out), padding .3s var(--ease-out), border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.solid { background: rgba(6,6,7,0.9); backdrop-filter: blur(16px); padding: 12px 40px; border-bottom-color: var(--hair); }
.nav__logo img { height: 30px; }
.nav__links { display: flex; gap: 30px; align-items: center; }
.nav__links a {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 500;
  font-size: 13px; letter-spacing: 0.13em; color: var(--ink-2); transition: color .2s; position: relative; padding: 4px 0;
}
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__links a.active::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--cf-magenta); }
.nav__right { display: flex; align-items: center; gap: 18px; }
.lang { display: flex; gap: 7px; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.1em; color: var(--ink-3); }
.lang b { color: #fff; }
.lang span { cursor: pointer; }
.nav__burger { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 6px; }
.nav__burger .icon { width: 26px; height: 26px; }

/* unit switcher (house-of-units, top-right corner) */
.unitsw { position: relative; }
.unitsw__btn { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.06); border: 1px solid var(--hair); border-radius: 999px; padding: 8px 13px; cursor: pointer; color: #fff; font-family: var(--font-display); text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; transition: border-color .2s, background .2s; }
.unitsw__btn:hover { border-color: var(--hair-mag); background: rgba(255,255,255,0.1); }
.unitsw__btn .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cf-magenta); box-shadow: 0 0 9px var(--cf-magenta); flex: 0 0 auto; }
.unitsw__btn .chev { width: 14px; height: 14px; transition: transform .25s; opacity: 0.7; }
.unitsw.open .unitsw__btn .chev { transform: rotate(180deg); }
.unitsw__menu { position: absolute; top: calc(100% + 12px); right: 0; width: 290px; background: rgba(10,11,14,0.97); backdrop-filter: blur(18px); border: 1px solid var(--hair); border-radius: 9px; padding: 8px; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: .25s var(--ease-out); box-shadow: 0 26px 64px rgba(0,0,0,0.55); }
.unitsw.open .unitsw__menu { opacity: 1; pointer-events: auto; transform: none; }
.unitsw__menu .lbl { font-family: var(--font-display); text-transform: uppercase; font-size: 10px; letter-spacing: 0.18em; color: var(--ink-3); padding: 9px 12px 6px; }
.uitem { display: flex; flex-direction: column; gap: 2px; padding: 11px 12px; border-radius: 6px; transition: background .2s; }
.uitem:hover { background: rgba(255,255,255,0.05); }
.uitem b { font-family: var(--font-display); text-transform: uppercase; font-size: 14px; letter-spacing: 0.04em; color: #fff; font-weight: 600; }
.uitem span { font-size: 12px; color: var(--ink-2); }
.uitem.active { background: rgba(230,0,126,0.12); }
.uitem.active b { color: var(--cf-magenta); }
.uitem.active span { color: rgba(243,242,242,0.75); }
.mm-units { font-family: var(--font-display); text-transform: uppercase; font-size: 12px; letter-spacing: 0.2em; color: var(--cf-magenta); margin-top: 22px; }
.lang .lang-en, .lang .lang-nl { cursor: pointer; color: var(--ink-3); transition: color .2s; }
.lang .lang-en:hover, .lang .lang-nl:hover { color: var(--ink-2); }
.lang .on, .lang .on b { color: #fff; }

/* mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 199; background: rgba(6,6,7,0.98); backdrop-filter: blur(8px); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); text-transform: uppercase; font-size: 30px; letter-spacing: 0.04em; color: var(--ink-1); padding: 10px; }
.mobile-menu a:hover { color: var(--cf-magenta); }

/* ---------- hero (home) ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 20s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__blueprint { position: absolute; inset: 0; z-index: 2; overflow: hidden;
  clip-path: polygon(0 0, 44% 0, 28% 100%, 0 100%);
  animation: bpReveal 1.9s var(--ease-out) 0.5s both; }
.hero__blueprint img { width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(0.5) contrast(1.25) sepia(1) hue-rotate(168deg) saturate(5.5); }
.hero__grid { position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(120,200,255,0.22) 0 1px, transparent 1px 34px), repeating-linear-gradient(90deg, rgba(120,200,255,0.22) 0 1px, transparent 1px 34px);
  mix-blend-mode: screen; }
.hero__seam { position: absolute; inset: 0; z-index: 1; background: var(--cf-magenta);
  clip-path: polygon(0 0, 44.5% 0, 28.5% 100%, 0 100%);
  animation: seamReveal 1.9s var(--ease-out) 0.5s both; }
@keyframes bpReveal { from { clip-path: polygon(0 0, 76% 0, 60% 100%, 0 100%); } to { clip-path: polygon(0 0, 44% 0, 28% 100%, 0 100%); } }
@keyframes seamReveal { from { clip-path: polygon(0 0, 76.5% 0, 60.5% 100%, 0 100%); } to { clip-path: polygon(0 0, 44.5% 0, 28.5% 100%, 0 100%); } }
@media (prefers-reduced-motion: reduce) { .hero__blueprint, .hero__seam, .hero__bg img { animation-duration: 0.01ms; } }
.hero__scrim { position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(to top, rgba(6,6,7,0.96) 1%, rgba(6,6,7,0.25) 42%, rgba(6,6,7,0.55) 100%); }
.hero__bptag { position: absolute; z-index: 5; left: 40px; bottom: 32px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: rgba(150,215,255,0.92); }
.hero__top { position: absolute; z-index: 5; top: calc(var(--nav-h) + 26px); left: 40px; right: 40px; display: flex; justify-content: space-between; color: var(--ink-2); font-size: 13px; letter-spacing: 0.03em; }
.hero__content { position: relative; z-index: 4; width: 100%; padding-bottom: 56px; }
.hero__lock .script { display: block; font-size: clamp(72px, 13vw, 200px); margin-bottom: -6px; }
.hero__lock .l2 { display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(30px, 5.4vw, 80px); letter-spacing: -0.005em; line-height: 0.98; }
.hero__tag { margin-top: 20px; }
.hero__sub { margin: 22px 0 0; max-width: 46ch; font-size: 18px; line-height: 1.6; color: var(--ink-2); }
.hero__cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll { position: absolute; right: 40px; bottom: 56px; z-index: 5; display: flex; align-items: center; gap: 12px; writing-mode: vertical-rl; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; color: var(--ink-3); }
.hero__scroll::after { content: ""; writing-mode: horizontal-tb; width: 1px; height: 50px; background: linear-gradient(var(--ink-3), transparent); }

/* process icon strip */
.procbar { display: flex; margin-top: 36px; max-width: 720px; border-top: 1px solid var(--hair-mag); }
.procbar .step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 16px 6px 0; border-left: 1px solid var(--hair-mag); }
.procbar .step:first-child { border-left: none; }
.procbar .step .icon { width: 26px; height: 26px; color: var(--cf-magenta); }
.procbar .step span { font-family: var(--font-display); text-transform: uppercase; font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.82); }

/* ---------- inner page hero ---------- */
.phero { position: relative; padding: calc(var(--nav-h) + 90px) 0 70px; overflow: hidden; }
.phero--img { min-height: 64vh; display: flex; align-items: flex-end; padding-bottom: 56px; }
.phero__bg { position: absolute; inset: 0; z-index: 0; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; }
.phero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,7,0.95) 4%, rgba(6,6,7,0.45) 60%, rgba(6,6,7,0.7)); }
.phero__in { position: relative; z-index: 2; }
.phero h1 { margin: 18px 0 0; }
.phero h1 .script { display: block; font-size: clamp(56px, 9vw, 132px); }
.phero h1 .l2 { display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(34px, 5vw, 76px); line-height: 0.98; letter-spacing: -0.01em; }
.phero p { margin: 22px 0 0; max-width: 56ch; }

/* ---------- section frame ---------- */
section { position: relative; }
.sec-pad { padding: clamp(76px, 10vw, 150px) 0; }
.sec-pad-sm { padding: clamp(56px, 7vw, 96px) 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 60px; flex-wrap: wrap; }
.sec-head h2 { margin: 16px 0 0; font-size: clamp(38px, 5.2vw, 74px); max-width: 20ch; }
.sec-num { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--cf-magenta); letter-spacing: 0.1em; }
.panel { background: var(--site-panel); }
.panel-2 { background: var(--site-panel-2); }

/* ---------- sketch→blueprint→reality reveal ---------- */
.reveal { position: relative; aspect-ratio: 16/8; width: 100%; overflow: hidden; border-radius: 4px; user-select: none; cursor: ew-resize; background: #05060a; }
.reveal img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reveal__fin { z-index: 1; }
.reveal__blue { position: absolute; inset: 0; z-index: 2; width: 96%; overflow: hidden; }
.reveal__blue img { width: 100vw; max-width: none; filter: grayscale(1) brightness(0.5) contrast(1.2) sepia(1) hue-rotate(168deg) saturate(5.5); }
.reveal__grid { position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, rgba(120,200,255,0.2) 0 1px, transparent 1px 32px), repeating-linear-gradient(90deg, rgba(120,200,255,0.2) 0 1px, transparent 1px 32px); mix-blend-mode: screen; }
.reveal__bp { position: absolute; left: 22px; bottom: 18px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: rgba(150,215,255,0.9); }
.reveal__fl { position: absolute; right: 22px; bottom: 18px; z-index: 1; font-family: var(--font-display); text-transform: uppercase; font-size: 12px; letter-spacing: 0.16em; color: rgba(255,255,255,0.85); }
.reveal__handle { position: absolute; top: 0; bottom: 0; left: 96%; z-index: 3; width: 2px; background: #fff; transform: translateX(-1px); }
.reveal__knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 50px; height: 50px; border-radius: 50%; background: var(--cf-magenta); border: 2px solid #fff; box-shadow: 0 6px 24px rgba(0,0,0,0.5); }
.reveal__knob::before, .reveal__knob::after { content: ""; position: absolute; top: 50%; width: 0; height: 0; border-block: 5px solid transparent; }
.reveal__knob::before { left: 12px; transform: translateY(-50%); border-right: 7px solid #fff; }
.reveal__knob::after { right: 12px; transform: translateY(-50%); border-left: 7px solid #fff; }

.stages { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 26px; background: var(--hair); border: 1px solid var(--hair); border-radius: 4px; overflow: hidden; }
.stages .st { background: var(--site-bg); padding: 20px 22px; }
.stages .st .ico { color: var(--cf-magenta); margin-bottom: 12px; }
.stages .st .ico .icon { width: 24px; height: 24px; }
.stages .st .t { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 17px; letter-spacing: 0.04em; }
.stages .st .d { font-size: 13px; color: var(--ink-3); margin-top: 5px; line-height: 1.5; }

/* ---------- work tiles ---------- */
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tile { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 3/2.15; display: block; }
.tile.tall { grid-row: span 2; aspect-ratio: auto; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.tile:hover img { transform: scale(1.07); }
.tile__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,7,0.92) 4%, rgba(6,6,7,0.1) 48%, transparent 72%); transition: background .4s; }
.tile:hover .tile__scrim { background: linear-gradient(to top, rgba(6,6,7,0.94) 8%, rgba(230,0,126,0.14) 52%, transparent 80%); }
.tile__meta { position: absolute; left: 26px; right: 26px; bottom: 24px; }
.tile__disc { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 12px; letter-spacing: 0.16em; color: var(--cf-magenta); }
.tile__title { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; font-size: clamp(22px, 2.5vw, 36px); line-height: 1.0; margin-top: 7px; }
.tile__idx { position: absolute; top: 22px; right: 26px; font-family: var(--font-display); font-size: 13px; letter-spacing: 0.14em; color: rgba(255,255,255,0.7); }
.tile__row { display: flex; align-items: center; gap: 10px; margin-top: 9px; font-size: 13px; color: var(--ink-2); }
.tile__arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-family: var(--font-display); text-transform: uppercase; font-size: 12px; letter-spacing: 0.14em; color: #fff; opacity: 0; transform: translateX(-8px); transition: .35s var(--ease-out); }
.tile:hover .tile__arrow { opacity: 1; transform: translateX(0); }

/* ---------- services grid ---------- */
.serv-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hair); border-left: 1px solid var(--hair); }
.serv { padding: 34px 28px 40px; border-right: 1px solid var(--hair); border-bottom: 1px solid var(--hair); min-height: 230px; display: flex; flex-direction: column; transition: background .3s; position: relative; }
.serv:hover { background: #000; }
.serv .ico { color: var(--cf-magenta); margin-bottom: auto; }
.serv .ico .icon { width: 30px; height: 30px; }
.serv .n { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); position: absolute; top: 34px; right: 28px; }
.serv h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 22px; line-height: 1.05; letter-spacing: 0.02em; margin: 24px 0 0; }
.serv p { font-size: 13px; color: var(--ink-3); margin: 11px 0 0; line-height: 1.5; }
.serv::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 2px; background: var(--cf-magenta); transition: width .4s var(--ease-out); }
.serv:hover::after { width: 100%; }

/* ---------- stats ---------- */
.statbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 4px; overflow: hidden; }
.statbar .stat { background: var(--site-bg); padding: 30px 26px; }
.statbar .v { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 4vw, 52px); letter-spacing: -0.01em; line-height: 1; }
.statbar .v em { color: var(--cf-magenta); font-style: normal; font-size: 0.5em; }
.statbar .k { font-size: 13px; color: var(--ink-3); margin-top: 8px; }

/* ---------- industries list ---------- */
.ind { display: flex; align-items: center; gap: 28px; padding: 26px 0; border-bottom: 1px solid var(--hair); transition: padding-left .35s var(--ease-out); }
.ind:first-child { border-top: 1px solid var(--hair); }
.ind:hover { padding-left: 20px; }
.ind .n { font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); width: 42px; flex: 0 0 auto; }
.ind h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; font-size: clamp(24px, 3.4vw, 46px); margin: 0; transition: color .25s; flex: 1; }
.ind:hover h3 { color: var(--cf-magenta); }
.ind .arrow { color: var(--ink-3); opacity: 0; transition: .3s; }
.ind:hover .arrow { opacity: 1; color: #fff; }

/* ---------- client wall ---------- */
.cli-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 4px; overflow: hidden; }
.cli { background: var(--site-panel); aspect-ratio: 16/7; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.cli:hover { background: #000; }
.cli img { max-height: 40px; max-width: 58%; object-fit: contain; filter: grayscale(1) brightness(0) invert(1); opacity: 0.5; transition: .3s; }
.cli:hover img { opacity: 1; }
.cli span { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 17px; letter-spacing: 0.06em; color: var(--ink-3); transition: color .3s; }
.cli:hover span { color: #fff; }

/* ---------- accordion (jobs / faq) ---------- */
.acc { border-top: 1px solid var(--hair); }
.acc__item { border-bottom: 1px solid var(--hair); }
.acc__head { width: 100%; background: none; border: none; cursor: pointer; color: inherit; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; text-align: left; transition: padding-left .3s; }
.acc__item:hover .acc__head { padding-left: 14px; }
.acc__head h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: clamp(20px, 2.4vw, 30px); margin: 0; }
.acc__head .meta { display: flex; gap: 22px; align-items: center; margin-left: auto; }
.acc__head .tag { font-family: var(--font-display); text-transform: uppercase; font-size: 11px; letter-spacing: 0.1em; color: var(--cf-magenta); border: 1px solid var(--hair-mag); border-radius: 999px; padding: 5px 12px; }
.acc__head .plus { color: var(--cf-magenta); flex: 0 0 auto; transition: transform .3s; }
.acc__item.open .acc__head .plus { transform: rotate(45deg); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.acc__body-in { padding: 0 0 30px; color: var(--ink-2); font-size: 16px; line-height: 1.65; max-width: 70ch; }
.acc__body-in .btn { margin-top: 18px; }

/* ---------- timeline ---------- */
.tl { display: flex; flex-direction: column; }
.tl__row { display: grid; grid-template-columns: 130px 1fr; gap: 36px; padding: 30px 0; border-top: 1px solid var(--hair); }
.tl__yr { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--cf-magenta); }
.tl__row h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 22px; margin: 0 0 8px; }
.tl__row p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 60ch; }

/* ---------- value cards ---------- */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vcard { background: var(--site-panel); border: 1px solid var(--hair); border-radius: 4px; padding: 32px 28px; transition: border-color .3s, transform .3s; }
.vcard:hover { border-color: var(--hair-mag); transform: translateY(-4px); }
.vcard .ico { color: var(--cf-magenta); margin-bottom: 22px; }
.vcard .ico .icon { width: 30px; height: 30px; }
.vcard h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 21px; margin: 0 0 10px; }
.vcard p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.62; }

/* ---------- big CTA ---------- */
.cta { position: relative; overflow: hidden; background: var(--cf-magenta); }
.cta__in { padding: clamp(76px, 9vw, 140px) 0; text-align: center; position: relative; z-index: 2; }
.cta .script { color: #fff; font-size: clamp(56px, 9vw, 130px); display: block; }
.cta h2 { font-size: clamp(38px, 5vw, 64px); margin: 0; }
.cta p { max-width: 46ch; margin: 20px auto 0; font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.92); }
.cta .btn-dark { margin-top: 34px; }

/* ---------- footer ---------- */
footer.site { background: #000; padding: 80px 0 36px; border-top: 1px solid var(--hair); }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--hair); }
.foot-brand img { height: 34px; margin-bottom: 20px; }
.foot-brand p { color: var(--ink-2); font-size: 14px; line-height: 1.6; max-width: 32ch; margin: 0 0 20px; }
.foot-soc { display: flex; gap: 12px; }
.foot-soc a { width: 40px; height: 40px; border: 1px solid var(--hair); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink-2); transition: .25s; }
.foot-soc a:hover { background: var(--cf-magenta); border-color: var(--cf-magenta); color: #fff; }
.foot-soc .icon { width: 18px; height: 18px; }
.foot-col h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 12px; letter-spacing: 0.16em; color: var(--ink-3); margin: 0 0 16px; }
.foot-col a, .foot-col p { display: block; font-size: 14px; color: var(--ink-2); margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-news p { color: var(--ink-2); font-size: 14px; line-height: 1.55; margin: 0 0 16px; }
.foot-news form { display: flex; gap: 8px; }
.foot-news input { flex: 1; background: #0c0d10; border: 1px solid var(--hair); border-radius: 3px; padding: 0 14px; height: 46px; color: #fff; font-family: var(--font-body); font-size: 14px; }
.foot-news input:focus { outline: none; border-color: var(--cf-magenta); }
.foot-news button { height: 46px; width: 46px; flex: 0 0 auto; background: var(--cf-magenta); border: none; border-radius: 3px; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; flex-wrap: wrap; gap: 12px; }

/* ---------- reveal on scroll ---------- */
.reveal-up { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-up.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal-up { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .wrap { width: calc(100% - 48px); }
  .wrap-wide { width: calc(100% - 48px); }
  .nav, .nav.solid { padding-inline: 22px; }
  .nav__links, .nav__right .lang { display: none; }
  .nav__burger { display: block; }
  .work-grid, .serv-grid, .cli-wall, .cards3 { grid-template-columns: 1fr 1fr; }
  .statbar { grid-template-columns: 1fr 1fr; }
  .tile.tall { grid-row: auto; aspect-ratio: 3/2.15; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .work-grid, .serv-grid, .cli-wall, .stages, .statbar, .cards3 { grid-template-columns: 1fr; }
  .hero__scroll, .hero__top { display: none; }
  .procbar { flex-wrap: wrap; }
  .tl__row { grid-template-columns: 1fr; gap: 8px; }
  .foot-top { grid-template-columns: 1fr; }
}
