/* ============================================================================
   Blackbourne Worldwide — design system
   Dark operations aesthetic: near-black, electric green, threat red, mono labels.
   ========================================================================= */

:root {
  --bg:         #08090B;
  --bg-2:       #0B0D11;
  --panel:      #0F1216;
  --panel-2:    #14181E;
  --panel-3:    #1A1F26;
  --line:       #222932;
  --line-2:     #2C343F;

  --ink:        #EAEEF4;
  --ink-2:      #C3CBD6;
  --muted:      #8A94A6;
  --muted-2:    #69717F;

  --accent:     #00E5A0;
  --accent-2:   #00B37E;
  --accent-dim: #0A3A2C;
  --accent-ink: #7CF5CE;

  /* brand red sampled from the company logo (#CD2219, 14.9% of the mark).
     --threat is a lightened tint of it, for legibility on the dark theme. */
  --brand-red:  #CD2219;
  --threat:     #FF4D4D;
  --threat-dim: #3A1518;
  --warn:       #FFB020;
  --cyan:       #38BDF8;

  --radius:     8px;
  --radius-lg:  14px;
  --radius-xl:  20px;

  --shadow:     0 14px 40px -18px rgba(0, 0, 0, .9);
  --glow:       0 0 0 1px rgba(0, 229, 160, .22), 0 12px 40px -18px rgba(0, 229, 160, .4);

  --wrap:       1180px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
          "Liberation Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

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

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

::selection { background: rgba(0, 229, 160, .28); color: #fff; }

/* ---------------------------------------------------------------- layout */

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.section { padding: 96px 0; position: relative; }
.section--panel { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--tight { padding: 62px 0; }

.skip { position: absolute; left: -9999px; background: var(--accent); color: #04140E; padding: 10px 16px; z-index: 100; font-weight: 700; }
.skip:focus { left: 0; }

/* ------------------------------------------------------------- typography */

h1, h2, h3, h4 { margin: 0; color: #fff; font-weight: 680; line-height: 1.14; letter-spacing: -.02em; }
h1 { font-size: clamp(36px, 4.8vw, 60px); letter-spacing: -.035em; line-height: 1.04; }
h2 { font-size: clamp(27px, 3.1vw, 40px); }
h3 { font-size: 20px; letter-spacing: -.015em; }
h4 { font-size: 16.5px; }
p { margin: 0 0 16px; color: var(--muted); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 16px; font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent); opacity: .6; }
.eyebrow--threat { color: var(--threat); }
.eyebrow--threat::before { background: var(--threat); }

.lede { font-size: clamp(16.5px, 1.5vw, 19px); line-height: 1.62; color: var(--ink-2); max-width: 62ch; }
.sec-head { max-width: 70ch; margin-bottom: 46px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { margin-top: 14px; font-size: 16.5px; }

.mono { font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; }

/* ---------------------------------------------------------------- header */

.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(8, 9, 11, .84);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr__in { display: flex; align-items: center; gap: 22px; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
/* the company logo, taken from the LinkedIn company page: a circular badge
   supplied as a white disc with transparent corners, so it reads correctly
   against the dark header. Black + brand red on white. */
.brand__mark {
  width: 36px; height: 36px; flex: 0 0 auto; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .16), 0 2px 10px -3px rgba(0, 0, 0, .7);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text b { font-size: 15.5px; font-weight: 700; letter-spacing: .01em; color: #fff; }
.brand__text span { font-family: var(--mono); font-size: 8.6px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; color: var(--accent); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 1px; margin-left: 8px; }
.nav a {
  padding: 9px 11px; border-radius: 7px;
  font-size: 14px; font-weight: 550; color: var(--muted);
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--ink); background: var(--panel-2); }
.nav a[aria-current="page"] { color: var(--accent); }

.hdr__cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.burger {
  display: none; margin-left: auto; width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 9px; background: var(--panel);
  cursor: pointer; align-items: center; justify-content: center;
}
.burger span { display: block; width: 17px; height: 1.7px; background: var(--ink); position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 17px; height: 1.7px; background: var(--ink); }
.burger span::before { top: -5.5px; }
.burger span::after  { top: 5.5px; }

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 18px; border-radius: 8px; border: 1px solid transparent;
  font-size: 14.5px; font-weight: 620; line-height: 1; cursor: pointer; white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s, transform .1s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #04140E; }
.btn--primary:hover { background: var(--accent-ink); box-shadow: 0 8px 28px -10px rgba(0, 229, 160, .5); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--threat { background: var(--threat); color: #fff; }
.btn--threat:hover { background: #E03A3A; box-shadow: 0 8px 28px -10px rgba(255, 77, 77, .5); }
.btn--lg { padding: 14px 24px; font-size: 15.5px; border-radius: 10px; }
.btn--block { width: 100%; }
.btn--link { padding: 0; background: none; border: 0; color: var(--accent); font-weight: 640; }
.btn--link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ----------------------------------------------------------------- hero */

.hero { padding: 92px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 78%);
}
.hero::after {
  content: ""; position: absolute; inset: -240px 0 auto; height: 640px; pointer-events: none;
  background:
    radial-gradient(680px 340px at 16% 8%, rgba(0, 229, 160, .12), transparent 70%),
    radial-gradient(560px 320px at 88% 0%, rgba(255, 77, 77, .09), transparent 72%);
}
.hero__in { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: center; }
.hero h1 { max-width: 16ch; }
.hero .lede { margin-top: 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.tag {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px 6px 11px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--panel);
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent-ink);
}
.tag i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 160, .16);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.hero__meta {
  margin-top: 30px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px; padding-top: 24px; border-top: 1px solid var(--line);
}
.hero__meta b { display: block; font-family: var(--mono); font-size: 21px; font-weight: 700; color: var(--accent); letter-spacing: -.01em; }
.hero__meta span { font-size: 12.6px; color: var(--muted-2); }

/* -------------------------------------------------------------- terminal */

.term {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--panel); box-shadow: var(--shadow); overflow: hidden;
}
.term__bar {
  display: flex; align-items: center; gap: 9px; padding: 12px 15px;
  border-bottom: 1px solid var(--line); background: var(--panel-2);
}
.term__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.term__title { margin-left: 6px; font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); }
.term__live {
  margin-left: auto; font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(0, 229, 160, .3); background: rgba(0, 229, 160, .08);
  padding: 3px 8px; border-radius: 999px;
}
.term__body { padding: 16px; display: grid; gap: 11px; font-family: var(--mono); font-size: 12.4px; }
.term__row {
  display: flex; align-items: center; gap: 10px; padding: 9px 11px;
  border-radius: 7px; background: var(--panel-2); border: 1px solid var(--line);
  color: var(--ink-2);
}
.term__row em { font-style: normal; margin-left: auto; font-size: 10.8px; font-weight: 700; padding: 2px 8px; border-radius: 999px; letter-spacing: .06em; }
.sev-crit { background: rgba(255, 77, 77, .14); color: #FF8A8A; }
.sev-high { background: rgba(255, 176, 32, .14); color: #FFCF70; }
.sev-ok   { background: rgba(0, 229, 160, .13); color: var(--accent-ink); }
.sev-info { background: rgba(56, 189, 248, .13); color: #8AD6FB; }
.term__bar-meter { height: 4px; border-radius: 999px; background: var(--panel-3); overflow: hidden; margin-top: 2px; }
.term__bar-meter i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--cyan)); }

/* ---------------------------------------------------------------- facts */

.facts { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.facts__in { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fact { padding: 34px 26px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact b { display: block; font-family: var(--mono); font-size: 30px; font-weight: 700; letter-spacing: -.02em; color: var(--accent); line-height: 1.1; }
.fact span { font-size: 13.6px; color: var(--muted); }
.fact--threat b { color: var(--threat); }

/* ------------------------------------------------------------------ grid */

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

.card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--panel);
  padding: 26px 24px; position: relative; overflow: hidden;
  transition: border-color .16s, transform .16s, box-shadow .16s;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 160, .5), transparent);
  opacity: 0; transition: opacity .2s;
}
.card:hover { border-color: var(--line-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card h3 { margin-bottom: 9px; }
.card p { font-size: 14.8px; }
.card__ico {
  width: 40px; height: 40px; border-radius: 10px; margin-bottom: 17px;
  background: rgba(0, 229, 160, .1); border: 1px solid rgba(0, 229, 160, .22);
  color: var(--accent); display: grid; place-items: center;
}
.card__ico svg { width: 19px; height: 19px; }
.card--threat .card__ico { background: rgba(255, 77, 77, .1); border-color: rgba(255, 77, 77, .24); color: var(--threat); }
.card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-family: var(--mono); font-size: 12.5px; font-weight: 600; letter-spacing: .06em; color: var(--accent); }
.card__link:hover { gap: 11px; }

/* -------------------------------------------------------------- service */

.svc {
  display: flex; align-items: center; gap: 16px; padding: 22px 24px;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--panel);
  transition: border-color .16s, transform .16s, box-shadow .16s;
}
.svc:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--glow); }
.svc__ico {
  width: 44px; height: 44px; border-radius: 11px; flex: 0 0 auto;
  background: rgba(0, 229, 160, .09); border: 1px solid rgba(0, 229, 160, .2);
  color: var(--accent); display: grid; place-items: center;
}
.svc__ico svg { width: 21px; height: 21px; }
.svc__txt { min-width: 0; }
.svc__txt b { display: block; font-size: 16.5px; font-weight: 650; color: #fff; letter-spacing: -.012em; }
.svc__txt span { font-size: 13.6px; color: var(--muted); }
.svc__go { margin-left: auto; color: var(--accent); font-family: var(--mono); flex: 0 0 auto; }

/* ---------------------------------------------------------------- steps */

.steps { display: grid; gap: 20px; grid-template-columns: repeat(4, minmax(0, 1fr)); counter-reset: s; }
.step { padding-top: 6px; }
.step__n {
  counter-increment: s; width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid rgba(0, 229, 160, .3); background: rgba(0, 229, 160, .07);
  color: var(--accent); display: grid; place-items: center;
  font-family: var(--mono); font-size: 14px; font-weight: 700; margin-bottom: 16px;
}
.step__n::before { content: "0" counter(s); }
.step h4 { margin-bottom: 7px; }
.step p { font-size: 14.4px; }

/* ---------------------------------------------------------------- quote */

.quote {
  border-left: 2px solid var(--accent); padding: 6px 0 6px 26px; max-width: 62ch;
}
.quote p {
  font-size: clamp(18px, 2vw, 23px); line-height: 1.5; color: #fff;
  letter-spacing: -.018em; font-weight: 500;
}
.quote cite { display: block; margin-top: 18px; font-family: var(--mono); font-size: 12px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }

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

.tbl-wrap { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14.4px; }
table.tbl th, table.tbl td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.tbl th {
  font-family: var(--mono); font-size: 11px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 600; background: var(--panel-2);
}
table.tbl td { color: var(--ink-2); }
table.tbl td b { color: #fff; font-weight: 620; }
table.tbl tr:last-child td { border-bottom: 0; }
table.tbl a { color: var(--accent); font-weight: 600; }

/* ----------------------------------------------------------------- cta */

.band {
  border-radius: var(--radius-xl); padding: 56px 48px; position: relative; overflow: hidden;
  border: 1px solid var(--line-2); background: linear-gradient(135deg, var(--panel-2), var(--panel));
}
.band::after {
  content: ""; position: absolute; inset: auto -90px -160px auto; width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(0, 229, 160, .22), transparent 65%); pointer-events: none;
}
.band h2 { max-width: 24ch; }
.band p { color: var(--ink-2); max-width: 56ch; margin-top: 14px; font-size: 16.5px; }
.band__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; position: relative; }
.band--threat { border-color: rgba(255, 77, 77, .3); }
.band--threat::after { background: radial-gradient(circle, rgba(255, 77, 77, .22), transparent 65%); }

.ert {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
  border: 1px solid rgba(255, 77, 77, .32); background: rgba(255, 77, 77, .05);
  border-radius: var(--radius-lg); padding: 22px 26px;
}
.ert__ico {
  width: 44px; height: 44px; border-radius: 11px; flex: 0 0 auto;
  background: rgba(255, 77, 77, .14); color: var(--threat); display: grid; place-items: center;
}
.ert__ico svg { width: 22px; height: 22px; }
.ert__txt { min-width: 0; flex: 1; }
.ert__txt b { display: block; font-size: 16.5px; font-weight: 650; color: #fff; }
.ert__txt span { font-size: 14px; color: var(--muted); }
.ert .btn { flex: 0 0 auto; }

/* --------------------------------------------------------------- footer */

.ftr { border-top: 1px solid var(--line); background: var(--bg-2); padding: 60px 0 34px; }
.ftr__grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px; }
.ftr h5 {
  margin: 0 0 14px; font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2);
}
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ftr a { font-size: 14.2px; color: var(--muted); }
.ftr a:hover { color: var(--accent); }
.ftr__about { max-width: 34ch; font-size: 14.2px; color: var(--muted); margin-top: 16px; }
.ftr__bottom {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center;
  font-family: var(--mono); font-size: 11.8px; color: var(--muted-2);
}
.ftr__bottom nav { display: flex; gap: 18px; margin-left: auto; }
.ftr__bottom a:hover { color: var(--accent); }

