/* ═══════════════════════════════════════════
   TRUTSPHERE TECHNOLOGIES — WEBSITE STYLES
   Colors: White · Rust Orange · Gold · Royal Blue
═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --rust:        #C0392B;
  --rust-light:  #D4503A;
  --rust-dark:   #8B2D18;
  --gold:        #B8860B;
  --gold-light:  #D4A020;
  --gold-dark:   #8A6308;
  --royal-blue:  #2655C5;
  --blue-light:  #5B8BF0;
  --white:       #FFFFFF;
  --off-white:   #F8F6F3;
  --near-white:  #F2EEE8;
  --dark:        #0F0503;
  --dark-2:      #180806;
  --dark-3:      #201008;
  --dark-4:      #2A140A;
  --text-light:  #F0E8DC;
  --text-muted:  #9A8870;
  --border:      rgba(184,134,11,0.18);
  --glow-rust:   rgba(192,57,43,0.4);
  --glow-gold:   rgba(184,134,11,0.3);
  --glow-blue:   rgba(184,134,11,0.2);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(160deg, #090302 0%, #0F0503 40%, #150704 100%);
  background-attachment: fixed;
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Global animations ── */
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.08); }
  66%      { transform: translate(-25px,40px) scale(0.96); }
}
@keyframes shimmerText {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 20px rgba(184,134,11,0.15); }
  50%     { box-shadow: 0 0 45px rgba(184,134,11,0.35), 0 0 80px rgba(192,57,43,0.15); }
}
@keyframes borderFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
h1,h2,h3,h4,h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(192,57,43,0.09);
  border: 1px solid rgba(192,57,43,0.28);
  color: var(--rust-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.section-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--rust-light);
  border-radius: 50%;
  animation: pulseTag 2s infinite;
}

@keyframes pulseTag {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.7); }
}

.gold-text   { color: var(--gold); }
.rust-text   { color: var(--rust-light); }
.blue-text   { color: var(--royal-blue); }

.highlight {
  background: linear-gradient(90deg, var(--rust-light) 0%, var(--gold-light) 40%, var(--gold) 60%, var(--rust-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #D4583B 0%, #C0472A 50%, #8B2D18 100%);
  color: #fff;
  padding: 0.85rem 2.1rem;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px rgba(192,57,43,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(192,57,43,0.45), 0 0 60px rgba(192,57,43,0.15);
}
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  color: var(--gold);
  padding: 0.82rem 2rem;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(184,134,11,0.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px var(--glow-gold);
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.6rem 0;
  transition: all 0.35s ease;
}
#navbar.scrolled {
  background: rgba(15,5,3,0.96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(184,134,11,0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(184,134,11,0.22));
  transition: filter 0.3s, transform 0.3s;
}
.nav-logo-img:hover {
  filter: drop-shadow(0 4px 18px rgba(184,134,11,0.4));
  transform: scale(1.04);
}
.footer-logo-link { display: inline-flex; margin-bottom: 0.5rem; }
.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(184,134,11,0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text-light); }

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

.nav-cta {
  background: linear-gradient(135deg, var(--rust), var(--rust-dark));
  color: #fff;
  padding: 0.58rem 1.4rem;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.06);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px var(--glow-rust);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.mob-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.mob-link:hover { color: var(--text-light); }
.mob-cta { margin-top: 0.5rem; justify-content: center; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 60% at 15% 50%, rgba(192,57,43,0.38) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(184,134,11,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 55% 105%, rgba(192,57,43,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 65%, rgba(184,134,11,0.14) 0%, transparent 50%),
    linear-gradient(135deg, #0C0402 0%, #1C0A06 50%, #0C0402 100%);
}

/* Aurora orbs */
.hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orbFloat linear infinite;
}
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(192,57,43,0.18) 0%, transparent 70%);
  top: -180px; left: -150px;
  animation-duration: 13s;
}
.orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(184,134,11,0.14) 0%, transparent 70%);
  top: 30%; right: -120px;
  animation-duration: 16s;
  animation-delay: -5s;
}
.orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(184,134,11,0.2) 0%, transparent 70%);
  bottom: -100px; left: 35%;
  animation-duration: 11s;
  animation-delay: -8s;
}
.orb-4 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(192,57,43,0.16) 0%, transparent 70%);
  top: 60%; left: 25%;
  animation-duration: 18s;
  animation-delay: -3s;
}

#heroCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.65;
  pointer-events: none;
  z-index: 2;
}
.hero-content { z-index: 10; }

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, rgba(184,134,11,0.12), rgba(192,57,43,0.08));
  border: 1px solid rgba(184,134,11,0.3);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(184,134,11,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: glowPulse 4s ease infinite;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseTag 2s infinite;
}

.hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 490px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.75rem; }

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat-divider { width: 1px; background: rgba(255,255,255,0.08); align-self: stretch; }
.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

/* Dashboard card */
.hero-dashboard {
  background: linear-gradient(135deg, rgba(36,14,5,0.72) 0%, rgba(18,6,2,0.78) 100%);
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 1px 0 rgba(184,134,11,0.2) inset;
}
.hero-dashboard-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-dashboard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dashboard-subtitle {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.dashboard-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
}
.dashboard-badge {
  background: rgba(192,57,43,0.18);
  border: 1px solid rgba(192,57,43,0.4);
  color: #FF6B47;
  font-size: 0.64rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
  animation: blinkBadge 2.5s infinite;
}
@keyframes blinkBadge {
  0%,100% { opacity:1; }
  50%      { opacity:0.55; }
}

.dashboard-alert {
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.18);
  border-left: 3px solid var(--rust);
  border-radius: 8px;
  padding: 0.9rem;
  margin-bottom: 0.9rem;
}
.alert-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--rust-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.alert-items { display: flex; flex-direction: column; gap: 0.38rem; }
.alert-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.alert-dot {
  width: 4px; height: 4px;
  background: var(--rust-light);
  border-radius: 50%;
  flex-shrink: 0;
}
.alert-item .crit { color: var(--rust-light); font-weight: 700; }

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.dash-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 8px;
  padding: 0.78rem;
}
.dash-card-label {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.3rem;
}
.dash-card-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.dash-card-value.critical  { color: var(--rust-light); }
.dash-card-value.gold      { color: var(--gold); }
.dash-card-value.blue-val  { color: var(--blue-light); }
.dash-card-sub { font-size: 0.62rem; color: var(--text-muted); }

.dash-timeline {
  border-top: 1px solid rgba(255,255,255,0.055);
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}
.timeline-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.t-time { color: var(--gold); font-weight: 600; width: 60px; flex-shrink: 0; }
.t-dot  { color: var(--text-muted); font-size: 0.45rem; }
.gold-dot { color: var(--gold); }
.rust-dot { color: var(--rust-light); }

