/* ============================================
   ALTUS SOLUTION — DESIGN TOKENS & BASE CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&display=swap');

:root {
  /* Brand Colors */
  --color-brand:        #FF5C00;
  --color-brand-hover:  #E04D00;
  --color-brand-dim:    rgba(255, 92, 0, 0.12);

  /* Surfaces */
  --color-bg:           #0A0A0A;
  --color-surface:      #141414;
  --color-surface-2:    #1A1A1A;
  --color-surface-3:    #222222;
  --color-divider:      #2a2a2a;
  --color-border:       #333333;

  /* Text */
  --color-text:         #FFFFFF;
  --color-text-muted:   rgba(255,255,255,0.65);
  --color-text-faint:   rgba(255,255,255,0.35);
  --color-text-dark:    #0A0A0A;

  /* Light / cream section */
  --color-light-bg:       #f5f0e8;
  --color-light-surface:  #ede8df;
  --color-light-text:     #0f0f0d;
  --color-light-muted:    #6a6560;

  /* Cream palette aliases */
  --color-cream:          #f5f0e8;
  --color-cream-surface:  #ede8df;
  --color-cream-text:     #0f0f0d;
  --color-cream-muted:    #6a6560;
  --color-cream-rule:     rgba(15,15,13,0.10);

  /* Fonts — Poppins across all typography */
  --font-display: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'Poppins', 'Helvetica Neue', Arial, sans-serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;

  /* Radius — sharp editorial language */
  --radius-sm:   0px;
  --radius-md:   2px;
  --radius-lg:   2px;
  --radius-xl:   2px;
  --radius-full: 9999px; /* reserved for circles/avatars only */

  /* Transitions */
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.25; font-family: var(--font-display); }
p, li { text-wrap: pretty; max-width: 72ch; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; width: 100%; }

::selection {
  background: rgba(255, 92, 0, 0.25);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
}

/* ── LOGO ───────────────────────────────── */
.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}

.nav-logo img {
  height: 26px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: var(--space-4);
}

.footer-logo img {
  height: 22px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Hide old text + dot fallback */
.logo-dot {
  display: none;
}

/* ── NAV LINKS ───────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-links > li > button {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2) 0;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--color-brand); }
.nav-links > li > a.active { color: var(--color-brand); }

.nav-chevron {
  width: 14px; height: 14px;
  transition: transform var(--transition);
}
.nav-dropdown-toggle.open .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-2);
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  list-style: none;
  box-shadow: var(--shadow-lg);
}

.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--color-brand);
  background: var(--color-brand-dim);
}

/* Oracle badge */
.oracle-badge {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.oracle-badge-img {
  height: 47px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Legacy text spans — hidden */
.oracle-badge-name,
.oracle-badge-divider,
.oracle-badge-partner { display: none; }

.oracle-dot { display: none; }

/* Mobile hamburger */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 900px) {
  .nav-links, .oracle-badge { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-bg);
  z-index: 99;
  padding: 100px var(--space-8) var(--space-8);
  flex-direction: column;
  gap: var(--space-4);
  overflow-y: auto;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a, .nav-mobile-menu button {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
  width: 100%;
  text-align: left;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  transition: color var(--transition);
}
.nav-mobile-menu a:hover,
.nav-mobile-menu button:hover { color: var(--color-brand); }

.nav-mobile-sub { padding-left: var(--space-4); }
.nav-mobile-sub a { font-size: var(--text-base); font-weight: 400; }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.container--narrow { max-width: var(--content-default); }

section {
  padding-block: clamp(var(--space-12), 5vw, var(--space-20));
}

.section-dark { background: var(--color-bg); color: var(--color-text); }
.section-surface { background: var(--color-surface); color: var(--color-text); }
.section-light { background: var(--color-light-bg); color: var(--color-light-text); }
.section-light p, .section-light li { color: var(--color-light-muted); }
.section-light h1, .section-light h2, .section-light h3, .section-light h4 {
  color: var(--color-light-text);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: var(--space-4);
}

.section-heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.section-subheading {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
  max-width: 60ch;
}

.section-light .section-subheading { color: var(--color-light-muted); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--color-brand);
  color: #fff;
  border-color: var(--color-brand);
}
.btn-primary:hover {
  background: var(--color-brand-hover);
  border-color: var(--color-brand-hover);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-cream-text);
  border-color: rgba(15,15,13,0.25);
}
.btn-outline-dark:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.btn-white {
  background: #fff;
  color: var(--color-brand);
  border-color: #fff;
}
.btn-white:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.88);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 60%, #1a0800 100%);
  padding: clamp(120px, 18vw, 180px) 0 clamp(var(--space-16), 8vw, var(--space-32));
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,92,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: var(--space-5);
}

