@import url("fonts.css");

/* ==========================================================================
   Bold Communications — design system
   Tokens are lifted verbatim from the Claude Design mockups; layout is
   rebuilt fluid so the same design holds from 320px to 1440px+.
   ========================================================================== */

:root {
  /* surfaces */
  --bg:          #05090b;
  --bg-alt:      #070d10;
  --bg-deep:     #030709;
  --surface:     #0a1418;
  --surface-2:   #12222a;
  --light:       #f2f6f7;
  --light-2:     #dfe6e7;

  /* brand */
  --cyan:        #2ee6ff;
  --cyan-soft:   #8ff6ff;
  --cyan-deep:   #07788f;
  --magenta:     #c23c72;
  --amber:       #ffb545;
  --amber-deep:  #b5761f;
  --ink:         #03181d;   /* text on cyan */

  /* text */
  --text:        #e6f4f7;
  --text-70:     rgba(230, 244, 247, .7);
  --text-62:     rgba(230, 244, 247, .62);
  --text-50:     rgba(230, 244, 247, .5);
  --text-42:     rgba(230, 244, 247, .42);
  --line:        rgba(230, 244, 247, .12);
  --line-soft:   rgba(230, 244, 247, .08);
  --cyan-line:   rgba(46, 230, 255, .18);

  /* type */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Instrument Sans', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, monospace;

  /* layout */
  --shell:   1440px;
  --gutter:  44px;
  --header-h: 78px;

  /* radii */
  --r-card: 26px;
  --r-md:   18px;
  --r-sm:   12px;
  --pill:   999px;
}

@media (max-width: 1100px) { :root { --gutter: 32px; } }
@media (max-width: 700px)  { :root { --gutter: 20px; --header-h: 64px; } }

/* ---------- reset ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--cyan-soft); }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); }
p { margin: 0; text-wrap: pretty; }
button { font: inherit; }

:where(a, button, input, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

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

.shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
}

.section { position: relative; }
.section--alt  { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); }
.section--light { background: var(--light); color: var(--bg); }
.section--rule  { border-top: 1px solid var(--line-soft); }

.section-body {
  position: relative;
  padding-block: clamp(64px, 7vw, 104px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 52px);
}

.stack     { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.stack--sm { gap: 14px; }
.stack--lg { gap: 26px; }

/* Split layouts collapse to a single column on tablet. */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.split--media-first { grid-template-columns: .92fr 1.08fr; }
.split--text-first  { grid-template-columns: 1.02fr .98fr; }
.split--wide-text   { grid-template-columns: 1.15fr .85fr; align-items: end; }

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