.dashboard-footer {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease infinite;
}
.scroll-arrow { font-size: 1rem; color: var(--gold); }
@keyframes scrollBounce {
  0%,100% { transform:translateX(-50%) translateY(0); opacity:0.6; }
  50%      { transform:translateX(-50%) translateY(6px); opacity:1; }
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-section {
  background: rgba(184,134,11,0.05);
  border-top: 1px solid rgba(184,134,11,0.12);
  border-bottom: 1px solid rgba(184,134,11,0.12);
  padding: 0.85rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerRoll 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 2.5rem;
}
.ticker-item::after {
  content: '◆';
  color: var(--rust);
  font-size: 0.4rem;
  margin-left: 2.5rem;
}
@keyframes tickerRoll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════ */
#problem {
  padding: 7rem 0;
  background: var(--off-white);
}
.problem-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.problem-header .section-tag {
  background: rgba(192,57,43,0.07);
  border-color: rgba(192,57,43,0.22);
  color: var(--rust);
}
.problem-header h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  color: var(--dark);
  margin-bottom: 0.9rem;
}
.problem-header .lead {
  font-size: 1.05rem;
  color: #5A5550;
  max-width: 560px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.problem-card {
  background: #fff;
  border: 1px solid #E5DDD5;
  border-radius: 12px;
  padding: 1.75rem 1.4rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.09);
  border-color: #D4C9BE;
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-icon {
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
  color: var(--rust);
}
.problem-card h4 {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.problem-card p {
  font-size: 0.78rem;
  color: #7A7068;
  line-height: 1.55;
}

.persona-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 2rem;
}
.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.persona-card {
  background: var(--dark-3);
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.persona-card:hover {
  border-color: rgba(184,134,11,0.25);
  transform: translateY(-3px);
}
.persona-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem; left: 1rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--rust);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}
.persona-quote {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.2rem;
  position: relative;
}
.persona-info { display: flex; align-items: center; gap: 0.75rem; }
.persona-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--rust), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.persona-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}
.persona-role { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ══════════════════════════════════════
   WHY NOW
══════════════════════════════════════ */
#why-now {
  padding: 7rem 0;
  background: linear-gradient(155deg, #200D07 0%, #0F0503 55%, #1A0906 100%);
  position: relative;
  overflow: hidden;
}
#why-now::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.why-now-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.why-now-left h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.why-now-left > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.broken-stack {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.4rem;
}
.broken-stack-title {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.1rem;
}
.broken-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.stack-tool {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(192,57,43,0.13);
  border-radius: 7px;
  padding: 0.7rem 0.65rem;
  text-align: center;
  font-size: 0.67rem;
  color: var(--text-muted);
  line-height: 1.4;
  transition: border-color 0.2s;
}
.stack-tool:hover { border-color: rgba(192,57,43,0.28); }
.stack-tool-name {
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.7rem;
  display: block;
  margin-bottom: 0.2rem;
}
.stack-disconnected {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--rust-light);
  font-weight: 600;
}

