/* ============================================================
   NetCloud Global Services — site styles
   Direction: "midnight infrastructure". Deep navy substrate,
   an electric cyan signal, amber for warmth. Space Grotesk for
   display, Inter for body, IBM Plex Mono for the technical
   register (labels, counters, rack readouts).
   ============================================================ */

:root {
  /* Brand — sampled from logo.png */
  --brand:      #0059ff;
  --brand-lt:      #4d8bff;
  --brand-dk:      #0040c2;
  --brand-glow:      rgba(0,89,255,.42);

  /* Dark surfaces — navy, not near-black */
  --ink:      #0b1b33;
  --ink-2:      #123059;
  --ink-3:      #1d3f6b;
  --ink-4:      #2b5183;

  --paper:      #ffffff;
  --paper-2:      #f6f9fd;
  --paper-3:      #eef3fa;

  --cyan:      #0059ff;
  --cyan-deep:      #0059ff;
  --cyan-dim:      #0040c2;
  --amber:      #ffb454;

  /* Text — raised contrast on both surfaces */
  --text:      #0b1b33;
  --text-mut:      #5b6b85;
  --text-inv:      #dbe7f7;
  --text-inv-2:      #9db4d4;

  --line:      #e3eaf4;
  --line-dark:      rgba(255,255,255,.13);
  --ok:         #16a34a;
  --warn:       #d97706;
  --bad:        #dc2626;

  --radius:     14px;
  --radius-sm:  9px;
  --radius-lg:  22px;
  --shadow:     0 18px 50px -20px rgba(10,15,28,.35);
  --shadow-sm:  0 4px 14px -6px rgba(10,15,28,.25);
  --maxw:       1160px;
  --maxw-narrow: 720px;

  --font-disp:  'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  --font-body:  'Public Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono:  'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

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

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--cyan-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

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

h1, h2, h3, h4 {
  font-family: var(--font-disp);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.16rem; letter-spacing: -0.015em; }
h4 { font-size: 1rem; }

.lede {
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  color: var(--text-mut);
  max-width: 62ch;
  margin-top: 18px;
}

.eyebrow {
  font-family: var(--font-disp);
  font-size: 12px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--cyan-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: currentColor; }
.eyebrow a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-disp); font-weight: 500; font-size: .95rem;
  padding: 13px 26px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .18s var(--ease),
              border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn-solid { background: var(--ink); color: #fff; }
.btn-solid:hover { background: var(--ink-3); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: .87rem; }
.btn-full { width: 100%; }

.sec-dark .btn-solid { background: var(--cyan); color: var(--ink); }
.sec-dark .btn-solid:hover { background: #4bdcf2; }
.cta-band .btn-solid { background: var(--cyan); color: var(--ink); }
.cta-band .btn-solid:hover { background: #4bdcf2; }
.cta-band .btn-ghost { border-color: var(--ink-4); color: var(--text-inv); }
.cta-band .btn-ghost:hover { border-color: var(--cyan); color: #fff; }

.link-more {
  font-family: var(--font-disp); font-weight: 500; color: var(--cyan-deep);
  display: inline-flex; align-items: center; gap: 7px;
}
.link-more::after { content: "→"; transition: transform .2s var(--ease); }
.link-more:hover::after { transform: translateX(4px); }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.hdr.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 20px -12px rgba(10,15,28,.4); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand-mark { color: var(--cyan-deep); display: grid; place-items: center; }
.brand-txt { font-family: var(--font-disp); font-weight: 500; font-size: 1.16rem; letter-spacing: -.02em; }
.brand-txt b { font-weight: 700; }
.brand-txt i {
  font-style: normal; font-family: var(--font-mono); font-size: .66em;
  color: var(--text-mut); margin-left: 6px; letter-spacing: .08em; text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav ul { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav a {
  font-size: .93rem; font-weight: 450; color: var(--text-mut);
  position: relative; padding: 4px 0; transition: color .18s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 500; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--cyan); border-radius: 2px;
}
.nav-cta { }

.burger { display: none; background: none; border: 0; padding: 10px; }
.burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--text-inv);
  background:
    radial-gradient(1100px 500px at 78% -8%, rgba(36,211,238,.16), transparent 60%),
    radial-gradient(700px 400px at 10% 110%, rgba(255,180,84,.10), transparent 55%),
    var(--ink);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(36,211,238,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,211,238,.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, #000 30%, transparent 78%);
}
.hero-in {
  position: relative; display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 60px; align-items: center; padding: clamp(64px, 9vw, 116px) 24px;
}
.hero h1 { color: #fff; margin-top: 20px; max-width: 15ch; }
.hero .lede { color: var(--text-inv); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero .btn-solid { background: var(--cyan); color: var(--ink); }
.hero .btn-solid:hover { background: #3ee0f7; box-shadow: 0 10px 30px -8px rgba(36,211,238,.55); }
.hero .btn-ghost { border-color: var(--ink-4); color: var(--text-inv); }
.hero .btn-ghost:hover { border-color: var(--cyan); color: #fff; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 40px; margin-top: 52px;
  padding-top: 30px; border-top: 1px solid var(--line-dark);
}
.hero-stats dt {
  font-family: var(--font-disp); font-size: 1.85rem; font-weight: 600;
  color: #fff; letter-spacing: -.03em;
}
.hero-stats dd {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-inv-2); margin-top: 5px;
}

/* signature: the breathing rack */
.hero-rack { display: grid; gap: 16px; justify-items: center; }
.rack {
  width: 100%; max-width: 320px; display: grid; gap: 9px;
  padding: 18px; border: 1px solid var(--line-dark); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26,39,64,.7), rgba(17,26,46,.4));
}
.rack-u {
  display: flex; align-items: center; gap: 9px;
  height: 30px; padding: 0 12px; border-radius: 6px;
  background: rgba(10,15,28,.6); border: 1px solid rgba(36,211,238,.09);
}
.rack-u .led {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: blink 3.4s var(--d,0s) infinite steps(1);
}
.rack-u .led:nth-child(2) { background: var(--amber); box-shadow: 0 0 8px var(--amber); animation-duration: 5.1s; }
.rack-bars { display: flex; gap: 3px; margin-left: auto; align-items: flex-end; height: 14px; }
.rack-bars i {
  width: 3px; background: rgba(199,211,232,.3); border-radius: 1px;
  animation: bar 2.6s var(--d,0s) infinite ease-in-out;
}
.rack-bars i:nth-child(2) { animation-delay: .3s; }
.rack-bars i:nth-child(3) { animation-delay: .6s; }
.rack-bars i:nth-child(4) { animation-delay: .9s; }
@keyframes blink { 0%,72% { opacity: 1; } 73%,80% { opacity: .18; } 81%,100% { opacity: 1; } }
@keyframes bar   { 0%,100% { height: 4px; } 50% { height: 14px; } }

.rack-caption {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-inv-2);
  display: inline-flex; align-items: center; gap: 9px;
}
.pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 0 0 rgba(22,163,74,.6); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(22,163,74,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

/* ---------- partner strip ---------- */
.strip { background: var(--ink-2); border-top: 1px solid var(--line-dark); padding: 26px 0; }
.strip .wrap { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.strip-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-inv-2); white-space: nowrap;
}
.strip-list { display: flex; flex-wrap: wrap; gap: 12px 26px; list-style: none; }
.strip-list li {
  font-family: var(--font-disp); font-size: .95rem; font-weight: 500;
  color: var(--text-inv); opacity: .78; transition: opacity .2s var(--ease);
}
.strip-list li:hover { opacity: 1; }

/* ---------- sections ---------- */
.sec { padding: clamp(58px, 8vw, 104px) 0; }
.sec-tint { background: var(--paper-2); }
.sec-dark { background: var(--ink); color: var(--text-inv); }
.sec-dark h2, .sec-dark h3, .sec-dark h4 { color: #fff; }
.sec-dark p { color: var(--text-inv); }

.sec-head { max-width: 66ch; margin-bottom: 46px; }
.sec-head h2 { margin-top: 16px; }
.sec-sub { color: var(--text-mut); margin-top: 16px; font-size: 1.03rem; }
.sec-dark .sec-sub { color: var(--text-inv-2); }
.sec-head-row {
  max-width: none; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}

.page-head { padding: clamp(52px, 7vw, 88px) 0 clamp(20px, 3vw, 34px); }
.page-head-tight { padding-bottom: 8px; }
.page-head h1 { margin-top: 18px; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 22px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-mut); font-size: .96rem; }
.cards-dark .card { background: var(--ink-2); border-color: var(--line-dark); }
.cards-dark .card:hover { border-color: rgba(36,211,238,.3); }
.cards-dark .card p { color: var(--text-inv-2); }

.card-list { list-style: none; margin-top: 16px; display: grid; gap: 7px; }
.card-list li {
  font-size: .89rem; color: var(--text-mut); padding-left: 17px; position: relative;
}
.card-list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
}

.card-icon {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(36,211,238,.16), rgba(8,145,178,.07));
  border: 1px solid rgba(8,145,178,.18); margin-bottom: 18px; position: relative;
}
.card-icon::after {
  content: ""; width: 16px; height: 16px;
  background: var(--cyan-deep); mask-size: contain; mask-repeat: no-repeat; mask-position: center;
  -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}
[data-icon="cloud"]::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z'/%3E%3C/svg%3E");
}
[data-icon="server"]::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='8' rx='2'/%3E%3Crect x='2' y='14' width='20' height='8' rx='2'/%3E%3Cline x1='6' y1='6' x2='6.01' y2='6'/%3E%3Cline x1='6' y1='18' x2='6.01' y2='18'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='8' rx='2'/%3E%3Crect x='2' y='14' width='20' height='8' rx='2'/%3E%3Cline x1='6' y1='6' x2='6.01' y2='6'/%3E%3Cline x1='6' y1='18' x2='6.01' y2='18'/%3E%3C/svg%3E");
}
[data-icon="users"]::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3C/svg%3E");
}
[data-icon="wrench"]::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
}
[data-icon="network"]::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='2' width='6' height='6' rx='1'/%3E%3Crect x='2' y='16' width='6' height='6' rx='1'/%3E%3Crect x='16' y='16' width='6' height='6' rx='1'/%3E%3Cpath d='M12 8v4M12 12H5v4M12 12h7v4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='2' width='6' height='6' rx='1'/%3E%3Crect x='2' y='16' width='6' height='6' rx='1'/%3E%3Crect x='16' y='16' width='6' height='6' rx='1'/%3E%3Cpath d='M12 8v4M12 12H5v4M12 12h7v4'/%3E%3C/svg%3E");
}
[data-icon="mail"]::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-10 6L2 7'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-10 6L2 7'/%3E%3C/svg%3E");
}