/* ----------------------------------------------------------------- doc */

.doc { max-width: 76ch; }
.doc h2 { font-size: 25px; margin: 42px 0 12px; }
.doc h3 { margin: 30px 0 8px; font-size: 18.5px; }
.doc p, .doc li { font-size: 15.4px; color: var(--muted); }
.doc ul { margin: 0 0 18px; padding-left: 20px; display: grid; gap: 8px; }
.doc li::marker { color: var(--accent); }
.doc__meta { font-family: var(--mono); font-size: 12px; color: var(--muted-2); margin-bottom: 10px; }
.crumbs { font-family: var(--mono); font-size: 12px; color: var(--muted-2); margin-bottom: 20px; letter-spacing: .04em; }
.crumbs a { color: var(--accent); }
.crumbs a:hover { text-decoration: underline; }

/* ----------------------------------------------------------------- form */

.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line-2); border-radius: 8px;
  font: inherit; font-size: 14.6px; background: var(--panel-2); color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(0, 229, 160, .13);
}
.field__hint { font-size: 12.4px; color: var(--muted-2); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__ok {
  display: none; padding: 14px 16px; border-radius: 8px;
  border: 1px solid rgba(0, 229, 160, .3); background: rgba(0, 229, 160, .08);
  color: var(--accent-ink); font-size: 14.2px; font-weight: 560;
}
.form__ok[data-show="1"] { display: block; }

/* ------------------------------------------------------------ utilities */

.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 54px; align-items: center; }
.split--top { align-items: start; }