.why-now-reasons { display: flex; flex-direction: column; gap: 0.85rem; }
.reason-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s;
}
.reason-item:hover {
  border-color: rgba(184,134,11,0.18);
  background: rgba(184,134,11,0.035);
}
.reason-icon {
  width: 36px; height: 36px;
  background: rgba(192,57,43,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.reason-text h4 {
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.reason-text p { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════════
   SOLUTION / PLATFORM
══════════════════════════════════════ */
#solution {
  padding: 7rem 0;
  background: linear-gradient(135deg, #0C0402 0%, #180905 50%, #0C0402 100%);
  position: relative;
}
#solution::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,0.2), transparent);
}

.solution-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.solution-header h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.solution-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.layer-diagram-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.layer-diagram { width: 100%; max-width: 680px; }

.layer-ts {
  background: linear-gradient(135deg, rgba(192,57,43,0.2), rgba(184,134,11,0.15));
  border: 1px solid rgba(184,134,11,0.35);
  border-radius: 12px;
  padding: 1.2rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  position: relative;
  overflow: hidden;
}
.layer-ts::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.06), rgba(184,134,11,0.04));
  pointer-events: none;
}
.layer-ts-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust-light);
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.layer-connector {
  text-align: center;
  padding: 0.75rem 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.layer-connector::before,
.layer-connector::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.layer-tools {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem;
  padding: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.tool-badge {
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 7px;
  padding: 0.6rem 0.5rem;
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.tool-badge:hover {
  border-color: rgba(184,134,11,0.22);
  color: var(--text-light);
}

.duality-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.duality-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  transition: background 0.3s;
}
.duality-no {
  background: rgba(192,57,43,0.05);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.duality-no:hover { background: rgba(192,57,43,0.09); }
.duality-yes {
  background: rgba(184,134,11,0.05);
}
.duality-yes:hover { background: rgba(184,134,11,0.09); }
.duality-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}
.duality-no .duality-icon { background: rgba(192,57,43,0.2); color: var(--rust-light); }
.duality-yes .duality-icon { background: rgba(184,134,11,0.2); color: var(--gold); }
.duality-item h4 { font-size: 0.88rem; color: var(--white); margin-bottom: 0.25rem; }
.duality-item p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.duality-divider { width: 1px; background: rgba(255,255,255,0.06); }

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}
.cap-card {
  background: linear-gradient(135deg, rgba(34,12,4,0.62) 0%, rgba(18,6,2,0.68) 100%);
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: 14px;
  padding: 1.5rem 1.1rem;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cap-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,134,11,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.cap-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rust), var(--gold), var(--blue-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.cap-card:hover {
  border-color: rgba(184,134,11,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(184,134,11,0.08);
}
.cap-card:hover::before { opacity: 1; }
.cap-card:hover::after  { transform: scaleX(1); }
.cap-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(192,57,43,0.13), rgba(184,134,11,0.08));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 0.9rem;
}
.cap-card h4 {
  font-size: 0.82rem;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.cap-card p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
#services {
  padding: 7rem 0;
  background: var(--off-white);
}
.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-header .section-tag {
  background: rgba(192,57,43,0.07);
  border-color: rgba(192,57,43,0.22);
  color: var(--rust);
}
.services-header h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  color: var(--dark);
  margin-bottom: 0.9rem;
}
.services-header p { font-size: 1.05rem; color: #5A5550; max-width: 480px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.055);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.12);
}
.service-card-top {
  padding: 2rem;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.service-card-1 .service-card-top {
  background: linear-gradient(140deg, #0A0A0A 0%, #1E0A04 100%);
}
.service-card-2 .service-card-top {
  background: linear-gradient(140deg, #0A0A0A 0%, #04101E 100%);
}
.service-card-3 .service-card-top {
  background: linear-gradient(140deg, #0A0A0A 0%, #0E0E04 100%);
}
.service-num {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}
.service-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  position: relative;
}
.service-card-1 .service-tag { color: var(--rust-light); }
.service-card-2 .service-tag { color: var(--blue-light); }
.service-card-3 .service-tag { color: var(--gold); }
.service-card-top h3 {
  font-size: 1.25rem;
  color: var(--white);
  position: relative;
  line-height: 1.25;
}

.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body p {
  font-size: 0.87rem;
  color: #5A5550;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: #3D3530;
}
.service-features li::before {
  content: '→';
  font-size: 0.72rem;
  color: var(--rust);
  font-weight: 700;
  flex-shrink: 0;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--rust);
  letter-spacing: 0.01em;
  transition: gap 0.2s ease, color 0.2s;
}
.service-cta:hover { gap: 0.65rem; color: var(--rust-dark); }

/* ══════════════════════════════════════
   WORKFLOW
══════════════════════════════════════ */
#workflow {
  padding: 7rem 0;
  background: linear-gradient(155deg, #1C0B05 0%, #0C0402 60%, #180A05 100%);
}
.workflow-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.workflow-header h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  color: var(--white);
  margin-bottom: 0.9rem;
}
.workflow-header p { font-size: 1.05rem; color: var(--text-muted); }

.scenario-label {
  text-align: center;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust-light);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.scenario-dot {
  width: 6px; height: 6px;
  background: var(--rust-light);
  border-radius: 50%;
  animation: pulseTag 1.5s infinite;
}

.workflow-panel {
  background: linear-gradient(135deg, rgba(14,24,80,0.55) 0%, rgba(6,13,46,0.65) 100%);
  border: 1px solid rgba(184,134,11,0.18);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.workflow-col h4 {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
.wf-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.035);
}
.wf-item:last-child { border-bottom: none; }
.wf-check { color: var(--gold); font-size: 0.6rem; margin-top: 3px; flex-shrink: 0; }
.wf-label { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.wf-val { font-size: 0.78rem; font-weight: 700; color: var(--text-light); }
.wf-val.urgent { color: var(--rust-light); }

.wf-timeline-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.035);
}
.wf-timeline-item:last-of-type { border-bottom: none; }
.wf-time { color: var(--gold); font-size: 0.7rem; font-weight: 700; width: 62px; flex-shrink: 0; }
.wf-dot { font-size: 0.4rem; color: var(--text-muted); }
.gold-dot { color: var(--gold-light); }
.rust-dot { color: var(--rust-light); }
.wf-event { font-size: 0.78rem; color: var(--text-muted); }