/* ---------- approach / steps ---------- */
.approach { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.approach-copy h2 { margin-top: 16px; }
.approach-copy p { margin: 18px 0 30px; color: var(--text-inv-2); max-width: 46ch; }

.steps { list-style: none; display: grid; gap: 2px; }
.steps li {
  display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: start;
  padding: 22px; border-radius: var(--radius-sm);
  border: 1px solid transparent; transition: background .2s var(--ease), border-color .2s var(--ease);
}
.steps li:hover { background: rgba(36,211,238,.045); border-color: rgba(36,211,238,.16); }
.step-n {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  color: var(--cyan); letter-spacing: .06em; padding-top: 3px;
}
.steps h4 { margin-bottom: 6px; }
.steps p { font-size: .93rem; color: var(--text-inv-2); }

/* ---------- categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; list-style: none; }
.cat-grid a {
  display: flex; flex-direction: column; gap: 5px;
  padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}
.cat-grid a:hover { border-color: var(--cyan-deep); transform: translateY(-3px); background: var(--paper-2); }
.cat-name { font-family: var(--font-disp); font-weight: 500; font-size: 1.02rem; }
.cat-count { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mut); }

.cat-jump { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.cat-jump a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em;
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--text-mut);
  transition: all .18s var(--ease);
}
.cat-jump a:hover { border-color: var(--ink); color: var(--ink); }
.cat-block { margin-bottom: 58px; scroll-margin-top: 100px; }
.cat-h {
  font-size: 1.4rem; margin-bottom: 22px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.chips { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin-top: 16px; }
.chips li {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .05em;
  padding: 4px 10px; border-radius: 5px; background: var(--paper-2);
  border: 1px solid var(--line); color: var(--text-mut);
}

/* ---------- services list ---------- */
.svc-list { display: grid; gap: 4px; }
.svc {
  display: grid; grid-template-columns: 78px 1fr; gap: 28px;
  padding: 36px 24px; border-top: 1px solid var(--line); scroll-margin-top: 100px;
}
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc-aside { display: grid; gap: 12px; justify-items: start; }
.svc-idx { font-family: var(--font-mono); font-size: 12px; color: var(--text-mut); letter-spacing: .08em; }
.svc-body h2 { font-size: 1.5rem; }
.svc-sum { color: var(--text-mut); margin-top: 10px; max-width: 62ch; }

.tick { list-style: none; display: grid; gap: 9px; margin-top: 20px; }
.tick li { padding-left: 26px; position: relative; font-size: .95rem; color: var(--text-mut); }
.tick li::before {
  content: ""; position: absolute; left: 0; top: .34em; width: 15px; height: 15px;
  background: var(--cyan-deep);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask-size: contain; -webkit-mask-size: contain; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
}

/* ---------- rich text ---------- */
.rich > * + * { margin-top: 1.05em; }
.rich p { color: var(--text-mut); }
.rich h2 { font-size: 1.5rem; margin-top: 1.7em; }
.rich h3 { font-size: 1.15rem; margin-top: 1.5em; }
.rich ul, .rich ol { padding-left: 1.3em; color: var(--text-mut); }
.rich li + li { margin-top: .4em; }
.rich a { color: var(--cyan-deep); text-decoration: underline; text-underline-offset: 3px; }
.rich blockquote {
  border-left: 3px solid var(--cyan); padding-left: 20px;
  font-size: 1.06rem; color: var(--text);
}
.rich code {
  font-family: var(--font-mono); font-size: .88em;
  background: var(--paper-2); padding: 2px 6px; border-radius: 4px;
}
.rich pre { background: var(--ink); color: var(--text-inv); padding: 20px; border-radius: var(--radius-sm); overflow-x: auto; }
.rich pre code { background: none; padding: 0; }
.rich table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.rich th, .rich td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; }
.rich th { background: var(--paper-2); font-family: var(--font-disp); font-weight: 500; }
.rich-sm { font-size: .93rem; margin-top: 12px; }
.rich-article { font-size: 1.05rem; }
.rich-article p { color: var(--text); }