@media (max-width: 1000px) {
  .split, .split--media-first, .split--text-first, .split--wide-text {
    grid-template-columns: 1fr;
    align-items: start;
  }
  /* Keep the imagery below the words when a split collapses. */
  .split--media-first > .media { order: 2; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .24em;
  color: var(--cyan);
  text-transform: uppercase;
}
.eyebrow--muted { color: var(--text-50); }
.eyebrow--deep  { color: var(--cyan-deep); }

.title-xl,
.title-lg,
.title-md,
.title-sm {
  font-family: var(--font-display);
  color: #fff;
  letter-spacing: -.045em;
  line-height: .94;
}
.section--light :is(.title-xl, .title-lg, .title-md, .title-sm) { color: var(--bg); }

.title-xl { font-size: clamp(40px, 6vw, 84px); font-weight: 600; }
.title-lg { font-size: clamp(36px, 5vw, 68px);   font-weight: 900; line-height: .96; letter-spacing: -.042em; text-transform: uppercase; }
.title-md { font-size: clamp(30px, 3.6vw, 52px); font-weight: 800; line-height: 1;   letter-spacing: -.038em; }
.title-sm { font-size: clamp(24px, 2.4vw, 34px); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; }

.title-lg--tight { line-height: .9; }
.title-lg--spaced { word-spacing: .22em; }

.grad {
  font-weight: 800;
  background: linear-gradient(96deg, var(--cyan) 0%, var(--cyan-soft) 46%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.accent { color: var(--cyan); }
.section--light .accent { color: var(--cyan-deep); }

.lede     { font-size: clamp(17px, 1.3vw, 20px); line-height: 1.55; color: rgba(230, 244, 247, .74); max-width: 56ch; }
.body-text { font-size: clamp(16px, 1.1vw, 17.5px); line-height: 1.6; color: var(--text-70); max-width: 62ch; }
.body-text strong { color: #fff; font-weight: 600; }
.section--light .body-text { color: rgba(5, 9, 11, .66); }
.section--light .body-text strong { color: var(--bg); }
.small-print { font-size: 12.5px; line-height: 1.5; color: var(--text-42); }

.mono-rule {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 20px; padding-top: 22px;
  border-top: 1px solid rgba(230, 244, 247, .1);
  width: 100%; max-width: 560px;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .16em;
  color: rgba(230, 244, 247, .45);
  text-transform: uppercase;
}
.mono-rule .sep { color: rgba(46, 230, 255, .5); }

/* ---------- badge / pulse ---------- */

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 13px;
  border: 1px solid rgba(46, 230, 255, .35);
  background: rgba(46, 230, 255, .07);
  border-radius: var(--pill);
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 600; letter-spacing: .2em;
  color: var(--cyan); text-transform: uppercase;
}
.pulse {
  width: 7px; height: 7px; flex: none; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
  animation: bcpulse 1.9s ease-in-out infinite;
}

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

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 58px; padding: 0 34px;
  border: 1px solid transparent; border-radius: var(--pill);
  font-weight: 700; font-size: 15px; letter-spacing: .02em;
  white-space: nowrap; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn--primary {
  background: var(--cyan); color: var(--ink);
  box-shadow: 0 12px 44px rgba(46, 230, 255, .4);
}
.btn--primary:hover { background: var(--cyan-soft); color: var(--ink); }
.btn--ghost { border-color: rgba(230, 244, 247, .24); color: #fff; }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn--outline { border-color: rgba(46, 230, 255, .45); color: var(--cyan); }
.btn--outline:hover { background: var(--cyan); color: var(--ink); }
.btn--sm { height: 44px; padding: 0 22px; font-size: 13.5px; }
.btn--md { height: 50px; padding: 0 24px; font-size: 14px; text-transform: uppercase; letter-spacing: .07em; }
.btn--block { width: 100%; }

.btn--submit {
  height: 56px; border: 0; background: var(--cyan); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  text-transform: uppercase; letter-spacing: .07em;
  box-shadow: 0 10px 34px rgba(46, 230, 255, .35);
}
.btn--submit:hover { background: var(--cyan-soft); }
.btn--submit[disabled] { opacity: .55; cursor: progress; box-shadow: none; }

/* Mono "EXPLORE →" style link */
.link-mono {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  color: var(--cyan); text-transform: uppercase; white-space: nowrap;
}
.link-mono--deep { color: var(--cyan-deep); }
.link-mono--deep:hover { color: var(--bg); }
.link-mono--chip {
  height: 44px; padding: 0 22px; border-radius: var(--pill);
  background: rgba(46, 230, 255, .12);
  border: 1px solid rgba(46, 230, 255, .4);
}
.link-mono--chip:hover { background: var(--cyan); color: var(--ink); }

/* ---------- decorative layers ----------
   All purely ornamental; hidden from AT and from pointer events. */

.deco { position: absolute; pointer-events: none; }
.deco-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.deco--grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 230, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 230, 255, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: bcdrift 9s linear infinite;
}
.deco--grid-soft {
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 230, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 230, 255, .04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.deco--cols {
  inset: 0;
  background-image: linear-gradient(90deg, rgba(46, 230, 255, .05) 1px, transparent 1px);
  background-size: 64px 100%;
}
.deco--bloom {
  top: -360px; right: -200px; width: min(1100px, 140vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(46, 230, 255, .28) 0%, rgba(46, 230, 255, .07) 38%, rgba(5, 9, 11, 0) 68%);
  animation: bcbloom 7s ease-in-out infinite;
}
.deco--bloom-still {
  top: -320px; right: -160px; width: min(960px, 130vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(46, 230, 255, .24) 0%, rgba(46, 230, 255, .06) 40%, rgba(5, 9, 11, 0) 68%);
}
.deco--bloom-bottom {
  bottom: -420px; left: 50%; transform: translateX(-50%);
  width: min(1500px, 180vw); height: 900px;
  background: radial-gradient(circle, rgba(46, 230, 255, .2) 0%, rgba(5, 9, 11, 0) 62%);
}
.deco--bloom-light {
  top: -120px; left: -140px; width: min(620px, 90vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(46, 230, 255, .3) 0%, rgba(242, 246, 247, 0) 68%);
}
.deco--scan {
  left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(46, 230, 255, .45), transparent);
  animation: bcscan 8s linear infinite;
}
.deco--dots {
  left: -8%; right: -8%; bottom: -90px; height: 620px;
  background-image:
    radial-gradient(circle, rgba(46, 230, 255, .55) 1.1px, transparent 1.1px),
    radial-gradient(circle, rgba(194, 60, 114, .5) 1.1px, transparent 1.1px);
  background-size: 20px 20px, 20px 20px;
  background-position: 0 0, 10px 10px;
  transform: rotate(-6deg);
  mask-image: radial-gradient(ellipse 55% 65% at 42% 58%, #000 8%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 55% 65% at 42% 58%, #000 8%, transparent 74%);
  opacity: .6;
}
.deco--ring-magenta {
  left: 46%; top: 96px; width: 230px; aspect-ratio: 1; border-radius: 50%;
  border: 36px solid rgba(194, 60, 114, .16);
}
.deco--ring-cyan {
  right: 6%; top: 60px; width: 190px; aspect-ratio: 1; border-radius: 50%;
  border: 30px solid rgba(46, 230, 255, .12);
}

@media (max-width: 900px) {
  .deco--ring-magenta, .deco--ring-cyan { display: none; }
  .deco--dots { height: 380px; bottom: -40px; }
}

/* ---------- circular "orb" imagery ---------- */

.orb-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 100%;
}
.orb {
  position: relative;
  width: 88%; aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--surface-2);
  box-shadow: 0 0 120px rgba(46, 230, 255, .2);
}
.orb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.orb--offset img { object-position: 52% 42%; }
.orb::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 55% 28%, rgba(46, 230, 255, .1), rgba(5, 9, 11, .45) 78%);
}
.orb-ring {
  position: absolute;
  width: 88%; aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(46, 230, 255, .2);
  transform: scale(1.07);
  pointer-events: none;
}
.orb-accent {
  position: absolute;
  left: -14px; top: 34px;
  width: 150px; aspect-ratio: 1;
  border-radius: 50%;
  border: 26px solid rgba(194, 60, 114, .2);
  pointer-events: none;
}
.orb-accent--bl { left: -24px; top: auto; bottom: 14px; width: 164px; border-width: 28px; border-color: rgba(194, 60, 114, .18); }
.orb-accent--br { left: auto; right: -14px; top: auto; bottom: -6px; }
.orb-badge {
  position: absolute; top: -6px; right: -6px;
  width: 96px; aspect-ratio: 1; border-radius: 50%;
  background: var(--bg); border: 1px solid rgba(46, 230, 255, .3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 34px;
  letter-spacing: -.04em; color: var(--cyan);
}
.orb-stat {
  position: absolute; right: -10px; bottom: 6px;
  width: 148px; aspect-ratio: 1; border-radius: 50%;
  background: var(--bg); border: 1px solid rgba(46, 230, 255, .3);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  text-align: center;
}
.orb-stat b {
  font-family: var(--font-display); font-weight: 800; font-size: 40px;
  letter-spacing: -.04em; line-height: 1; color: var(--cyan);
}
.orb-stat span {
  font-family: var(--font-mono); font-size: 9px; font-weight: 600;
  letter-spacing: .18em; color: var(--text-50); text-transform: uppercase; line-height: 1.4;
}

@media (max-width: 1000px) {
  .orb-wrap { max-width: 520px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .orb-accent { width: 108px; border-width: 20px; left: 0; top: auto; bottom: 0; }
  .orb-accent--bl, .orb-accent--br { width: 108px; border-width: 20px; }
  .orb-badge { width: 72px; font-size: 26px; }
  .orb-stat { width: 112px; }
  .orb-stat b { font-size: 30px; }
}

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

.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(5, 9, 11, .78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--cyan-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; }
.brand img {
  height: 44px;
  width: auto;
  /* The source is 276x65; cap the rendered size so it never outruns it. */
  max-height: 65px;
}

.nav {
  display: flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
}
.nav a { padding: 9px 14px; color: var(--text-62); border-radius: var(--pill); }
.nav a:hover { color: #fff; }
.nav a[aria-current="page"] { color: var(--ink); background: var(--cyan); padding-inline: 16px; }
.nav a[aria-current="page"]:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-tel {
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  color: var(--text-70); white-space: nowrap;
}
.header-cta {
  display: inline-flex; align-items: center; height: 42px; padding: 0 22px;
  background: var(--cyan); color: var(--ink);
  font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: .06em;
  white-space: nowrap; border-radius: var(--pill);
  box-shadow: 0 0 0 1px rgba(46, 230, 255, .5), 0 8px 30px rgba(46, 230, 255, .35);
}
.header-cta:hover { background: var(--cyan-soft); color: var(--ink); }

/* hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--cyan); border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — mirrors the 390pt panel in the mockup. */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0; z-index: 79;
  background: var(--bg);
  overflow-y: auto;
  padding: 12px var(--gutter) 40px;
  display: none;
  flex-direction: column;
}
.mobile-menu[data-open="true"] { display: flex; }
.mobile-menu a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: clamp(26px, 8vw, 30px); font-weight: 900;
  letter-spacing: -.035em; color: #fff; text-transform: uppercase;
}
.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] { color: var(--cyan); }
.mobile-menu .btn { margin-top: 22px; width: 100%; height: 54px; text-transform: uppercase; letter-spacing: .06em; font-size: 14.5px; }
body[data-menu-open="true"] { overflow: hidden; }

