/* GlobeTech LLC — a security consultancy selling to businesses, so this is
   deliberately not the dark terminal-green look every pentest firm reaches for.
   Paper ground, ink navy, and one signal red used the way a findings report
   uses it: sparingly, and only where it means something.

   IBM Plex throughout — it was drawn for technical documentation, and this site
   carries code blocks and terminal output. */

@font-face {
  font-family: "Plex Sans"; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url("/fonts/plex-sans.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Plex Mono"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("/fonts/plex-mono.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}

:root {
  --paper:     #fbfaf8;
  --surface:   #ffffff;
  --sunk:      #f2f1ed;
  --rule:      #e3e0da;
  --rule-firm: #cfcbc2;

  --ink:       #131820;
  --ink-soft:  #3d4753;
  --muted:     #626c78;
  --faint:     #8c94a0;

  --navy:      #0f1b2d;
  --signal:    #c2352c;
  --signal-dk: #9c2620;
  --signal-bg: rgba(194, 53, 44, .07);

  --maxw: 1120px;
  --measure: 68ch;
  --radius: 3px;

  --sans: "Plex Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --mono: "Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #10141a; --surface: #161b23; --sunk: #1c222b;
    --rule: #2a313b; --rule-firm: #3a434f;
    --ink: #e9ecf1; --ink-soft: #c2c9d3; --muted: #98a2af; --faint: #6f7885;
    --navy: #dbe3ef; --signal: #ef6a5f; --signal-dk: #ff8579;
    --signal-bg: rgba(239, 106, 95, .10);
  }
}

*, *::before, *::after { box-sizing: border-box; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--signal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--signal-dk); }
:focus-visible { outline: 3px solid var(--signal); outline-offset: 2px; }

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

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

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

.site-header { background: var(--surface); border-bottom: 1px solid var(--rule); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 68px; flex-wrap: wrap; }

.brand { text-decoration: none; display: flex; align-items: baseline; gap: 9px; }
.brand-name { font-weight: 700; font-size: 1.16rem; letter-spacing: -.01em; color: var(--navy); }
.brand-name span { color: var(--signal); }
.brand-tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint); }

.nav { display: flex; gap: 2px; flex-wrap: wrap; }
.nav a { color: var(--ink-soft); text-decoration: none; font-size: .88rem; font-weight: 600;
  padding: 8px 12px; border-radius: var(--radius); transition: color .15s, background .15s; }
.nav a:hover { color: var(--ink); background: var(--sunk); }
.nav a[aria-current="page"] { color: var(--signal); }

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

.btn { display: inline-block; padding: 12px 24px; font-weight: 600; font-size: .92rem;
  text-decoration: none; border-radius: var(--radius); border: 1px solid transparent;
  transition: background .16s, border-color .16s, color .16s; }
.btn-primary { background: var(--signal); color: #fff; }
.btn-primary:hover { background: var(--signal-dk); color: #fff; }
.btn-ghost { border-color: var(--rule-firm); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--sunk); }

/* ---------- hero / page head ---------- */

.hero { background: var(--surface); border-bottom: 1px solid var(--rule); padding: 84px 0 78px; }
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.15rem); line-height: 1.12; letter-spacing: -.022em;
  margin: 0 0 20px; max-width: 20ch; text-wrap: balance; color: var(--navy); }
.hero p.lede { font-size: 1.16rem; color: var(--ink-soft); max-width: 60ch; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.eyebrow { font-family: var(--mono); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--signal); margin: 0 0 14px; }

.page-head { background: var(--surface); border-bottom: 1px solid var(--rule); padding: 56px 0 48px; }
.page-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.14; letter-spacing: -.02em;
  margin: 0; color: var(--navy); text-wrap: balance; }
.page-head p.standfirst { color: var(--muted); margin: 14px 0 0; max-width: var(--measure); font-size: 1.06rem; }

/* ---------- sections ---------- */

.section { padding: 66px 0; }
.section + .section { border-top: 1px solid var(--rule); }
.section-alt { background: var(--surface); }
.section h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: -.015em; margin: 0 0 16px; color: var(--navy); }

/* ---------- imported page & post bodies ---------- */

