/* =============================================================
   Vektrion Cybersecurity — Global Stylesheet
   Design System: Navy/Teal, Fraunces + DM Sans + IBM Plex Mono
   ============================================================= */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --navy:         #070E14;
  --navy-light:   #0A1628;
  --navy-mid:     #0D1E35;
  --teal:         #00C9A7;
  --teal-dark:    #008F78;
  --blue:         #00C9A7;
  --muted:        #6A9080;
  --text:         #E8F4F0;
  --white:        #E8F4F0;
  --footer-bg:    #050B10;
  --error:        #ff4d6a;
  --success:      #00C9A7;
  --vk-border:    #112240;
  --vk-border-light: #1A3355;

  --font-heading: 'Syne', sans-serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'Space Mono', monospace;

  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;

  --max-width:        1200px;
  --nav-height:       72px;
  --border-radius:    8px;
  --border-radius-sm: 4px;
  --border-radius-lg: 16px;

  --transition:      0.2s ease;
  --transition-med:  0.35s ease;

  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md:  0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg:  0 8px 40px rgba(0, 0, 0, 0.5);

  /* Semantic surface/text aliases used by component styles */
  --bg:           #0a1628;
  --surface:      #0f1f3d;
  --border:       rgba(255, 255, 255, 0.1);
  --text-primary: #e8edf5;
  --text-secondary: #c8d6e8;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: #0a1628;
  color: #e8edf5;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--white);
}

ul {
  list-style: none;
}

/* ── Typography ───────────────────────────────────────────── */
h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
}

h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
}

h5 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

p {
  color: #c8d6e8;
  line-height: 1.7;
}

/* ── Mono Labels / Section Tags ───────────────────────────── */
.mono-label,
.hero-eyebrow,
.service-detail-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: #00d4aa;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--muted);
}

/* ── Scroll Animations ────────────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.animate-in.delay-4 { transition-delay: 0.4s; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: #00d4aa;
  color: #0a1628;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
}

.btn-primary:hover {
  background: #00b38f;
  color: #0a1628;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 212, 170, 0.35);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: #00d4aa;
  color: #00d4aa;
  background: rgba(0, 212, 170, 0.06);
}

.btn-navy {
  background: #0a1628;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-navy:hover {
  border-color: #00d4aa;
  color: #00d4aa;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition-med), box-shadow var(--transition-med),
              border-bottom var(--transition-med);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-logo:hover {
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: #c8d6e8;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.nav-cta {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  background: #00d4aa !important;
  color: #0a1628 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 4px !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: #00b38f !important;
  color: #0a1628 !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* ── Hamburger ────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-med);
  transform-origin: center;
}

body.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Drawer ────────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-med), visibility var(--transition-med);
}

.nav-drawer.open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-drawer a:hover {
  color: var(--teal);
}

.nav-drawer .btn-primary {
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  background-color: var(--navy);
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-orb,
.hero-orb-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(0,153,204,0.12) 0%, transparent 70%);
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 70%);
}

.hero > .container {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-content-wrap {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  flex-shrink: 0;
}

.hero-text {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: #00d4aa;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.hero h1 .highlight {
  color: #00d4aa;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: #8a9ab5;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Hero Stats Bar ───────────────────────────────────────── */
.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.hero-stat .stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: #8a9ab5;
  line-height: 1.3;
}

/* ── Platform Bar ─────────────────────────────────────────── */
.platform-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.platform-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.platform-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  color: #8a9ab5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.platform-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.platform-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: #00d4aa;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.06em;
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  color: #8a9ab5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item::before {
  content: '✓';
  color: #00d4aa;
  font-weight: 700;
}

/* ── Company Stats ────────────────────────────────────────── */
.company-stats {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3rem 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #00d4aa;
  line-height: 1;
}

.stat-item .stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: #8a9ab5;
  line-height: 1.4;
}

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background-color: #0a1628;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,212,170,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,212,170,0.04) 40px);
  background-size: 40px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.15rem;
  color: #8a9ab5;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Services Grid ────────────────────────────────────────── */
.services-section {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color var(--transition-med), background var(--transition-med),
              transform var(--transition-med);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
}

.service-card:hover {
  border-color: rgba(0, 212, 170, 0.3);
  background: rgba(0, 212, 170, 0.04);
  transform: translateY(-3px);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  color: #00d4aa;
  flex-shrink: 0;
}

