/* ============================================================
   Oscar Tango — oscartango.ae
   ============================================================ */

/* ============================================================
   Fonts — self-hosted, see fonts/OFL.txt
   Inter ships as a variable font, so one face covers 300–500.
   Rajdhani is static: one face per weight. Only 600 and 700 are
   used anywhere in this stylesheet.
   unicode-range keeps the latin-ext files off the wire for
   visitors who never need a character from them.
   ============================================================ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('/fonts/inter-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('/fonts/inter-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/rajdhani-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/rajdhani-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/rajdhani-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/rajdhani-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

:root {
  --bg:         #080808;
  --bg-card:    #111111;
  --bg-card2:   #161616;
  --orange:     #E84E0F;
  --orange-h:   #FF6B35;
  --border:     #242424;
  --border-mid: #333333;
  --text:       #B8B8B8;
  --text-dim:   #999999;
  --text-bright:#E8E8E8;
  --white:      #F0F0F0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

.section       { padding: 96px 0; border-top: 1px solid var(--border); }
.section-dark  { padding: 96px 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Typography ────────────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-label::before { content: '[ '; color: var(--border); }
.section-label::after  { content: ' ]'; color: var(--border); }

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.section-body {
  font-size: 16px;
  color: var(--text);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.text-dim { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.accent   { color: var(--orange); }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--orange-h); }

.btn-ghost {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-bright);
  border: 1px solid var(--border-mid);
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--text-dim); color: var(--white); }

/* ── Nav ───────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo     { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; display: block; }

.nav-brand {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.06em;
  color: var(--text);
}
.nav-brand span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 8px 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-h); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: all 0.2s;
}

/* ── Mobile Menu ───────────────────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #0e0e0e;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5vw;
  z-index: 99;
  gap: 0;
}
.mobile-menu.open { display: flex; }

.mobile-link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--white); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(232,78,15,0.12) 25%,
    rgba(232,78,15,0.3) 50%,
    rgba(232,78,15,0.12) 75%,
    transparent 100%
  );
  pointer-events: none;
  top: -2px;
  opacity: 0;
}

@keyframes scanSweep {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 0.8; }
  100% { top: 102%; opacity: 0; }
}

.hero-logo-wrap {
  margin-bottom: 4rem;
}
.hero-logo-wrap img {
  display: block;
  width: 100%;
  max-width: 680px;
  height: auto;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.hero-headline {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 7.5vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-val {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 5px;
}

/* ── About ─────────────────────────────────────────────── */
.about-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.about-point {
  display: flex;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  padding: 20px 20px 20px 24px;
}

.point-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 6px;
}

.point-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}

/* ── Services ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.service-card {
  background: var(--bg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover { background: var(--bg-card2); }
.service-card:hover::after { transform: scaleX(1); }

/* Full-width card — keeps the 2-column grid balanced with an odd card count */
.service-card--wide { grid-column: 1 / -1; }

.service-num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.service-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1.25rem;
}

.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border-mid);
  color: var(--text-dim);
}

/* ── Why ───────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.why-card {
  background: var(--bg);
  padding: 36px;
}

.why-num {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}

.why-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 10px;
}

.why-text { font-size: 14px; color: var(--text); line-height: 1.7; }

/* ── Sectors ────────────────────────────────────────────── */
.sectors-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.sectors-left { flex-shrink: 0; }

.sectors-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.pill {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--border-mid);
  color: var(--text-dim);
  cursor: default;
  transition: all 0.2s;
}
.pill:hover { border-color: var(--orange); color: var(--orange); }

/* ── Contact ────────────────────────────────────────────── */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.contact-item-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.contact-item-val {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}

.contact-note {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
  padding: 18px 18px 18px 22px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  background: var(--bg-card);
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--text);
}
.footer-logo span { color: var(--orange); }

.footer-text { font-size: 12px; color: var(--text-dim); }

.footer-links { display: flex; gap: 10px 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col,
  .contact .two-col { grid-template-columns: 1fr; gap: 48px; }
  .services-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .sectors-inner    { flex-direction: column; gap: 32px; }
}

/* Nav switches to the hamburger earlier than the rest of the layout: six items
   only just clear 640px, and zero margin is not a margin. */
