@import url("https://fonts.googleapis.com/css2?family=Archivo:wdth,wght@75,500;75,700;100,600;100,800;100,900&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

/* ──────────────────────────────────────────────
   Work to Work — Dark Futuristic Design System
   ────────────────────────────────────────────── */

:root {
  /* Backgrounds — deep dark */
  --bg: #060a10;
  --bg-deep: #04070c;
  --surface: rgba(16, 22, 32, 0.9);
  --surface-strong: #131a24;

  /* Dark panels */
  --panel-dark: #020408;
  --panel-dark-soft: #131a24;

  /* Text */
  --text: #e8edf3;
  --text-secondary: #95a0b0;
  --text-inverse: #060a10;
  --muted: #5a6577;
  --muted-inverse: rgba(232, 237, 243, 0.6);

  /* Lines & borders */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Accent — electric blue */
  --accent: #00a6ff;
  --accent-deep: #0084cc;
  --accent-soft: #4dc3ff;
  --accent-glow: rgba(0, 166, 255, 0.12);
  --teal: #00d4aa;
  --teal-glow: rgba(0, 212, 170, 0.10);

  /* Shadows — blue-tinted */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.4);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --glow-sm: 0 0 24px rgba(0, 166, 255, 0.10);
  --glow: 0 0 48px rgba(0, 166, 255, 0.14);

  /* Radii */
  --radius: 12px;
  --radius-small: 8px;

  /* Layout */
  --max: 1120px;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ──────────────────────────────────────────────
   Shell & Layout
   ────────────────────────────────────────────── */

.site-shell {
  position: relative;
  z-index: 1;
  padding-bottom: 24px;
}

.topbar,
.section,
.footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

/* ──────────────────────────────────────────────
   Navigation
   ────────────────────────────────────────────── */

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: rgba(10, 14, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm), var(--glow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: padding 250ms ease, box-shadow 250ms ease;
}

.topbar.is-scrolled {
  padding: 8px 20px;
  border-color: rgba(103, 218, 255, 0.14);
  background: rgba(4, 8, 14, 0.78);
  box-shadow: var(--shadow), 0 0 30px rgba(0, 166, 255, 0.06);
}

.topbar.is-scrolled .brand-mark {
  width: 48px;
  height: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  width: 100%;
  justify-content: center;
}

.brand-mark {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(103, 218, 255, 0.38);
  border-radius: 14px;
  background:
    radial-gradient(circle at 55% 30%, rgba(103, 218, 255, 0.34), transparent 32%),
    linear-gradient(145deg, #0d1a29, #03070d);
  box-shadow: 0 0 28px rgba(0, 166, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #f4f7fb;
  font-family: "Archivo", "IBM Plex Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-indent: 0;
  overflow: hidden;
  mix-blend-mode: normal;
  transition: width 250ms ease, height 250ms ease, box-shadow 250ms ease;
}

.brand-copy,
.section-heading,
.partner-point,
.signal-item,
.panel-block,
.proof-card,
.card,
.sector-card {
  display: grid;
}

.brand-copy {
  gap: 1px;
}

.brand-copy strong {
  display: block;
}

.brand-copy span {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Nav items */
.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}

.site-nav a,
.nav-cta,
.menu-toggle {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
}

.site-nav a {
  padding: 8px 12px;
  color: var(--muted);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  background: linear-gradient(180deg, #1ab3ff, var(--accent));
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(0, 166, 255, 0.35), 0 0 0 1px rgba(0, 166, 255, 0.15);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  border-color: var(--line-strong);
}

/* ──────────────────────────────────────────────
   Nav Dropdown
   ────────────────────────────────────────────── */

.nav-group {
  position: relative;
}

.nav-group-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  color: var(--muted);
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  background: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav-group-trigger:hover,
.nav-group-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-group-trigger svg {
  width: 10px;
  height: 10px;
  transition: transform 200ms ease;
}

.nav-group.is-open .nav-group-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 6px;
  background: #0d1117;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-lg);
  z-index: 30;
}

.nav-group.is-open .nav-dropdown {
  display: grid;
  gap: 2px;
}

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 150ms ease, color 150ms ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-dropdown a[aria-current="page"] {
  color: var(--accent);
  background: rgba(0, 166, 255, 0.06);
  font-weight: 600;
}

/* ──────────────────────────────────────────────
   Sections
   ────────────────────────────────────────────── */

.section {
  padding: var(--space-xl) 0;
}

.hero,
.page-hero {
  padding-top: var(--space-lg);
}

.section-heading {
  gap: 12px;
  max-width: 640px;
  margin-bottom: var(--space-lg);
}

/* ──────────────────────────────────────────────
   Typography
   ────────────────────────────────────────────── */

h1, h2, h3 {
  margin: 0;
  color: var(--text);
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.75rem, 5.5vw, 3.75rem);
}

h2 {
  max-width: 24ch;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.eyebrow,
.panel-label,
.sector-tag,
.breadcrumb {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb {
  margin-bottom: 14px;
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--muted);
  transition: color 180ms ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.lede {
  max-width: 52ch;
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
}

.section-lede {
  max-width: 56ch;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ──────────────────────────────────────────────
   Hero
   ────────────────────────────────────────────── */

.hero-grid,
.sector-grid,
.proof-grid,
.detail-grid,
.capability-grid,
.partner-layout,
.two-column,
.metric-strip {
  display: grid;
  gap: 20px;
}

.hero-grid {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
}

.hero-panel,
.band,
.contact-panel,
.page-hero,
.panel-block,
.proof-card,
.metric-strip > div {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-copy {
  position: relative;
  text-align: center;
}

.hero-panel,
.band,
.contact-panel,
.page-hero {
  padding: var(--space-lg) var(--space-lg);
}

.hero-copy {
  padding: var(--space-lg) 0;
}

.band,
.page-hero,
.panel-block,
.proof-card,
.metric-strip > div,
.card,
.sector-card,
.partner-point,
.partner-lead,
.partner-points,
.route-step,
.pilot-strip {
  background: var(--surface-strong);
}

.hero-copy::before,
.band::before,
.page-hero::before,
.contact-panel::before {
  display: none;
}

.hero-panel {
  display: grid;
  gap: 18px;
  border-color: var(--line);
  background: linear-gradient(180deg, #0d1117, var(--panel-dark));
  color: var(--text);
}

.hero-panel .panel-label {
  color: var(--accent);
}

.page-hero {
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm), var(--glow-sm);
  border-color: var(--line);
}

.hero-panel .lede,
.hero-panel p,
.hero-panel span,
.hero-panel li,
.hero-panel a,
.hero-panel .signal-item p,
.hero-panel .status-row span,
.hero-panel .pilot-strip span {
  color: var(--text-secondary);
}

.hero-panel a,
.contact-panel a {
  color: var(--accent-soft);
}

.hero-panel h3,
.contact-panel h2,
.contact-panel h3 {
  color: var(--text);
}

/* Hero media stack */
.hero-media-stack,
.media-split,
.media-feature-grid,
.case-study-grid {
  display: grid;
  gap: 20px;
}

.hero-media-stack {
  align-content: start;
}

.media-split,
.media-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-study-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Hero grid split for homepage */
.hero-grid-split {
  grid-template-columns: 1fr 1fr;
  max-width: none;
  align-items: center;
  gap: 40px;
}

.hero-grid-split .hero-copy {
  text-align: left;
  padding: var(--space-lg) 0;
}

.hero-grid-split .hero-copy h1 {
  margin-left: 0;
  margin-right: 0;
}

.hero-grid-split .hero-copy .lede {
  margin-left: 0;
  margin-right: 0;
}

.hero-grid-split .hero-copy .hero-actions {
  justify-content: flex-start;
}

.hero-grid-split .hero-copy .proof-badges {
  justify-content: flex-start;
}

.hero-demo {
  display: grid;
  gap: 12px;
}

.demo-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.demo-caption svg {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* ──────────────────────────────────────────────
   Proof Badges
   ────────────────────────────────────────────── */

.proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
}

.proof-badges span {
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 166, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ──────────────────────────────────────────────
   Buttons
   ────────────────────────────────────────────── */

.hero-actions,
.contact-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-copy .hero-actions {
  justify-content: center;
}

.hero-copy .lede {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy h1 {
  margin-left: auto;
  margin-right: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: none;
}

.button-primary {
  border: 1px solid var(--accent);
  color: #ffffff;
  font-weight: 600;
  background: linear-gradient(180deg, #1ab3ff, var(--accent));
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(0, 166, 255, 0.35), 0 0 0 1px rgba(0, 166, 255, 0.15);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 166, 255, 0.06);
  box-shadow: 0 0 16px rgba(0, 166, 255, 0.10);
}

/* Contact panel button overrides */
.contact-panel .button-primary {
  border-color: var(--accent);
  background: linear-gradient(180deg, #1ab3ff, var(--accent));
  color: #ffffff;
}

.contact-panel .button-primary:hover,
.contact-panel .button-primary:focus-visible {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(0, 166, 255, 0.35), 0 0 0 1px rgba(0, 166, 255, 0.15);
}

.contact-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.contact-panel .button-secondary:hover,
.contact-panel .button-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 166, 255, 0.06);
}

.nav-cta:hover .nav-cta:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: none;
}

/* ──────────────────────────────────────────────
   Cards
   ────────────────────────────────────────────── */

.hero-signals,
.stack-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero-signals li,
.card,
.sector-card,
.partner-point,
.proof-card,
.panel-block,
.route-step,
.pilot-strip {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.card:hover,
.sector-card:hover,
.proof-card:hover {
  border-color: rgba(0, 166, 255, 0.25);
  box-shadow: var(--glow-sm), 0 0 0 1px rgba(0, 166, 255, 0.08);
}

.hero-signals li {
  background: rgba(255, 255, 255, 0.02);
}

.card,
.sector-card,
.partner-point,
.proof-card,
.panel-block,
.route-step,
.pilot-strip,
.partner-lead,
.partner-points {
  background: var(--surface-strong);
}

.hero-signals strong,
.signal-index {
  color: var(--accent);
  font-weight: 700;
}

.hero-signals strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

/* Card icons */
.card-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: var(--accent);
}

/* ──────────────────────────────────────────────
   Media Cards & Case Studies
   ────────────────────────────────────────────── */

.media-card,
.case-study-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.media-card:hover,
.case-study-card:hover {
  border-color: rgba(0, 166, 255, 0.2);
  box-shadow: var(--glow-sm);
}

.media-card img,
.case-study-media img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.media-card img {
  aspect-ratio: 16 / 10;
}

.case-study-media {
  margin: 0;
  line-height: 0;
  background: #020408;
}

.case-study-media img {
  aspect-ratio: 16 / 9;
}

.media-card figcaption,
.case-study-copy {
  display: grid;
  gap: 6px;
  padding: 16px 20px 20px;
}

.media-label,
.case-study-meta {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.media-card strong,
.case-study-copy h3 {
  font-size: 1.15rem;
  color: var(--text);
}

.media-card span:last-child,
.case-study-copy p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.case-study-copy p {
  margin: 0;
}

.case-study-copy .text-link {
  margin-top: 4px;
}

.media-card-feature img {
  aspect-ratio: 16 / 9;
}

.media-card-wide img {
  aspect-ratio: 16 / 8;
}

/* ──────────────────────────────────────────────
   Bands / alternating sections
   ────────────────────────────────────────────── */

.band {
  background: var(--surface-strong);
  box-shadow: none;
  border: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: max(calc(50vw - var(--max) / 2), 24px);
  padding-right: max(calc(50vw - var(--max) / 2), 24px);
}

.band-contrast {
  background: #0f1520;
}

/* ──────────────────────────────────────────────
   Grid layouts
   ────────────────────────────────────────────── */

.sector-grid,
.proof-grid,
.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-layout,
.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.route-step {
  display: grid;
  gap: 12px;
}

.route-step strong,
.pilot-strip strong {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 600;
}

.pilot-strip {
  display: grid;
  gap: 14px;
}

.pilot-strip div {
  display: grid;
  gap: 6px;
}

.pilot-strip span,
.pilot-strip a {
  line-height: 1.62;
}

.partner-lead,
.partner-points {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.partner-points {
  display: grid;
  gap: 14px;
}

.partner-point {
  gap: 8px;
}

.partner-point strong,
.metric-strip strong {
  font-size: 1rem;
}

.metric-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-strip > div {
  padding: 20px;
  display: grid;
  gap: 8px;
}

/* ──────────────────────────────────────────────
   Tech showcase cards
   ────────────────────────────────────────────── */

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

.tech-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.tech-card:hover {
  border-color: rgba(0, 166, 255, 0.2);
  box-shadow: var(--glow-sm);
}

.tech-card figure {
  margin: 0;
  line-height: 0;
  background: #020408;
}

.tech-card figure svg {
  width: 100%;
  height: auto;
  display: block;
}

.tech-card-body {
  padding: 18px 20px 22px;
  display: grid;
  gap: 6px;
}

.tech-card-body h3 {
  font-size: 1.1rem;
}

.tech-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────
   Status / Signal components
   ────────────────────────────────────────────── */

.status-card,
.signal-board {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.status-row span {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.9rem;
  line-height: 1.45;
}

.signal-item {
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.signal-item + .signal-item {
  margin-top: 16px;
}

.signal-index {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.stack-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.stack-list li {
  padding-left: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  position: relative;
}

.stack-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* ──────────────────────────────────────────────
   Links
   ────────────────────────────────────────────── */

.text-link,
.inline-link {
  color: var(--accent);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-soft);
}

.inline-link {
  font-weight: 500;
  transition: color 180ms ease;
}

.inline-link:hover {
  color: var(--accent-soft);
}

/* ──────────────────────────────────────────────
   Body copy rhythm
   ────────────────────────────────────────────── */

.contact-copy,
.card p,
.proof-card p,
.sector-card p,
.partner-lead p,
.partner-point span,
.footer p,
.status-row span,
.signal-item p,
.metric-strip span,
.route-step p {
  line-height: 1.65;
}

.card p,
.proof-card p,
.sector-card p,
.partner-lead p,
.partner-point span,
.footer p,
.metric-strip span,
.route-step p,
.contact-copy {
  color: var(--muted);
}

/* ──────────────────────────────────────────────
   Contact Panel (CTA)
   ────────────────────────────────────────────── */

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 32px;
  border-color: rgba(0, 166, 255, 0.12);
  background: linear-gradient(135deg, #0d1628, #091320);
  box-shadow: var(--glow), inset 0 1px 0 rgba(0, 166, 255, 0.06);
}

.contact-panel .eyebrow {
  color: var(--accent);
}

.contact-panel .contact-copy,
.contact-panel p {
  color: var(--text-secondary);
}

/* ──────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────── */

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 0;
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
}

.footer strong {
  font-size: 0.95rem;
}

.footer p {
  font-size: 0.88rem;
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.contact-copy a,
.footer-links a:hover {
  color: var(--accent);
}

.footer-meta {
  max-width: 30ch;
  text-align: right;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ──────────────────────────────────────────────
   Matterport Embeds
   ────────────────────────────────────────────── */

.matterport-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--glow);
}

.matterport-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.matterport-wrap-full {
  aspect-ratio: 16 / 9;
}

.matterport-featured {
  display: grid;
  gap: 16px;
}

.scan-demo-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 0.85rem;
}

.scan-demo-hints strong {
  color: var(--text);
  font-size: inherit;
}

/* ──────────────────────────────────────────────
   Reveal Animations
   ────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────
   Responsive — 1180px
   ────────────────────────────────────────────── */

@media (max-width: 1180px) {
  .topbar {
    align-items: center;
  }

  .hero-grid,
  .hero-grid-split,
  .sector-grid,
  .proof-grid,
  .detail-grid,
  .case-study-grid,
  .media-feature-grid,
  .media-split,
  .route-grid,
  .partner-layout,
  .two-column,
  .metric-strip,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .tech-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-panel {
    align-items: start;
  }

  .hero-signals {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────────
   Responsive — 920px
   ────────────────────────────────────────────── */

@media (max-width: 920px) {
  :root {
    --space-xl: 60px;
    --space-lg: 36px;
  }

  .brand-copy {
    display: none;
  }

  .brand-mark {
    width: 300px;
    height: 108px;
  }

  .topbar {
    position: sticky;
    /* relative context for absolute toggle */
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 16px;
    right: 16px;
  }

  .site-nav {
    width: 100%;
    padding: 10px 0 0;
    justify-content: center;
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .site-nav a,
  .nav-group-trigger {
    min-height: 44px;
    padding: 12px 16px;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 16px;
  }
}

/* ──────────────────────────────────────────────
   Responsive — 760px
   ────────────────────────────────────────────── */

@media (max-width: 760px) {
  :root {
    --space-xl: 48px;
    --space-lg: 28px;
  }

  .topbar,
  .section,
  .footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .tech-showcase-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    top: 10px;
    padding: 12px 16px;
    margin-top: 10px;
  }

  .brand-mark {
    width: 260px;
    height: 94px;
  }

  .hero-copy,
  .hero-panel,
  .band,
  .contact-panel,
  .page-hero {
    padding: var(--space-md);
  }

  h1 {
    max-width: none;
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  h2 {
    max-width: none;
  }

  .footer,
  .topbar {
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }
}

/* ──────────────────────────────────────────────
   Responsive — 480px
   ────────────────────────────────────────────── */

@media (max-width: 480px) {
  :root {
    --space-xl: 36px;
    --space-lg: 24px;
    --space-md: 20px;
  }

  .brand-mark {
    width: 220px;
    height: 80px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .hero-copy,
  .hero-panel,
  .band,
  .contact-panel,
  .page-hero {
    padding: 20px 16px;
  }

  .topbar,
  .section,
  .footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .hero-actions,
  .contact-actions,
  .proof-badges {
    flex-direction: column;
  }
}

/* ──────────────────────────────────────────────
   Floating Contact CTA
   ────────────────────────────────────────────── */

.wa-float {
  /* Disabled until Work to Work has a dedicated WhatsApp Business number. */
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  align-items: center;
  gap: 8px;
  padding: 0 18px 0 14px;
  height: 48px;
  border-radius: 24px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
  white-space: nowrap;
}

.wa-float:hover,
.wa-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.wa-float svg {
  flex: none;
  width: 22px;
  height: 22px;
}

.wa-float-label {
  display: inline;
}

@media (max-width: 480px) {
  .wa-float {
    bottom: 20px;
    right: 20px;
    padding: 0 14px;
    width: 48px;
    height: 48px;
    justify-content: center;
  }

  .wa-float-label {
    display: none;
  }
}

/* ──────────────────────────────────────────────
   Reduced Motion
   ────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ──────────────────────────────────────────────
   Premium Motion-Inspired Launch Layer
   ────────────────────────────────────────────── */

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: 0;
  pointer-events: none;
  filter: blur(10px);
}

body::before {
  top: -18vh;
  left: 8vw;
  width: 56vw;
  height: 56vw;
  background: radial-gradient(circle, rgba(0, 166, 255, 0.13), transparent 58%);
}

body::after {
  right: -16vw;
  bottom: 8vh;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.09), transparent 58%);
}

h1,
h2,
h3,
.brand-copy strong,
.button,
.nav-cta,
.menu-toggle,
.site-nav a,
.nav-group-trigger {
  font-family: "Archivo", "IBM Plex Sans", sans-serif;
}

.topbar {
  width: min(calc(100% - 48px), 1120px);
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 12px 14px;
  border-radius: 18px;
}

.brand {
  width: auto;
  justify-content: flex-start;
  margin-right: auto;
}

.brand-mark,
.topbar.is-scrolled .brand-mark {
  width: 48px;
  height: 48px;
  background:
    radial-gradient(circle at 55% 30%, rgba(103, 218, 255, 0.34), transparent 32%),
    linear-gradient(145deg, #0d1a29, #03070d);
  mix-blend-mode: normal;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.site-nav {
  gap: 4px;
}

.site-nav a,
.nav-group-trigger {
  color: #9da8b7;
}

.nav-cta {
  border-radius: 999px;
  padding: 0 22px;
}

.section {
  position: relative;
  z-index: 1;
}

.premium-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 34px;
  min-height: auto;
  align-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 58px;
  padding-bottom: 72px;
}

.premium-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0;
  text-align: left;
}

.premium-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.6rem, 6.4vw, 6.35rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  word-spacing: 0.08em;
}

.premium-hero .lede {
  max-width: 48ch;
  margin: 22px 0 0;
  color: #b5bfcb;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.5;
}

.premium-hero .hero-actions {
  justify-content: flex-start;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-orb-one {
  top: 22%;
  left: 10%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 166, 255, 0.25), transparent 68%);
  filter: blur(8px);
}

.hero-orb-two {
  right: 7%;
  bottom: 16%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.16), transparent 68%);
  filter: blur(12px);
}

.hero-showcase,
.proof-wall,
.sector-stage-grid,
.risk-gallery,
.process-film-grid,
.sector-premium-hero,
.sector-mini-grid {
  display: grid;
  gap: 20px;
}

.hero-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.showcase-card,
.proof-story,
.sector-stage-card,
.risk-gallery article,
.process-film,
.process-film-grid a,
.sector-premium-hero,
.sector-visual-main,
.sector-mini-grid img {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(19, 26, 36, 0.92), rgba(8, 12, 19, 0.94));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.showcase-card,
.proof-story {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-radius: 28px;
}

.showcase-card-large {
  grid-column: 1 / -1;
  min-height: 310px;
}

.showcase-card img,
.proof-story img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.78;
  transform: scale(1.02);
}

.showcase-card::after,
.proof-story::after,
.sector-visual-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(3, 7, 12, 0.9)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 64px);
  pointer-events: none;
}

.showcase-card figcaption,
.proof-story span,
.proof-story strong {
  position: absolute;
  z-index: 2;
}

.showcase-card figcaption {
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 5px;
}

.showcase-card span,
.proof-story span,
.offer-tile span,
.risk-gallery span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-card strong,
.proof-story strong {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.15;
}

.offer-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.offer-tile {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(0, 166, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(19,26,36,0.92), rgba(8,12,19,0.96));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.offer-tile:hover,
.offer-tile:focus-visible,
.sector-stage-card:hover,
.sector-stage-card:focus-visible,
.process-film-grid a:hover,
.process-film-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 255, 0.42);
  box-shadow: 0 24px 70px rgba(0, 166, 255, 0.13);
}

.offer-tile strong {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1;
}

.offer-tile em {
  color: var(--text-secondary);
  font-style: normal;
  line-height: 1.45;
}

.editorial-proof .section-heading,
.sector-stage .section-heading {
  max-width: 780px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.proof-wall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-story {
  display: block;
  min-height: 390px;
}

.proof-story span {
  left: 22px;
  bottom: 80px;
}

.proof-story strong {
  left: 22px;
  right: 22px;
  bottom: 26px;
  font-size: 1.4rem;
}

.sector-stage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-stage-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 26px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent),
    radial-gradient(circle at 25% 15%, rgba(0,166,255,0.18), transparent 35%),
    #0b111b;
}