.prose { max-width: var(--measure); }
.prose.wide { max-width: 100%; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: 1.5rem; letter-spacing: -.015em; margin-top: 2em; color: var(--navy); }
.prose h3 { font-size: 1.2rem; margin-top: 1.7em; color: var(--navy); }
.prose h4 { font-size: 1.05rem; margin-top: 1.5em; color: var(--navy); }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.35em; }
.prose li + li { margin-top: .4em; }
.prose img { border: 1px solid var(--rule); border-radius: var(--radius); margin: 1.6em 0; }
.prose figure { margin: 1.6em 0; }
.prose figcaption { font-size: .87rem; color: var(--faint); margin-top: .6em; }
.prose blockquote { margin: 1.6em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--signal);
  color: var(--ink-soft); font-style: italic; }
.prose hr { border: 0; border-top: 1px solid var(--rule); margin: 2.4em 0; }
.prose video { width: 100%; height: auto; border: 1px solid var(--rule); border-radius: var(--radius); }
.prose iframe { max-width: 100%; border: 1px solid var(--rule); border-radius: var(--radius); }
.prose table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.prose th, .prose td { border: 1px solid var(--rule); padding: 8px 11px; text-align: left; }
.prose th { background: var(--sunk); font-weight: 600; }

/* code — the reason this site uses Plex */
.prose code { font-family: var(--mono); font-size: .88em; background: var(--sunk);
  padding: .15em .38em; border-radius: var(--radius); border: 1px solid var(--rule); }
.prose pre { font-family: var(--mono); font-size: .84rem; line-height: 1.55;
  background: var(--navy); color: #e8edf5; padding: 18px 20px; border-radius: var(--radius);
  overflow-x: auto; margin: 1.6em 0; }