.page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: var(--space-6);
  max-width: 18ch;
}

.page-hero-text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

@media (min-width: 1024px) {
  .page-hero-heading {
    max-width: none;
  }
  .page-hero-text {
    max-width: 72ch;
  }
}

/* Stats bar */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-8) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
  text-align: center;
}

@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-brand);
  line-height: 1;
  margin-bottom: var(--space-1);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color var(--transition), transform var(--transition);
}

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

.card-icon {
  width: 48px; height: 48px;
  background: var(--color-brand-dim);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.card-icon svg {
  width: 22px; height: 22px;
  color: var(--color-brand);
}

.card-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-3);
}

.card-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-brand);
  margin-top: var(--space-5);
  transition: gap var(--transition);
}
.card-link:hover { gap: var(--space-3); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  position: relative;
}

.testimonial-quote-mark {
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  color: var(--color-brand);
  opacity: 0.25;
  line-height: 0.7;
  margin-bottom: var(--space-4);
  user-select: none;
}

.testimonial-text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-8);
  max-width: 100%;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--color-brand);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
}

.testimonial-role {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* Company logo badge in testimonials */
.testimonial-company-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
}

.testimonial-company-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--color-brand-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: 0;
  flex-shrink: 0;
}

.testimonial-company-name {
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* ============================================
   HERO (shared - homepage)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-6);
  display: block;
}

.hero-heading {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: var(--space-8);
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050505;
  border-top: 1px solid var(--color-divider);
  padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 28ch;
}

.footer-col-heading {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-5);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-brand); }

.footer-address {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

.footer-social {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-social a svg { width: 16px; height: 16px; }

.footer-social a:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
}
.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--color-brand); }

.footer-bottom {
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

/* ============================================
   COMMON COMPONENTS
   ============================================ */

/* Eyebrow with pill style */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-brand-dim);
  border: 1px solid rgba(255,92,0,0.25);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-5);
}

/* Divider line */
.divider {
  width: 48px;
  height: 3px;
  background: var(--color-brand);
  border-radius: 2px;
  margin-bottom: var(--space-8);
}

/* Tag chip */
.tag {
  display: inline-block;
  background: var(--color-brand-dim);
  color: var(--color-brand);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Job listing */
.job-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.job-card:hover {
  border-color: var(--color-brand);
  transform: translateX(4px);
}

.job-card-left { flex: 1; }

.job-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-2);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.job-badge svg { width: 12px; height: 12px; opacity: 0.7; }

.job-dept {
  display: inline-block;
  background: var(--color-brand-dim);
  color: var(--color-brand);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.job-card-arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all var(--transition);
  flex-shrink: 0;
}

.job-card:hover .job-card-arrow {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: var(--color-brand-dim);
}

.job-card-arrow svg { width: 16px; height: 16px; }

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.filter-tab {
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-tab:hover {
  border-color: rgba(255,92,0,0.4);
  color: rgba(255,255,255,0.85);
}

.filter-tab.active {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #fff;
}

/* Blog card */
.blog-card-img-area {
  height: 200px;
  background: linear-gradient(135deg, var(--color-surface-2) 0%, var(--color-surface-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img-area img {
  transform: scale(1.04);
}

/* Founder card photo */
.founder-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-brand);
  margin: 0 auto var(--space-5);
  display: block;
  background: var(--color-surface-2);
}

.founder-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--color-brand);
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brand);
  background: var(--color-surface-2);
}

@media (max-width: 600px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .job-card-arrow { display: none; }
}

/* ─── TYPE HIERARCHY OVERRIDES ───────────────────── */

/* ── Mono overrides — data, labels, technical readout ── */
.service-number,
.tp-value,
.tp-label,
.tp-bar-info,
.tp-title,
.tp-status,
.footer-col-heading,
.testimonial-role {
  font-family: var(--font-body) !important;
}

/* ── Body font for UI elements ─────────────────────── */
.nav-links > li > a,
.nav-links > li > button,
.nav-dropdown a,
.nav-mobile-menu a,
.card-link,
.btn {
  font-family: var(--font-body) !important;
}