.list-check { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.list-check li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-2); }
.list-check li::before { content: "▸"; color: var(--accent); flex: 0 0 auto; font-size: 13px; line-height: 1.6; }
.list-check--threat li::before { content: "▸"; color: var(--threat); }

.note {
  border: 1px solid var(--line-2); border-left: 2px solid var(--accent);
  background: var(--panel); padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0;
}
.note p { color: var(--ink-2); font-size: 14.8px; }
.note b { color: #fff; }
.note--threat { border-left-color: var(--threat); }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 20px 0; font-size: 17px; font-weight: 620; color: #fff;
  list-style: none; display: flex; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; margin-left: auto; color: var(--accent); font-family: var(--mono); font-size: 20px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 0 22px; max-width: 80ch; }
.faq details > div p { font-size: 15.2px; }

.jobs { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); }
.job { display: grid; grid-template-columns: 1.6fr 1fr 1fr auto; gap: 16px; align-items: center; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.job:last-child { border-bottom: 0; }
.job:hover { background: var(--panel-2); }
.job b { font-size: 15.6px; font-weight: 640; color: #fff; }
.job span { font-family: var(--mono); font-size: 11.8px; color: var(--muted-2); letter-spacing: .05em; }

.badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px;
  border: 1px solid var(--line-2); border-radius: 999px; background: var(--panel);
  font-family: var(--mono); font-size: 11.8px; font-weight: 600; letter-spacing: .05em; color: var(--ink-2);
}
.badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ------------------------------------------------------------ logo block */

.logo-feature {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--panel); padding: 28px 30px;
}
.logo-feature img {
  width: 132px; height: 132px; border-radius: 50%; background: #fff; flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .14), 0 10px 30px -12px rgba(0, 0, 0, .8);
}
.logo-feature__txt { min-width: 0; }
.logo-feature__txt b { display: block; font-size: 21px; font-weight: 680; color: #fff; letter-spacing: -.015em; }
.logo-feature__txt p { margin: 8px 0 0; font-size: 14.6px; }
.swatches { display: flex; gap: 18px; margin-top: 16px; flex-wrap: wrap; }
.swatch { display: flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); letter-spacing: .05em; }
.swatch i { width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--line-2); }

