/* =========================================================================
   PK Tech Gurus — pktechgurus.pro
   Design system. One stylesheet, no build step, no framework.

   Palette rationale: the company both *advises* on IT (SIC 62020/62090) and
   *repairs* the hardware itself (SIC 95110). Deep petrol-teal carries the
   engineering half; a warm copper hairline — the colour of a soldered joint —
   carries the craft half. Restrained, dark, and quiet rather than loud.
   ========================================================================= */

:root {
  /* Ink — deep petrol, not black */
  --ink:        #041a1c;
  --ink-2:      #0a2a2d;
  --ink-3:      #33565a;
  --muted:      #64868a;

  /* Paper */
  --paper:      #ffffff;
  --mist:       #f2f8f7;
  --mist-2:     #e4efee;
  --line:       rgba(4, 26, 28, .11);
  --line-soft:  rgba(4, 26, 28, .06);
  --line-dark:  rgba(255, 255, 255, .13);

  /* Brand — petrol teal */
  --brand:      #0d7f78;
  --brand-2:    #18a89c;
  --brand-3:    #5fd3c4;
  --brand-ink:  #0a635f;

  /* Accent — copper */
  --copper:     #c2823f;
  --copper-2:   #e2a962;
  --copper-ink: #9a6529;

  /* Signals */
  --good:       #1f9d6b;
  --warn:       #d99518;
  --bad:        #d1524a;

  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  34px;

  --shadow-sm:  0 1px 2px rgba(4, 26, 28, .06), 0 2px 8px rgba(4, 26, 28, .04);
  --shadow:     0 10px 30px rgba(4, 26, 28, .09), 0 2px 6px rgba(4, 26, 28, .04);
  --shadow-lg:  0 30px 70px rgba(4, 26, 28, .17), 0 8px 22px rgba(4, 26, 28, .07);
  --shadow-brand: 0 18px 44px rgba(13, 127, 120, .30);

  --display:    'Sora', 'Avenir Next', 'Segoe UI', Helvetica, Arial, sans-serif;
  --body:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono:       'SFMono-Regular', ui-monospace, Consolas, 'Liberation Mono', monospace;

  --container:  1180px;
  --nav-height: 78px;
}

/* ---------- Reset ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  margin: 0;
  line-height: 1.16;
  letter-spacing: -.022em;
  font-weight: 600;
  /* Keeps long display headings from stranding a single short word on the last
     line. Ignored by browsers that do not support it, which is harmless. */
  text-wrap: balance;
}

p { margin: 0; }
img, svg { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; }

a {
  color: var(--brand-ink);
  text-decoration-color: rgba(13, 127, 120, .32);
  text-underline-offset: 3px;
  transition: color .18s ease, text-decoration-color .18s ease;
}
a:hover { color: var(--brand); text-decoration-color: currentColor; }

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

::selection { background: rgba(24, 168, 156, .22); }

/* ---------- Layout primitives ---------- */

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}
.container--narrow { width: min(100% - 48px, 860px); margin-inline: auto; }

.section { padding: 104px 0; position: relative; }
.section--tight { padding: 74px 0; }
.section--mist { background: var(--mist); }
.section--paper { background: var(--paper); }

.section--ink {
  background:
    radial-gradient(1100px 560px at 82% -10%, rgba(24, 168, 156, .22), transparent 62%),
    radial-gradient(760px 460px at 6% 108%, rgba(194, 130, 63, .16), transparent 60%),
    linear-gradient(168deg, #041a1c 0%, #05262a 58%, #04191c 100%);
  color: rgba(233, 245, 243, .82);
}
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Eyebrow + copper rule ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper-ink);
  font-weight: 500;
  margin: 0 0 14px;
  display: block;
}
.section--ink .eyebrow { color: var(--copper-2); }

.rule {
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), rgba(194, 130, 63, 0));
  border: 0;
  margin: 20px 0 26px;
}
.rule--center { margin-inline: auto; }

.sec-head { max-width: 720px; margin-bottom: 52px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 3.6vw, 44px); }
.sec-head p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--ink-3);
}
.section--ink .sec-head p { color: rgba(226, 241, 239, .76); }

/* ---------- Buttons ---------- */

.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }

.btn--primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { box-shadow: 0 22px 52px rgba(13, 127, 120, .38); }

.btn--copper {
  background: linear-gradient(135deg, var(--copper-2), var(--copper));
  box-shadow: 0 18px 44px rgba(194, 130, 63, .30);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-ink); background: rgba(13, 127, 120, .05); }

.btn--onink {
  background: rgba(255, 255, 255, .07);
  color: #fff;
  border-color: rgba(255, 255, 255, .24);
  backdrop-filter: blur(6px);
}
.btn--onink:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .4); }

