/* ============================================================
   ChinaWorx — instrument-panel design system
   Dark base · off-white ink · single red accent · restrained glow
   ============================================================ */

/* ---- Self-host these for production (GDPR / LG München I). Prototype loads
   them via the standard stylesheet link in <head>. System stack falls back. ---- */

:root {
  --bg:        #0a0b0d;
  --bg-2:      #0d0f12;
  --surface:   #121418;
  --surface-2: #16191e;
  --line:      rgba(255,255,255,0.085);
  --line-2:    rgba(255,255,255,0.14);

  --ink:       #e9ecef;
  --ink-2:     #aab1b8;
  --ink-3:     #6c747c;
  --ink-4:     #474e56;

  --red:       #f80404;
  --red-2:     #ff3636;
  --red-ink:   #fff;
  --red-glow:  rgba(248,4,4,0.55);

  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --wrap: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --r: 14px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--red); color: #fff; }

/* ---- layout ---- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }
.divline { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---- shared bits ---- */
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 11px; margin: 0;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); box-shadow: 0 0 10px var(--red-glow); }
.glow { color: #fff; text-shadow: 0 0 28px var(--red-glow), 0 0 8px rgba(248,4,4,0.4); }
.accent { color: var(--red); }
.reddot { color: var(--red); text-shadow: 0 0 14px var(--red-glow); }

.lead { font-size: clamp(18px, 2vw, 21px); line-height: 1.6; color: var(--ink-2); max-width: 60ch; text-wrap: pretty; }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { font-size: clamp(30px, 4.4vw, 52px); margin-top: 20px; }
.section-head p { margin-top: 20px; }

/* ---- buttons ---- */
.btn {
  --bg-btn: transparent;
  font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 11px; cursor: pointer; border: 1px solid transparent;
  background: var(--bg-btn); color: var(--ink);
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), background .25s, border-color .25s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn--primary { background: var(--red); color: var(--red-ink); box-shadow: 0 0 0 0 var(--red-glow), 0 10px 30px -12px rgba(248,4,4,0.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 34px -4px var(--red-glow), 0 14px 36px -12px rgba(248,4,4,0.8); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--red); color: #fff; transform: translateY(-2px); box-shadow: 0 0 26px -10px var(--red-glow); }
.btn--ghost:hover svg { transform: translateX(4px); }
.btn--block { width: 100%; justify-content: center; padding-block: 17px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: baseline; gap: 1px; font-family: var(--font-display); font-weight: 700; font-size: 32px; letter-spacing: -0.03em; color: #fff; }
.brand b { font-weight: 700; }
.brand .pt { color: var(--red); text-shadow: 0 0 14px var(--red-glow); margin-left: 1px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  padding: 9px 14px; border-radius: 9px; transition: color .2s, background .2s; position: relative; white-space: nowrap;
}
.nav__links a:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.nav__cta { margin-left: 10px; }
.nav__cta .btn { padding: 11px 20px; font-size: 14.5px; }
.nav__toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: 9px; width: 42px; height: 42px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 18px; height: 2px; background: var(--ink); transition: .25s var(--ease); display: block; }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile {
  position: fixed; inset: 74px 0 auto 0; z-index: 99;
  background: var(--bg-2); border-bottom: 1px solid var(--line);
  padding: 14px var(--gut) 28px; display: none; flex-direction: column; gap: 4px;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .28s var(--ease);
}
.mobile.show { display: flex; transform: none; opacity: 1; pointer-events: auto; }
.mobile a { font-family: var(--font-display); font-size: 19px; font-weight: 500; padding: 13px 4px; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile a:last-of-type { border-bottom: 0; }
.mobile .btn { margin-top: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 74px; overflow: hidden; }
#dotfield { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero::after { /* vignette + bottom fade into page */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 78% 30%, transparent 40%, rgba(10,11,13,0.55) 100%),
    linear-gradient(180deg, transparent 60%, var(--bg) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-block: 8vh; max-width: 980px; }
.hero h1 { font-size: clamp(44px, 8.2vw, 112px); letter-spacing: -0.035em; }
.hero__sub { margin-top: 28px; font-size: clamp(18px, 2.1vw, 23px); line-height: 1.55; color: var(--ink-2); max-width: 56ch; text-wrap: pretty; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero__eyebrow { margin-bottom: 26px; }
.scrollcue { position: absolute; bottom: 30px; left: var(--gut); z-index: 2; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-4); display: flex; align-items: center; gap: 10px; }
.scrollcue::before { content: ""; width: 1px; height: 40px; background: linear-gradient(var(--red), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%,100%{opacity:.3;transform:scaleY(.6);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.trust__inner { padding-block: 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.trust__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-3); display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.trust__label .live { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 9px var(--red-glow); animation: blink 2.6s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }
.trust__line { color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.trust__line b { color: var(--ink); font-weight: 600; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.scard {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: clamp(28px, 3.5vw, 48px); overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease), background .3s;
  display: flex; flex-direction: column; min-height: 340px;
}
.scard::before { /* faint corner accent */
  content: ""; position: absolute; top: 0; right: 0; width: 140px; height: 140px;
  background: radial-gradient(circle at top right, rgba(248,4,4,0.12), transparent 70%); opacity: 0; transition: opacity .35s;
}
.scard:hover { border-color: var(--line-2); transform: translateY(-4px); background: var(--surface-2); }
.scard:hover::before { opacity: 1; }
.scard__idx { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--ink-3); }
.scard__idx b { color: var(--red); }
.scard h3 { font-size: clamp(24px, 2.8vw, 32px); margin-top: 18px; }
.scard p { margin-top: 16px; color: var(--ink-2); font-size: 16px; flex: 1; }
.scard__more { margin-top: 26px; display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); transition: color .2s, gap .2s; }
.scard__more svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.scard:hover .scard__more { color: var(--red); }
.scard:hover .scard__more svg { transform: translateX(5px); }
.scard__tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 7px; }
.tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-3); border: 1px solid var(--line); border-radius: 6px; padding: 5px 9px; }

/* ============================================================
   WHY (trust answers)
   ============================================================ */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.why__item { background: var(--bg); padding: clamp(26px, 3.2vw, 42px); transition: background .3s; }
.why__item:hover { background: var(--surface); }
.why__n { font-family: var(--font-mono); font-size: 12px; color: var(--red); letter-spacing: 0.15em; }
.why__item h3 { font-size: clamp(19px, 2vw, 24px); margin-top: 16px; }
.why__item p { margin-top: 13px; color: var(--ink-2); font-size: 15.5px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 96px 1fr; gap: clamp(20px, 4vw, 56px); padding-block: clamp(26px, 3vw, 40px); border-top: 1px solid var(--line); align-items: start; transition: background .3s; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n { font-family: var(--font-mono); font-size: 14px; color: var(--ink-3); padding-top: 8px; position: relative; }
.step__n b { color: var(--red); font-size: 30px; font-family: var(--font-display); display: block; letter-spacing: -0.03em; line-height: 1; }
.step__body h3 { font-size: clamp(21px, 2.4vw, 28px); }
.step__body p { margin-top: 12px; color: var(--ink-2); max-width: 62ch; }
.step:hover { background: linear-gradient(90deg, var(--surface), transparent 60%); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.about__text h2 { font-size: clamp(28px, 3.8vw, 46px); }
.about__text p { margin-top: 22px; color: var(--ink-2); font-size: 17px; }
.about__sig { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.about__sig .nm { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.about__sig .rl { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); letter-spacing: 0.06em; }

/* ---- technical image placeholder ---- */
.ph { position: relative; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; }
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 11px);
}
.ph__label { position: absolute; left: 14px; bottom: 12px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); z-index: 2; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.ph:has(img)::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,9,11,0.85) 100%); }
.ph:has(img) .ph__label { color: var(--ink-2); }
.ph__corner { position: absolute; width: 12px; height: 12px; border: 1px solid var(--line-2); }
.ph__corner.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.ph__corner.tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.ph__corner.bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.ph__corner.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.about .ph { aspect-ratio: 4/5; }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.closing { text-align: center; position: relative; overflow: hidden; }
.closing::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 120%, rgba(248,4,4,0.10), transparent 70%); pointer-events: none; }
.closing__inner { position: relative; max-width: 880px; margin-inline: auto; }
.closing h2 { font-size: clamp(34px, 6vw, 76px); letter-spacing: -0.035em; }
.closing .btn { margin-top: 40px; padding: 18px 34px; font-size: 17px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(32px, 5vw, 72px); }
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 9px; }
.field label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; width: 100%; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(248,4,4,0.16); background: var(--surface-2); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236c747c' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); flex: none; }
.consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form__status { display: none; padding: 15px 17px; border-radius: 10px; font-size: 14.5px; }
.form__status.show { display: block; }
.form__status.ok { background: rgba(248,4,4,0.06); border: 1px solid var(--red); color: var(--ink); }
.form__status.err { background: rgba(255,255,255,0.03); border: 1px solid var(--line-2); color: var(--ink-2); }