@media (max-width: 1180px) {
  .header-tel { display: none; }
  .nav a { padding: 9px 10px; font-size: 12.5px; }
}
@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .brand img { height: 38px; }
}
@media (max-width: 380px) {
  .brand img { height: 32px; }
}

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

.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero-inner {
  position: relative;
  display: grid;
  /* Wider than the mockup's 1.02fr so the display headline still breaks
     where it was designed to break instead of wrapping a third time. */
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(36px, 4vw, 56px);
  align-items: center;
  padding-block: clamp(48px, 6vw, 88px) clamp(56px, 7vw, 100px);
}
.hero-copy { display: flex; flex-direction: column; gap: clamp(18px, 2vw, 26px); align-items: flex-start; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.hero-media { position: relative; display: flex; align-items: center; justify-content: center; padding: 30px 0 30px 40px; }

@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { padding: 8px 0 0; order: 2; }
}
@media (max-width: 560px) {
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* Compact hero used on the interior pages */
.hero--inner .hero-inner { padding-block: clamp(44px, 5vw, 82px) clamp(48px, 6vw, 88px); }

/* ---------- ticker ---------- */

.ticker {
  border-top: 1px solid rgba(46, 230, 255, .2);
  border-bottom: 1px solid rgba(46, 230, 255, .2);
  background: var(--cyan);
  overflow: hidden;
}
.ticker-track { display: flex; width: max-content; animation: bcmarquee 26s linear infinite; }
.ticker-group {
  display: flex; align-items: center; gap: 34px; flex: none; width: max-content;
  padding: 12px 44px 12px 0;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  letter-spacing: .1em; color: var(--ink); white-space: nowrap; text-transform: uppercase;
}
.ticker-group .dot { opacity: .4; }

@media (max-width: 700px) {
  .ticker-group { gap: 22px; padding: 9px 22px 9px 0; font-size: 11.5px; }
  .ticker-track { animation-duration: 20s; }
}

/* ---------- stat rings ---------- */

.stat-ring { border-radius: 50%; padding: 9px; }
.stat-ring:nth-child(1) { background: linear-gradient(160deg, var(--magenta) 0%, var(--cyan) 55%, var(--cyan) 100%); }
.stat-ring:nth-child(2) { background: linear-gradient(200deg, var(--cyan) 0%, var(--cyan) 60%, #0a6b80 100%); }
.stat-ring:nth-child(3) { background: linear-gradient(20deg,  var(--magenta) 0%, var(--cyan) 55%, var(--cyan) 100%); }
.stat-ring:nth-child(4) { background: linear-gradient(160deg, var(--cyan) 0%, var(--cyan) 50%, var(--magenta) 100%); }
.stat-ring > div {
  border-radius: 50%; aspect-ratio: 1; background: var(--bg-alt);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  text-align: center; padding: 10px;
}
.stat-ring b {
  font-family: var(--font-display); font-size: clamp(34px, 4.3vw, 62px); font-weight: 800;
  letter-spacing: -.045em; line-height: .9; color: #fff;
}
.stat-ring b.is-long { font-size: clamp(26px, 3.3vw, 48px); }
.stat-ring span {
  font-family: var(--font-mono); font-size: clamp(8px, .8vw, 10.5px); font-weight: 600;
  letter-spacing: .2em; color: var(--text-50);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 34px 36px 36px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .18s ease, transform .18s ease;
}
.card:hover { border-color: rgba(46, 230, 255, .45); }
.card h2, .card h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em; color: #fff; margin: 0; }
.card p { font-size: 16px; line-height: 1.6; color: rgba(230, 244, 247, .65); }
.card .link-mono { margin-top: auto; padding-top: 16px; }
.card address { font-style: normal; font-size: 16.5px; line-height: 1.65; color: var(--text-70); }

/* product cards */
.product-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 20px; }
@media (max-width: 1050px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  display: flex; flex-direction: column;
  border-radius: 24px; overflow: hidden;
  background: #fff; border: 1px solid rgba(5, 9, 11, .1);
  transition: border-color .18s ease;
}
.product-card:hover { border-color: var(--cyan-deep); }
.product-card--dark {
  background: var(--bg); color: var(--text); border: 0;
  box-shadow: 0 30px 80px rgba(5, 9, 11, .28);
  grid-row: span 1;
}
.product-card__bar { height: 4px; flex: none; }
.product-card__img { flex: none; width: 100%; object-fit: cover; background-color: var(--light-2); }
.product-card--dark .product-card__img { background-color: var(--surface-2); height: 280px; }
.product-card:not(.product-card--dark) .product-card__img { height: 200px; }
.product-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product-card--dark .product-card__body { padding: 30px 30px 34px; gap: 14px; }
.product-card h3 {
  font-family: var(--font-display); font-weight: 900; letter-spacing: -.03em;
  margin: 0; text-transform: uppercase; font-size: 30px;
}
.product-card--dark h3 { font-size: clamp(30px, 3vw, 40px); letter-spacing: -.035em; color: #fff; }
.product-card p { margin: 0; font-size: 15.5px; line-height: 1.6; color: rgba(5, 9, 11, .66); }
.product-card--dark p { font-size: 16px; color: var(--text-70); }
.product-card .link-mono { margin-top: auto; padding-top: 16px; }
.product-card--dark .btn { align-self: flex-start; margin-top: auto; }

.pill-flag {
  display: inline-flex; align-self: flex-start;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: .22em;
  color: var(--ink); background: var(--cyan); padding: 5px 12px; border-radius: var(--pill);
}

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
  border: 1px solid rgba(230, 244, 247, .18);
  padding: 6px 12px; color: rgba(230, 244, 247, .65);
  border-radius: var(--pill);
}

/* news cards */
.news-card {
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid rgba(230, 244, 247, .1);
  background: var(--surface);
  padding: 0 0 26px;
  border-radius: 22px; overflow: hidden;
  transition: border-color .18s ease;
}
.news-card:hover { border-color: rgba(46, 230, 255, .5); }
.news-card__img { height: 210px; width: 100%; flex: none; object-fit: cover; background-color: var(--surface-2); }
.news-card__body { display: flex; flex-direction: column; gap: 11px; padding: 0 24px; }
.news-card time,
.news-card .meta {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .18em; color: var(--cyan); text-transform: uppercase;
}
.news-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 23px;
  line-height: 1.14; letter-spacing: -.025em; margin: 0; color: #fff;
}
.news-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-62); }