@media (max-width: 700px) {
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger        { display: flex; }

  .hero {
    padding: 88px 0 60px;
    min-height: auto;
  }
  .hero-logo-wrap {
    margin-bottom: 2.5rem;
  }
  .hero-logo-wrap img {
    max-width: 100%;
  }
  .hero-headline { font-size: 44px; }
  .hero-sub      { font-size: 15px; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    margin-top: 2.5rem;
  }

  .service-card { padding: 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  /* Five footer links plus a long address line overflow a 320px viewport
     unless they can wrap and shrink */
  .footer-inner > * { min-width: 0; max-width: 100%; }
  .footer-links     { gap: 10px 18px; }
}

/* ============================================================
   Multi-page site — shared chrome, interior pages
   ============================================================ */

/* ── Accessibility ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--orange);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 20px;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

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

/* ── Nav / footer additions ─────────────────────────────── */
a.nav-brand { text-decoration: none; }

/* The launch eyebrow carries three positioning statements — let it wrap */
.hero-eyebrow { flex-wrap: wrap; row-gap: 6px; line-height: 1.6; }

/* "page" on a section's own page, "true" on pages inside it (articles) */
.nav-links a[aria-current],
.mobile-link[aria-current] { color: var(--white); }
.nav-links a[aria-current] { border-bottom: 1px solid var(--orange); padding-bottom: 3px; }

.footer-text a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-text a:hover { color: var(--orange); }

.footer-legal {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
}

/* ── Interior page hero ─────────────────────────────────── */
.page-hero {
  padding: 152px 0 72px;
  border-bottom: 1px solid var(--border);
}

.page-lead {
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  max-width: 660px;
  line-height: 1.8;
}

/* First section after a .page-hero already has the hero's bottom rule above it */
.section--flush { border-top: none; }

.prose { max-width: 680px; }
.prose p { margin-bottom: 1.25rem; line-height: 1.8; }
.prose p:last-child { margin-bottom: 0; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
}
.link-arrow::after { content: '→'; transition: transform 0.2s; }
.link-arrow:hover { color: var(--orange-h); }
.link-arrow:hover::after { transform: translateX(4px); }

/* Outbound variant — the arrow leaves the page rather than continuing along it */
.link-arrow--ext::after { content: '↗'; }
.link-arrow--ext:hover::after { transform: translate(2px, -2px); }

/* ── Card as link ───────────────────────────────────────── */
a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-foot {
  margin-top: 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.card-foot::after { content: ' →'; }
a.service-card:hover .card-foot { color: var(--orange); }

/* ── Services page — capability blocks ──────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 88px;
}
.service-block:first-of-type { border-top: none; padding-top: 8px; }

.svc-index {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--border-mid);
  line-height: 1;
  margin-bottom: 14px;
}

.svc-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}

.svc-body { font-size: 15px; color: var(--text); line-height: 1.75; }

.capability-list { list-style: none; margin-top: 1.5rem; }
.capability-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 10px;
}
.capability-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 1px;
  background: var(--orange);
}
.capability-list strong { color: var(--text-bright); font-weight: 500; }

/* Tooling note — a quiet aside at the end of the capability blocks */
.tooling-note {
  margin-top: 3.5rem;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--border-mid);
  background: var(--bg-card);
  max-width: 760px;
}
.tooling-note-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
}
.tooling-note p:last-child { font-size: 14px; color: var(--text); line-height: 1.75; }
/* The same aside inside a capability block, closer to the content it qualifies */
.tooling-note--inline { margin-top: 2rem; }

/* ── Founder panel ──────────────────────────────────────── */
.founder {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  padding: 44px;
  margin-top: 3rem;
}

.founder-photo {
  display: block;
  width: 100%;
  max-width: 190px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--border-mid);
  margin-bottom: 1.75rem;
}

.founder-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
}

.founder-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 8px;
}

.founder-meta {
  list-style: none;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-mid);
}
.founder-meta li {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.founder-meta li:last-child { margin-bottom: 0; }

.founder-link { margin-top: 1.5rem; }

.founder-certs {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-mid);
}
/* Scoped to beat the `.founder-body p` type rule this sits inside */
.founder-body .founder-certs-label {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0;
}
.founder-certs .tags { margin-top: 0.85rem; }

.founder-body p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 1.15rem; }
.founder-body p:last-child { margin-bottom: 0; }

/* ── Independent assurance ──────────────────────────────── */
.assurance-statement {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  color: var(--text-bright);
  max-width: 940px;
  border-left: 3px solid var(--orange);
  padding-left: 28px;
  margin-bottom: 3rem;
}

/* Where assurance fits — held to a reading measure under the statement */
.assurance-uses { max-width: 820px; }
.assurance-uses .capability-list { margin-top: 0; }

/* ── Articles empty state ───────────────────────────────── */
.post-empty {
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  background: var(--bg-card);
  padding: 40px 44px;
  max-width: 720px;
}
.post-empty-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.post-empty-text { font-size: 15px; color: var(--text); line-height: 1.8; }
.post-empty-text a { color: var(--text-bright); text-decoration: underline; text-underline-offset: 3px; }
.post-empty-text a:hover { color: var(--orange); }

/* ── Articles ───────────────────────────────────────────── */
.section-label a { color: inherit; text-decoration: none; }
.section-label a:hover { color: var(--orange-h); }

/* The listing reuses .service-card; one column, held to a reading width */
.article-list {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 860px;
}
.article-follow { margin-top: 2rem; font-size: 14px; color: var(--text-dim); }
.article-follow a { color: var(--text-bright); text-decoration: underline; text-underline-offset: 3px; }
.article-follow a:hover { color: var(--orange); }