/* ---------- two column ---------- */
.two-col { display: grid; grid-template-columns: 1.4fr .6fr; gap: 60px; align-items: start; }
.facts {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; position: sticky; top: 100px;
}
.facts h3 { margin-bottom: 18px; }
.facts dl { display: grid; gap: 14px; margin-bottom: 24px; }
.facts dt {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-mut); margin-bottom: 3px;
}
.facts dd { font-size: .95rem; }

/* ---------- posts ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.post-card {
  padding-top: 22px; border-top: 2px solid var(--ink);
  transition: border-color .2s var(--ease);
}
.post-card:hover { border-top-color: var(--cyan); }
.post-card time {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-mut);
}
.post-card h2, .post-card h3 { font-size: 1.22rem; margin: 10px 0; }
.post-card p { color: var(--text-mut); font-size: .95rem; margin-bottom: 14px; }
.post-card a:hover { color: var(--cyan-deep); }

.pager { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.pager a {
  min-width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 8px; font-family: var(--font-mono); font-size: 13px;
}
.pager a[aria-current="page"] { background: var(--ink); color: #fff; border-color: var(--ink); }

.article-back { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(36,211,238,.14), transparent 55%),
    var(--ink);
  color: var(--text-inv); padding: clamp(46px, 6vw, 76px) 0;
}
.cta-in { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-in h2 { color: #fff; }
.cta-in p { color: var(--text-inv-2); margin-top: 12px; max-width: 48ch; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 56px; align-items: start; }
.form { display: grid; gap: 20px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.f { display: grid; gap: 7px; }
.f label {
  font-family: var(--font-disp); font-size: .87rem; font-weight: 500; color: var(--ink);
}
.req { color: var(--bad); }
.f input, .f select, .f textarea {
  font-family: var(--font-body); font-size: .96rem; color: var(--text);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); width: 100%;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.f textarea { resize: vertical; min-height: 120px; }
.f input:focus, .f select:focus, .f textarea:focus {
  outline: none; border-color: var(--cyan-deep);
  box-shadow: 0 0 0 3px rgba(8,145,178,.13);
}
.f input.bad, .f textarea.bad { border-color: var(--bad); }
.err { color: var(--bad); font-size: .82rem; min-height: 0; }
.err:empty { display: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .82rem; color: var(--text-mut); text-align: center; }
.form-status { font-size: .93rem; padding: 12px 16px; border-radius: var(--radius-sm); }
.form-status:empty { display: none; }
.form-status.ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-status.bad { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.contact-aside { display: grid; gap: 26px; }
.ci { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.ci:last-child { border-bottom: 0; }
.ci h3 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-mut); margin-bottom: 10px;
}
.ci-big { font-family: var(--font-disp); font-size: 1.16rem; font-weight: 500; color: var(--ink); }
.ci-big:hover { color: var(--cyan-deep); }
.ci p { font-size: .93rem; color: var(--text-mut); margin-top: 6px; }
.ci-addr { line-height: 1.7; }

.empty {
  padding: 48px 24px; text-align: center; color: var(--text-mut);
  border: 1px dashed var(--line); border-radius: var(--radius);
}

/* ---------- footer ---------- */
.ftr { background: var(--ink); color: var(--text-inv-2); padding: 64px 0 30px; }
.ftr-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px;
  padding-bottom: 44px; border-bottom: 1px solid var(--line-dark);
}
.brand-ftr { color: #fff; }
.ftr-blurb { font-size: .93rem; margin-top: 16px; max-width: 34ch; }
.ftr-social { display: flex; gap: 16px; margin-top: 20px; }
.ftr-social a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; padding-bottom: 2px; border-bottom: 1px solid var(--line-dark);
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.ftr-social a:hover { color: var(--cyan); border-color: var(--cyan); }
.ftr-col h4 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
.ftr-col ul { list-style: none; display: grid; gap: 10px; }
.ftr-col a { font-size: .93rem; transition: color .18s var(--ease); }
.ftr-col a:hover { color: var(--cyan); }
.ftr-addr { font-size: .93rem; line-height: 1.7; }
.ftr-base {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 26px; font-size: .84rem;
}
.ftr-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; }

