/* ============================================================
   Marketing site — site styles (built on top of colors_and_type.css)
   ============================================================ */

/* ---------- LAYOUT ---------- */
.pc-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  box-sizing: border-box;
}
@media (max-width: 720px) {
  .pc-container { padding: 0 var(--gutter-sm); }
}

.pc-section {
  padding: var(--space-8) 0;
  position: relative;
}
@media (max-width: 960px) { .pc-section { padding: var(--space-6) 0; } }
@media (max-width: 540px)  { .pc-section { padding: var(--space-5) 0; } }

/* ---------- EYEBROW + TICKS ---------- */
.pc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  line-height: 1;
}
.pc-eyebrow__num {
  color: var(--accent-hover);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
}
.pc-eyebrow__label { color: var(--fg); white-space: nowrap; }
.pc-eyebrow__ticks { display: inline-flex; align-items: center; gap: 4px; margin-left: 2px; }
.pc-eyebrow__ticks span { display: block; height: 2px; background: var(--fg); }
.pc-eyebrow__ticks span:nth-child(1) { width: 14px; }
.pc-eyebrow__ticks span:nth-child(2) { width: 22px; }
.pc-eyebrow__ticks span:nth-child(3) { width: 10px; }

/* ---------- SECTION HEADER ---------- */
.pc-section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding-top: 24px;
  border-top: 2px solid var(--fg);
  margin-bottom: var(--space-6);
}
.pc-section-head__body { max-width: 720px; }
.pc-section-head .pc-h2 {
  padding-bottom: 0.18em;
}
.pc-section-head .pc-h2 em {
  font-style: normal;
  color: var(--fg);
  background-image: linear-gradient(transparent 58%, var(--accent) 58%, var(--accent) 76%, transparent 76%);
  padding: 0 0.04em;
}
.pc-section-head__lead { margin: 40px 0 0; max-width: 56ch; }
@media (max-width: 720px) {
  .pc-section-head { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- BUTTONS ---------- */
.pc-btn {
  --pad-y: 14px;
  --pad-x: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-base) var(--ease-standard),
              color var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard);
}
.pc-btn--sm { --pad-y: 10px; --pad-x: 16px; font-size: 14px; }
.pc-btn__arrow { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.pc-btn:active { opacity: 0.86; }
.pc-btn--primary { background: var(--pc-jet); color: var(--pc-bone); }
.pc-btn--primary:hover { background: #000; }
.pc-btn--accent { background: var(--accent); color: var(--accent-fg); }
.pc-btn--accent:hover { background: var(--accent-hover); }
.pc-btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--fg);
  padding: calc(var(--pad-y) - 1.5px) calc(var(--pad-x) - 1.5px);
}
.pc-btn--ghost:hover { background: var(--fg); color: var(--bg); }

/* ---------- HAZARD BEACON (roadworks-style availability indicator) ---------- */
.pc-hazard {
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg);
}
.pc-hazard__beacon {
  position: relative; width: 18px; height: 18px; flex-shrink: 0;
}
.pc-hazard__core {
  position: absolute; inset: 4px; border-radius: 999px;
  background: var(--accent);
  animation: hazard-core 2.6s ease-in-out infinite;
}
.pc-hazard__ring {
  position: absolute; inset: 0; border-radius: 999px;
  border: 1.5px solid var(--accent);
  animation: hazard-ring 2.6s ease-in-out infinite;
}
@keyframes hazard-core {
  0%,  8%  { opacity: 1; }
  16%       { opacity: 0.12; }
  24%       { opacity: 1; }
  32%       { opacity: 0.12; }
  42%       { opacity: 1; }
  100%      { opacity: 1; }
}
@keyframes hazard-ring {
  0%   { transform: scale(1);   opacity: 0.65; }
  22%  { transform: scale(2.4); opacity: 0; }
  23%  { transform: scale(1);   opacity: 0.65; }
  44%  { transform: scale(2.4); opacity: 0; }
  45%, 100% { transform: scale(1); opacity: 0; }
}