.service-card-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  color: #00d4aa;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.service-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #8a9ab5;
  line-height: 1.6;
  flex: 1;
}

.service-card-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  color: #00d4aa;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
  text-decoration: none;
  margin-top: auto;
}

.service-card:hover .service-card-link {
  gap: 0.7rem;
}

/* ── Service Detail Pages ─────────────────────────────────── */
.service-detail {
  padding: 5rem 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-detail-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: #00d4aa;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 1rem;
}

.service-value-prop {
  background: rgba(0, 212, 170, 0.06);
  border-left: 3px solid #00d4aa;
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
}

.service-value-prop p {
  font-size: 0.95rem;
  color: #c8d6e8;
  line-height: 1.6;
}

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #c8d6e8;
  line-height: 1.5;
}

.included-list li::before {
  content: '✓';
  color: #00d4aa;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.service-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 4rem 0;
}

/* ── Why Section ──────────────────────────────────────────── */
.why-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  padding: 1.5rem;
  border-left: 2px solid rgba(0, 212, 170, 0.25);
  padding-left: 1.5rem;
}

.why-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: #00d4aa;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  display: block;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.why-card p {
  font-size: 0.88rem;
  color: #8a9ab5;
  line-height: 1.6;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section {
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #c8d6e8;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-stars {
  color: #00d4aa;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1rem;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.testimonial-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: #8a9ab5;
  letter-spacing: 0.06em;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  padding: 5rem 0;
  background: rgba(0, 212, 170, 0.03);
  border-top: 1px solid rgba(0, 212, 170, 0.1);
  border-bottom: 1px solid rgba(0, 212, 170, 0.1);
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-inner p {
  font-size: 1rem;
  color: #8a9ab5;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Team / Founder Section ───────────────────────────────── */
.founder-section {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition-med), transform var(--transition-med);
}

.team-card:hover {
  border-color: rgba(0, 212, 170, 0.25);
  transform: translateY(-3px);
}

.team-monogram {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.12);
  border: 2px solid rgba(0, 212, 170, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #00d4aa;
  letter-spacing: 0.05em;
}

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.team-card-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  color: #00d4aa;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.82rem;
  color: #8a9ab5;
  line-height: 1.6;
}

/* ── Values / How We Work ─────────────────────────────────── */
.values-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.value-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(0, 212, 170, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.value-card p {
  font-size: 0.88rem;
  color: #8a9ab5;
  line-height: 1.6;
}

/* ── About Mission ────────────────────────────────────────── */
.about-mission {
  padding: 5rem 0;
}

.mission-content {
  max-width: 720px;
  margin: 0 auto;
}

.mission-content p {
  font-size: 1.05rem;
  color: #c8d6e8;
  line-height: 1.8;
}

/* ── Contact Section ──────────────────────────────────────── */
.contact-section {
  padding: 4rem 0 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2.5rem;
}

/* ── Form Elements ────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #c8d6e8;
}

.form-label .required {
  color: var(--teal);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #e8edf5;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  background: rgba(0, 212, 170, 0.04);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--error);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9ab5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: #0f1f3d;
  color: #e8edf5;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.field-error {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--error);
  display: none;
  line-height: 1.4;
}

.field-error.visible {
  display: block;
}

/* ── Form Success State ───────────────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-success.visible {
  display: flex !important;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.12);
  border: 2px solid rgba(0, 212, 170, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.success-icon svg {
  width: 28px;
  height: 28px;
  stroke: #00d4aa;
}

.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.form-success p {
  font-size: 0.9rem;
  color: #8a9ab5;
}

/* ── Contact Info Column ──────────────────────────────────── */
.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  font-weight: 500;
  color: #00d4aa;
  flex-shrink: 0;
}

.contact-step-content h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.contact-step-content p {
  font-size: 0.85rem;
  color: #8a9ab5;
  line-height: 1.5;
}

.contact-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 2rem 0;
}

.contact-email-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-email-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  color: #8a9ab5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-email-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #00d4aa;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-email-link:hover {
  color: #ffffff;
}

.contact-note {
  font-size: 0.82rem;
  color: #8a9ab5;
}

/* ── Blog Section ─────────────────────────────────────────── */
.blog-section {
  padding: 5rem 0;
}

.blog-subscribe {
  background: rgba(0, 212, 170, 0.04);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}

.blog-subscribe h3 {
  margin-bottom: 0.5rem;
}