/* ---------- section headers ---------- */

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.section-head > .stack { flex: 1 1 420px; }

/* ---------- sector accordion (home) ---------- */

.sector-list { display: flex; flex-direction: column; gap: 14px; }
.sector-row {
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: transparent;
  transition: border-color .18s ease, background .18s ease;
}
.sector-row:hover { border-color: rgba(46, 230, 255, .45); }
.sector-row[data-open="true"] { background: rgba(46, 230, 255, .07); border-color: rgba(46, 230, 255, .45); }
.sector-row__btn {
  width: 100%; background: none; border: 0; cursor: pointer;
  padding: 24px 30px; text-align: left;
  display: flex; align-items: center; gap: 16px;
  color: inherit;
}
.sector-row__n {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  border: 1px solid rgba(46, 230, 255, .3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--cyan);
}
.sector-row__btn h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(21px, 2.4vw, 30px); letter-spacing: -.03em;
  margin: 0; color: #fff; text-transform: uppercase;
}
.sector-row__panel { padding: 0 30px 24px 86px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.sector-row__panel[hidden] { display: none; }
.sector-row__panel p { font-size: 16px; line-height: 1.6; color: var(--text-70); max-width: 520px; }

@media (max-width: 560px) {
  .sector-row__btn { padding: 18px 20px; gap: 12px; }
  .sector-row__n { width: 32px; height: 32px; font-size: 11px; }
  .sector-row__panel { padding: 0 20px 20px; }
}

/* ---------- numbered section marker ---------- */

.marker { display: flex; align-items: center; gap: 14px; }
.marker__n {
  width: 44px; height: 44px; flex: none; border-radius: 50%;
  border: 1px solid rgba(46, 230, 255, .3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  color: var(--cyan); letter-spacing: -.02em;
}
.marker__label {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .24em; color: var(--cyan); text-transform: uppercase;
}

/* ---------- feature / check lists ---------- */

.check-list { display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; line-height: 1.55; color: var(--text-70); }
.check-list .tick {
  width: 22px; height: 22px; flex: none; margin-top: 2px; border-radius: 50%;
  background: rgba(46, 230, 255, .12); border: 1px solid rgba(46, 230, 255, .4);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--cyan);
}

.feature-list { display: flex; flex-direction: column; gap: 26px; margin: 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 22px 1fr; gap: 16px; align-items: start; }
.feature-list h4 {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  letter-spacing: -.02em; color: #fff; margin: 0 0 6px;
}
.feature-list p { font-size: 16px; line-height: 1.6; color: var(--text-70); }

/* definition-style rows (Finance / Utilities / …) */
.def-list { display: flex; flex-direction: column; gap: 0; margin: 0; }
.def-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
}
.def-row:last-child { border-bottom: 1px solid var(--line-soft); }
.def-row dt {
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  letter-spacing: -.025em; color: #fff;
}
.def-row dd { margin: 0; font-size: 16px; line-height: 1.6; color: var(--text-70); }