/* ---------- REVEAL ---------- */
.pc-reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out); will-change: opacity, transform; }
.pc-reveal.is-shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .pc-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- NAV ---------- */
.pc-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  transition: box-shadow var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
  border-bottom: 1px solid transparent;
}
.pc-nav.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-1); }
.pc-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.pc-nav__brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--fg); }
.pc-nav__mark { width: 56px; height: 56px; background: url('assets/logo-pathway-civil-mark.png') center/contain no-repeat; flex: none; }
.pc-nav__word { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.pc-nav__word > span:first-child { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.pc-nav__sub { font-size: 9.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-subtle); }
.pc-nav__links { display: flex; gap: 28px; justify-content: center; }
.pc-nav__links a {
  color: var(--fg); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 0 6px;
  position: relative;
  transition: color var(--dur-base) var(--ease-standard);
}
.pc-nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--dur-base) var(--ease-out);
}
.pc-nav__links a:hover::after { width: 100%; }
.pc-nav__cta { display: flex; align-items: center; gap: 14px; }
.pc-nav__menu { display: none; background: transparent; border: 1px solid var(--line); padding: 8px; border-radius: 2px; cursor: pointer; }
.pc-nav__menu svg { width: 22px; height: 22px; fill: none; stroke: var(--fg); stroke-width: 1.6; }
@media (max-width: 1080px) {
  .pc-nav__links { display: none; }
}
@media (max-width: 720px) {
  .pc-nav__inner { grid-template-columns: 1fr auto; }
  .pc-nav__cta { display: none; }
  .pc-nav__menu { display: inline-flex; }
  .pc-nav__sub { display: none; }
}
.pc-nav__sheet {
  background: var(--pc-jet); color: var(--pc-bone);
  padding: 32px var(--gutter-sm);
}
.pc-nav__sheet ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.pc-nav__sheet a { color: var(--pc-bone); text-decoration: none; font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }

/* ---------- HERO ---------- */
.pc-hero { padding: var(--space-6) 0 var(--space-8); position: relative; overflow: hidden; }
.pc-hero::after {
  content: ""; position: absolute; right: -60px; top: -20px; width: 780px; height: 780px;
  background: url('assets/logo-pathway-civil-mark.png') center/contain no-repeat;
  opacity: 0.08; pointer-events: none;
  will-change: transform;
  transform: translateY(calc(-1 * var(--hero-parallax, 0px)));
}
.pc-hero__topline { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: var(--space-7); }
.pc-hero__head {
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0 0 var(--space-7) 0;
  color: var(--fg);
  max-width: 14ch;
}
.pc-hero__head em {
  font-style: normal;
  background-image: linear-gradient(transparent 60%, var(--accent) 60%, var(--accent) 78%, transparent 78%);
  padding: 0 0.04em;
}
.pc-hero__row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 64px; align-items: flex-end; padding-bottom: var(--space-8); border-bottom: 1px solid var(--line); }
.pc-hero__lead { max-width: 56ch; }
.pc-hero__cta { display: flex; gap: 12px; margin-top: var(--space-5); flex-wrap: wrap; }
.pc-hero__stat { display: flex; align-items: flex-end; gap: 18px; padding-left: 64px; border-left: 1px solid var(--line); min-width: 320px; }
.pc-hero__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(96px, 11vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.pc-hero__stat-lbl { padding-bottom: 14px; font-size: 13px; line-height: 1.4; max-width: 240px; }
.pc-hero__stat-lbl > div:first-child { font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11.5px; color: var(--fg); margin-bottom: 6px; }
.pc-hero__stat-sub { color: var(--fg-subtle); }
.pc-hero__band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: var(--space-7); }
.pc-hero__band--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .pc-hero__band--5 { grid-template-columns: repeat(3, 1fr); row-gap: 24px; } .pc-hero__band--5 > div:nth-child(3) { border-right: none; } .pc-hero__band--5 > div:nth-child(n+4) { border-top: 1px solid var(--line); padding-top: 24px; } }
.pc-hero__band > div { display: flex; flex-direction: column; gap: 6px; padding: 0 24px 0 0; border-right: 1px solid var(--line); padding-right: 24px; }
.pc-hero__band > div:last-child { border-right: none; }
.pc-hero__band .pc-mono { font-size: 28px; font-weight: 600; color: var(--fg); letter-spacing: -0.01em; }
.pc-hero__band span:last-child { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-subtle); }
@media (max-width: 960px) {
  .pc-hero__row { grid-template-columns: 1fr; gap: 32px; }
  .pc-hero__stat { padding-left: 0; border-left: none; min-width: 0; }
  .pc-hero__band { grid-template-columns: repeat(2,1fr); row-gap: 24px; }
  .pc-hero__band > div:nth-child(2) { border-right: none; }
}
@media (max-width: 540px) {
  .pc-hero__band { grid-template-columns: 1fr; }
  .pc-hero__band > div { border-right: none; border-bottom: 1px solid var(--line); padding: 16px 0; }
}

