/* ==========================================================
   FIT2WORKSA — shared stylesheet
   Brand: teal #00C2CB · ink #0B0B0F · light surfaces
   ========================================================== */

:root {
  --teal: #00C2CB;
  --teal-dark: #009AA2;
  --teal-tint: #E4F8F9;
  --teal-tint-2: #F2FCFC;
  --ink: #0B0B0F;
  --body: #3B4247;
  --muted: #6B7378;
  --line: #E3E8EA;
  --bg: #FAFCFC;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 11, 15, 0.06);
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--teal-dark); text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
}

/* recreated FIT2WORK lockup — transparent, scales with font size */
.logo-mark {
  display: flex;
  align-items: center;
  background: var(--teal);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.13em;
  line-height: 1;
  padding: 15px 7px 15px 13px;
  transition: background 0.25s;
}

.logo-word {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.13em;
  line-height: 1;
  color: var(--ink);
  margin-left: 3px;
}

.brand:hover .logo-mark { background: var(--teal-dark); }

.main-nav { display: flex; align-items: center; gap: 6px; }

.main-nav a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover { background: var(--teal-tint); color: var(--teal-dark); }

.main-nav a.active { background: var(--ink); color: var(--white); }

.main-nav a.nav-cta {
  background: var(--teal);
  color: var(--ink);
  margin-left: 8px;
}

.main-nav a.nav-cta:hover { background: var(--teal-dark); color: var(--white); }

/* mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 20px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    gap: 4px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { border-radius: 10px; }
  .main-nav a.nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }
}

/* ---------- glass utilities ---------- */
.glass {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 46px rgba(11, 11, 15, 0.18);
}

.glass-dark {
  background: rgba(11, 11, 15, 0.42);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 46px rgba(11, 11, 15, 0.35);
}

/* ---------- futuristic image hero ---------- */
.future-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(4, 28, 30, 0.82) 0%, rgba(4, 28, 30, 0.55) 45%, rgba(0, 194, 203, 0.18) 100%),
    url("../assets/img/hero-ict.jpg") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
  padding: 90px 0;
}

.future-hero .panel {
  max-width: 640px;
  border-radius: 22px;
  padding: 46px 44px;
  color: #EAF7F8;
}

.future-hero .kicker {
  color: var(--teal);
  border-color: rgba(0, 194, 203, 0.55);
  background: rgba(0, 194, 203, 0.1);
}

.future-hero h1 {
  color: #FFFFFF;
  font-size: clamp(38px, 5.6vw, 62px);
  margin-bottom: 16px;
}

.future-hero h1 .accent { color: var(--teal); }

.future-hero p.lead {
  color: #C9E4E6;
  font-size: 18.5px;
  margin-bottom: 32px;
}

.btn-glow {
  background: var(--teal);
  color: var(--ink);
  font-size: 17px;
  padding: 16px 34px;
  box-shadow: 0 0 0 0 rgba(0, 194, 203, 0.55);
  animation: pulse 2.4s infinite;
}

.btn-glow:hover {
  background: #FFFFFF;
  animation: none;
  transform: translateY(-2px);
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 194, 203, 0.5); }
  70%  { box-shadow: 0 0 0 18px rgba(0, 194, 203, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 194, 203, 0); }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); border-color: #FFFFFF; }

/* ---------- custom cursor ---------- */
@media (pointer: fine) {
  * { cursor: none !important; }

  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    z-index: 9999;
    opacity: 0;
  }

  .cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    transition: opacity 0.25s;
  }

  .cursor-ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(0, 194, 203, 0.7);
    transition: transform 0.16s ease-out, width 0.25s ease, height 0.25s ease,
                background 0.25s ease, border-color 0.25s ease, opacity 0.25s;
  }

  body.cursor-on .cursor-dot, body.cursor-on .cursor-ring { opacity: 1; }
  body.cursor-hidden .cursor-dot, body.cursor-hidden .cursor-ring { opacity: 0; }

  body.cursor-hover .cursor-ring {
    width: 60px;
    height: 60px;
    background: rgba(0, 194, 203, 0.14);
    border-color: var(--teal);
  }

  body.cursor-down .cursor-ring { width: 26px; height: 26px; }
}