.cinfo { display: grid; gap: 26px; align-content: start; }
.cinfo__block .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.cinfo__block .v { color: var(--ink); font-size: 16px; line-height: 1.6; }
.cinfo__block a.v:hover { color: var(--red); }
.cinfo__panel { border: 1px solid var(--line); border-radius: var(--r); padding: 24px; background: var(--surface); display: grid; gap: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: clamp(48px, 6vw, 76px) 34px; }
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot__brand img { width: 132px; opacity: .92; }
.foot__brand p { margin-top: 18px; color: var(--ink-3); font-size: 14px; max-width: 34ch; }
.foot__col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; margin-bottom: 16px; }
.foot__col a { display: block; color: var(--ink-2); font-size: 15px; padding: 6px 0; transition: color .2s; }
.foot__col a:hover { color: var(--red); }
.foot__bar { margin-top: clamp(40px, 5vw, 60px); padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.foot__bar p, .foot__bar a { font-family: var(--font-mono); font-size: 12px; color: var(--ink-4); letter-spacing: 0.04em; }
.foot__bar a:hover { color: var(--ink-2); }
.foot__bar .grp { display: flex; gap: 22px; flex-wrap: wrap; }

/* ============================================================
   SUB-PAGE COMPONENTS
   ============================================================ */
.page-head { padding-top: calc(74px + clamp(54px, 9vw, 120px)); padding-bottom: clamp(28px, 5vw, 56px); position: relative; }
.page-head h1 { font-size: clamp(38px, 6.4vw, 78px); margin-top: 22px; letter-spacing: -0.035em; }
.page-head .lead { margin-top: 24px; }
.page-head .reddot { font-size: 1em; }

/* definition list (capabilities) */
.deflist { border-top: 1px solid var(--line); }
.deflist__row { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: clamp(16px, 4vw, 56px); padding-block: clamp(22px, 2.6vw, 34px); border-bottom: 1px solid var(--line); align-items: baseline; transition: background .3s; }
.deflist__row:hover { background: linear-gradient(90deg, var(--surface), transparent 60%); }
.deflist__row h3 { font-size: clamp(20px, 2.3vw, 27px); display: flex; align-items: baseline; gap: 14px; }
.deflist__row h3 .n { font-family: var(--font-mono); font-size: 13px; color: var(--red); font-weight: 700; }
.deflist__row p { color: var(--ink-2); max-width: 60ch; }

/* category grid (procurement) */
.catgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.cat { background: var(--bg); padding: clamp(22px, 2.6vw, 34px); transition: background .3s; }
.cat:hover { background: var(--surface); }
.cat .n { font-family: var(--font-mono); font-size: 12px; color: var(--red); }
.cat h3 { font-size: clamp(18px, 1.9vw, 22px); margin-top: 14px; }
.cat p { margin-top: 10px; color: var(--ink-2); font-size: 14.5px; }
@media (max-width: 860px) { .catgrid { grid-template-columns: 1fr 1fr; } .deflist__row { grid-template-columns: 1fr; gap: 10px; } }
@media (max-width: 540px) { .catgrid { grid-template-columns: 1fr; } }

/* note / callout panel */
.note { border: 1px solid var(--line); border-left: 2px solid var(--red); border-radius: 10px; background: var(--surface); padding: clamp(22px, 3vw, 32px); }
.note h3 { font-size: 20px; }
.note p { margin-top: 12px; color: var(--ink-2); }

/* long-form prose (legal / privacy) */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(22px, 2.6vw, 30px); margin-top: 48px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; margin-top: 30px; }
.prose p, .prose li { color: var(--ink-2); font-size: 16px; line-height: 1.7; margin-top: 14px; }
.prose ul { margin: 14px 0 0; padding-left: 22px; }
.prose li { margin-top: 8px; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--red); }
.prose .placeholder { color: var(--red-2); font-family: var(--font-mono); font-size: 0.9em; }
.prose .meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-3); }