/* ---------- SERVICES ---------- */
.pc-services__list { display: flex; flex-direction: column; }
.pc-service {
  display: grid;
  grid-template-columns: 80px 1fr 220px;
  gap: 32px;
  padding: var(--space-7) 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
  transition: background var(--dur-base) var(--ease-standard);
}
.pc-service:last-child { border-bottom: 1px solid var(--line); }
.pc-service:hover { background: var(--bg-elevated); }
.pc-service__num { padding-top: 6px; font-size: 13px; font-weight: 600; letter-spacing: 0.14em; color: var(--accent-hover); }
.pc-service__title { margin: 0 0 12px; font-size: clamp(28px, 3.4vw, 44px); }
.pc-service__desc { font-size: 17px; line-height: 1.55; color: var(--fg-muted); max-width: 60ch; margin: 0 0 18px; }
.pc-service__specs { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 16px 24px; }
.pc-service__specs li { font-size: 13.5px; color: var(--fg); }
.pc-service__specs .pc-mono { color: var(--fg-subtle); margin-right: 6px; }
.pc-service__cta { padding-top: 8px; text-align: right; }
.pc-service__cta a { display: inline-flex; align-items: center; gap: 8px; color: var(--fg); text-decoration: none; font-weight: 600; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; padding-bottom: 4px; border-bottom: 1px solid var(--fg); }
.pc-service__cta svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform var(--dur-base) var(--ease-standard); }
.pc-service:hover .pc-service__cta svg { transform: translate(2px,-2px); }
@media (max-width: 720px) {
  .pc-service { grid-template-columns: 1fr; gap: 14px; }
  .pc-service__cta { text-align: left; }
}

/* ---------- PROJECT TABLE ---------- */
.pc-table-wrap { overflow-x: auto; }
.pc-table { display: grid; grid-template-columns: 100%; min-width: 720px; }
.pc-table__head, .pc-table__row {
  display: grid;
  grid-template-columns: 80px 1.5fr 1fr 1fr 100px;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.pc-table__head {
  border-top: 2px solid var(--fg);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-subtle);
}
.pc-table__row { font-size: 16px; }
.pc-table__row:hover { background: var(--bg-elevated); }
.pc-table__row:last-child { border-bottom: 1px solid var(--line); }
.pc-table__num { text-align: right; }
.pc-table__scope { font-weight: 500; color: var(--fg); }