/* ── Type weight system (Poppins) ───────────────────
   900/800  → hero display headings
   700      → section headings, bold UI
   600      → sub-headings, labels, eyebrows, nav
   500      → medium body, card titles
   400      → body copy, paragraphs
   300      → fine print, captions
   ──────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700 !important;
  line-height: 1.2;
}

.hero-h1 {
  font-weight: 700 !important;
}

.intro-heading,
.services-heading,
.framework-heading,
.trust-heading,
.careers-heading,
.section-heading,
.service-title,
.intro-visual-stat {
  font-weight: 700 !important;
}

.hero-eyebrow,
.eyebrow,
.intro-label,
.hero-geo,
.stat-number,
.stat-label,
.footer-col-heading,
.nav-links a,
.nav-links button,
.nav-dropdown a,
.intro-oracle-badge span,
.intro-visual-stat-label,
.service-number,
.pillar-title,
.testimonial-name,
.testimonial-role,
.card-link,
.btn,
.nav-logo,
.footer-logo {
  font-weight: 600 !important;
}

body,
p,
li,
.hero-sub,
.intro-text,
.service-text,
.framework-text,
.footer-tagline,
.footer-address,
.careers-sub,
.testimonial-text,
.section-subheading,
.pillar-sub,
.footer-links a,
.nav-mobile-menu a,
.nav-mobile-sub a {
  font-weight: 400 !important;
}

/* ── LOGO RESPONSIVE ─────────────────────── */
@media (max-width: 640px) {
  .nav-logo img { height: 20px; }
}

/* ============================================================
   ALTUS V3 — ATMOSPHERIC DESIGN SYSTEM
   Appended — cascade overrides earlier rules where needed
   ============================================================ */

/* ── NEW TOKENS ───────────────────────────────────────────── */
:root {
  --glass-bg:     var(--color-surface);
  --glass-border: var(--color-border);
  --glass-inset:  none;
  --glow-sm:      none;
  --glow-md:      none;
  --glow-lg:      none;
  --space-7:      1.75rem;
  --space-14:     3.5rem;
}

/* ── SECTION ATMOSPHERE ───────────────────────────────────── */
/* Grid lines + ambient glow for all dark / surface sections  */

.section-dark   { position: relative; }
.section-surface { position: relative; }

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px),
    radial-gradient(ellipse 80% 55% at 85% 20%, rgba(255,92,0,0.055) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 85%, rgba(80,140,255,0.022) 0%, transparent 55%);
  background-size: 64px 64px, 64px 64px, auto, auto;
  pointer-events: none;
  z-index: 0;
}

.section-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.010) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.010) 1px, transparent 1px),
    radial-gradient(ellipse 70% 50% at 20% 35%, rgba(255,92,0,0.04) 0%, transparent 55%);
  background-size: 64px 64px, 64px 64px, auto;
  pointer-events: none;
  z-index: 0;
}

.section-dark    > .container { position: relative; z-index: 1; }
.section-surface > .container { position: relative; z-index: 1; }

/* ── HOMEPAGE-SPECIFIC SECTION ATMOSPHERICS ──────────────── */
.services-section { position: relative; }
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px),
    radial-gradient(ellipse 75% 55% at 85% 20%, rgba(255,92,0,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 80%, rgba(80,140,255,0.02) 0%, transparent 55%);
  background-size: 64px 64px, 64px 64px, auto, auto;
  pointer-events: none;
  z-index: 0;
}
.services-section > .container { position: relative; z-index: 1; }

.framework-section { position: relative; }
.framework-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.010) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.010) 1px, transparent 1px),
    radial-gradient(ellipse 65% 50% at 20% 30%, rgba(255,92,0,0.04) 0%, transparent 55%);
  background-size: 64px 64px, 64px 64px, auto;
  pointer-events: none;
  z-index: 0;
}
.framework-section > .container { position: relative; z-index: 1; }

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

.testimonials-wrapper { position: relative; }
.testimonials-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px),
    radial-gradient(ellipse 70% 55% at 80% 20%, rgba(255,92,0,0.045) 0%, transparent 55%);
  background-size: 64px 64px, 64px 64px, auto;
  pointer-events: none;
  z-index: 0;
}
.testimonials-wrapper > .container { position: relative; z-index: 1; }