.btn--sm { padding: 11px 20px; font-size: 14px; }

.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.actions--center { justify-content: center; }

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(4, 26, 28, .06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand:hover { color: var(--ink); }

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-ink));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.02em;
  box-shadow: 0 8px 20px rgba(13, 127, 120, .32);
  position: relative;
}
.brand__mark::after {
  content: '';
  position: absolute;
  inset: auto 8px 6px 8px;
  height: 2px;
  border-radius: 2px;
  background: var(--copper-2);
  opacity: .9;
}

.brand__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.02em;
  line-height: 1.1;
  display: block;
}
.brand__tag {
  display: block;
  font-size: 10.5px;
  font-family: var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}
/* :not(.btn) so the call-to-action inside the list keeps its own button colours —
   a bare `.nav__links a` rule outranks `.btn` on specificity and would grey it out. */
.nav__links a:not(.btn) {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-3);
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
}
.nav__links a:not(.btn):hover { color: var(--ink); background: var(--mist); }
.nav__links a:not(.btn)[aria-current='page'] { color: var(--brand-ink); background: rgba(13, 127, 120, .09); }

.nav__cta { margin-left: 12px; }

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav__burger span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
.nav__burger[aria-expanded='true'] span { background: transparent; }
.nav__burger[aria-expanded='true'] span::before { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded='true'] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__burger { display: grid; }
  .nav__cta { display: none; }
  .nav__links {
    position: absolute;
    top: calc(var(--nav-height) - 6px);
    left: 24px;
    right: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 14px; border-radius: var(--radius-sm); }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 118px;
  background:
    radial-gradient(1200px 620px at 78% -18%, rgba(24, 168, 156, .26), transparent 60%),
    radial-gradient(820px 520px at -6% 104%, rgba(194, 130, 63, .18), transparent 58%),
    linear-gradient(168deg, #041a1c 0%, #06272b 55%, #041b1e 100%);
  color: rgba(233, 245, 243, .82);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(900px 520px at 50% 22%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(900px 520px at 50% 22%, #000, transparent 78%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.1vw, 62px);
  letter-spacing: -.032em;
  line-height: 1.06;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--brand-3), var(--copper-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.66;
  color: rgba(226, 241, 239, .78);
  max-width: 55ch;
}

.hero .actions { margin-top: 36px; }

.hero__meta {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  font-size: 13.5px;
  color: rgba(226, 241, 239, .62);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-3);
  flex-shrink: 0;
}

/* Hero card — the "bench ticket": a repair/advisory job readout */

.ticket {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
}

.ticket__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.ticket__id {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(226, 241, 239, .58);
}
.ticket__state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7ff0d8;
  background: rgba(24, 168, 156, .16);
  border: 1px solid rgba(95, 211, 196, .34);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticket__state::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4be0c0;
  box-shadow: 0 0 0 0 rgba(75, 224, 192, .6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(75, 224, 192, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(75, 224, 192, 0); }
  100% { box-shadow: 0 0 0 0 rgba(75, 224, 192, 0); }
}

.ticket__rows { list-style: none; margin: 20px 0 0; display: grid; gap: 18px; }

.trow__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 9px;
}
.trow__label {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(233, 245, 243, .9);
}
.trow__val {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--copper-2);
  letter-spacing: .04em;
}

.meter {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}
.meter__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand-3));
  width: 0;
}
.meter__fill--copper { background: linear-gradient(90deg, var(--copper), var(--copper-2)); }

.ticket__foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: rgba(226, 241, 239, .68);
}
.ticket__foot strong { color: #fff; font-weight: 600; }

@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 76px 0 88px; }
}

/* ---------- Trust strip ---------- */

.strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  padding: 30px 0;
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.4;
}
.strip__item svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; }
@media (max-width: 900px) { .strip__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .strip__grid { grid-template-columns: 1fr; } }

/* ---------- Grids & cards ---------- */

.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1000px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  position: relative;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 127, 120, .3);
}
.card h3 { font-size: 20.5px; margin-bottom: 12px; }
.card p { color: var(--ink-3); font-size: 15.5px; }

.card__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(24, 168, 156, .16), rgba(13, 127, 120, .1));
  color: var(--brand-ink);
  margin-bottom: 22px;
  border: 1px solid rgba(13, 127, 120, .18);
}
.card__icon svg { width: 24px; height: 24px; }
.card__icon--copper {
  background: linear-gradient(135deg, rgba(226, 169, 98, .2), rgba(194, 130, 63, .12));
  color: var(--copper-ink);
  border-color: rgba(194, 130, 63, .22);
}