/* ---------- MACHINE CAPABILITY ---------- */
.pc-section--capability { background: var(--pc-jet); color: var(--fg-inverse); }
.pc-section--capability .pc-section-head { border-top-color: var(--pc-bone); }
.pc-section--capability .pc-section-head h2,
.pc-section--capability .pc-section-head__lead,
.pc-section--capability .pc-eyebrow__label { color: var(--fg-inverse); }
.pc-section--capability .pc-section-head__lead { color: var(--pc-stone-300); }
.pc-section--capability .pc-eyebrow__num { color: var(--accent); }
.pc-section--capability .pc-eyebrow__ticks span { background: var(--fg-inverse); }
.pc-section--capability .pc-section-head h2 em::after { background: var(--accent); }
.pc-section--capability .pc-section-head h2 em { color: var(--fg-inverse); }
.pc-plant { display: grid; grid-template-columns: 100%; }
.pc-plant__head, .pc-plant__row {
  display: grid; grid-template-columns: 100px 1.2fr 1.6fr 0.9fr 1.2fr; gap: 24px;
  padding: 18px 0; border-top: 1px solid rgba(244,242,236,0.18); align-items: center;
}
.pc-plant__head { border-top: 2px solid var(--fg-inverse); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pc-stone-300); }
.pc-plant__row { font-size: 16px; }
.pc-plant__row:last-child { border-bottom: 1px solid rgba(244,242,236,0.18); }
.pc-plant__wt .pc-numeric { font-size: 28px; font-weight: 700; letter-spacing: -0.01em; }
.pc-plant__att { color: var(--pc-stone-300); }
.pc-plant__note { color: var(--pc-stone-300); font-size: 14px; }
.pc-capability-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: var(--space-8); padding-top: var(--space-7); border-top: 1px solid rgba(244,242,236,0.18); }
.pc-capability-foot p { margin: 8px 0 0; color: var(--pc-stone-300); font-size: 15px; line-height: 1.6; }
@media (max-width: 720px) {
  .pc-plant__head { display: none; }
  .pc-plant__row { grid-template-columns: 1fr; gap: 4px; padding: 18px 0; }
  .pc-capability-foot { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- WHY ---------- */
.pc-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.pc-why__item { padding: var(--space-7) 32px var(--space-7) 0; border-right: 1px solid var(--line); }
.pc-why__item:last-child { border-right: none; padding-right: 0; }
.pc-why__num { font-size: 13px; font-weight: 600; letter-spacing: 0.14em; color: var(--accent-hover); display: block; margin-bottom: 18px; }
.pc-why__head { margin: 0 0 12px; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; letter-spacing: -0.02em; }
.pc-why__body { margin: 0; font-size: 16px; line-height: 1.6; color: var(--fg-muted); }
@media (max-width: 880px) {
  .pc-why { grid-template-columns: 1fr; }
  .pc-why__item { border-right: none; border-bottom: 1px solid var(--line); padding: var(--space-6) 0; }
  .pc-why__item:last-child { border-bottom: none; }
}
.pc-strip { margin-top: var(--space-9); padding: var(--space-7) 0; border-top: 2px solid var(--fg); border-bottom: 2px solid var(--fg); }
.pc-strip__inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pc-strip__numblock { display: flex; flex-direction: column; gap: 10px; }
.pc-strip__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(56px, 7vw, 96px); line-height: 0.9; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.pc-strip__sub { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-subtle); }
@media (max-width: 720px) { .pc-strip__inner { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- CONTACT ---------- */
.pc-contact { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; }
@media (max-width: 960px) { .pc-contact { grid-template-columns: 1fr; gap: 48px; } }

.pc-form { display: flex; flex-direction: column; gap: 24px; }
.pc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 720px) { .pc-form__row { grid-template-columns: 1fr; } }

.pc-field { display: flex; flex-direction: column; gap: 8px; }
.pc-field__label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-subtle); }
.pc-field__label em { color: var(--accent-hover); font-style: normal; margin-left: 4px; }
.pc-field input, .pc-field textarea {
  font-family: var(--font-sans); font-size: 16px; color: var(--fg);
  background: transparent; border: none; border-bottom: 1px solid var(--fg);
  padding: 10px 0 8px; outline: none; border-radius: 0; resize: vertical;
  transition: border-color var(--dur-fast) var(--ease-standard);
}
.pc-field input:focus, .pc-field textarea:focus {
  border-bottom-color: var(--accent); border-bottom-width: 2px; padding-bottom: 7px;
}
.pc-field input::placeholder, .pc-field textarea::placeholder { color: var(--pc-stone-300); }
.pc-field__helper { font-size: 12.5px; color: var(--fg-subtle); }

.pc-form__service { display: flex; flex-direction: column; gap: 12px; }
.pc-segmented { display: flex; flex-wrap: wrap; gap: 8px; }
.pc-segmented__opt {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 14px; border: 1px solid var(--line); background: transparent; color: var(--fg);
  cursor: pointer; transition: all var(--dur-fast) var(--ease-standard);
}
.pc-segmented__opt:hover { border-color: var(--fg); }
.pc-segmented__opt.is-active { background: var(--pc-jet); color: var(--pc-bone); border-color: var(--pc-jet); }

.pc-form__foot { display: flex; align-items: center; gap: 24px; padding-top: 8px; flex-wrap: wrap; }
.pc-form__sla { font-size: 11.5px; color: var(--fg-subtle); letter-spacing: 0.12em; text-transform: uppercase; }

.pc-contact__success { padding: 32px 0; }
.pc-contact__success .pc-h3 { margin: 12px 0 8px; }

.pc-contact__direct { display: flex; flex-direction: column; gap: var(--space-6); padding: var(--space-6); background: var(--bg-elevated); border: 1px solid var(--line); }
.pc-contact__block { display: flex; flex-direction: column; gap: 6px; }
.pc-contact__big { font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); font-weight: 700; letter-spacing: -0.02em; color: var(--fg); text-decoration: none; }
.pc-contact__big:hover { color: var(--accent-hover); }
.pc-contact__med { font-size: 18px; color: var(--fg); text-decoration: none; line-height: 1.5; margin: 0; }
.pc-contact__med:hover { border-bottom: 1px solid var(--fg); }
.pc-contact__sub { font-size: 13px; color: var(--fg-subtle); letter-spacing: 0.04em; }
.pc-contact__block--meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: var(--space-5); border-top: 1px solid var(--line); }
.pc-contact__block--meta div { display: flex; flex-direction: column; gap: 4px; }