/* ------------------------------------------------------------ responsive */

/* Seven nav items plus two buttons need roughly 1000px, so the nav collapses
   before the grid does. */
@media (max-width: 1060px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .grid--4, .steps, .facts__in { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ftr__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .section { padding: 72px 0; }
  .fact { border-right: 0; border-bottom: 1px solid var(--line); padding: 24px 0; }
  .fact:nth-last-child(-n+2) { border-bottom: 0; }

  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 74px;
    flex-direction: column; align-items: stretch; gap: 1px;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 10px 16px 16px; box-shadow: var(--shadow);
  }
  .nav[data-open="1"] { display: flex; }
  .nav a { padding: 12px; font-size: 15px; }
  .burger { display: inline-flex; }
  .hdr__cta .btn--ghost { display: none; }
  .hdr__cta .btn--primary { padding: 10px 14px; font-size: 13.5px; }
}

@media (max-width: 720px) {
  .grid--2, .grid--3, .grid--4, .steps, .facts__in, .form__row,
  .hero__meta { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; }
  .job { grid-template-columns: 1fr; gap: 6px; }
  .job .btn { margin-top: 10px; justify-self: start; }
  .band { padding: 38px 24px; border-radius: var(--radius-lg); }
  .section { padding: 58px 0; }
  .hero { padding: 56px 0 48px; }
  .wrap { padding: 0 18px; }
  .fact { padding: 18px 0; }
  .fact:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .ert { flex-direction: column; align-items: flex-start; }
  .ftr__bottom { flex-direction: column; align-items: flex-start; }
  .ftr__bottom nav { margin-left: 0; flex-wrap: wrap; }
  .svc__go { display: none; }
  .hero__meta { gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