.card__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--copper-ink);
  display: block;
  margin-bottom: 14px;
}

.card--ink {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .13);
}
.card--ink p { color: rgba(226, 241, 239, .74); }
.card--ink:hover { border-color: rgba(95, 211, 196, .4); box-shadow: 0 26px 60px rgba(0, 0, 0, .3); }
.card--ink .card__icon {
  background: rgba(24, 168, 156, .16);
  border-color: rgba(95, 211, 196, .26);
  color: #7ff0d8;
}

.card--flat { border-radius: var(--radius); padding: 26px 24px; }
.card--flat:hover { transform: none; box-shadow: var(--shadow-sm); }

/* Bulleted lists inside cards / prose */

.list { list-style: none; display: grid; gap: 11px; margin-top: 20px; }
.list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
}
.list li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--brand-2);
  transform: rotate(45deg);
}
.list--copper li::before { background: var(--copper); }
.section--ink .list li { color: rgba(226, 241, 239, .76); }

/* ---------- Split feature ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split--reverse .split__media { order: 0; }
}
.split h2 { font-size: clamp(28px, 3.3vw, 40px); }
.split p { color: var(--ink-3); margin-top: 18px; font-size: 17px; }
.section--ink .split p { color: rgba(226, 241, 239, .76); }

/* Media panel — a stylised device board */

.board {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #ffffff, var(--mist));
  padding: 30px;
  box-shadow: var(--shadow);
}
.board__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.board__dots { display: inline-flex; gap: 6px; margin-right: 6px; }
.board__dots i {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--mist-2); border: 1px solid var(--line);
}
.board__dots i:first-child { background: var(--copper-2); border-color: transparent; }
.board__dots i:nth-child(2) { background: var(--brand-3); border-color: transparent; }

.board__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}
.board__row:last-child { border-bottom: 0; padding-bottom: 0; }
.board__row b { font-weight: 500; color: var(--ink-2); }
.board__row span { font-family: var(--mono); font-size: 12.5px; color: var(--muted); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid;
}
.pill--good { color: #147a52; background: rgba(31, 157, 107, .1); border-color: rgba(31, 157, 107, .26); }
.pill--warn { color: #96650b; background: rgba(217, 149, 24, .12); border-color: rgba(217, 149, 24, .3); }
.pill--info { color: var(--brand-ink); background: rgba(13, 127, 120, .1); border-color: rgba(13, 127, 120, .26); }

/* ---------- Steps / process ---------- */

.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.section--ink .step { border-color: var(--line-dark); }
.section--ink .step:last-child { border-bottom-color: var(--line-dark); }

.step__n {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(13, 127, 120, .45);
  line-height: 1;
  padding-top: 4px;
}
.section--ink .step__n { -webkit-text-stroke-color: rgba(95, 211, 196, .55); }

.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--ink-3); font-size: 15.5px; }
.section--ink .step p { color: rgba(226, 241, 239, .74); }

@media (max-width: 640px) {
  .step { grid-template-columns: 1fr; gap: 10px; }
  .step__n { font-size: 26px; }
}

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat { padding: 34px 28px; background: rgba(4, 26, 28, .34); }
.stat b {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1.05;
}
.stat span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: rgba(226, 241, 239, .68);
  line-height: 1.45;
}
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .stats { grid-template-columns: 1fr; } }

/* ---------- Tag row ---------- */

.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; list-style: none; }
.tags li {
  font-size: 13.5px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-3);
}
.section--ink .tags li {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, .05);
  color: rgba(226, 241, 239, .8);
}

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 14px; }
.faq__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item.is-open { border-color: rgba(13, 127, 120, .32); box-shadow: var(--shadow-sm); }

.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 58px 22px 24px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq__q::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.faq__item.is-open .faq__q::after { transform: rotate(-135deg); margin-top: -2px; }

.faq__a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height .3s ease, padding .3s ease;
}
.faq__item.is-open .faq__a { max-height: 620px; padding: 0 24px 24px; }
.faq__a p { color: var(--ink-3); font-size: 15.5px; }
.faq__a p + p { margin-top: 12px; }

/* ---------- Detail table ---------- */

.table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 15.5px;
  background: var(--paper);
}
.table th, .table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.table tr:last-child th, .table tr:last-child td { border-bottom: 0; }
.table th {
  width: 38%;
  font-family: var(--body);
  font-weight: 500;
  color: var(--muted);
  background: var(--mist);
}
.table td { color: var(--ink-2); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); }
@media (max-width: 560px) { .table th { width: 44%; } }

/* ---------- CTA band ---------- */