/* ---------- PROJECTS LIST ---------- */
.pc-projects-list ul { list-style: none; padding: 0; margin: 0; border-top: 2px solid var(--fg); }
.pc-projects-list li { display: grid; grid-template-columns: 32px 1fr; gap: 16px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--line); }
.pc-projects-list__tick { color: var(--accent-hover); }
.pc-projects-list__name { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 32px); font-weight: 700; letter-spacing: -0.02em; color: var(--fg); }
.pc-projects-list__note { margin: 24px 0 0; font-size: 13px; color: var(--fg-subtle); max-width: 70ch; }

/* ---------- PLANT (simple, no specific machine claims) ---------- */
.pc-plant__head--simple, .pc-plant__row--simple { grid-template-columns: 120px 1fr 160px; }

/* ---------- FILE UPLOAD ---------- */
.pc-file { border: 1px dashed rgba(28,28,26,0.30); padding: 18px; cursor: pointer; display: flex; flex-direction: column; gap: 6px; transition: border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard); }
.pc-file:hover { border-color: var(--fg); background: var(--bg-elevated); }
.pc-file__cta { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; }
.pc-file__cta svg { width: 18px; height: 18px; fill: none; stroke: var(--fg); stroke-width: 1.6; }
.pc-file__hint { font-size: 12px; color: var(--fg-subtle); }
.pc-file__list { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--fg-muted); }
.pc-file__list .pc-mono { color: var(--fg-subtle); margin-right: 4px; }

/* ---------- CIVIL ICONS ---------- */
.pc-service__civil-icon {
  width: 22px; height: 22px;
  color: var(--fg-subtle);
  display: block; margin-bottom: 14px;
  transition: color var(--dur-base) var(--ease-standard);
}
.pc-service:hover .pc-service__civil-icon { color: var(--accent-hover); }

.pc-caplist__name { display: flex; align-items: center; gap: 10px; }
.pc-caplist__icon { width: 18px; height: 18px; color: rgba(244,242,236,0.45); flex-shrink: 0; }

.pc-why__icon {
  width: 56px; height: 56px;
  color: var(--accent-hover);
  display: block; margin-bottom: 20px;
  stroke-width: 1.2;
}

/* ---------- SERVICES GRID (12-item production list) ---------- */
.pc-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid var(--fg);
}
.pc-services-grid .pc-service {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--line);
  border-bottom: none;
  grid-template-columns: 60px 1fr 24px;
  gap: 24px;
  margin: 0;
}
.pc-services-grid .pc-service:nth-child(1),
.pc-services-grid .pc-service:nth-child(2) { border-top: none; }
.pc-services-grid .pc-service:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--line); }
.pc-services-grid .pc-service:nth-child(even) { padding-left: 32px; }
.pc-services-grid .pc-service__title { font-size: clamp(20px, 2vw, 26px); margin: 0 0 6px; line-height: 1.15; }
.pc-services-grid .pc-service__desc { font-size: 14.5px; line-height: 1.55; margin: 0; }
.pc-services-grid .pc-service__num { font-size: 12px; padding-top: 4px; }
.pc-services-grid .pc-service__icon-arrow {
  width: 18px; height: 18px; fill: none; stroke: var(--fg-subtle); stroke-width: 1.5;
  margin-top: 4px;
  transition: transform var(--dur-base) var(--ease-standard), stroke var(--dur-base) var(--ease-standard);
}
.pc-services-grid .pc-service:hover .pc-service__icon-arrow { transform: translate(2px,-2px); stroke: var(--fg); }
@media (max-width: 720px) {
  .pc-services-grid { grid-template-columns: 1fr; }
  .pc-services-grid .pc-service:nth-child(odd),
  .pc-services-grid .pc-service:nth-child(even) {
    padding: var(--space-5) 0; border-right: none;
  }
  .pc-services-grid .pc-service:nth-child(2) { border-top: 1px solid var(--line); }
}