/* ============================================================
   BLOG / INSIGHTS
   ============================================================ */
.bloglist { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pcard { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 3vw, 38px); min-height: 280px; transition: border-color .3s, transform .3s var(--ease), background .3s; }
.pcard:hover { border-color: var(--line-2); transform: translateY(-4px); background: var(--surface-2); }
.pcard__cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.pcard h3 { font-size: clamp(21px, 2.4vw, 28px); margin-top: 16px; }
.pcard p { margin-top: 14px; color: var(--ink-2); font-size: 15.5px; flex: 1; }
.pcard__meta { margin-top: 22px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); display: flex; gap: 16px; flex-wrap: wrap; }
.pcard__more { margin-top: 20px; display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); transition: color .2s; }
.pcard__more svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.pcard:hover .pcard__more { color: var(--red); }
.pcard:hover .pcard__more svg { transform: translateX(5px); }

.article { max-width: 760px; margin-inline: auto; }
.article__back { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); transition: color .2s, gap .2s; }
.article__back svg { width: 14px; height: 14px; transform: rotate(180deg); }
.article__back:hover { color: var(--red); }
.article__meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 26px; }
.article__meta .cat { color: var(--red); }
.article h1 { font-size: clamp(32px, 5vw, 56px); margin-top: 18px; letter-spacing: -0.03em; }
.article__lead { margin-top: 22px; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; color: var(--ink-2); text-wrap: pretty; }
.article hr.divline { margin-block: clamp(34px, 5vw, 52px); }
.article__cta { margin-top: clamp(44px, 6vw, 64px); border: 1px solid var(--line); border-left: 2px solid var(--red); border-radius: var(--r); background: var(--surface); padding: clamp(26px, 3.4vw, 38px); }
.article__cta h3 { font-size: clamp(20px, 2.3vw, 26px); }
.article__cta p { margin-top: 12px; color: var(--ink-2); }
.article__cta .btn { margin-top: 24px; }
@media (max-width: 860px) { .bloglist { grid-template-columns: 1fr; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .scrollcue::before { animation: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; }
  .about .ph { aspect-ratio: 16/10; max-height: 420px; }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .services { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 64px 1fr; gap: 18px; }
  .foot__top { grid-template-columns: 1fr; }
  .foot__bar { flex-direction: column; }
}