/* ---------- typing effect ---------- */
.type-caret {
  display: inline-block;
  width: 4px;
  height: 0.85em;
  background: var(--teal);
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: -0.06em;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn-glow { animation: none; }
}

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1000px 420px at 85% -10%, var(--teal-tint) 0%, rgba(228, 248, 249, 0) 60%),
    var(--white);
  border-bottom: 1px solid var(--line);
  padding: 96px 0 88px;
}

.hero .wrap { max-width: 860px; }

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  border: 1px solid var(--teal);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 24px;
  background: var(--white);
}

.hero h1 {
  font-size: clamp(34px, 5.2vw, 56px);
  margin-bottom: 22px;
}

.hero h1 .accent { color: var(--teal-dark); }

.hero p.lead {
  font-size: 19px;
  color: var(--body);
  max-width: 640px;
  margin-bottom: 36px;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.15s, background 0.2s, color 0.2s;
}

.btn { position: relative; overflow: hidden; }

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover::after { transform: translateX(120%); }

.btn:hover { transform: translateY(-2px); }

.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); }

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { border-color: var(--teal-dark); color: var(--teal-dark); }

/* ---------- sections ---------- */
.section { padding: 84px 0; }
.section.alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 700px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 14px 0 16px; }
.section-head p { color: var(--muted); font-size: 17px; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

/* ---------- stat band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}

.stat .num {
  font-size: 40px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat .label { margin-top: 10px; font-weight: 600; color: var(--ink); }
.stat .sub { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ---------- progress rings ---------- */
.rings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.ring {
  position: relative;
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
}

.ring svg {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(-90deg);
}

.ring-track {
  fill: none;
  stroke: var(--line);
  stroke-width: 7;
}

.ring-fill {
  fill: none;
  stroke: var(--teal);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
}

.ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 30px;
}

.ring-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.ring-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 8px;
  line-height: 1.35;
}

.ring-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

/* ---------- cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover { border-color: var(--teal); transform: translateY(-3px); }

.card > * { position: relative; z-index: 1; }

/* hover-reveal photo background, one per service */
.card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.45s ease, transform 0.9s ease;
}

.card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 28, 30, 0.86) 0%, rgba(4, 28, 30, 0.66) 100%);
}

.card:hover .card-bg { opacity: 1; transform: scale(1); }

.c-elec .card-bg { background-image: url("../assets/img/svc-electrification.jpg"); }
.c-ict .card-bg { background-image: url("../assets/img/svc-ict.jpg"); }
.c-veg .card-bg { background-image: url("../assets/img/svc-vegetation.jpg"); }
.c-con .card-bg { background-image: url("../assets/img/svc-construction.jpg"); }
.c-brand .card-bg { background-image: url("../assets/img/svc-branding.jpg"); background-position: center 25%; }
.c-rent .card-bg { background-image: url("../assets/img/svc-rental.jpg"); }
.c-sup .card-bg { background-image: url("../assets/img/svc-supply.jpg"); }

.card:hover h3, .card:hover p { color: #FFFFFF; }
.card:hover .card-num { color: var(--teal); }
.card:hover .card-link { color: var(--teal); }

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.card .card-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--teal-dark);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-tint);
  border: 1.5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}

.card:hover .card-icon {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  transform: rotate(-8deg) scale(1.06);
}

.card:hover .card-icon svg { stroke: #FFFFFF; }

.card h3 { font-size: 20px; margin-bottom: 12px; }
.card p { color: var(--body); font-size: 15.5px; flex-grow: 1; }

.card .card-link {
  margin-top: 20px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}
.card .card-link:hover { color: var(--teal-dark); }

/* ---------- service detail blocks ---------- */
.svc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 34px;
  scroll-margin-top: 100px;
  overflow: hidden;
}

.svc-media {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.svc-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 15, 0) 30%, rgba(11, 11, 15, 0.45) 100%);
}

.svc-media .svc-head {
  position: relative;
  margin-bottom: 0;
  border-radius: 14px;
  padding: 16px 22px;
  width: 100%;
}