.wf-timeline-spacer { height: 0.75rem; }
.wf-time-total {
  background: rgba(184,134,11,0.08);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.wf-time-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.wf-time-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.workflow-cta-bar {
  text-align: center;
  padding: 1.1rem 1.5rem;
  background: rgba(184,134,11,0.05);
  border: 1px solid rgba(184,134,11,0.1);
  border-radius: 10px;
  font-size: 0.87rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}
.workflow-cta-bar strong { color: var(--gold-light); font-style: normal; }

/* ══════════════════════════════════════
   INTEGRATIONS
══════════════════════════════════════ */
#integrations {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #0C0402 0%, #180905 50%, #0C0402 100%);
  border-top: 1px solid rgba(184,134,11,0.08);
  border-bottom: 1px solid rgba(184,134,11,0.08);
}
.integrations-header {
  text-align: center;
  margin-bottom: 2.75rem;
}
.integrations-header h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.integrations-header p { font-size: 0.92rem; color: var(--text-muted); }

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.integration-badge {
  background: linear-gradient(135deg, rgba(32,11,4,0.58) 0%, rgba(18,6,2,0.62) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  transition: all 0.35s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.integration-badge:hover {
  border-color: rgba(184,134,11,0.3);
  background: linear-gradient(135deg, rgba(44,18,7,0.72) 0%, rgba(28,10,4,0.78) 100%);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35), 0 0 20px rgba(184,134,11,0.08);
}
.integration-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.integration-name {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.integration-cat { display: block; font-size: 0.65rem; color: var(--text-muted); }

.integrations-more {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ══════════════════════════════════════
   OUTCOMES
══════════════════════════════════════ */
#outcomes {
  padding: 7rem 0;
  background: linear-gradient(155deg, #240F08 0%, #0F0503 45%, #1C0B05 100%);
  position: relative;
  overflow: hidden;
}
#outcomes::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.outcomes-header { text-align: center; margin-bottom: 3.5rem; }
.outcomes-header h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); color: var(--white); margin-bottom: 0.9rem; }
.outcomes-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.metrics-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}
.metric-card {
  background: linear-gradient(135deg, rgba(32,11,4,0.58) 0%, rgba(18,6,2,0.62) 100%);
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: 14px;
  padding: 1.75rem 1rem;
  text-align: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.metric-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,0.4), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.metric-card:hover {
  border-color: rgba(184,134,11,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(184,134,11,0.1);
}
.metric-card:hover::before { opacity: 1; }
.metric-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--rust-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  display: block;
}
.metric-num.metric-text {
  font-size: 1.65rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
}
.metric-label {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.outcomes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.outcome-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 0.9rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.25s;
}
.outcome-item:hover {
  border-color: rgba(184,134,11,0.18);
  color: var(--text-light);
  background: rgba(184,134,11,0.03);
}
.outcome-check { color: var(--gold); font-size: 0.95rem; flex-shrink: 0; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
#cta-section {
  padding: 7rem 0;
  background: var(--off-white);
}
.cta-box {
  background: linear-gradient(135deg, #0F0503 0%, #1C0A06 50%, #0F0503 100%);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rust), var(--gold), var(--blue-light), var(--gold), var(--rust));
  background-size: 200% auto;
  animation: borderFlow 4s linear infinite;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(184,134,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.65rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.cta-box p {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact {
  padding: 7rem 0;
  background: linear-gradient(155deg, #1C0B05 0%, #0F0503 55%, #180905 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.contact-left > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-info-icon { font-size: 1.05rem; margin-top: 2px; }
.contact-info-text h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}
.contact-info-text p { font-size: 0.83rem; color: var(--text-muted); }

.contact-form {
  background: linear-gradient(135deg, rgba(34,12,4,0.62) 0%, rgba(18,6,2,0.72) 100%);
  border: 1px solid rgba(184,134,11,0.18);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}
.form-title {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.72rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  color: var(--text-light);
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(154,142,130,0.6); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(184,134,11,0.4);
  background: rgba(255,255,255,0.055);
}
.form-group textarea { resize: vertical; min-height: 95px; line-height: 1.6; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-3); color: var(--text-light); }
.form-msg {
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  display: none;
}
.form-msg.success {
  display: block;
  background: rgba(30,120,60,0.12);
  border: 1px solid rgba(30,160,70,0.3);
  color: #5AE07A;
}
.form-msg.error {
  display: block;
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
  color: var(--rust-light);
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: linear-gradient(135deg, #080201 0%, #0F0503 60%, #0C0402 100%);
  border-top: 1px solid rgba(184,134,11,0.1);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 0.85rem;
  max-width: 270px;
}
.footer-tagline {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold-dark);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.055);
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  color: var(--text-muted);
  transition: color 0.2s;
  font-size: 0.78rem;
}
.footer-legal a:hover { color: var(--text-light); }

/* ── Hero tagline ── */
.hero-tagline {
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  margin: 0.5rem 0 1.5rem;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

/* ── Brand promise line in workflow ── */
.brand-promise {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════
   VISION & MISSION
══════════════════════════════════════ */
#vision {
  padding: 6rem 0;
  background: linear-gradient(155deg, #1C0B05 0%, #0C0402 50%, #180A05 100%);
  position: relative;
  overflow: hidden;
}
#vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(192,57,43,0.06), transparent);
  pointer-events: none;
}
.vision-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.vision-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); }

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.vision-card, .mission-card {
  background: rgba(22,8,4,0.7);
  border: 1px solid rgba(184,134,11,0.18);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s;
}
.vision-card:hover, .mission-card:hover {
  border-color: rgba(184,134,11,0.38);
  transform: translateY(-4px);
}
.vm-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.vm-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.vision-card h3, .mission-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-light);
  font-style: italic;
}
.vision-pillars {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
.vision-pillar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.vp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.vp-dot.gold-dot { background: var(--gold); }
.vp-dot.rust-dot { background: var(--rust); }
.vm-divider-line {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,134,11,0.25), transparent);
  align-self: stretch;
  margin: 1rem 0;
}