.blog-subscribe p {
  color: #8a9ab5;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.subscribe-form {
  display: flex;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto;
}

.subscribe-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #e8edf5;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.subscribe-form input:focus {
  border-color: var(--teal);
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.subscribe-note {
  font-size: 0.78rem;
  color: #8a9ab5;
  margin-top: 0.75rem;
}

.blog-coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.blog-coming-soon .mono-label {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.blog-coming-soon h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.blog-coming-soon p {
  color: #8a9ab5;
  font-size: 0.95rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #060e1e;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 4rem 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .nav-logo {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #8a9ab5;
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 240px;
}

.footer-contact {
  margin-top: 1rem;
}

.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: #8a9ab5;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-email-link:hover {
  color: #00d4aa;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #8a9ab5;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col ul li span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #8a9ab5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: rgba(138, 154, 181, 0.6);
}

.footer-bottom a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: rgba(138, 154, 181, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--teal);
}

/* ── Accessibility ────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* ── Responsive: 1024px ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content-wrap {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-text {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Responsive: 768px ────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 24px 60px;
    text-align: center;
  }

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

  .hero-stats {
    justify-content: center;
  }

  .platform-bar-inner {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form .btn {
    width: 100%;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ── Responsive: 480px ────────────────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-stat {
    align-items: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }
}

/* =============================================================
   NEW COMPONENT STYLES — Site Overhaul v2
   ============================================================= */

/* ── Hero text single-column fix ─────────────────────────── */
.hero-text {
  max-width: 780px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}

/* Alias: hero-stat also maps to stat-item inside hero-stats */
.hero-stats .hero-stat .stat-number,
.hero-stats .hero-stat .stat-label {
  display: block;
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-bar-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  color: #8a9ab5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.trust-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.trust-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  color: #c8d6e8;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* ── Platform Bar alias fix ───────────────────────────────── */
.platform-bar-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  color: #8a9ab5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* ── Who We Help Section ──────────────────────────────────── */
.who-section {
  padding: 5rem 0;
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.who-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color var(--transition-med);
}

.who-card:hover {
  border-color: rgba(0,212,170,0.2);
}

.who-card-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  color: #00d4aa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.who-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.who-card p {
  font-size: 0.88rem;
  color: #8a9ab5;
  line-height: 1.65;
}

/* ── Why Grid (4-column) ──────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

/* ── Representative Outcomes ──────────────────────────────── */
.outcomes-section {
  padding: 5rem 0;
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.outcome-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.outcome-type {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #00d4aa;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.outcome-context {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.outcome-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a9ab5;
  display: block;
}

.outcome-value {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #c8d6e8;
  line-height: 1.5;
  display: block;
}

.outcome-result {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #8a9ab5;
  font-style: italic;
  line-height: 1.6;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}

/* ── Mid-Funnel Resource Section ──────────────────────────── */
.resource-section {
  padding: 5rem 0;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.resource-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resource-card-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  color: #00d4aa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.resource-card h3 {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.3;
}

.resource-card p {
  font-size: 0.85rem;
  color: #8a9ab5;
  line-height: 1.6;
  flex: 1;
}

.resource-coming-soon {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  color: #8a9ab5;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: auto;
  width: fit-content;
}

/* ── FAQ Section ──────────────────────────────────────────── */
.faq-section {
  padding: 5rem 0;
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
  margin-top: 1rem;
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
}

.faq-q {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.faq-a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #8a9ab5;
  line-height: 1.7;
}

/* ── About: Philosophy Section ────────────────────────────── */
.philosophy-section {
  padding: 5rem 0;
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.philosophy-item {
  padding: 1.75rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
}

.philosophy-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2rem;
  font-weight: 400;
  color: rgba(0,212,170,0.18);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}

.philosophy-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.philosophy-item p {
  font-size: 0.88rem;
  color: #8a9ab5;
  line-height: 1.65;
}

/* ── About: Capabilities Section ─────────────────────────── */
.capabilities-section {
  padding: 5rem 0;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.capability-item {
  padding: 1.5rem;
  border-top: 2px solid rgba(0,212,170,0.2);
  padding-top: 1.25rem;
}

.capability-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: #00d4aa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.capability-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.capability-item p {
  font-size: 0.85rem;
  color: #8a9ab5;
  line-height: 1.6;
}

/* ── About: Credentials Section ──────────────────────────── */
.credentials-section {
  padding: 5rem 0;
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.cred-category {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cred-category-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: #00d4aa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.5rem;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cred-list li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #c8d6e8;
  line-height: 1.4;
  padding-left: 1rem;
  position: relative;
}

.cred-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(0,212,170,0.4);
  font-size: 0.7rem;
}

/* ── Services: Detail Inner Layout ───────────────────────── */
.service-detail-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 3rem 0;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-subsection {
  margin-top: 1.75rem;
}

.service-subsection-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  color: #8a9ab5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.service-detail-desc {
  font-size: 0.95rem;
  color: #c8d6e8;
  line-height: 1.75;
  margin-top: 1rem;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.problem-list li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #c8d6e8;
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.problem-list li::before {
  content: '↳';
  position: absolute;
  left: 0;
  color: #8a9ab5;
  font-size: 0.8rem;
}

/* ── Services: Deliverables ───────────────────────────────── */
.service-deliverable {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.service-deliverable-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  color: #8a9ab5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.deliverable-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.deliverable-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: #c8d6e8;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
  white-space: nowrap;
}

/* ── Services: Visual Column ──────────────────────────────── */
.service-detail-visual {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.detail-visual-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4aa;
  margin: 0 auto;
}

.detail-visual-icon svg {
  width: 36px;
  height: 36px;
}

.detail-visual-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.detail-visual-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #8a9ab5;
  line-height: 1.6;
}