.sector-stage-card span {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sector-stage-card strong {
  max-width: 12ch;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 0.95;
}

.sector-premium-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  margin-top: 48px;
  padding: 44px;
  border-radius: 34px;
}

.sector-premium-copy h1 {
  max-width: 11.5ch;
  font-size: clamp(3.1rem, 5.6vw, 5.25rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.sector-premium-copy .lede {
  max-width: 36ch;
  margin-left: 0;
  margin-right: 0;
}

.sector-premium-copy .hero-actions {
  justify-content: flex-start;
}

.sector-visual-stack {
  position: relative;
  display: grid;
  gap: 16px;
}

.sector-visual-main,
.sector-mini-grid img {
  width: 100%;
  object-fit: cover;
}

.sector-visual-main {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  aspect-ratio: 16 / 10;
}

.sector-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sector-mini-grid img {
  height: 180px;
  border-radius: 22px;
}

.risk-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 28px;
}

.risk-gallery article {
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 26px;
  border-radius: 26px;
}

.risk-gallery strong {
  font-size: 2rem;
  line-height: 1;
}

.risk-gallery p {
  margin: 0;
  color: var(--text-secondary);
}

.process-film {
  padding: 34px;
  border-radius: 30px;
}

.process-film-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-film-grid a {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 24px;
  border-radius: 22px;
}

.process-film-grid strong {
  font-size: 1.65rem;
}

.process-film-grid span {
  color: var(--text-secondary);
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .topbar {
    flex-wrap: wrap;
  }

  .brand {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .hero-showcase,
  .proof-wall,
  .sector-stage-grid,
  .offer-strip,
  .premium-hero,
  .sector-premium-hero,
  .risk-gallery,
  .process-film-grid {
    grid-template-columns: 1fr;
  }

  .premium-hero-copy {
    margin: 0 auto;
    text-align: center;
  }

  .premium-hero h1,
  .premium-hero .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .premium-hero .hero-actions {
    justify-content: center;
  }

  .sector-premium-hero {
    padding: 30px;
  }
}

@media (max-width: 760px) {
  .topbar {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    justify-content: flex-start;
  }

  .brand-mark,
  .topbar.is-scrolled .brand-mark {
    width: 166px;
    height: 48px;
  }

  .premium-hero {
    min-height: auto;
    padding-top: 58px;
  }

  .premium-hero h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .showcase-card,
  .showcase-card-large,
  .proof-story {
    min-height: 310px;
  }

  .sector-premium-copy h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .sector-visual-main {
    min-height: 300px;
  }
}

/* ──────────────────────────────────────────────
   Testimonials & Reviews
   ────────────────────────────────────────────── */

.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  display: grid;
  gap: 14px;
  padding: 28px 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.testimonial-card:hover {
  border-color: rgba(0, 166, 255, 0.15);
  box-shadow: var(--glow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 1rem;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: normal;
}

.testimonial-author {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.testimonial-author strong {
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ──────────────────────────────────────────────
   FAQ Section
   ────────────────────────────────────────────── */

.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 800px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  margin: 0;
  border: none;
  background: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  line-height: 1.4;
  transition: background 150ms ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--muted);
  transition: transform 200ms ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ──────────────────────────────────────────────
   Process Steps (numbered)
   ────────────────────────────────────────────── */

.process-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  counter-reset: process-step;
}

@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  position: relative;
  padding: 28px 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: process-step;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.process-step:hover {
  border-color: rgba(0, 166, 255, 0.2);
  box-shadow: var(--glow-sm);
}

.process-step::before {
  content: counter(process-step, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────
   Deliverables Grid
   ────────────────────────────────────────────── */

.deliverable-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .deliverable-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .deliverable-grid { grid-template-columns: repeat(3, 1fr); }
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.deliverable-item:hover {
  border-color: rgba(0, 166, 255, 0.2);
  box-shadow: var(--glow-sm);
}

.deliverable-item .icon-box {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 166, 255, 0.08);
}

.deliverable-item .icon-box svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.deliverable-item .deliverable-copy {
  display: grid;
  gap: 4px;
}

.deliverable-item .deliverable-copy h3 {
  font-size: 1.05rem;
}

.deliverable-item .deliverable-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────
   Stat Strip
   ────────────────────────────────────────────── */

.stat-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 24px;
  background: linear-gradient(135deg, #0a1020, #081018);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--glow);
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-item span {
  display: block;
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ──────────────────────────────────────────────
   Site type cards (TwinView page)
   ────────────────────────────────────────────── */

.site-type-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 760px) {
  .site-type-grid { grid-template-columns: 1fr; }
}

.site-type-card {
  padding: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.site-type-card:hover {
  border-color: rgba(0, 166, 255, 0.2);
  box-shadow: var(--glow-sm);
}

.site-type-card h3 {
  margin-bottom: 6px;
}

.site-type-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────
   Safety + AI Differentiator Section
   ────────────────────────────────────────────── */

.differentiator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 760px) {
  .differentiator-grid { grid-template-columns: 1fr; }
}

.differentiator-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.differentiator-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.differentiator-card .diff-copy {
  padding: 20px 24px;
  display: grid;
  gap: 6px;
}

.differentiator-card .diff-copy h3 {
  font-size: 1.1rem;
}

.differentiator-card .diff-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────
   Logo Repair
   ────────────────────────────────────────────── */

.brand {
  width: auto !important;
  justify-content: flex-start !important;
  gap: 12px !important;
}

.brand-mark,
.topbar.is-scrolled .brand-mark {
  display: inline-grid !important;
  place-items: center !important;
  width: 48px !important;
  height: 48px !important;
  border: 1px solid rgba(103, 218, 255, 0.38) !important;
  border-radius: 14px !important;
  background:
    radial-gradient(circle at 52% 28%, rgba(103, 218, 255, 0.42), transparent 28%),
    linear-gradient(145deg, #0d1a29, #03070d) !important;
  box-shadow: 0 0 28px rgba(0, 166, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  color: #f4f7fb !important;
  font-family: "Archivo", "IBM Plex Sans", sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.05em !important;
  line-height: 1 !important;
  text-indent: 0 !important;
  text-transform: uppercase !important;
  mix-blend-mode: normal !important;
}

.brand-copy {
  display: grid !important;
  gap: 1px !important;
}

.brand-copy strong {
  display: block !important;
  color: #f4f7fb !important;
  font-family: "Archivo", "IBM Plex Sans", sans-serif !important;
  font-size: 0.93rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.05 !important;
  text-transform: uppercase !important;
}

.brand-copy span {
  display: block !important;
  color: #8f9aaa !important;
  font-size: 0.74rem !important;
  line-height: 1.35 !important;
}

@media (max-width: 520px) {
  .brand-copy span {
    display: none !important;
  }

  .brand-copy strong {
    font-size: 0.82rem !important;
    letter-spacing: 0.05em !important;
  }
}

/* ──────────────────────────────────────────────
   Approved Attached Logo + Motion
   ────────────────────────────────────────────── */

.brand-mark,
.topbar.is-scrolled .brand-mark {
  position: relative !important;
  display: block !important;
  width: 162px !important;
  height: 84px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent url("/assets/brand/work-to-work-logo-transparent.png") center / contain no-repeat !important;
  box-shadow: none !important;
  color: transparent !important;
  font-size: 0 !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  animation: attachedLogoPulse 5.4s ease-in-out infinite !important;
  mix-blend-mode: screen !important;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 22% 32%;
  background: radial-gradient(circle, rgba(0, 166, 255, 0.62), transparent 58%);
  filter: blur(16px);
  opacity: 0.42;
  animation: attachedLogoGlow 2.8s ease-in-out infinite;
}

.brand-copy {
  display: none !important;
}

@keyframes attachedLogoPulse {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(0, 166, 255, 0));
    transform: translateY(0);
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(0, 166, 255, 0.36));
    transform: translateY(-1px);
  }
}

@keyframes attachedLogoGlow {
  0%, 100% {
    opacity: 0.28;
    transform: scaleX(0.82);
  }
  50% {
    opacity: 0.7;
    transform: scaleX(1.12);
  }
}

.logo-lab-hero {
  max-width: 920px;
  text-align: center;
  padding-top: 44px;
  padding-bottom: 12px;
}

.logo-lab-hero h1 {
  max-width: 16ch;
  margin: 0 auto;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-transform: uppercase;
}

.logo-lab-hero .lede {
  margin-left: auto;
  margin-right: auto;
}

.logo-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 0;
}

.logo-motion-card {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 166, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(19, 26, 36, 0.94), rgba(5, 8, 13, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.animated-logo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  overflow: hidden;
  border-radius: 24px;
  background: #020407;
}

.animated-logo img {
  position: relative;
  z-index: 1;
  width: min(92%, 620px);
  height: auto;
  display: block;
}

.motion-pulse img {
  animation: logoOptionPulse 4.6s ease-in-out infinite;
}

.motion-pulse::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 46%;
  border-radius: 999px;
  background: rgba(0, 166, 255, 0.34);
  filter: blur(38px);
  animation: logoOptionHalo 3.2s ease-in-out infinite;
}

.motion-sweep::before {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -45%;
  width: 28%;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(103, 218, 255, 0.18), rgba(255, 255, 255, 0.44), transparent);
  transform: skewX(-18deg);
  animation: logoOptionSweep 3.8s ease-in-out infinite;
}

.motion-sweep img {
  animation: logoOptionFloat 6s ease-in-out infinite;
}

@keyframes logoOptionPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(0, 166, 255, 0));
  }
  50% {
    transform: scale(1.018);
    filter: drop-shadow(0 0 26px rgba(0, 166, 255, 0.34));
  }
}