@media (max-width: 720px) {
  .def-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- supported-products matrix ---------- */

.matrix {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: rgba(230, 244, 247, .1);
  border: 1px solid rgba(230, 244, 247, .1);
  border-radius: var(--r-md); overflow: hidden;
}
.matrix div {
  background: var(--surface); height: 92px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  letter-spacing: -.01em; color: var(--text-50);
  transition: background .18s ease, color .18s ease;
  text-align: center; padding: 8px;
}
.matrix div:hover { background: var(--surface-2); color: var(--cyan); }
.matrix div.is-more { background: rgba(46, 230, 255, .1); font-weight: 800; font-size: 14px; color: var(--cyan); }

@media (max-width: 900px) { .matrix { grid-template-columns: repeat(3, 1fr); } .matrix div { height: 76px; font-size: 14px; } }
@media (max-width: 520px) { .matrix { grid-template-columns: repeat(2, 1fr); } }

/* ---------- quotes ---------- */

.quote {
  margin: 0;
  border-left: 2px solid var(--cyan);
  background: linear-gradient(90deg, rgba(46, 230, 255, .06), transparent 70%);
  padding: 30px clamp(24px, 3vw, 40px);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  display: flex; flex-direction: column; gap: 18px;
}
.quote p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 1.8vw, 24px); line-height: 1.4;
  letter-spacing: -.02em; color: #fff;
}
.quote footer { display: flex; flex-direction: column; gap: 3px; }
.quote cite {
  font-style: normal;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .2em; color: var(--cyan); text-transform: uppercase;
}
.quote small { font-size: 14px; color: var(--text-50); }

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

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: border-color .18s ease;
}
.faq details[open] { border-color: rgba(46, 230, 255, .4); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 1.6vw, 21px);
  letter-spacing: -.02em; color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono); font-size: 18px; font-weight: 500;
  color: var(--cyan); flex: none; line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq .faq-body { padding: 0 26px 24px; }
