/* ============================================================
   REBUS NOVUS — Main Theme Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---- CSS Variables ---- */
:root {
  --rn-orange:  #E8744A;
  --rn-teal:    #2BB8B8;
  --rn-navy:    #1E3A5F;
  --ink:        #0B1B2B;
  --ink-2:      #122638;
  --ink-3:      #1A2E44;
  --charcoal:   #2A3A4D;
  --line:       #20364E;
  --line-soft:  rgba(255,255,255,0.08);
  --paper:      #F4F5F7;
  --paper-2:    #E9ECF1;
  --muted:      #8FA0B5;
  --muted-2:    #6F8298;
  --c-green:    #4FB37A;
  --c-cyan:     #2BB8B8;
  --c-teal:     #2A8B8B;
  --c-amber:    #E0A23A;
  --c-orange:   #E8744A;
  --c-blue:     #3E7BC8;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #E6EDF5;
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }

/* ---- Layout ---- */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 48px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6, .display, .eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.005em;
  margin: 0;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--rn-teal);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--rn-orange);
  margin-right: 10px;
  transform: translateY(-2px);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  text-decoration: none;
}
.btn .arr { width: 14px; height: 10px; }
.btn-primary { background: var(--rn-orange); color: #fff; }
.btn-primary:hover { background: #d6663d; }
.btn-ghost { background: transparent; color: #E6EDF5; border-color: var(--line); }
.btn-ghost:hover { border-color: var(--rn-teal); color: #fff; }
.btn-outline { background: transparent; color: var(--rn-teal); border-color: var(--rn-teal); }
.btn-outline:hover { background: rgba(43,184,184,0.1); }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--line); }
.btn-dark:hover { border-color: var(--rn-teal); }

/* ============================================================
   TOP STRIP
   ============================================================ */
.top-strip {
  background: #050E18;
  border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.top-strip .wrap { display: flex; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; }
.top-strip .ts-left { display: flex; gap: 28px; }
.top-strip .ts-right { display: flex; gap: 28px; }
.top-strip b { color: #cfd9e6; font-weight: 500; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,27,43,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site-header .wrap {
  display: flex; align-items: center; gap: 40px;
  padding-top: 18px; padding-bottom: 18px;
}
.site-logo { height: 44px; display: flex; align-items: center; }
.site-logo a { display: flex; align-items: center; }
.site-logo img { height: 40px; width: auto; display: block; }
/* WordPress custom_logo output */
.site-logo .custom-logo-link { display: flex; align-items: center; }
.site-logo .custom-logo { height: 40px; width: auto; display: block; }
.site-logo span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px;
  color: #fff; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.site-logo span em { color: var(--rn-orange); font-style: normal; }

/* Primary Nav */
.primary-nav { display: flex; gap: 28px; margin-left: 24px; }
.primary-nav ul { display: flex; gap: 28px; }
.primary-nav ul li { position: relative; }
.primary-nav ul li a {
  font-size: 14px; font-weight: 500;
  color: #cfd9e6;
  padding: 8px 0;
  position: relative;
  display: flex; align-items: center; gap: 6px;
}
.primary-nav ul li.current-menu-item > a,
.primary-nav ul li.current-page-ancestor > a,
.primary-nav ul li.current-menu-parent > a { color: #fff; }
.primary-nav ul li.current-menu-item::after,
.primary-nav ul li.current-page-ancestor::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -19px;
  height: 2px; background: var(--rn-orange);
}
.primary-nav ul li a:hover { color: #fff; }

/* "★ NEW" badge — add class "menu-badge-new" to any menu item via Appearance → Menus → CSS Classes */
.primary-nav ul li.menu-badge-new > a::after {
  content: '★ NEW';
  color: var(--rn-orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-left: 2px;
}

/* Dropdown */
.primary-nav ul li ul.sub-menu {
  position: absolute; top: calc(100% + 20px); left: 0;
  background: #0B1B2B;
  border: 1px solid var(--line);
  min-width: 220px;
  display: none;
  flex-direction: column;
  padding: 8px 0;
  z-index: 200;
}
.primary-nav ul li:hover > ul.sub-menu { display: flex; }
.primary-nav ul li ul.sub-menu li a {
  padding: 10px 20px;
  font-size: 13px;
  border-left: 2px solid transparent;
  white-space: nowrap;
}
.primary-nav ul li ul.sub-menu li a:hover {
  background: rgba(43,184,184,0.06);
  border-left-color: var(--rn-teal);
  color: #fff;
}

/* Nav actions */
.nav-actions { margin-left: auto; display: flex; gap: 12px; align-items: center; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none; border: 1px solid var(--line);
  color: #fff; cursor: pointer;
  padding: 8px 12px;
  font-size: 18px; line-height: 1;
}

/* ============================================================
   SECTIONS — Common
   ============================================================ */
section { padding: 68px 0; border-bottom: 1px solid var(--line); position: relative; }
.sec-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 64px; align-items: end; }
.sec-head h2 {
  font-size: 56px; line-height: 1; font-weight: 700;
  color: #fff; text-transform: uppercase;
  margin-top: 16px;
}
.sec-head .sec-right p { font-size: 16px; color: #B5C3D5; max-width: 480px; margin: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(43,184,184,0.10), transparent 70%),
    radial-gradient(900px 500px at 10% 90%, rgba(232,116,74,0.08), transparent 70%),
    linear-gradient(180deg, #0B1B2B 0%, #0E2236 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-section .wrap { padding-top: 28px; /*padding-bottom: 80px;*/ position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.hero-section h1 {
  font-size: 78px; line-height: 0.95; font-weight: 700;
  color: #fff; text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 18px 0 22px;
}
.hero-section h1 .accent { color: var(--rn-orange); }
.hero-section h1 .accent-2 { color: var(--rn-teal); }
.hero-section .lede {
  font-size: 18px; line-height: 1.55; color: #B5C3D5;
  max-width: 560px; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero stack visual */
.hero-stack {
  position: relative;
  background: linear-gradient(160deg, #0F2438 0%, #0A1A29 100%);
  border: 1px solid var(--line);
  padding: 32px;
  aspect-ratio: 1/1;
  display: flex; flex-direction: column; gap: 14px;
}
.hero-stack::before {
  content: 'STACK.LAYERS // 06';
  position: absolute; top: 14px; right: 18px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--muted-2); letter-spacing: 0.18em;
}
.stack-corner { position: absolute; width: 14px; height: 14px; border: 1px solid var(--rn-teal); }
.stack-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.stack-corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.stack-corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.stack-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.stack-layer {
  flex: 1;
  display: grid; grid-template-columns: 50px 1fr auto;
  align-items: center; gap: 16px;
  padding: 0 16px;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--accent, var(--rn-teal));
  transition: all .2s ease;
}
.stack-layer:hover { background: rgba(43,184,184,0.06); }
.stack-layer .layer-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted-2);
}
.stack-layer .layer-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 18px; letter-spacing: 0.02em; color: #fff; text-transform: uppercase; }
.stack-layer .layer-vendors { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; font-family: 'JetBrains Mono', monospace; }
.stack-layer .layer-ico { width: 22px; height: 22px; color: var(--accent, var(--rn-teal)); }
.stack-layer .layer-ico svg { width: 22px; height: 22px; }

/* Hero meta */
.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 72px;
}
.hero-meta > div { padding: 28px 0; }
.hero-meta .meta-key {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--rn-teal); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 8px;
}
.hero-meta .meta-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 600; color: #fff;
  letter-spacing: 0.01em;
}
.hero-meta .meta-val small {
  font-size: 14px; color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400; margin-left: 8px;
}