@keyframes logoOptionHalo {
  0%, 100% {
    opacity: 0.28;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.78;
    transform: scale(1.12);
  }
}

@keyframes logoOptionSweep {
  0%, 32% {
    left: -45%;
    opacity: 0;
  }
  44% {
    opacity: 1;
  }
  68%, 100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes logoOptionFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 760px) {
  .brand-mark,
  .topbar.is-scrolled .brand-mark {
    width: 134px !important;
    height: 70px !important;
  }

  .logo-option-grid {
    grid-template-columns: 1fr;
  }

  .animated-logo {
    min-height: 250px;
  }
}

/* ──────────────────────────────────────────────
   Cinematic Video Heroes + Live Logo Moments
   ────────────────────────────────────────────── */

.video-hero {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 166, 255, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(4, 7, 12, 0.96), rgba(9, 18, 29, 0.92) 48%, rgba(4, 7, 12, 0.98)) !important;
}

.video-hero > :not(.video-hero-media):not(.video-hero-overlay):not(.video-motion-toggle):not(.hero-orb) {
  position: relative;
  z-index: 2;
}

.video-hero .hero-orb {
  z-index: 1;
}

.video-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.92) contrast(1.08) brightness(0.76);
  transform: scale(1.02);
}

.video-hero[data-video-tone="quiet"] .video-hero-media {
  opacity: 0.24;
  filter: saturate(0.82) contrast(1.02) brightness(0.68);
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 5, 9, 0.92), rgba(2, 5, 9, 0.6) 42%, rgba(2, 5, 9, 0.84)),
    radial-gradient(circle at 72% 22%, rgba(0, 166, 255, 0.26), transparent 32%),
    radial-gradient(circle at 30% 80%, rgba(217, 102, 43, 0.16), transparent 30%);
}