.svc-media .svc-head h3 { color: #FFFFFF; }

#electrification .svc-media { background-image: url("../assets/img/svc-electrification.jpg"); }
#ict .svc-media { background-image: url("../assets/img/svc-ict.jpg"); }
#vegetation .svc-media { background-image: url("../assets/img/svc-vegetation.jpg"); }
#construction .svc-media { background-image: url("../assets/img/svc-construction.jpg"); }
#branding .svc-media { background-image: url("../assets/img/svc-branding.jpg"); background-position: center 25%; }
#rental .svc-media { background-image: url("../assets/img/svc-rental.jpg"); }
#supply .svc-media { background-image: url("../assets/img/svc-supply.jpg"); }

.svc-body { padding: 38px 44px 44px; }

.svc-body .btn { margin-top: 28px; font-size: 14.5px; padding: 12px 24px; }

@media (max-width: 640px) {
  .svc-media { height: 220px; padding: 14px; }
  .svc-body { padding: 28px 24px 32px; }
}

.svc-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.svc-head .svc-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  background: var(--teal);
  border-radius: 8px;
  padding: 4px 12px;
  letter-spacing: 0.06em;
}

.svc-head h3 { font-size: 24px; }

.svc-body > p { max-width: 760px; margin-bottom: 24px; }

.svc-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px 28px;
}

.svc-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px dashed var(--line);
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
}

.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--teal-tint);
  border: 2px solid var(--teal);
}

/* alternate accent for visual separation between service blocks */
.svc:nth-of-type(even) { background: var(--teal-tint-2); }

/* ---------- two-column ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

.split h2 { font-size: clamp(24px, 3vw, 34px); margin: 14px 0 18px; }
.split p + p { margin-top: 16px; }

/* ---------- values ---------- */
.values-list { list-style: none; display: grid; gap: 14px; }

.values-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--ink);
}

.values-list li span { display: block; font-weight: 400; color: var(--muted); font-size: 14.5px; margin-top: 4px; }

/* ---------- vision / mission panels ---------- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 720px) { .vm-grid { grid-template-columns: 1fr; } }

.vm {
  border-radius: var(--radius);
  padding: 36px 32px;
}

.vm.vision { background: var(--ink); color: #D7DDDF; }
.vm.vision h3 { color: var(--white); }
.vm.mission { background: var(--teal-tint); border: 1px solid var(--teal); }

.vm .vm-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.vm.vision .vm-tag { color: var(--teal); }
.vm.mission .vm-tag { color: var(--teal-dark); }

.vm h3 { font-size: 21px; margin-bottom: 12px; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}

.contact-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--teal-tint);
  border: 1.5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.contact-card .icon svg { width: 22px; height: 22px; stroke: var(--teal-dark); }

.contact-card h3 { font-size: 17px; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 16px; color: var(--body); word-break: break-word; }
.contact-card a:hover { color: var(--teal-dark); }

/* contact form */
.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }

.field label { font-size: 14px; font-weight: 700; color: var(--ink); }

.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color 0.2s;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}

.field textarea { min-height: 140px; resize: vertical; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  border-radius: 20px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 { color: var(--white); font-size: clamp(24px, 3vw, 32px); max-width: 520px; }
.cta-band p { color: #A8B2B6; margin-top: 10px; max-width: 520px; }

.cta-band .btn-primary { background: var(--teal); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--white); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  margin-top: 84px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { margin-bottom: 18px; }

.footer-brand .logo-mark, .footer-brand .logo-word { font-size: 18px; }
.footer-brand .logo-mark { padding: 13px 6px 13px 11px; }

.site-footer p { font-size: 14.5px; color: var(--muted); max-width: 340px; }

.site-footer h4 {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer ul a { color: var(--body); font-size: 15px; }
.site-footer ul a:hover { color: var(--teal-dark); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- page banner (inner pages) ---------- */
.page-banner {
  background:
    radial-gradient(800px 300px at 90% -20%, var(--teal-tint) 0%, rgba(228, 248, 249, 0) 65%),
    var(--white);
  border-bottom: 1px solid var(--line);
  padding: 72px 0 60px;
}

.page-banner h1 { font-size: clamp(30px, 4.4vw, 46px); margin-top: 14px; }
.page-banner p { max-width: 640px; margin-top: 16px; color: var(--muted); font-size: 17.5px; }