/* ---------- BEST FIT WORK ---------- */
.pc-bestfit { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 2px solid var(--fg); }
.pc-bestfit__col { padding: var(--space-7) 0; }
.pc-bestfit__col:first-child { padding-right: 48px; border-right: 1px solid var(--line); }
.pc-bestfit__col:last-child { padding-left: 48px; }
.pc-bestfit__head {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.pc-bestfit__col--yes .pc-bestfit__head { color: var(--fg); }
.pc-bestfit__col--no .pc-bestfit__head { color: var(--fg-subtle); }
.pc-bestfit__mark {
  width: 22px; height: 22px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.pc-bestfit__col--yes .pc-bestfit__mark { background: var(--accent); color: var(--accent-fg); }
.pc-bestfit__col--no .pc-bestfit__mark { background: transparent; border: 1px solid var(--fg-subtle); color: var(--fg-subtle); }
.pc-bestfit__mark svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2.4; }
.pc-bestfit ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.pc-bestfit li {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.pc-bestfit li:last-child { border-bottom: none; }
.pc-bestfit__col--no li { color: var(--fg-subtle); text-decoration: line-through; text-decoration-color: var(--fg-subtle); text-decoration-thickness: 1px; }
@media (max-width: 720px) {
  .pc-bestfit { grid-template-columns: 1fr; }
  .pc-bestfit__col { padding: var(--space-5) 0; border-right: none !important; }
  .pc-bestfit__col:last-child { padding-left: 0; border-top: 1px solid var(--line); }
  .pc-bestfit__col:first-child { padding-right: 0; }
}

/* ---------- WHY (expanded — supports 8 items in 4-col grid) ---------- */
.pc-why--4col { grid-template-columns: repeat(4, 1fr); }
.pc-why--4col .pc-why__item:nth-child(4n) { border-right: none; padding-right: 0; }
.pc-why--4col .pc-why__item { padding: var(--space-6) 24px var(--space-6) 0; }
.pc-why--4col .pc-why__head { font-size: clamp(18px, 1.6vw, 22px); }
.pc-why--4col .pc-why__body { font-size: 14.5px; }
.pc-why--4col.pc-why--rows-2 .pc-why__item:nth-child(n+5) { border-top: 1px solid var(--line); }
@media (max-width: 1080px) {
  .pc-why--4col { grid-template-columns: repeat(2, 1fr); }
  .pc-why--4col .pc-why__item:nth-child(2n) { border-right: none; padding-right: 0; }
  .pc-why--4col .pc-why__item:nth-child(2n+1) { border-right: 1px solid var(--line); }
  .pc-why--4col .pc-why__item:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .pc-why--4col { grid-template-columns: 1fr; }
  .pc-why--4col .pc-why__item { border-right: none !important; padding: var(--space-5) 0; }
  .pc-why--4col .pc-why__item:nth-child(n+2) { border-top: 1px solid var(--line); }
}

/* ---------- CAPABILITY LIST (production — 14 machine list) ---------- */
.pc-caplist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(244,242,236,0.18);
}
.pc-caplist__row {
  display: grid; grid-template-columns: 50px 1fr auto;
  gap: 16px; align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(244,242,236,0.18);
}
.pc-caplist__row:nth-child(odd) { padding-right: 32px; border-right: 1px solid rgba(244,242,236,0.18); }
.pc-caplist__row:nth-child(even) { padding-left: 32px; }
.pc-caplist__num { color: rgba(244,242,236,0.55); font-size: 12px; }
.pc-caplist__name { font-family: var(--font-display); font-size: clamp(18px, 1.8vw, 22px); font-weight: 700; letter-spacing: -0.015em; color: var(--fg-inverse); }
.pc-caplist__cls { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,242,236,0.55); }
@media (max-width: 720px) {
  .pc-caplist { grid-template-columns: 1fr; }
  .pc-caplist__row:nth-child(odd) { padding-right: 0; border-right: none; }
  .pc-caplist__row:nth-child(even) { padding-left: 0; }
}

/* Tickets row inside dark capability section */
.pc-tickets { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.pc-ticket {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(244,242,236,0.30);
  border-radius: 999px;
  font-size: 13px;
  color: var(--fg-inverse);
}
.pc-ticket__dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }

/* ---------- SELECT (timeframe dropdown) ---------- */
.pc-field select {
  font-family: var(--font-sans); font-size: 16px; color: var(--fg);
  background: transparent; border: none; border-bottom: 1px solid var(--fg);
  padding: 10px 0 8px; outline: none; border-radius: 0;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%231C1C1A' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  cursor: pointer;
}
.pc-field select:focus { border-bottom-color: var(--accent); border-bottom-width: 2px; padding-bottom: 7px; }