/* An article title is a sentence, so it runs smaller than a one-word page name */
.article-title { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1; max-width: 900px; }
.article-meta {
  margin-top: 1.75rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Long-form reading: one measure, the site's own type and marks */
.article-body { max-width: 720px; font-size: 16px; line-height: 1.8; color: var(--text); }
.article-body > * + * { margin-top: 1.25rem; }
.article-body h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--white);
  margin-top: 3.25rem;
  scroll-margin-top: 88px;
}
.article-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-top: 2.25rem;
  scroll-margin-top: 88px;
}
.article-body h2 + *,
.article-body h3 + * { margin-top: 0.9rem; }
.article-body strong { color: var(--text-bright); font-weight: 500; }
.article-body a { color: var(--text-bright); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--orange); }
.article-body blockquote {
  border-left: 3px solid var(--orange);
  background: var(--bg-card);
  padding: 20px 24px;
  color: var(--text-bright);
}
.article-body blockquote > * + * { margin-top: 0.9rem; }
.article-body ol { padding-left: 1.4rem; }
.article-body ul { list-style: none; padding-left: 20px; }
.article-body ul > li { position: relative; }
.article-body ul > li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0.9em;
  width: 9px;
  height: 1px;
  background: var(--orange);
}
.article-body li + li { margin-top: 0.6rem; }
.article-body hr { border: 0; border-top: 1px solid var(--border); margin: 3rem 0 0; }
.article-body hr + * { margin-top: 1.5rem; }
.article-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--bg-card2);
  padding: 1px 5px;
}
.article-body pre {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 18px 20px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
}
.article-body pre code { background: none; padding: 0; }
.article-body img { display: block; max-width: 100%; height: auto; }
.article-body table { display: block; overflow-x: auto; border-collapse: collapse; font-size: 14px; }
.article-body th,
.article-body td { border: 1px solid var(--border); padding: 8px 12px; text-align: left; vertical-align: top; }
.article-body th { background: var(--bg-card); color: var(--text-bright); font-weight: 500; }

.page-hero-actions { margin-top: 2rem; }

.product-note {
  margin-top: 3rem;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  padding: 18px 18px 18px 22px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--border-mid);
  background: var(--bg-card);
  max-width: 720px;
}

/* ── CTA band ───────────────────────────────────────────── */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  padding: 40px 44px;
}

.cta-band-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.15;
}
/* Copy takes the slack; the actions keep their intrinsic width on the right */
.cta-band > :first-child { flex: 1 1 340px; min-width: 0; }
.cta-band-text { font-size: 14px; color: var(--text-dim); margin-top: 8px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; flex: 0 1 auto; min-width: 0; }

/* ── Contact page ───────────────────────────────────────── */
.contact-item-val a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.contact-item-val a:hover { color: var(--orange); }

/* ── Legal documents (privacy notice, and anything like it) ─ */
.legal-doc { max-width: 720px; }
.legal-doc h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 2.75rem 0 0.85rem;
}
.legal-doc > h2:first-child { margin-top: 0; }
.legal-doc p { font-size: 15px; line-height: 1.8; margin-bottom: 1rem; }
.legal-doc ul { margin: 0 0 1rem 1.15rem; }
.legal-doc li { font-size: 15px; line-height: 1.8; margin-bottom: 0.4rem; }
.legal-doc li::marker { color: var(--orange); }
.legal-doc strong { color: var(--text-bright); font-weight: 500; }
.legal-doc a { color: var(--text-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal-doc a:hover { color: var(--orange); }

.legal-updated {
  margin-top: 2.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

/* Legal identity sits below the commercial details, separated but same idiom */
.contact-details--legal {
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
/* The registered address runs to four lines; 18px Rajdhani at default
   line-height sets them too tight to read as an address */
.contact-details--legal .contact-item-val { line-height: 1.45; }

.contact-details--legal .contact-item-val {
  font-size: 15px;
  color: var(--text-bright);
}

.enquiry-cta { margin-top: 2rem; }
.enquiry-cta + .form-hint { margin-top: 1.1rem; }

.form-hint {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-top: -4px;
}
.form-hint a { color: var(--text-bright); text-decoration: none; }
.form-hint a:hover { color: var(--orange); }

/* ── Multi-page responsive ──────────────────────────────── */
@media (max-width: 1040px) {
  .nav-links { gap: 1.4rem; }
  .nav-cta   { padding: 8px 14px; font-size: 12px; }
}

@media (max-width: 900px) {
  /* Five nav items plus the CTA no longer fit before the hamburger kicks in at
     640px. The CTA is redundant here anyway — Contact is in the nav. */
  .nav-cta        { display: none; }
  .nav-links      { gap: 1.15rem; }

  .service-block  { grid-template-columns: 1fr; gap: 28px; padding: 44px 0; }
  .founder        { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .page-hero      { padding: 128px 0 56px; }
  .cta-band       { padding: 32px; }
}

@media (max-width: 640px) {
  .post-empty           { padding: 28px; }
  .assurance-statement  { padding-left: 20px; }
  .footer-legal         { margin-top: 4px; }

  /* The email address is too wide to sit as an inline button */
  .enquiry-cta { display: block; text-align: center; font-size: 13px; padding: 14px 16px; }
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn-primary,
  .cta-band-actions .btn-ghost {
    width: 100%;
    text-align: center;
    font-size: 13px;
    padding: 14px 16px;
  }
}