.faq .faq-body p { font-size: 16px; line-height: 1.65; color: var(--text-70); }

/* ---------- forms ---------- */

.form-panel {
  border: 1px solid rgba(46, 230, 255, .28);
  background: rgba(10, 20, 24, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(24px, 3vw, 38px) clamp(22px, 3vw, 40px) clamp(28px, 3vw, 40px);
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(46, 230, 255, .14);
}
.form-panel__title {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: #fff; text-transform: uppercase; letter-spacing: -.02em;
}

.form { display: flex; flex-direction: column; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field > label,
.fieldset-label {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: .2em; color: var(--text-50); text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
  height: 48px; width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(230, 244, 247, .16);
  background: var(--bg);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-body); font-size: 16px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { height: 104px; padding: 12px 14px; resize: vertical; line-height: 1.5; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(230, 244, 247, .3); }
.field input:hover,
.field textarea:hover { border-color: rgba(230, 244, 247, .3); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(46, 230, 255, .16);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--magenta); }
.field-error { font-size: 12.5px; color: #ff8fb4; min-height: 0; }
.field-error:empty { display: none; }

fieldset { border: 0; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
legend {
  font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff;
  padding: 0;
}
.fieldset--ruled { padding-top: 20px; border-top: 1px solid rgba(230, 244, 247, .1); }

/* Chip-style radios and checkboxes — real inputs, styled labels, so the
   form still works with JavaScript disabled. */
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.chip { position: relative; }
.chip input {
  position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer;
}
.chip span {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px; border-radius: var(--pill);
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600;
  background: transparent; color: rgba(230, 244, 247, .72);
  border: 1px solid rgba(230, 244, 247, .2);
  transition: all .18s ease;
  pointer-events: none;
}
.chip input:hover + span { border-color: rgba(46, 230, 255, .5); color: #fff; }
.chip input:checked + span { background: var(--cyan); color: var(--ink); border-color: var(--cyan); }
.chip input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 3px; }

/* honeypot — hidden from humans, left in the DOM for bots */
.hp {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* inline form status */
.form-status {
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: 15px; line-height: 1.5;
}
.form-status[hidden] { display: none; }
.form-status--ok    { background: rgba(46, 230, 255, .12); border: 1px solid rgba(46, 230, 255, .4); color: var(--cyan-soft); }
.form-status--error { background: rgba(194, 60, 114, .14); border: 1px solid rgba(194, 60, 114, .5); color: #ffb0cb; }

/* newsletter */
.subscribe-form { display: flex; gap: 12px; width: 100%; max-width: 520px; flex-wrap: wrap; }
.subscribe-form .field { flex: 1 1 240px; }
.subscribe-form .btn--submit { flex: none; padding-inline: 30px; }
@media (max-width: 480px) {
  .subscribe-form .btn--submit { width: 100%; }
}

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

.contact-split {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 5vw, 72px);
  padding-block: clamp(64px, 7vw, 104px) clamp(70px, 8vw, 110px);
}
@media (max-width: 1000px) { .contact-split { grid-template-columns: 1fr; } }

.contact-tel {
  font-family: var(--font-display);
  font-size: clamp(27px, 3.4vw, 38px); font-weight: 800;
  letter-spacing: -.035em; color: #fff;
}
.contact-tel:hover { color: var(--cyan); }
.contact-mail { font-family: var(--font-mono); font-size: 14px; letter-spacing: .06em; color: var(--cyan); word-break: break-word; }

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

.site-footer { background: var(--bg-deep); border-top: 1px solid var(--cyan-line); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-block: 64px 30px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
/* align-self stops the column flex container stretching it to full width. */
.footer-logo { height: 40px; width: auto; align-self: flex-start; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--text-50); max-width: 300px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h2 {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: .24em; color: var(--text-42); text-transform: uppercase; margin: 0;
}
.footer-col a { font-size: 14.5px; color: var(--text-70); }
.footer-col a:hover { color: var(--cyan); }
.social { display: flex; gap: 10px; margin-top: 6px; }
.social a {
  width: 36px; height: 36px; border: 1px solid rgba(230, 244, 247, .15);
  border-radius: var(--pill);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; color: rgba(230, 244, 247, .6);
}
.social a:hover { border-color: var(--cyan); color: var(--cyan); }
.footer-base {
  padding-block: 22px 34px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; color: rgba(230, 244, 247, .36);
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- simple prose pages (privacy, 404, thanks) ---------- */

.prose { max-width: 68ch; display: flex; flex-direction: column; gap: 20px; }
.prose h2 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; letter-spacing: -.03em; color: #fff; margin-top: 14px; }
.prose p, .prose li { font-size: 16.5px; line-height: 1.7; color: var(--text-70); }
.prose ul { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }

.notice {
  border: 1px solid rgba(255, 181, 69, .4);
  background: rgba(255, 181, 69, .08);
  border-radius: var(--r-md);
  padding: 18px 22px;
  font-size: 15.5px; line-height: 1.6; color: #ffd79a;
}

/* ---------- scroll reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .7s cubic-bezier(.22, .7, .3, 1) var(--reveal-delay, 0ms),
              transform .7s cubic-bezier(.22, .7, .3, 1) var(--reveal-delay, 0ms);
}
/* Without JS nothing would ever get .is-visible, so show everything. */
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- keyframes ---------- */

@keyframes bcpulse  { 0%, 100% { opacity: .25; transform: scale(.85); } 50% { opacity: 1; transform: scale(1); } }
@keyframes bcmarquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
@keyframes bcscan   { from { transform: translateY(-100%); } to { transform: translateY(1300%); } }
@keyframes bcbloom  { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes bcdrift  { from { background-position: 0 0; } to { background-position: 0 -64px; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- print ---------- */

@media print {
  .site-header, .mobile-menu, .deco, .deco-layer, .ticker, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .hero { background: #fff !important; }
  :is(.title-xl, .title-lg, .title-md, .title-sm) { color: #000; }
}


/* ---------- additions ---------- */


/* Full-bleed image panel used beside long-form copy */
.panel-img {
  width: 100%; border-radius: var(--r-card); overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
.panel-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.panel-img--tall img { aspect-ratio: 3 / 4; }
.panel-img--wide img { aspect-ratio: 16 / 9; }

.media { position: relative; }

/* Sticky column for long product/sector sections on wide screens */
.sticky-col { position: sticky; top: calc(var(--header-h) + 78px); }
@media (max-width: 1000px) { .sticky-col { position: static; } }

/* Big translucent section numeral */
.ghost-n {
  position: absolute; top: -12px; right: 0;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(90px, 14vw, 220px); line-height: 1;
  letter-spacing: -.05em; color: rgba(46, 230, 255, .05);
  pointer-events: none; user-select: none;
}

/* Archive list on the news page */
.archive-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 800px) { .archive-list { grid-template-columns: 1fr; } }
.archive-item {
  display: grid; grid-template-columns: 132px 1fr; gap: 20px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface); overflow: hidden;
  transition: border-color .18s ease;
}
.archive-item:hover { border-color: rgba(46, 230, 255, .5); }
.archive-item img { width: 132px; height: 100%; min-height: 116px; object-fit: cover; }
.archive-item__body { display: flex; flex-direction: column; gap: 7px; padding: 18px 20px 18px 0; }
.archive-item time { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: .18em; color: var(--cyan); text-transform: uppercase; }
.archive-item h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; line-height: 1.2; letter-spacing: -.02em; color: #fff; }
.archive-item p { font-size: 14px; line-height: 1.55; color: var(--text-62); }
@media (max-width: 480px) {
  .archive-item { grid-template-columns: 96px 1fr; gap: 14px; }
  .archive-item img { width: 96px; }
  .archive-item__body { padding: 14px 14px 14px 0; }
}

/* Featured post hero card */
.featured {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--r-card);
  background: var(--surface); overflow: hidden;
  transition: border-color .18s ease;
}
.featured:hover { border-color: rgba(46, 230, 255, .5); }
.featured__body { padding: clamp(28px, 3.4vw, 46px); display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.featured__body h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px, 3.6vw, 48px); line-height: .98; letter-spacing: -.04em;
  color: #fff;
  /* No text-transform: real headlines carry acronyms (ISO 9001, SOC 2)
     that lowercasing would destroy. */
}
.featured img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
@media (max-width: 860px) { .featured { grid-template-columns: 1fr; } .featured > a, .featured img { order: -1; } }

.meta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.meta-flag {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: .22em;
  color: var(--ink); background: var(--cyan); padding: 5px 12px; border-radius: var(--pill);
  text-transform: uppercase;
}

/* Utility */
.flow-gap-lg { display: flex; flex-direction: column; gap: clamp(48px, 6vw, 76px); }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }

/* ---------- floating stat pill (about hero) ---------- */

.float-stat {
  position: absolute; left: -24px; bottom: 64px;
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px 16px 20px;
  border-radius: var(--pill);
  border: 1px solid rgba(46, 230, 255, .3);
  background: rgba(6, 13, 16, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
}
.float-stat b {
  font-family: var(--font-display); font-weight: 800; font-size: 40px;
  letter-spacing: -.045em; color: var(--cyan); line-height: 1;
}
.float-stat span {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .18em;
  color: var(--text-62); line-height: 1.5; text-transform: uppercase;
}
@media (max-width: 700px) {
  .float-stat { left: 0; bottom: 0; padding: 12px 18px 12px 14px; gap: 12px; }
  .float-stat b { font-size: 30px; }
  .float-stat span { font-size: 8.5px; }
}

/* ---------- oversized ring stat (about / experience) ---------- */

.big-ring {
  border-radius: 50%; padding: 10px;
  background: linear-gradient(160deg, var(--magenta) 0%, var(--cyan) 55%, var(--cyan) 100%);
  max-width: 420px; width: 100%; margin-inline: auto;
}
.big-ring > div {
  border-radius: 50%; aspect-ratio: 1; background: var(--bg-alt);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.big-ring b {
  font-family: var(--font-display); font-size: clamp(64px, 9vw, 104px); font-weight: 800;
  letter-spacing: -.055em; line-height: .9; color: #fff;
}
.big-ring span {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .24em; color: var(--text-50);
}

/* ---------- light-section variants ---------- */

.btn--dark { background: var(--bg); color: #fff; height: 56px; padding: 0 30px; }
.btn--dark:hover { background: var(--cyan-deep); color: #fff; }

.orb--light {
  background-color: var(--light-2);
  box-shadow: 0 30px 90px rgba(5, 9, 11, .22);
}
.orb--light::after { display: none; }
.orb-ring--dark { border-color: rgba(5, 9, 11, .14); }
.orb-accent--light { border-color: rgba(194, 60, 114, .16); }

.deco--bloom-light-r {
  top: -140px; right: -160px; width: min(640px, 92vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(46, 230, 255, .3) 0%, rgba(242, 246, 247, 0) 68%);
}

/* Headline weight used on the interior pages: light word + bold accent */
.title-hero {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 4.6vw, 62px); line-height: .96;
  letter-spacing: -.042em; color: #fff;
}
.section--light .title-hero { color: var(--bg); }
.title-hero .accent { font-weight: 800; }
.title-hero .grad { font-weight: 800; }

/* The "/" separator has nothing to separate once the rule wraps. */
@media (max-width: 600px) {
  .mono-rule { gap: 6px 22px; }
  .mono-rule .sep { display: none; }
}

/* ---------- news post ---------- */

.post {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  padding-block: clamp(40px, 5vw, 72px) clamp(56px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.post__back { margin-bottom: -8px; }
.post__head { display: flex; flex-direction: column; gap: 16px; }
.post__title {
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.02;
  text-transform: none;
  letter-spacing: -.035em;
}
.post__hero {
  width: 100%; height: auto;
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.post__body { display: flex; flex-direction: column; gap: 22px; }
.post__body p { font-size: 17.5px; line-height: 1.72; color: var(--text-70); }
.post__body strong { color: #fff; font-weight: 600; }
.post__body a { text-decoration: underline; text-underline-offset: 3px; }
.post__body h2,
.post__body h3 {
  font-family: var(--font-display);
  color: #fff;
  letter-spacing: -.03em;
  margin-top: 14px;
}
.post__body h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; }
.post__body h3 { font-size: clamp(19px, 2.1vw, 24px); font-weight: 700; }
.post__body ul, .post__body ol { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.post__body li { font-size: 17px; line-height: 1.65; color: var(--text-70); }
.post__body img {
  width: 100%; height: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.post__body blockquote {
  margin: 0;
  border-left: 2px solid var(--cyan);
  padding: 6px 0 6px 22px;
  font-size: 19px; line-height: 1.6; color: #fff;
}

.post__foot {
  display: flex; flex-wrap: wrap; gap: 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 560px) {
  .post__foot .btn { width: 100%; }
}

/* news-card as a whole-card link */
a.news-card { color: inherit; }
a.news-card:hover { color: inherit; }
a.news-card h3 { color: #fff; }