/* ---------- STICKY MOBILE CTA ---------- */
.pc-mobilecta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  background: var(--pc-jet);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(244,242,236,0.16);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
  transform: translateY(120%);
  transition: transform var(--dur-base) var(--ease-standard);
}
.pc-mobilecta.is-shown { transform: translateY(0); }
.pc-mobilecta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pc-mobilecta a {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 12px;
  border-radius: 4px;
  font-weight: 600; font-size: 14.5px; text-decoration: none;
  white-space: nowrap;
}
.pc-mobilecta a svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.pc-mobilecta__call { background: var(--accent); color: var(--accent-fg); }
.pc-mobilecta__enquire { background: transparent; color: var(--fg-inverse); border: 1px solid rgba(244,242,236,0.35); }
@media (max-width: 720px) {
  .pc-mobilecta { display: block; }
  body { padding-bottom: 88px; }
}

/* ---------- FOOTER ---------- */
.pc-footer { background: var(--pc-jet); color: var(--pc-bone); padding: var(--space-9) 0 var(--space-6); }
.pc-footer__top { display: grid; grid-template-columns: 280px 1fr; gap: 56px; padding-bottom: var(--space-7); border-bottom: 1px solid rgba(244,242,236,0.16); align-items: flex-start; }
.pc-footer__brand { display: block; text-decoration: none; color: var(--fg-inverse); }

/* Full logo — static white, background removed via screen blend */
.pc-footer__fulllogo-wrap {
  display: block; width: 260px;
}
.pc-footer__fulllogo {
  display: block; width: 260px; height: auto;
  filter: invert(1);
  mix-blend-mode: screen;
}
@media (max-width: 880px) { .pc-footer__fulllogo { width: 200px; } .pc-footer__fulllogo-wrap { width: 200px; } }
.pc-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pc-footer__cols .pc-eyebrow__label { color: var(--pc-stone-300); display: block; margin-bottom: 14px; }
.pc-footer__cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pc-footer__cols a { color: var(--fg-inverse); text-decoration: none; font-size: 14.5px; }
.pc-footer__cols a:hover { color: var(--accent); }
.pc-footer__muted { color: var(--pc-stone-300); }
.pc-footer__bot { display: flex; gap: 24px; flex-wrap: wrap; padding-top: var(--space-6); font-size: 12px; color: var(--pc-stone-300); }
@media (max-width: 880px) {
  .pc-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .pc-footer__cols { grid-template-columns: 1fr 1fr; }
  .pc-footer__bot { gap: 16px; }
}
@media (max-width: 540px) {
  .pc-footer__cols { grid-template-columns: 1fr; }
}

/* ============================================================
   FILM GRAIN — static base layer + animated flicker layer
   ============================================================ */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 9998; pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  background-repeat: repeat;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 9999; pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' seed='8' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  background-repeat: repeat;
  animation: film-grain 0.12s steps(1) infinite;
}
@keyframes film-grain {
  0%   { background-position:   0%    0%; }
  14%  { background-position:  62%   18%; }
  28%  { background-position: -33%   51%; }
  42%  { background-position:  78%  -22%; }
  57%  { background-position: -14%   67%; }
  71%  { background-position:  48%  -48%; }
  85%  { background-position: -58%   34%; }
  100% { background-position:  29%  -11%; }
}
@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; }
}

/* ============================================================
   HERO — coordinate eyebrow
   ============================================================ */
.pc-hero__coord {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-subtle);
}
.pc-hero__coord-scope { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; }
.pc-hero__coord-sep {
  display: block; width: 18px; height: 1px;
  background: var(--pc-stone-300); flex-shrink: 0;
}
.pc-hero__coord-num { font-size: 10.5px; }
.pc-hero__coord-city { color: var(--fg); font-weight: 600; }

/* ============================================================
   HERO — staggered headline lines
   ============================================================ */