/* ============================================================
   CHAT WIDGET
   ============================================================ */
.nc-launch {
  position: fixed; right: 22px; bottom: 22px; z-index: 120;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; border: 0;
  background: var(--ink); color: #fff;
  font-family: var(--font-disp); font-weight: 500; font-size: .93rem;
  box-shadow: 0 14px 38px -12px rgba(10,15,28,.6);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.nc-launch:hover { transform: translateY(-3px); background: var(--ink-3); }
.nc-launch .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--text-inv-2);
}
.nc-launch.online .dot { background: var(--ok); box-shadow: 0 0 8px rgba(22,163,74,.7); }
.nc-launch[hidden] { display: none; }

.nc-panel {
  position: fixed; right: 22px; bottom: 22px; z-index: 121;
  width: min(390px, calc(100vw - 32px));
  height: min(620px, calc(100vh - 44px));
  background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px -20px rgba(10,15,28,.55);
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line);
  animation: ncIn .26s var(--ease);
}
@keyframes ncIn { from { opacity: 0; transform: translateY(16px) scale(.97); } }
.nc-panel[hidden] { display: none; }

.nc-head {
  background: var(--ink); color: #fff; padding: 16px 18px;
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nc-head-txt { flex: 1; min-width: 0; }
.nc-head strong { font-family: var(--font-disp); font-weight: 500; font-size: .98rem; display: block; }
.nc-head small {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-inv-2);
  display: flex; align-items: center; gap: 6px; margin-top: 3px;
}
.nc-head small .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-inv-2); }
.nc-head small.on .dot { background: var(--ok); box-shadow: 0 0 6px rgba(22,163,74,.8); }
.nc-x {
  background: none; border: 0; color: var(--text-inv-2); font-size: 22px;
  line-height: 1; padding: 4px 6px; border-radius: 6px;
}
.nc-x:hover { color: #fff; background: rgba(255,255,255,.1); }

.nc-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.nc-body::-webkit-scrollbar { width: 8px; }
.nc-body::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.nc-msg { max-width: 84%; display: flex; flex-direction: column; gap: 3px; }
.nc-msg .bub {
  padding: 11px 14px; border-radius: 15px; font-size: .93rem; line-height: 1.55;
  word-wrap: break-word; overflow-wrap: anywhere;
}
.nc-msg.bot, .nc-msg.agent { align-self: flex-start; }
.nc-msg.bot .bub { background: var(--paper-2); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.nc-msg.agent .bub { background: #e6f9fd; border: 1px solid #b6ecf7; border-bottom-left-radius: 5px; }
.nc-msg.visitor { align-self: flex-end; }
.nc-msg.visitor .bub { background: var(--ink); color: #fff; border-bottom-right-radius: 5px; }
.nc-msg .who {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-mut); padding: 0 4px;
}
.nc-msg.visitor .who { text-align: right; }
.nc-note {
  align-self: center; font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .06em; color: var(--text-mut); text-align: center;
  background: var(--paper-2); padding: 5px 12px; border-radius: 999px;
}

.nc-typing { align-self: flex-start; display: flex; gap: 4px; padding: 12px 15px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 15px; border-bottom-left-radius: 5px; }
.nc-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--text-mut); animation: ncdot 1.3s infinite; }
.nc-typing i:nth-child(2) { animation-delay: .18s; }
.nc-typing i:nth-child(3) { animation-delay: .36s; }
@keyframes ncdot { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.nc-quick { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 18px 12px; flex-shrink: 0; }
.nc-quick button {
  font-size: .82rem; padding: 7px 13px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper); color: var(--text-mut);
  transition: all .16s var(--ease);
}
.nc-quick button:hover { border-color: var(--cyan-deep); color: var(--cyan-deep); background: #f0fbfe; }

.nc-foot { border-top: 1px solid var(--line); padding: 12px; flex-shrink: 0; background: var(--paper); }
.nc-input { display: flex; gap: 8px; align-items: flex-end; }
.nc-input textarea {
  flex: 1; resize: none; font-family: var(--font-body); font-size: .93rem;
  padding: 10px 13px; border: 1.5px solid var(--line); border-radius: 13px;
  max-height: 96px; min-height: 42px; line-height: 1.45;
}
.nc-input textarea:focus { outline: none; border-color: var(--cyan-deep); }
.nc-send {
  width: 42px; height: 42px; flex-shrink: 0; border: 0; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.nc-send:hover:not(:disabled) { background: var(--cyan-deep); transform: scale(1.06); }
.nc-send:disabled { opacity: .4; cursor: not-allowed; }
.nc-human {
  display: block; width: 100%; margin-top: 9px; padding: 8px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  background: none; border: 1px dashed var(--line); border-radius: 9px; color: var(--text-mut);
  transition: all .18s var(--ease);
}
.nc-human:hover { border-color: var(--cyan-deep); color: var(--cyan-deep); border-style: solid; }
.nc-human[hidden] { display: none; }

/* gate form */
.nc-gate { padding: 20px 18px; display: grid; gap: 14px; overflow-y: auto; }
.nc-gate-intro { font-size: .93rem; color: var(--text-mut); }
.nc-gate .f label { font-size: .82rem; }
.nc-gate .f input { padding: 10px 12px; font-size: .92rem; }
.nc-gate .btn { width: 100%; }
.nc-gate-note { font-size: .78rem; color: var(--text-mut); text-align: center; }

@media (max-width: 480px) {
  .nc-panel { right: 8px; left: 8px; bottom: 8px; width: auto; height: calc(100vh - 16px); border-radius: var(--radius); }
  .nc-launch { right: 14px; bottom: 14px; padding: 12px 18px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-in { grid-template-columns: 1fr; gap: 46px; }
  .hero-rack { justify-items: start; }
  .rack { max-width: 100%; }
  .approach { grid-template-columns: 1fr; gap: 40px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .facts { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 74px 0 auto; background: var(--paper);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 20px 24px 28px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-120%);
    transition: transform .3s var(--ease); max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav ul a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav-cta { margin-top: 18px; }
  .hero-stats { gap: 28px; }
  .f-row { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; gap: 16px; }
  .svc-aside { flex-direction: row; display: flex; align-items: center; gap: 14px; }
  .cta-in { flex-direction: column; align-items: flex-start; }
  .ftr-grid { grid-template-columns: 1fr; gap: 32px; }
  .sec-head-row { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}

@media print {
  .hdr, .ftr, .nc-launch, .nc-panel, .cta-band { display: none !important; }
  body { color: #000; }
}

/* ================================================================
   v1.3 — brand logo, contrast guard, hero canvas
   ================================================================ */

/* Logo is 141x60 native. Rendered at 30px tall it lands at ~2.35x
   pixel density, so it stays crisp on retina without an SVG. */
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-logo {
  height: 30px; width: auto; display: block;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.03);
  filter: drop-shadow(0 4px 16px rgba(36,211,238,.30));
}
@media (max-width: 560px) {
  .brand-txt { display: none; }
  .brand-logo { height: 27px; }
}

/* Contrast guard — any dark surface forces legible text, so a stray
   inherited colour can never hide content again. */
.hero, .sec-dark, .cta-band, [data-surface="dark"] { color: var(--text-inv); }
.hero :where(p, li, dd, span, blockquote):not([class*="btn"]),
.sec-dark :where(p, li, dd, span, blockquote):not([class*="btn"]),
.cta-band :where(p, li, dd, span, blockquote):not([class*="btn"]) {
  color: inherit;
}
.hero :where(h1,h2,h3,h4),
.sec-dark :where(h1,h2,h3,h4),
.cta-band :where(h1,h2,h3,h4) { color: #fff; }

/* Hero particle canvas sits behind copy, above the gradient. */
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; z-index: 0; pointer-events: none;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-canvas.on { opacity: 1; }
.hero-in, .hero-copy, .hero-rack { position: relative; z-index: 1; }
.hero { background: linear-gradient(160deg, #001a30 0%, var(--ink) 55%, #003a68 100%); }
@media (prefers-reduced-motion: reduce) { .hero-canvas { display: none; } }

/* ============================================================
   v1.5 — light conversion theme
   Overrides the dark-era rules above. Later in the cascade wins,
   so the earlier blocks stay as a fallback for anything missed.
   ============================================================ */

body { background: var(--paper); color: var(--text); }

/* --- header: light, sticky, with the phone number exposed --- */
.hdr {
  background: rgba(255,255,255,.93); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr a, .hdr .brand-txt { color: var(--ink); }
.hdr nav a { color: var(--ink-2); font-weight: 500; }
.hdr nav a:hover, .hdr nav a[aria-current="page"] { color: var(--brand); }
.brand-logo { filter: none; height: 34px; }
.hdr-tel { font-family: var(--font-disp); font-weight: 700; color: var(--ink); white-space: nowrap; }
.burger { color: var(--ink); }

/* --- buttons: squared-off, not pills --- */
.btn { border-radius: 10px; font-weight: 700; border-width: 2px; padding: 14px 26px; }
.btn-solid { background: var(--brand); color: #fff; box-shadow: 0 10px 26px -12px var(--brand-glow); }
.btn-solid:hover { background: var(--brand-dk); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-sm { padding: 10px 18px; font-size: .86rem; }

/* --- hero: light wash, form alongside the pitch --- */
.hero {
  background: linear-gradient(180deg, #eef3ff 0%, #ffffff 76%);
  color: var(--text);
}
.hero-grid-bg { display: none; }
.hero-in { grid-template-columns: 1.06fr .94fr; align-items: start; gap: 52px; }
.hero h1 { color: var(--ink); max-width: 17ch; }
.hero h1 em, .hero h1 .accent { font-style: normal; color: var(--brand); }
.hero .lede { color: var(--text-mut); }
.hero .btn-solid { background: var(--brand); color: #fff; }
.hero .btn-solid:hover { background: var(--brand-dk); }
.hero .btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.hero .eyebrow { color: var(--brand); }

.hero-stats { border-top: 1px solid var(--line); }
.hero-stats dt { color: var(--ink); }
.hero-stats dd { color: var(--text-mut); }

/* trust ticks under the pitch */
.ticks { display: grid; gap: 12px; margin: 26px 0 30px; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: .97rem; color: var(--ink-2); list-style: none; }
.ticks i {
  flex: 0 0 21px; height: 21px; border-radius: 50%; margin-top: 2px;
  background: rgba(0,168,120,.13); color: #00a878;
  display: grid; place-items: center; font-style: normal; font-weight: 700; font-size: 12px;
}

/* --- the lead form card: the point of this layout --- */
.leadcard {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px;
  box-shadow: 0 28px 60px -30px rgba(11,27,51,.34);
  position: sticky; top: 92px;
}
.leadcard h2, .leadcard h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--ink); }
.leadcard .sub { font-size: .9rem; color: var(--text-mut); margin-bottom: 20px; }
.leadcard .field { margin-bottom: 14px; }
.leadcard label { display: block; font-size: .81rem; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.leadcard input, .leadcard select, .leadcard textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem;
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 9px;
  background: var(--paper-2); color: var(--ink); transition: border-color .18s, background .18s;
}
.leadcard input:focus, .leadcard select:focus, .leadcard textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
}
.leadcard .f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.leadcard .formnote { font-size: .78rem; color: var(--text-mut); margin-top: 12px; text-align: center; }
.leadcard .err { color: #dc2626; font-size: .78rem; margin-top: 4px; }
.leadcard .bad { border-color: #dc2626; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* --- proof strip --- */
.proof { border-block: 1px solid var(--line); background: var(--paper-2); padding: 26px 0; }
.proof-in { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }
.proof-lbl {
  font-family: var(--font-disp); font-size: .74rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--text-mut);
}
.proof img { height: 32px; width: auto; opacity: .72; transition: opacity .2s; }
.proof img:hover { opacity: 1; }
.proof .slot {
  height: 34px; min-width: 112px; border: 1.5px dashed #cddcf2; border-radius: 8px;
  display: grid; place-items: center; font-size: .69rem; color: #93a6c4;
  font-weight: 600; letter-spacing: .05em; background: #fff;
}

/* --- sections and cards on light --- */
.sec-tint { background: var(--paper-2); }
.sec-dark {
  background: linear-gradient(160deg, var(--ink), #123059);
  color: var(--text-inv);
}
.sec-dark .eyebrow { color: #7fb0ff; }
.sec-dark .btn-ghost { border-color: rgba(255,255,255,.22); color: #fff; background: transparent; }
.sec-dark .btn-ghost:hover { border-color: #fff; }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.card:hover { border-color: #cddcf2; box-shadow: 0 22px 46px -26px rgba(11,27,51,.3); }
.card-icon { background: #eef3ff; color: var(--brand); border-radius: 12px; }
.cards-dark .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }

.step-n, .svc-idx { background: var(--brand); color: #fff; }
.link-more { color: var(--brand); }

/* --- CTA band --- */
.cta-band { background: linear-gradient(160deg, var(--ink), #123059); color: var(--text-inv); }
.cta-band .btn-solid { background: var(--brand); color: #fff; }
.cta-band .btn-solid:hover { background: var(--brand-lt); }

/* --- footer --- */
.ftr { background: var(--ink); color: var(--text-inv-2); }
.ftr a:hover { color: #7fb0ff; }
.ftr .brand-logo { filter: brightness(0) invert(1); }

/* --- sticky mobile call bar --- */
.callbar { display: none; }
@media (max-width: 760px) {
  .callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--line); border-top: 1px solid var(--line);
  }
  .callbar a {
    background: #fff; padding: 13px; text-align: center;
    font-family: var(--font-disp); font-weight: 700; font-size: .9rem; color: var(--ink);
  }
  .callbar a.primary { background: var(--brand); color: #fff; }
  body { padding-bottom: 52px; }
  .leadcard { position: static; }
}

@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; }
  .leadcard { position: static; }
}
@media (max-width: 560px) {
  .leadcard .f2 { grid-template-columns: 1fr; }
}

/* The contrast guard still applies, but only where a section really is dark. */
.hero :where(p, li, dd, span) { color: inherit; }
.hero .lede { color: var(--text-mut); }

/* ============================================================
   v1.6 — depth, motion, booking picker
   ============================================================ */

/* header shrink */
.hdr { transition: box-shadow .25s ease, background .25s ease; }
.hdr.scrolled { box-shadow: 0 6px 26px -18px rgba(11,27,51,.55); }
.hdr.scrolled .hdr-in { height: 62px; }
.hdr-in { transition: height .25s ease; }

/* scroll reveal — transform + opacity only, so it composites cheaply */
.fx-rise { opacity: 0; transform: translateY(18px); }
.fx-rise.fx-in {
  opacity: 1; transform: none;
  transition: opacity .6s cubic-bezier(.22,.61,.36,1),
              transform .6s cubic-bezier(.22,.61,.36,1);
}

/* pointer-follow glow */
.card, .leadcard { position: relative; overflow: hidden; }
.card::before, .leadcard::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0; transition: opacity .3s ease;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%),
              rgba(0,89,255,.09), transparent 62%);
}
.card:hover::before, .leadcard:hover::before { opacity: 1; }
.card > *, .leadcard > * { position: relative; z-index: 1; }

/* hero depth: two washes drifting at different rates */
.hero::before, .hero::after { content: ""; position: absolute; pointer-events: none; }
.hero::before {
  inset: -20% -10% auto -10%; height: 130%;
  background: radial-gradient(760px 420px at 76% 8%, rgba(0,89,255,.16), transparent 62%);
  transform: translate3d(0, calc(var(--par, 0px) * -1), 0);
}
.hero::after {
  inset: auto -10% -30% -10%; height: 80%;
  background: radial-gradient(600px 320px at 18% 90%, rgba(0,200,170,.10), transparent 60%);
  transform: translate3d(0, calc(var(--par2, 0px) * -1), 0);
}
.hero > * { position: relative; z-index: 1; }

/* proof strip marquee */
.proof-track { display: flex; gap: 42px; align-items: center; }
.proof-track.rolling {
  width: max-content;
  animation: roll 34s linear infinite;
}
.proof:hover .proof-track.rolling { animation-play-state: paused; }
@keyframes roll { to { transform: translateX(-50%); } }

/* ---------- booking picker ---------- */
.booking { max-width: 720px; }
.daystrip { display: flex; gap: 9px; overflow-x: auto; padding: 4px 0 12px; }
.day {
  flex: 0 0 auto; width: 66px; padding: 10px 0; cursor: pointer;
  background: #fff; border: 1.5px solid var(--line); border-radius: 11px;
  display: grid; gap: 1px; text-align: center; font-family: var(--font-body);
  transition: border-color .18s, background .18s, transform .18s;
}
.day:hover { border-color: #b9d0f0; transform: translateY(-2px); }
.day.on { border-color: var(--brand); background: #eef3ff; }
.day .dow { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-mut); }
.day .dnum { font-family: var(--font-disp); font-weight: 800; font-size: 1.25rem; color: var(--ink); }
.day .mon { font-size: .68rem; color: var(--text-mut); }
.day.on .dnum { color: var(--brand); }

.timegrid { display: none; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 9px; margin-bottom: 18px; }
.timegrid.on { display: grid; }
.slot {
  padding: 11px 8px; cursor: pointer; font-family: var(--font-body); font-size: .93rem;
  background: #fff; border: 1.5px solid var(--line); border-radius: 9px; color: var(--ink);
  transition: border-color .16s, background .16s, color .16s;
}
.slot:hover { border-color: #b9d0f0; }
.slot.on { background: var(--brand); border-color: var(--brand); color: #fff; font-weight: 600; }

.form-status.ok  { color: #0a7c53; }
.form-status.bad { color: #dc2626; }

@media (prefers-reduced-motion: reduce) {
  .fx-rise { opacity: 1 !important; transform: none !important; }
  .proof-track.rolling { animation: none; }
  .hero::before, .hero::after { transform: none !important; }
}