/* ============================================================
   THREE PILLARS
   ============================================================ */
.pillars-section { background: linear-gradient(180deg, #0B1B2B 0%, #0E2236 100%); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
  padding: 32px;
  border: 1px solid var(--line);
  transition: all .2s ease;
  cursor: pointer;
}
.pillar-card:hover { transform: translateY(-4px); }
.pillar-card.blue { background: #e6f1fb; border-color: #b5d4f4; }
.pillar-card.blue h3 { color: #185fa5; }
.pillar-card.blue li { color: #2c2c2a; }
.pillar-card.green { background: #e1f5ee; border-color: #9fe1cb; }
.pillar-card.green h3 { color: #0f6e56; }
.pillar-card.green li { color: #2c2c2a; }
.pillar-card.orange { background: #faece7; border-color: #f5c4b3; }
.pillar-card.orange h3 { color: #d85a30; }
.pillar-card.orange li { color: #2c2c2a; }
.pillar-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 20px; text-transform: uppercase; margin: 0 0 16px;
}
.pillar-card ul { list-style: none; padding: 0; margin: 0; }
.pillar-card li {
  font-size: 13px; padding: 4px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pillar-card li:last-child { border-bottom: none; }

/* ============================================================
   JOURNEY FLOW
   ============================================================ */
.journey-section { background: #0E2236; }
.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.journey-step {
  padding: 32px;
  border: 1px solid var(--line);
  position: relative;
}
.journey-step:not(:last-child) { border-right: none; }
.journey-step .step-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 700;
  color: var(--rn-teal); opacity: 0.6; margin-bottom: 8px;
}
.journey-step h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 24px; color: #fff; text-transform: uppercase; margin: 0 0 12px;
}
.journey-step p { font-size: 14px; color: #8fa0b5; margin: 0; line-height: 1.5; }
.journey-step.step-blue { background: #185fa5; }
.journey-step.step-blue .step-num { color: #b5d4f4; opacity: 1; }
.journey-step.step-green { background: #0f6e56; }
.journey-step.step-green .step-num { color: #9fe1cb; opacity: 1; }

/* ============================================================
   INDUSTRY SECTORS
   ============================================================ */
.industries-section { background: #0B1B2B; }
.industries-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.industry-card {
  padding: 24px 16px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  text-align: center;
  transition: all .2s ease;
  cursor: pointer;
  text-decoration: none;
}
.industry-card:hover { background: #fff; transform: translateY(-2px); }
.industry-card .ind-icon { display: block; font-size: 24px; margin-bottom: 8px; }
.industry-card h4 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 14px; color: #2c2c2a; text-transform: uppercase; margin: 0;
}

/* ============================================================
   SOLUTIONS TEASER
   ============================================================ */
.solutions-teaser-section {
  background: linear-gradient(180deg, #0E2236 0%, #0B1B2B 100%);
}
.teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.teaser-col { padding: 32px; border: 1px solid var(--line); }
.teaser-col.blue-col { background: #e6f1fb; }
.teaser-col.green-col { background: #e1f5ee; }
.teaser-col h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 24px; text-transform: uppercase; margin: 0 0 16px;
}
.teaser-col.blue-col h3 { color: #185fa5; }
.teaser-col.green-col h3 { color: #0f6e56; }
.teaser-col p { font-size: 14px; color: #2c2c2a; margin: 0 0 20px; line-height: 1.5; }
.teaser-col .teaser-link {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none;
}
.teaser-col.blue-col .teaser-link { color: #185fa5; }
.teaser-col.green-col .teaser-link { color: #0f6e56; }
.teaser-col .teaser-link:hover { text-decoration: underline; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--ink); overflow: hidden; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; transition: opacity .3s ease; }
.test-card {
  background: linear-gradient(160deg, #0F2438 0%, #0A1A29 100%);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex; flex-direction: column;
  min-height: 320px; position: relative;
}
.test-card .quote-icon { color: var(--rn-teal); opacity: 0.25; font-size: 48px; line-height: 1; font-family: 'Georgia', serif; margin-bottom: -8px; }
.test-card blockquote {
  margin: 12px 0 0; padding: 0;
  font-size: 14px; line-height: 1.6; color: #B5C3D5; flex: 1;
}
.test-card blockquote strong { color: #E6EDF5; font-weight: 500; }
.test-card .attribution {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
}
.test-card .attribution .attr-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 17px; color: #fff; letter-spacing: 0.01em; text-transform: uppercase;
}
.test-card .attribution .attr-role {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: 0.08em;
}
.test-card .test-tag {
  position: absolute; top: 16px; right: 18px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--rn-orange); letter-spacing: 0.14em;
  background: rgba(232,116,74,0.1);
  padding: 4px 10px;
  border: 1px solid rgba(232,116,74,0.25);
}
.test-controls { display: flex; justify-content: center; gap: 12px; margin-top: 36px; align-items: center; }
.test-dots { display: flex; gap: 10px; }
.test-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none; cursor: pointer; transition: all .2s ease; padding: 0;
}
.test-dot:hover { background: rgba(255,255,255,0.25); }
.test-dot.active { background: var(--rn-teal); width: 28px; border-radius: 5px; cursor: default; }
.test-nav-btn {
  appearance: none; border: 1px solid var(--line);
  background: transparent; color: var(--muted);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s ease;
  font-size: 16px; line-height: 1;
}
.test-nav-btn:hover { border-color: var(--rn-teal); color: #fff; }

/* ============================================================
   PRODUCT CATEGORIES CAROUSEL
   ============================================================ */
.categories-section { background: var(--ink-2); position: relative; overflow: hidden; }
.categories-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(43,184,184,0.04), transparent 70%),
    radial-gradient(ellipse 500px 300px at 80% 20%, rgba(232,116,74,0.03), transparent 70%);
  pointer-events: none; z-index: 0;
}
.categories-section .wrap { position: relative; z-index: 1; }
.cat-carousel-wrap { position: relative; margin: 0 -8px; }
.cat-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scroll-behavior: smooth;
  padding: 8px 8px 16px;
  scrollbar-width: none;
}
.cat-track::-webkit-scrollbar { display: none; }
.cat-track.dragging { scroll-behavior: auto; cursor: grabbing; }
.cat-track.dragging .cat-card { pointer-events: none; }
.cat-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0; scroll-snap-align: start;
  background: linear-gradient(160deg, rgba(15,36,56,0.85) 0%, rgba(10,26,41,0.95) 100%);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: all .3s cubic-bezier(.3,.7,.4,1);
  position: relative;
  min-height: 340px;
  backdrop-filter: blur(6px);
}
.cat-card::before {
  content: ''; position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(43,184,184,0.08), transparent 40%, rgba(232,116,74,0.08));
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(43,184,184,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 20px rgba(43,184,184,0.06);
}
.cat-ico {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  background: rgba(43,184,184,0.04);
  color: var(--rn-teal);
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cat-card:hover .cat-ico {
  border-color: var(--rn-teal);
  background: rgba(43,184,184,0.1);
  box-shadow: 0 0 20px rgba(43,184,184,0.1);
}
.cat-ico svg { width: 26px; height: 26px; }
.cat-num {
  position: absolute; top: 16px; right: 20px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--muted-2); letter-spacing: 0.16em;
}
.cat-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 24px; color: #fff; text-transform: uppercase;
  letter-spacing: 0.015em; line-height: 1.05; margin: 0 0 12px;
}
.cat-card p { font-size: 13px; color: #8fa0b5; line-height: 1.55; margin: 0 0 auto; flex: 1; }
.cat-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 13px; color: var(--rn-teal);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
  transition: color .2s ease; text-decoration: none;
}
.cat-btn svg { width: 14px; height: 10px; transition: transform .2s ease; }
.cat-card:hover .cat-btn { color: #fff; }
.cat-card:hover .cat-btn svg { transform: translateX(4px); }
.cat-arrows { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.cat-arrow {
  appearance: none; border: 1px solid var(--line);
  background: transparent; color: var(--muted);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s ease;
  font-size: 20px; line-height: 1;
}
.cat-arrow:hover { border-color: var(--rn-teal); color: #fff; background: rgba(43,184,184,0.04); }
.cat-arrow:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.cat-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.cat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none; cursor: pointer; transition: all .3s ease; padding: 0;
}
.cat-dot.active { background: var(--rn-teal); width: 24px; border-radius: 4px; cursor: default; }
.cat-scroll-hint {
  text-align: center; margin-top: 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--muted-2); letter-spacing: 0.16em;
  opacity: 0.6;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: #1a1a2e; padding: 72px 0; border-bottom: 1px solid var(--line); }
.cta-band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.cta-band h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 28px; color: #fff; text-transform: uppercase; margin: 0 0 12px;
}
.cta-band p { font-size: 14px; margin: 0 0 24px; line-height: 1.5; }
.cta-band .cta-left p { color: #b5d4f4; }
.cta-band .cta-right p { color: #9fe1cb; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section {
  background:
    linear-gradient(135deg, rgba(232,116,74,0.08) 0%, rgba(43,184,184,0.06) 100%),
    var(--ink);
  position: relative; overflow: hidden;
}
.final-cta-section::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43,184,184,0.18), transparent 70%);
}
.cta-card {
  border: 1px solid var(--line);
  background: rgba(5,14,24,0.6);
  padding: 80px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
  position: relative; z-index: 2;
}
.cta-card h2 {
  font-size: 64px; line-height: 0.98; color: #fff;
  font-weight: 700; text-transform: uppercase; margin-top: 18px;
}
.cta-card h2 .accent { color: var(--rn-orange); }
.cta-card .cta-desc { font-size: 16px; color: #B5C3D5; margin: 20px 0 0; max-width: 460px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; padding-top: 24px; }
.cta-actions .btn { justify-content: space-between; width: 100%; padding: 18px 24px; font-size: 14px; }
.cta-actions .ghost-row {
  display: flex; gap: 20px; margin-top: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: 0.12em;
}
.cta-actions .ghost-row b { color: #fff; font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050E18;
  padding: 60px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .footer-logo { height: auto; margin-bottom: 20px; }
.footer-brand .footer-logo a,
.footer-brand .footer-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: #fff;
  border-radius: 2px;
}
.footer-brand .footer-logo img,
.footer-brand .footer-logo .custom-logo { height: 34px; width: auto; display: block; }
.footer-brand .footer-logo span {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 20px; color: #fff; text-transform: uppercase;
}
.footer-brand .footer-logo span em { color: var(--rn-orange); font-style: normal; }
.footer-brand p { line-height: 1.6; }
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 14px; color: #fff; text-transform: uppercase;
  letter-spacing: 0.16em; margin: 0 0 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--rn-teal); }
.footer-base {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em;
}
.footer-base .wrap {
  display: flex; justify-content: space-between; gap: 24px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg, #0B1B2B 0%, #0E2236 100%);
  padding: 80px 0; border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: 64px; line-height: 0.95; font-weight: 700;
  color: #fff; text-transform: uppercase;
  margin: 16px 0 20px;
}
.page-hero h1 .accent { color: var(--rn-orange); }
.page-hero .lede { font-size: 18px; color: #B5C3D5; max-width: 680px; line-height: 1.55; }

/* ── Contact hero 2-col layout ───────────────────────────────── */
.cnt-page-hero { padding: 72px 0; }
.cnt-hero-grid {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 56px;
  align-items: center;
}
.cnt-hero-left .lede { max-width: 520px; }
.cnt-signal-svg { width: 100%; height: auto; display: block; }

@keyframes cnt-pulse-o  { 0%,100%{opacity:1}   50%{opacity:0.35} }
@keyframes cnt-pulse-o2 { 0%,100%{opacity:0.9} 50%{opacity:0.5}  }
@keyframes cnt-pulse-g  { 0%,100%{opacity:0.9} 50%{opacity:0.25} }
.cnt-led-o  { animation: cnt-pulse-o  2.2s ease-in-out infinite; }
.cnt-led-o2 { animation: cnt-pulse-o2 1.6s ease-in-out infinite 0.4s; }
.cnt-led-g  { animation: cnt-pulse-g  1.4s ease-in-out infinite; }

@media (max-width: 960px) {
  .cnt-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .cnt-hero-right { display: none; }
}

/* ── About hero 2-col layout ─────────────────────────────────── */
.abt-page-hero { padding: 72px 0; }
.abt-hero-grid {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 56px;
  align-items: center;
}
.abt-hero-left .lede { max-width: 520px; }
.abt-card-svg { width: 100%; height: auto; display: block; }

@keyframes abt-pulse-o {
  0%, 100% { opacity: 1; }   50% { opacity: 0.4; }
}
@keyframes abt-pulse-g {
  0%, 100% { opacity: 0.9; } 50% { opacity: 0.3; }
}
@keyframes abt-pulse-t {
  0%, 100% { opacity: 1; }   50% { opacity: 0.5; }
}
.abt-led-o { animation: abt-pulse-o 2.8s ease-in-out infinite; }
.abt-led-g { animation: abt-pulse-g 1.8s ease-in-out infinite; }
.abt-led-t { animation: abt-pulse-t 3.2s ease-in-out infinite 0.6s; }

@media (max-width: 960px) {
  .abt-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .abt-hero-right { display: none; }
}

/* ── Industries hero 2-col layout ───────────────────────────── */
.ind-page-hero { padding: 72px 0; }
.ind-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
}
.ind-hero-left .lede { max-width: 520px; }
.ind-sector-svg { width: 100%; height: auto; display: block; }

@keyframes ind-led-pulse-a {
  0%, 100% { opacity: 0.85; r: 3; }
  50%       { opacity: 0.3;  r: 2; }
}
@keyframes ind-led-pulse-b {
  0%, 100% { opacity: 0.85; r: 3; }
  50%       { opacity: 0.3;  r: 2; }
}
.ind-led-b1 { animation: ind-led-pulse-a 2.6s ease-in-out infinite; }
.ind-led-b2 { animation: ind-led-pulse-b 3.3s ease-in-out infinite 0.8s; }

@media (max-width: 960px) {
  .ind-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .ind-hero-right { display: none; }
}

/* ── Products hero 2-col layout ──────────────────────────────── */
.prd-page-hero { padding: 72px 0; }
.prd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 481px;
  gap: 48px;
  align-items: center;
}
.prd-hero-left .lede { max-width: 520px; }
.prd-hero-svg { width: 100%; height: auto; display: block; }

/* LED pulse animations */
@keyframes prd-pulse-teal {
  0%, 100% { opacity: 0.9; } 50% { opacity: 0.35; }
}
@keyframes prd-pulse-orange {
  0%, 100% { opacity: 0.9; } 50% { opacity: 0.4; }
}
.prd-led-teal   { animation: prd-pulse-teal   2.4s ease-in-out infinite; }
.prd-led-orange { animation: prd-pulse-orange 3.1s ease-in-out infinite; }

@media (max-width: 960px) {
  .prd-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .prd-hero-right { display: none; }
}

/* ── Services hero 2-col layout ──────────────────────────────── */
.srv-page-hero { padding: 72px 0; }
.srv-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
}
.srv-hero-left .lede { max-width: 520px; }

/* ── Capability Scope Panel ───────────────────────────────────── */
.srv-cap-panel {
  position: relative;
  background: rgba(5,14,24,0.7);
  border: 1px solid var(--line);
  padding: 16px 20px 12px;
  backdrop-filter: blur(4px);
}
/* Corner brackets */
.srv-cap-corner {
  position: absolute; width: 8px; height: 8px;
  border-color: var(--rn-teal); border-style: solid;
}
.srv-cap-corner.tl { top: -1px; left: -1px;  border-width: 2px 0 0 2px; }
.srv-cap-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.srv-cap-corner.bl { bottom: -1px; left: -1px;  border-width: 0 0 2px 2px; }
.srv-cap-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* Panel header */
.srv-cap-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.srv-cap-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rn-teal);
}
.srv-cap-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--rn-orange);
  box-shadow: 0 0 5px rgba(232,116,74,0.6);
}

/* Tier rows */
.srv-cap-tier {
  margin-bottom: 8px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.srv-cap-tier:last-of-type { border-bottom: none; margin-bottom: 0; }
.srv-cap-tier-head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.srv-cap-tier-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--rn-orange);
  letter-spacing: 0.06em; flex-shrink: 0;
}
.srv-cap-tier-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; color: #fff;
  letter-spacing: 0.03em; flex: 1;
}
.srv-cap-tier-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: var(--muted);
  background: rgba(255,255,255,0.05);
  padding: 1px 5px; border-radius: 2px;
  letter-spacing: 0.04em;
}
.srv-cap-tier-count::before { content: '×'; margin-right: 2px; }

/* Items list */
.srv-cap-items {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 3px;
}
.srv-cap-items li {
  font-size: 11px; color: #8FA0B5;
  font-family: 'Inter', sans-serif;
  display: flex; align-items: center; gap: 7px;
  line-height: 1.3;
}
.srv-cap-items li::before {
  content: ''; display: inline-block;
  width: 10px; height: 1px;
  background: var(--rn-teal); flex-shrink: 0;
}
.srv-cap-items li.srv-cap-more {
  color: var(--rn-teal); font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.srv-cap-items li.srv-cap-more::before { background: var(--rn-orange); }

/* Footer stats */
.srv-cap-footer {
  margin-top: 10px; padding-top: 8px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: var(--muted);
  letter-spacing: 0.07em;
}
.srv-cap-footer b { color: #E6EDF5; font-weight: 500; }
.srv-cap-sep { color: var(--line); }

/* Responsive */
@media (max-width: 960px) {
  .srv-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .srv-cap-panel { display: none; }
}

.services-tabs {
  border-bottom: 1px solid var(--line);
  background: #050E18;
  position: sticky; top: 73px; z-index: 50;
}
.services-tabs .wrap { display: flex; gap: 0; }
.services-tab {
  padding: 18px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .15s ease; background: none; border-top: none; border-left: none; border-right: none;
}
.services-tab:hover { color: #fff; }
.services-tab.active { color: #fff; border-bottom-color: var(--rn-orange); }
.services-tabs .wrap .services-tab:first-child { padding-left: 0; }

.services-block { padding: 80px 0; border-bottom: 1px solid var(--line); }
.services-block-title {
  font-size: 11px; font-family: 'JetBrains Mono', monospace;
  color: var(--rn-teal); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 48px;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card {
  background: #0E2236;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .15s ease;
}
a.service-card { text-decoration: none; color: inherit; cursor: pointer; }
.service-card:hover { background: #122c43; }
a.service-card:hover h3 { color: var(--rn-teal); }
.service-card-arrow {
  margin-top: auto; padding-top: 20px;
  display: flex; align-items: center;
  color: var(--rn-teal); opacity: 0;
  transition: opacity .15s ease;
}
.service-card-arrow .arr { width: 14px; height: 10px; flex-shrink: 0; }
a.service-card:hover .service-card-arrow { opacity: 1; }

/* Service Detail Page */
.service-detail-hero { padding-bottom: 72px; }
.service-detail-cat-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--rn-teal); letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(43,184,184,0.35); padding: 5px 12px;
  margin-bottom: 20px;
}
.service-detail-section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start;
}
.service-detail-body .eyebrow { margin-bottom: 24px; }
.service-detail-content { color: #B5C3D5; font-size: 16px; line-height: 1.75; }
.service-detail-content p { margin-bottom: 20px; }
.service-sidebar-box {
  border: 1px solid var(--line); padding: 24px; margin-bottom: 16px;
}
.service-sidebar-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--rn-teal); letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 16px;
}
.service-included-list { list-style: none; padding: 0; margin: 0; }
.service-included-list li {
  font-size: 14px; color: #B5C3D5; padding: 9px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.4;
}
.service-included-list li::before {
  content: ''; display: inline-block;
  width: 16px; height: 1px; background: var(--rn-teal);
  flex-shrink: 0; margin-top: 8px;
}
.service-included-list li:last-child { border-bottom: none; }
.service-sidebar-cta p { font-size: 14px; color: #B5C3D5; margin-bottom: 16px; }
.service-sidebar-cta .btn { display: flex; width: 100%; justify-content: center; }
.service-sidebar-back { margin-top: 8px; }
.service-sidebar-back a { font-size: 13px; color: var(--muted); }
.service-sidebar-back a:hover { color: var(--rn-teal); }
.service-related-section { padding: 64px 0; border-bottom: 1px solid var(--line); }
.service-related-section .eyebrow { margin-bottom: 32px; }
.service-related-grid { grid-template-columns: repeat(3,1fr); }
@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-related-grid { grid-template-columns: 1fr; }
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 22px; color: #fff; text-transform: uppercase;
  letter-spacing: 0.01em;
}
.service-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.service-card li {
  font-size: 13px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 8px;
}
.service-card li::before {
  content: '';
  display: inline-block; width: 16px; height: 1px;
  background: var(--rn-teal); flex-shrink: 0;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.products-section.light-bg { background: var(--paper); color: var(--ink); }
.products-section.light-bg .sec-head h2 { color: var(--ink); }
.products-section.light-bg .sec-head .sec-right p { color: #3F526A; }
.products-section.light-bg .eyebrow { color: var(--rn-orange); }

.vendor-group-title {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--rn-teal); letter-spacing: 0.2em;
  text-transform: uppercase; margin: 48px 0 24px;
  display: flex; align-items: center; gap: 16px;
}
.vendor-group-title::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}

.vendor-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: #D6DCE5; border: 1px solid #D6DCE5;
}
.vendor-card {
  background: #fff; padding: 30px 28px 24px;
  display: flex; flex-direction: column;
  min-height: 240px; position: relative;
  cursor: pointer; transition: background .15s ease;
}
a.vendor-card { text-decoration: none; color: inherit; }
.vendor-card:hover { background: #F0F3F6; }
a.vendor-card:hover .vendor-arrow { background: var(--rn-orange); border-color: var(--rn-orange); color: #fff; }
.vendor-logo {
  height: 36px; display: flex; align-items: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 26px; letter-spacing: -0.005em; color: var(--ink);
  text-transform: uppercase;
}
.vendor-logo .logo-acc { color: var(--rn-teal); margin-left: 4px; font-weight: 400; }
.vendor-role {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--muted-2); letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 18px; margin-bottom: 10px;
}
.vendor-card h4 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 20px; color: var(--ink); line-height: 1.1;
  text-transform: uppercase; margin-bottom: 12px;
}
.vendor-card p { font-size: 13px; color: #56697F; margin: 0; line-height: 1.5; }
.vendor-arrow {
  position: absolute; top: 28px; right: 24px;
  width: 26px; height: 26px;
  border: 1px solid #D6DCE5;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.vendor-card.vendor-cta {
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
}
.vendor-card.vendor-cta h4 { color: #fff; font-size: 24px; }
.vendor-card.vendor-cta p { color: #B5C3D5; }

/* Vendor Detail Page */
.vendor-hero .vendor-hero-inner { max-width: 720px; }
.vendor-detail-logo {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 52px; letter-spacing: -0.01em; color: #fff;
  text-transform: uppercase; line-height: 1; margin-bottom: 12px;
}
.vendor-detail-logo .logo-acc { color: var(--rn-teal); font-weight: 400; margin-left: 4px; }
.vendor-detail-role {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--rn-teal); letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 20px;
}
.vendor-detail-section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.vendor-detail-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start;
}
.vendor-detail-body .eyebrow { margin-bottom: 24px; }
.vendor-detail-content { color: #B5C3D5; font-size: 16px; line-height: 1.75; }
.vendor-detail-content p { margin-bottom: 20px; }
.vendor-sidebar-box {
  border: 1px solid var(--line); padding: 24px; margin-bottom: 16px;
}
.vendor-sidebar-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--rn-teal); letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 14px;
}
.vendor-products-list { list-style: none; padding: 0; margin: 0; }
.vendor-products-list li {
  font-size: 14px; color: #B5C3D5; padding: 8px 0;
  border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px;
}
.vendor-products-list li::before {
  content: ''; display: inline-block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--rn-orange); flex-shrink: 0;
}
.vendor-products-list li:last-child { border-bottom: none; }
.vendor-sidebar-value { font-size: 14px; color: #B5C3D5; }
.vendor-website-link {
  font-size: 14px; color: var(--rn-teal); word-break: break-all;
}
.vendor-website-link:hover { color: #fff; }
.vendor-sidebar-cta {
  border: 1px solid var(--line); padding: 24px;
  background: rgba(5,14,24,0.6);
}
.vendor-sidebar-cta p { font-size: 14px; color: #B5C3D5; margin-bottom: 16px; }
@media (max-width: 900px) {
  .vendor-detail-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Software solutions */
.software-section { padding: 80px 0; border-bottom: 1px solid var(--line); background: var(--ink-2); }
.software-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 32px;
}
.software-group {
  border: 1px solid var(--line);
  background: rgba(15,36,56,0.6);
  padding: 28px;
}
.software-group h4 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 18px; color: var(--rn-teal); text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.software-group ul { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; }
.software-group li {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--muted); letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 10px;
}
.software-group li::before {
  content: '';
  width: 8px; height: 1px; background: var(--rn-orange); flex-shrink: 0;
}
.software-cta-bar {
  text-align: center; padding: 32px;
  border: 1px solid var(--line);
  background: rgba(5,14,24,0.6);
}
.software-cta-bar p { color: #B5C3D5; margin-bottom: 16px; }

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */
.industries-page-section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.ind-table { border: 1px solid var(--line); background: rgba(11,27,43,0.85); }
.ind-row {
  display: grid; grid-template-columns: 280px 1fr 1.2fr 60px;
  gap: 0; border-bottom: 1px solid var(--line); align-items: stretch;
}
.ind-row:last-child { border-bottom: none; }
.ind-row.ind-head {
  background: #050E18;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase;
}
.ind-row.ind-head > div { padding: 18px 24px; }
.ind-row > div { padding: 28px 24px; border-right: 1px solid var(--line); }
.ind-row > div:last-child { border-right: none; }
.ind-industry { display: flex; align-items: center; gap: 16px; }
.ind-ic {
  width: 36px; height: 36px;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  color: var(--rn-teal); font-size: 18px; flex-shrink: 0;
}
.ind-industry h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px;
  color: #fff; text-transform: uppercase; font-weight: 600; margin: 0;
}
.ind-needs { color: #B5C3D5; font-size: 14px; line-height: 1.5; }
.ind-portfolio { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.pill {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: #fff; letter-spacing: 0.06em;
  padding: 5px 10px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.pill.pill-pri { border-color: var(--rn-teal); color: var(--rn-teal); }
.ind-go { display: flex; align-items: center; justify-content: center; color: var(--muted-2); }

/* Industries sector cards grid */
.ind-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.ind-card {
  background: #0E2236; padding: 36px 32px;
  transition: background .15s ease;
  display: flex; flex-direction: column;
}
.ind-card:hover { background: #112a40; }
.ind-card-icon { font-size: 32px; margin-bottom: 16px; }
.ind-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 24px;
  font-weight: 600; color: #fff; text-transform: uppercase;
  margin: 0 0 12px;
}
.ind-card p { font-size: 14px; color: #8fa0b5; line-height: 1.6; margin: 0 0 20px; flex: 1; }
.ind-card-link {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  color: var(--rn-teal); text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: auto;
}
.ind-card-link:hover { color: #fff; }
@media (max-width: 900px) {
  .ind-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ind-cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.about-content h2 {
  font-size: 56px; line-height: 1; font-weight: 700;
  color: #fff; text-transform: uppercase; margin: 16px 0 24px;
}
.about-content p { font-size: 15px; color: #B5C3D5; line-height: 1.7; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-stat {
  border: 1px solid var(--line);
  background: rgba(15,36,56,0.6);
  padding: 24px;
}
.about-stat .stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px; font-weight: 700; color: var(--rn-orange);
  line-height: 1; margin-bottom: 8px;
}
.about-stat .stat-label { font-size: 13px; color: var(--muted); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; }

/* Team cards */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.team-card {
  border: 1px solid var(--line);
  background: rgba(15,36,56,0.6);
  padding: 28px;
}
.team-card .team-avatar {
  width: 64px; height: 64px;
  background: var(--rn-teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 700; color: #fff;
  margin-bottom: 16px;
}
.team-card h4 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 20px; color: #fff; text-transform: uppercase; margin: 0 0 4px;
}
.team-card .team-title {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--rn-orange); letter-spacing: 0.1em; margin-bottom: 12px;
}
.team-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; }
.contact-form-wrap { }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item h4 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 18px; color: var(--rn-teal); text-transform: uppercase;
  letter-spacing: 0.05em; margin: 0 0 8px;
}
.contact-info-item p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* Form styles */
.rn-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(15,36,56,0.8);
  border: 1px solid var(--line);
  color: #E6EDF5;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rn-teal); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: #0B1B2B; }
.form-msg {
  padding: 12px 16px;
  font-size: 14px;
  display: none;
}
.form-msg.success { background: rgba(79,179,122,0.1); border: 1px solid rgba(79,179,122,0.3); color: #4FB37A; display: block; }
.form-msg.error { background: rgba(232,116,74,0.1); border: 1px solid rgba(232,116,74,0.3); color: var(--rn-orange); display: block; }

/* reCAPTCHA alignment */
.g-recaptcha { margin: 8px 0; }

/* ============================================================
   BLOG / INSIGHTS PAGE
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  border: 1px solid var(--line);
  background: rgba(15,36,56,0.6);
  display: flex; flex-direction: column;
  transition: background .15s ease;
}
.blog-card:hover { background: #112a40; }
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, #0E2236, #091827);
  position: relative; overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.blog-cat {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--rn-teal); letter-spacing: 0.18em; text-transform: uppercase;
}
.blog-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 22px; color: #fff; text-transform: uppercase; line-height: 1.1; margin: 0;
}
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--rn-teal); }
.blog-card p { font-size: 13px; color: var(--muted); flex: 1; line-height: 1.55; }
.blog-meta {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted-2); letter-spacing: 0.08em;
  padding-top: 16px; border-top: 1px solid var(--line);
}

/* ============================================================
   GENERIC PAGE
   ============================================================ */
.page-content { padding: 80px 0; }
.page-content-body {
  max-width: 860px;
  color: #B5C3D5; font-size: 15px; line-height: 1.7;
}
.page-content-body h2 { font-size: 40px; color: #fff; margin: 40px 0 16px; text-transform: uppercase; }
.page-content-body h3 { font-size: 28px; color: var(--rn-teal); margin: 32px 0 12px; text-transform: uppercase; }
.page-content-body p { margin-bottom: 16px; }
.page-content-body ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.page-content-body a { color: var(--rn-teal); }
.page-content-body a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .wrap { padding: 0 32px; }
  .hero-section h1 { font-size: 64px; }
  .cta-card h2 { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stack { max-width: 480px; }
  .cat-card { flex: 0 0 calc((100% - 20px) / 2); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vendor-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { grid-template-columns: 1fr; padding: 48px; gap: 40px; }
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .software-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .ind-row { grid-template-columns: 200px 1fr; }
  .ind-row .ind-portfolio,
  .ind-row .ind-go { display: none; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  section { padding: 72px 0; }
  .hero-section .wrap { padding-top: 40px; padding-bottom: 60px; }
  .hero-section h1 { font-size: 52px; }
  .sec-head h2 { font-size: 40px; }
  .top-strip .ts-left { display: none; }
  .primary-nav { display: none; }
  .mobile-toggle { display: block; }
  .pillars-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .teaser-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .cta-band-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-base .wrap { flex-direction: column; gap: 8px; }
  .services-tabs { overflow-x: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .software-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cat-card { flex: 0 0 calc(100% - 8px); }
}

@media (max-width: 480px) {
  .journey-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { padding: 28px; }
  .hero-section h1 { font-size: 44px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,27,43,0.98);
  z-index: 200;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: 1px solid var(--line);
  color: #fff; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px;
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.mobile-nav ul li a {
  display: block; padding: 16px 0;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 24px; color: #E6EDF5; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.02em;
}
.mobile-nav ul li a:hover { color: var(--rn-teal); }
.mobile-nav ul li.menu-badge-new > a::after {
  content: '★ NEW';
  color: var(--rn-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-left: 8px;
}
.mobile-nav .mobile-cta { margin-top: 32px; }

/* ============================================================
   ADMIN BAR OFFSET
   ============================================================ */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ============================================================
   WP SPECIFICS
   ============================================================ */
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
}
.aligncenter { display: block; margin: 0 auto; }
.alignright { float: right; margin-left: 24px; }
.alignleft { float: left; margin-right: 24px; }