/* ── ENHANCED PAGE HERO ───────────────────────────────────── */
/* Replace plain gradient with grid + dual glow               */
.page-hero {
  background:
    radial-gradient(ellipse 55% 80% at 90% 55%, rgba(255,92,0,0.10) 0%, transparent 62%),
    radial-gradient(ellipse 60% 40% at 5% 15%,  rgba(80,140,255,0.03) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(135deg, #080808 0%, #131313 55%, #190700 100%);
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

/* Concentric rings on the right — decorative visual fill     */
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,0,0.05) 0%, transparent 55%);
  border: 1px solid rgba(255,92,0,0.08);
  box-shadow:
    0 0 0 55px  rgba(255,92,0,0.025),
    0 0 0 110px rgba(255,92,0,0.012),
    0 0 0 165px rgba(255,92,0,0.005),
    0 0 80px    rgba(255,92,0,0.06);
  pointer-events: none;
  z-index: 0;
}
.page-hero > .container { position: relative; z-index: 1; }

/* ── CLEAN SURFACE CARDS (Editorial × Direct Builder) ─────── */
/* No blur. No glow. Solid surfaces, sharp borders.            */
.card,
.service-card {
  background: var(--color-surface) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid var(--color-border) !important;
  box-shadow: none !important;
}
.card:hover,
.service-card:hover {
  border-color: rgba(255,92,0,0.40) !important;
  box-shadow: none !important;
  transform: translateY(-2px) !important;
}

/* Component-level clean surfaces */
.why-item, .step-item, .cap-item, .challenge-item,
.impact-item, .accel-item, .pillar, .svc-link-card,
.sub-card, .testimonial-card, .metric-card, .job-card,
.blog-card {
  background: var(--color-surface-2) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid var(--color-border) !important;
  box-shadow: none !important;
}
.svc-link-card:hover, .sub-card:hover, .pillar:hover,
.job-card:hover { border-color: rgba(255,92,0,0.35) !important; }

/* ── STATS BAR — clean ink surface ───────────────────────── */
.stats-bar {
  background: var(--color-surface) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-top:    1px solid var(--color-divider) !important;
  border-bottom: 1px solid var(--color-divider) !important;
  box-shadow: none !important;
}

/* ── PRIMARY BUTTON — no glow ─────────────────────────────── */
.btn-primary { box-shadow: none !important; }
.btn-primary:hover { box-shadow: none !important; }

/* ── CTA SECTIONS — clean ──────────────────────────────────── */
.page-cta, .cta-section, .cta-strip {
  position: relative;
  overflow: hidden;
}

/* ── FOOTER GRID ──────────────────────────────────────────── */
.footer { position: relative; }
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.007) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
.footer > .container,
.footer > .footer-top,
.footer > .footer-bottom { position: relative; z-index: 1; }

/* ── TECH PANEL COMPONENT ─────────────────────────────────── */
/* Clean data panel — Direct Builder precision               */
.tech-panel {
  position: relative;
  background: var(--color-surface);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: var(--space-6);
  box-shadow: none;
  overflow: hidden;
}
.tech-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
.tech-panel > * { position: relative; z-index: 1; }

.tp-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-brand);
  box-shadow: 0 0 8px rgba(255,92,0,0.7);
  flex-shrink: 0;
}
.tp-title {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.tp-status {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.tp-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.tp-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.tp-value {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--color-brand);
  font-variant-numeric: tabular-nums;
}
.tp-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.3;
}

.tp-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.tp-bar { display: flex; flex-direction: column; gap: 6px; }
.tp-bar-info {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tp-bar-pct { color: var(--color-brand); }
.tp-bar-track {
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.tp-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-brand), #FF8C40);
  box-shadow: 0 0 8px rgba(255,92,0,0.5);
  width: 0;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── HERO VISUAL WRAP ─────────────────────────────────────── */
/* Absolute-positioned tech panel on right side of page-hero  */
.hero-visual-wrap {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: clamp(260px, 26vw, 360px);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 1150px) { .hero-visual-wrap { display: none; } }

/* ── INTRO SECTION DARK VARIANT ───────────────────────────── */
.intro-section-dark {
  background: var(--color-surface);
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  position: relative;
  overflow: hidden;
}
.intro-section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.010) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.010) 1px, transparent 1px),
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(255,92,0,0.045) 0%, transparent 55%);
  background-size: 64px 64px, 64px 64px, auto;
  pointer-events: none;
  z-index: 0;
}
.intro-section-dark > .container { position: relative; z-index: 1; }