.video-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(2, 5, 9, 0.84));
}

.page-hero.video-hero,
.hero.section.video-hero {
  min-height: min(740px, calc(100vh - 128px));
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.sector-premium-hero.video-hero,
.premium-hero.video-hero {
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
}

.video-motion-toggle {
  position: absolute;
  right: clamp(18px, 3vw, 36px);
  bottom: clamp(18px, 3vw, 32px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 9, 14, 0.72);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  color: #f4f7fb;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.video-motion-toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #67daff;
  box-shadow: 0 0 16px rgba(103, 218, 255, 0.85);
}

.video-motion-toggle[aria-pressed="true"]::before {
  background: #d9662b;
  box-shadow: 0 0 14px rgba(217, 102, 43, 0.72);
}

.video-motion-toggle:hover,
.video-motion-toggle:focus-visible {
  border-color: rgba(103, 218, 255, 0.52);
  color: #67daff;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .video-hero-media {
    opacity: 0.3;
  }

  .video-motion-toggle {
    right: 16px;
    bottom: 16px;
    padding: 8px 11px;
    font-size: 0.68rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .brand-mark,
  .brand-mark::after,
  .motion-pulse img,
  .motion-pulse::after,
  .motion-sweep::before,
  .motion-sweep img {
    animation: none !important;
  }

  .video-hero-media {
    display: none;
  }
}