.pc-hero__headline .pc-hl {
  display: block;
  opacity: 0;
  transform: translateY(22px);
}
.pc-hero__headline.is-shown .pc-hl {
  animation: hl-enter var(--dur-reveal) var(--ease-out) both;
  animation-delay: var(--hl-delay, 0ms);
}
@keyframes hl-enter {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   MOTION — capability rows alternate left / right slide-in
   ============================================================ */
.pc-caplist .pc-reveal:nth-child(odd)  { transform: translate(-18px, 14px); }
.pc-caplist .pc-reveal:nth-child(even) { transform: translate( 18px, 14px); }
.pc-caplist .pc-reveal.is-shown        { transform: none; }

/* ============================================================
   MOTION — why-item icon pop on reveal (large, spring entrance)
   ============================================================ */
.pc-why__item .pc-why__icon { opacity: 0; transform: scale(0.2) translateY(16px); }
.pc-why__item.is-shown .pc-why__icon {
  animation: icon-pop 0.72s var(--ease-out) 120ms both;
}
@keyframes icon-pop {
  0%   { opacity: 0; transform: scale(0.2) translateY(16px); }
  55%  { opacity: 1; transform: scale(1.16) translateY(-4px); }
  78%  { transform: scale(0.95) translateY(1px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================================
   MOTION — service card title amber underline on hover
   ============================================================ */
.pc-services-grid .pc-service__title {
  background-image: linear-gradient(transparent 88%, var(--accent) 88%, var(--accent) 98%, transparent 98%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size var(--dur-slow) var(--ease-out);
}
.pc-services-grid .pc-service:hover .pc-service__title {
  background-size: 100% 100%;
}

/* ============================================================
   MOTION — service icon entrance stagger (leverages existing reveal delay)
   ============================================================ */
.pc-service .pc-service__civil-icon {
  transition: color var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-out);
}
.pc-service.is-shown .pc-service__civil-icon {
  animation: icon-slide-up 0.45s var(--ease-out) both;
}
@keyframes icon-slide-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   COLOUR ACCENTS — additional amber touch-points
   ============================================================ */
.pc-hero__stat-num {
  color: var(--fg);
  position: relative;
}
.pc-hero__stat-num::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 48px; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out) 0.5s;
}
.pc-hero__stat.is-shown .pc-hero__stat-num::after { transform: scaleX(1); }

.pc-project-list li:hover .pc-projects-list__name { color: var(--accent-hover); transition: color var(--dur-base) var(--ease-standard); }

.pc-why__num { transition: color var(--dur-base) var(--ease-standard); }
.pc-why__item.is-shown .pc-why__num { color: var(--accent); }

/* ============================================================
   MOTION — button arrow slides right on hover
   ============================================================ */
.pc-btn .pc-btn__arrow {
  transition: transform var(--dur-base) var(--ease-out);
}
.pc-btn--accent:hover .pc-btn__arrow,
.pc-btn--ghost:hover .pc-btn__arrow,
.pc-btn--primary:hover .pc-btn__arrow {
  transform: translateX(4px);
}

/* ============================================================
   MOTION — hero headline em ("Easy Hire.") amber underline grow
   ============================================================ */
.pc-hero__headline .pc-hl em {
  background-image: linear-gradient(transparent 60%, var(--accent) 60%, var(--accent) 78%, transparent 78%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.55s var(--ease-out) 0s;
}
.pc-hero__headline.is-shown .pc-hl:last-child em {
  background-size: 100% 100%;
  transition-delay: 520ms;
}

/* ============================================================
   MOTION — project list items stagger in on parent reveal
   ============================================================ */
.pc-projects-list li {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity var(--dur-reveal) var(--ease-out),
              transform var(--dur-reveal) var(--ease-out);
}
.pc-projects-list.is-shown li {
  opacity: 1;
  transform: none;
}
.pc-projects-list.is-shown li:nth-child(1)  { transition-delay:  40ms; }
.pc-projects-list.is-shown li:nth-child(2)  { transition-delay:  90ms; }
.pc-projects-list.is-shown li:nth-child(3)  { transition-delay: 140ms; }
.pc-projects-list.is-shown li:nth-child(4)  { transition-delay: 190ms; }
.pc-projects-list.is-shown li:nth-child(5)  { transition-delay: 240ms; }
.pc-projects-list.is-shown li:nth-child(6)  { transition-delay: 290ms; }
.pc-projects-list.is-shown li:nth-child(7)  { transition-delay: 340ms; }
.pc-projects-list.is-shown li:nth-child(8)  { transition-delay: 390ms; }

/* ============================================================
   FOOTER — PrizmaCore credit
   ============================================================ */
.pc-footer__credit {
  margin-left: auto;
  color: rgba(244,242,236,0.45);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pc-footer__credit-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 18px;
  color: var(--pc-bone);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(244,242,236,0.3);
  transition: color var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard);
}
.pc-footer__credit-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* PrizmaCore logo — pulsing glow */
.pc-prizmacore-logo {
  width: auto;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  animation: prizma-pulse 3s ease-in-out infinite;
}
@keyframes prizma-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(122,92,255,0.4))
            drop-shadow(0 0 5px rgba(61,139,255,0.25));
  }
  50% {
    filter: drop-shadow(0 0 5px rgba(122,92,255,0.75))
            drop-shadow(0 0 12px rgba(35,240,230,0.4));
  }
}