/* ══════════════════════════════════════
   BRAND VALUES
══════════════════════════════════════ */
#values {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0C0402 0%, #1C0B05 50%, #0C0402 100%);
}
.values-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.values-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
.values-header p { color: var(--text-muted); margin-top: 1rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: rgba(22,8,4,0.65);
  border: 1px solid rgba(184,134,11,0.14);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(10px);
}
.value-card:hover {
  border-color: rgba(192,57,43,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(192,57,43,0.12);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  display: block;
}
.value-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Pillar grid (4sight capabilities) ── */
.pillar-grid { grid-template-columns: repeat(4, 1fr) !important; }
.pillar-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
}
.pillar-card .cap-icon { font-size: 2.2rem; margin-bottom: 0.85rem; }
.pillar-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.pillar-card p { font-size: 0.86rem; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .capabilities-grid { grid-template-columns: repeat(3, 1fr); }
  .pillar-grid        { grid-template-columns: repeat(2, 1fr) !important; }
  .metrics-row        { grid-template-columns: repeat(3, 1fr); }
  .integrations-grid  { grid-template-columns: repeat(3, 1fr); }
  .layer-tools        { grid-template-columns: repeat(3, 1fr); }
  .persona-grid       { grid-template-columns: repeat(2, 1fr); }
  .problem-grid       { grid-template-columns: repeat(3, 1fr); }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .vm-divider-line    { width: 100%; height: 1px; margin: 0; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .nav-cta    { display: none; }

  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 8rem; }
  .hero-right { display: none; }

  .why-now-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid  { grid-template-columns: 1fr; }
  .workflow-panel { grid-template-columns: 1fr; gap: 1.5rem; }
  .outcomes-list  { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid    { grid-template-columns: repeat(2, 1fr) !important; }
  .metrics-row    { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .persona-grid   { grid-template-columns: 1fr; }
  .problem-grid   { grid-template-columns: repeat(2, 1fr); }
  .form-row       { grid-template-columns: 1fr; }
  .duality-row    { flex-direction: column; }
  .hero-stats     { gap: 1.25rem; }
  .cta-box        { padding: 3rem 1.5rem; }
  .layer-tools    { grid-template-columns: repeat(2, 1fr); }
  .values-grid    { grid-template-columns: repeat(2, 1fr); }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .vm-divider-line { width: 100%; height: 1px; margin: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-h1   { font-size: 2rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .metrics-row  { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr 1fr; }
  .pillar-grid  { grid-template-columns: 1fr 1fr !important; }
  .values-grid  { grid-template-columns: 1fr; }
  .vision-pillars { gap: 1rem; }
  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .stat-divider { display: none; }
}