.detail-visual-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: #8a9ab5;
  line-height: 1.5;
  background: rgba(255,255,255,0.03);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  width: 100%;
  text-align: left;
}

.detail-visual-stat {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  text-align: center;
}

.detail-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #00d4aa;
  line-height: 1;
}

.detail-stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #8a9ab5;
  margin-top: 0.25rem;
}

/* ── Services: Platform/Framework Badges ─────────────────── */
.platform-badges,
.framework-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.platform-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: #00d4aa;
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.2);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.framework-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: #c8d6e8;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

/* ── Services: Assessment Cards ───────────────────────────── */
.assessment-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.assessment-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 1.25rem;
}

.assessment-card-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.assessment-card p {
  font-size: 0.82rem;
  color: #8a9ab5;
  line-height: 1.55;
}

/* ── Services: Process Steps ──────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #c8d6e8;
  line-height: 1.55;
}

.process-step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: #00d4aa;
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.2);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Services: Ideal For / Value Prop ─────────────────────── */
.ideal-for {
  margin-top: 1.25rem;
  background: rgba(0,212,170,0.04);
  border-left: 3px solid rgba(0,212,170,0.4);
  padding: 0.9rem 1.25rem;
  border-radius: 0 6px 6px 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #c8d6e8;
  line-height: 1.6;
}

.service-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}

/* ── Insights: Article Cards ──────────────────────────────── */
.insights-section {
  padding: 5rem 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.article-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition-med), transform var(--transition-med);
}

.article-card:hover {
  border-color: rgba(0,212,170,0.2);
  transform: translateY(-2px);
}

.article-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.article-category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  color: #00d4aa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-read-time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  color: #8a9ab5;
  letter-spacing: 0.05em;
}

.article-badge-coming-soon {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  font-weight: 500;
  color: #8a9ab5;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.article-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  flex: 1;
}

.article-summary {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #8a9ab5;
  line-height: 1.65;
  flex: 1;
}

.article-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: auto;
  flex-wrap: wrap;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.article-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: #8a9ab5;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.article-notify-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: #00d4aa;
  background: none;
  border: 1px solid rgba(0,212,170,0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.article-notify-btn:hover {
  background: rgba(0,212,170,0.08);
  color: #ffffff;
}

/* ── Subscribe Box (Insights page) ───────────────────────── */
.subscribe-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.subscribe-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-box .mono-label {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.subscribe-box h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
}

.subscribe-box p {
  font-size: 0.9rem;
  color: #8a9ab5;
  margin-bottom: 1.5rem;
}

.subscribe-note {
  font-size: 0.75rem !important;
  color: #8a9ab5 !important;
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
}

/* ── Contact: Prep List ───────────────────────────────────── */
.contact-useful-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-prep-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-prep-list li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #c8d6e8;
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.contact-prep-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(0,212,170,0.5);
  font-size: 0.75rem;
}