.prose pre code { background: none; border: 0; padding: 0; color: inherit; font-size: inherit; }
@media (prefers-color-scheme: dark) {
  .prose pre { background: #080b10; border: 1px solid var(--rule); }
}

/* WordPress leftovers that still carry meaning */
.wp-block-file { background: var(--sunk); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: 14px 18px; display: flex; gap: 14px;
  align-items: center; flex-wrap: wrap; font-size: .95rem; }
.wp-block-file__button { background: var(--signal); color: #fff !important; text-decoration: none;
  padding: 6px 14px; border-radius: var(--radius); font-size: .85rem; font-weight: 600; }
.aligncenter { margin-left: auto; margin-right: auto; }

/* ---------- cards ---------- */

.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.card { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 24px 26px 26px; transition: border-color .18s, transform .18s; }
a.card { text-decoration: none; color: inherit; display: block; }
a.card:hover { border-color: var(--rule-firm); transform: translateY(-2px); }
.card h3 { margin: 0 0 8px; font-size: 1.08rem; color: var(--navy); letter-spacing: -.01em; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.card .more { display: inline-block; margin-top: 12px; color: var(--signal);
  font-weight: 600; font-size: .88rem; }

/* ---------- blog index ---------- */

.posts { list-style: none; margin: 0; padding: 0; }
.posts li { border-bottom: 1px solid var(--rule); }
.posts li:first-child { border-top: 1px solid var(--rule); }
.posts a.post-link { display: grid; grid-template-columns: 106px 1fr; gap: 24px;
  padding: 24px 4px; text-decoration: none; color: inherit; align-items: baseline; }
.posts a.post-link:hover :is(h2, h3) { color: var(--signal); }
.posts time { font-family: var(--mono); font-size: .8rem; color: var(--faint);
  font-variant-numeric: tabular-nums; letter-spacing: .02em; }
.posts :is(h2, h3) { margin: 0 0 6px; font-size: 1.2rem; letter-spacing: -.012em;
  color: var(--navy); transition: color .15s; text-wrap: balance; font-weight: 600; }
.posts p { margin: 0; color: var(--muted); font-size: .95rem; max-width: 72ch; }
@media (max-width: 620px) {
  .posts a.post-link { grid-template-columns: 1fr; gap: 6px; }
}

.post-meta { font-family: var(--mono); font-size: .8rem; color: var(--faint);
  margin: 0 0 10px; letter-spacing: .02em; }

/* ---------- contact ---------- */

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-list li { display: grid; grid-template-columns: 100px 1fr; gap: 14px; align-items: baseline; }
.contact-list .label { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--faint); }
@media (max-width: 560px) { .contact-list li { grid-template-columns: 1fr; gap: 2px; } }

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

.cta { background: var(--navy); color: #f3f6fa; padding: 66px 0; }
@media (prefers-color-scheme: dark) { .cta { background: var(--surface); border-top: 1px solid var(--rule); } }
.cta h2 { color: inherit; margin: 0 0 12px; font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -.015em; }
.cta p { color: #b9c4d4; max-width: 56ch; margin: 0 0 26px; }
@media (prefers-color-scheme: dark) { .cta p { color: var(--muted); } }
.cta .btn-primary { background: var(--signal); }

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

.site-footer { border-top: 1px solid var(--rule); background: var(--surface);
  padding: 44px 0 36px; color: var(--muted); font-size: .92rem; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; }
.footer-legal { margin: 28px 0 0; color: var(--faint); font-size: .84rem; }

/* ---------- home: intro + capabilities ---------- */

.intro-split { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 56px; align-items: start; }
@media (max-width: 860px) { .intro-split { grid-template-columns: 1fr; gap: 36px; } }

.capabilities ul { list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.capabilities li { background: var(--surface); padding: 13px 15px; font-size: .92rem;
  color: var(--ink-soft); font-weight: 600; }
@media (max-width: 420px) { .capabilities ul { grid-template-columns: 1fr; } }

/* ---------- home: credentials ---------- */

.credentials-band { background: var(--surface); }

.badges { list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 22px; max-width: 860px; }
.badges .badge { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
/* The badge PNGs are transparent with a lot of internal padding, so they are
   sized generously and given no border — a box around them reads as clutter. */
.badges .badge img { width: 100%; max-width: 118px; height: auto; }
.badges .badge-name { font-family: var(--mono); font-size: .74rem; letter-spacing: .06em;
  color: var(--muted); line-height: 1.35; }

.training { list-style: none; margin: 34px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.training li { font-family: var(--mono); font-size: .78rem; letter-spacing: .02em;
  color: var(--ink-soft); background: var(--sunk); border: 1px solid var(--rule);
  border-radius: 999px; padding: 7px 15px; }

/* ---------- imported figure runs ---------- */

/* WordPress emitted consecutive images as a vertical stack, which read as a
   clump of unrelated pictures. Laid out as a row they read as a set. */
.prose .figure-row { display: grid; gap: 14px; margin: 1.8em 0; }
.prose .figure-row-2 { grid-template-columns: repeat(2, 1fr); }
.prose .figure-row-3 { grid-template-columns: repeat(3, 1fr); }
.prose .figure-row figure { margin: 0; }
.prose .figure-row img { margin: 0; width: 100%; height: 190px; object-fit: cover; }
@media (max-width: 620px) {
  .prose .figure-row-2, .prose .figure-row-3 { grid-template-columns: 1fr; }
  .prose .figure-row img { height: auto; }
}

/* Single imported images sat at whatever width WordPress pinned them to.
   Cap them so a column of pictures reads at one consistent size. */
.prose > figure > img,
.prose > p > img { max-width: 100%; margin-left: auto; margin-right: auto; }
.prose > figure { margin-left: 0; margin-right: 0; }

/* ---------- WordPress galleries ---------- */

/* A gallery is a <figure> containing <figure> children. Laid out as a row so a
   set of images reads as a set rather than a tall column of unrelated photos. */
.prose figure.gallery { display: grid; gap: 14px; margin: 1.8em 0;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.prose figure.gallery figure { margin: 0; }
.prose figure.gallery img { margin: 0; width: 100%; height: 180px; object-fit: cover; }
@media (max-width: 560px) {
  .prose figure.gallery { grid-template-columns: 1fr; }
  .prose figure.gallery img { height: auto; }
}

/* Single imported images ran at whatever width WordPress pinned. Now that the
   inline sizes are gone, cap them so a page of pictures reads consistently. */
.prose > figure:not(.gallery) img { max-width: 620px; margin-left: auto; margin-right: auto; }

.card .tier { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--signal); margin: 0 0 8px; }
.card h2 { margin: 0 0 8px; font-size: 1.08rem; color: var(--navy); letter-spacing: -.01em; }

/* ---------- social link ---------- */

/* The LinkedIn mark arrived wrapped in a single-item <ul>, which put a bullet
   beside it, and its <svg> carried no fill — so the path painted black and
   vanished against the dark palette. It now inherits currentColor. */
.prose .social-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: .4em; padding: 9px 16px 9px 13px;
  border: 1px solid var(--rule-firm); border-radius: var(--radius);
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: border-color .16s, color .16s, background .16s;
}
.prose .social-link:hover { border-color: var(--signal); color: var(--signal); background: var(--signal-bg); }
.prose .social-link svg { width: 22px; height: 22px; flex: none; }