.cta {
  border-radius: var(--radius-xl);
  padding: 68px 56px;
  text-align: center;
  background:
    radial-gradient(700px 340px at 50% -30%, rgba(24, 168, 156, .3), transparent 62%),
    linear-gradient(150deg, #052225 0%, #073237 60%, #04191c 100%);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 260px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper-2), transparent);
}
.cta h2 { color: #fff; font-size: clamp(28px, 3.5vw, 42px); }
.cta p {
  color: rgba(226, 241, 239, .78);
  margin: 18px auto 0;
  max-width: 60ch;
  font-size: 17.5px;
}
.cta .actions { margin-top: 34px; }
@media (max-width: 640px) { .cta { padding: 48px 26px; } }

/* ---------- Page head (interior pages) ---------- */

.page-head {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
  background:
    radial-gradient(900px 460px at 84% -30%, rgba(24, 168, 156, .24), transparent 62%),
    linear-gradient(165deg, #041a1c 0%, #06272b 100%);
  color: rgba(233, 245, 243, .8);
}
.page-head h1 {
  color: #fff;
  font-size: clamp(34px, 4.4vw, 52px);
  letter-spacing: -.03em;
  max-width: 20ch;
}
.page-head p {
  margin-top: 20px;
  font-size: 18.5px;
  color: rgba(226, 241, 239, .76);
  max-width: 62ch;
}

.crumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  margin-bottom: 20px;
  color: rgba(226, 241, 239, .55);
}
.crumbs a { color: rgba(226, 241, 239, .72); text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs li + li::before { content: '/'; margin-right: 8px; opacity: .5; }

/* ---------- Prose (legal pages) ---------- */

.prose { padding: 76px 0 96px; }
.prose h2 {
  font-size: 25px;
  margin: 46px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.prose h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 8px; }
.prose h3 { font-size: 19px; margin: 28px 0 10px; }
.prose p { margin-top: 14px; color: var(--ink-3); }
.prose ul, .prose ol { margin: 14px 0 0 20px; padding-left: 8px; color: var(--ink-3); }
.prose li { margin-bottom: 9px; }
.prose li::marker { color: var(--brand); }
.prose strong { color: var(--ink-2); font-weight: 600; }

.note {
  margin-top: 26px;
  padding: 20px 24px;
  border-left: 3px solid var(--copper);
  background: var(--mist);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15.5px;
  color: var(--ink-3);
}
.updated {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
  display: block;
}

/* ---------- Contact blocks ---------- */

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
}
.contact-card h3 { font-size: 19px; margin-bottom: 10px; }
.contact-card p { color: var(--ink-3); font-size: 15.5px; }
.contact-card .big {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
  word-break: break-word;
}
.contact-card address {
  font-style: normal;
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ---------- Footer ---------- */

.footer {
  background: linear-gradient(180deg, #041a1c, #031517);
  color: rgba(226, 241, 239, .68);
  padding: 76px 0 34px;
  font-size: 15px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 940px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer .brand { color: #fff; }
.footer .brand:hover { color: #fff; }
.footer .brand__tag { color: rgba(226, 241, 239, .5); }

.footer__about { margin-top: 20px; max-width: 38ch; color: rgba(226, 241, 239, .62); font-size: 14.5px; }

.footer h4 {
  color: #fff;
  font-size: 13px;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer a { color: rgba(226, 241, 239, .68); text-decoration: none; font-size: 14.5px; }
.footer a:hover { color: #fff; }
.footer address { font-style: normal; font-size: 14.5px; line-height: 1.75; color: rgba(226, 241, 239, .62); }

.footer__bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: rgba(226, 241, 239, .48);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; list-style: none; }

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.22, .8, .3, 1), transform .6s cubic-bezier(.22, .8, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 404 ---------- */

.oops {
  min-height: 68vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 90px 0;
}
.oops__code {
  font-family: var(--display);
  font-size: clamp(72px, 14vw, 150px);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(13, 127, 120, .38);
}
.oops h1 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 20px; }
.oops p { color: var(--ink-3); margin: 16px auto 0; max-width: 50ch; }

/* ---------- Small helpers ---------- */

.center { text-align: center; }
.mono { font-family: var(--mono); }

/* Available to screen readers, removed from the visual layout. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.lead { font-size: 18.5px; color: var(--ink-3); }
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 28px; }
.mt-l { margin-top: 44px; }
.nowrap { white-space: nowrap; }

@media (max-width: 600px) {
  body { font-size: 16.5px; }
  .section { padding: 76px 0; }
  .container, .container--narrow { width: min(100% - 36px, var(--container)); }
  .nav__inner { width: min(100% - 36px, var(--container)); }
  .nav__links { left: 18px; right: 18px; }
  .card { padding: 28px 24px; }
}