/* ── Responsive additions for new components ──────────────── */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .outcomes-grid,
  .resource-grid,
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-detail-visual {
    position: static;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .outcomes-grid,
  .resource-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .assessment-cards {
    grid-template-columns: 1fr;
  }
  .article-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .cred-grid {
    grid-template-columns: 1fr;
  }
  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* ══════════════════════════════════════════════════════════
   CERTIFICATIONS SECTION (about.html)
══════════════════════════════════════════════════════════ */

.cert-section {
  background: var(--surface);
}

.cert-subsection {
  margin-bottom: 3rem;
}

.cert-subsection:last-child {
  margin-bottom: 0;
}

.cert-subsection-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

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

.cert-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s;
}

.cert-card:hover {
  border-color: var(--teal);
}

.cert-card--inprogress {
  border-color: rgba(0, 212, 170, 0.3);
  opacity: 0.85;
}

.cert-card--inprogress .cert-check {
  background: rgba(0, 212, 170, 0.08);
  color: var(--muted);
}

.cert-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.cert-check svg {
  width: 14px;
  height: 14px;
}

.cert-info {
  flex: 1;
}

.cert-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.cert-issuer {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}

.cert-inprogress-badge {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 3px;
  padding: 1px 6px;
  margin-left: 0.4rem;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════
   REPRESENTATIVE ENGAGEMENTS (index.html)
══════════════════════════════════════════════════════════ */

.engagements-section {
  background: var(--bg);
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.engagement-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 6px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.engagement-client,
.engagement-problem,
.engagement-outcome {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.engagement-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.engagement-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.engagement-outcome .engagement-text {
  color: var(--text-primary);
  font-weight: 500;
}

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

/* ══════════════════════════════════════════════════════════
   INTAKE FORM (contact.html)
══════════════════════════════════════════════════════════ */

.intake-form {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem;
}

.intake-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.intake-form .required {
  color: #2dd4bf;
}

.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form select,
.intake-form textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: #2dd4bf;
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.intake-form input::placeholder,
.intake-form textarea::placeholder {
  color: #737373;
}

.intake-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23737373' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.intake-form select option {
  background: #1a1a1a;
  color: #ffffff;
}

.intake-form button[type="submit"] {
  width: 100%;
  background-color: #2dd4bf;
  color: #0a0a0a;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 0.5rem;
}

.intake-form button[type="submit"]:hover {
  background-color: #14b8a6;
}

.intake-form .privacy-note {
  font-size: 0.75rem;
  color: #737373;
  margin-top: 1rem;
  text-align: center;
}

.intake-form .privacy-note a {
  color: #2dd4bf;
  text-decoration: none;
}

.intake-form .privacy-note a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════
   ARTICLE READ BUTTON (blog/index.html)
══════════════════════════════════════════════════════════ */

.article-read-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.article-read-btn:hover {
  opacity: 0.75;
}

.article-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.article-title a:hover {
  color: var(--teal);
}

/* ══════════════════════════════════════════════════════════
   ARTICLE PAGES (blog/*.html)
══════════════════════════════════════════════════════════ */

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.article-back-link:hover {
  color: var(--teal);
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.article-category-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--teal);
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 3px;
  padding: 3px 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-read-time-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2rem 0 0.75rem;
}

.article-body p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-body li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.article-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.article-body .callout {
  background: var(--surface);
  border-left: 3px solid var(--teal);
  border-radius: 0 4px 4px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.article-body .callout p {
  margin: 0;
  font-size: 0.95rem;
}

.article-cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.article-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 0;
}

.article-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.article-cta-inner p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.article-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .article-cta-actions {
    flex-direction: column;
  }
  .intake-form {
    padding: 1.25rem;
  }
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE CREDENTIAL PILLS (index.html)
══════════════════════════════════════════════════════════ */

.hp-creds-section {
  background: var(--surface);
}

.creds-statement {
  max-width: 720px;
}

.creds-lead {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.75;
  margin-top: 0.75rem;
}

.hp-cred-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.hp-cred-pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.45rem 0.9rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}

.hp-cred-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* resource section "in preparation" label */
.resource-in-prep {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.75rem;
}

.hero h1,
.hero-text h1,
#hero-heading {
  font-size: 52px !important;
  line-height: 1.1 !important;
  max-width: 640px !important;
  letter-spacing: -0.025em !important;
}

/* Final h1 size fix */
#hero-heading {
  font-size: 48px !important;
  line-height: 1.08 !important;
  max-width: 620px !important;
  letter-spacing: -0.02em !important;
}

/* Final hero vertical center fix */
.hero {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hero > .container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

