/* ===========================
   HUREONSYS — DESIGN TOKENS
   =========================== */
:root {
  --bg-primary: #0A0A0A;
  --bg-surface: #111111;
  --bg-elevated: #1A1A1A;

  --accent-red: #CA8A04;
  --accent-red-hv: #D4920A;
  --accent-gold: #CA8A04;

  --text-primary: #F0F0F0;
  --text-muted: #6B7280;

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.14);

  --display: 'Barlow Condensed', sans-serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;

  --z-nav: 100;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  font-weight: 700;
}

a {
  text-decoration: none;
}

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

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===========================
   GLOBAL COMPONENTS
   =========================== */
.section-label {
  display: inline-block;
  border-left: 3px solid var(--accent-gold);
  padding-left: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.text-gold {
  color: var(--accent-gold);
}

.text-red {
  color: var(--accent-red);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1160px;
  z-index: var(--z-nav);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: background 300ms ease, border-color 250ms ease, box-shadow 300ms ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-color: var(--border-hover);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition:
    transform 160ms var(--ease-out),
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent-red);
  color: #0A0A0A;
}

.btn-primary:hover {
  background: var(--accent-red-hv);
  box-shadow: 0 0 28px rgba(202, 138, 4, 0.35), 0 4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-primary:hover .btn-icon-arrow {
  transform: translateX(3px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text-primary);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 15px;
}

.btn-xl {
  padding: 18px 40px;
  font-size: 17px;
}

.btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-icon-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 200ms var(--ease-out);
}

.nav-cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-gold);
  color: #000;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.nav-cta-gold:hover {
  background: #B0BDD0;
  box-shadow: 0 4px 20px rgba(148, 163, 184, 0.25);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid rgba(148, 163, 184, 0.32);
}

.btn-outline-gold:hover {
  background: rgba(148, 163, 184, 0.06);
  border-color: rgba(148, 163, 184, 0.55);
  box-shadow: 0 4px 20px rgba(148, 163, 184, 0.12);
  transform: translateY(-2px);
}

.hero-anchor-link {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-muted);
  transition: color 200ms ease;
}

.hero-anchor-link:hover {
  color: var(--text-primary);
}

/* Hero floors hint */
.hero-floors-hint {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hfh-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.hfh-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hfh-dot-red {
  background: var(--accent-red);
}

.hfh-dot-gold {
  background: var(--accent-gold);
}

.hfh-sep {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.4;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at 50% 30%,
      rgba(202, 138, 4, 0.08) 0%,
      rgba(202, 138, 4, 0.04) 45%,
      transparent 70%);
  filter: blur(60px);
  animation: pulse-glow 7s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--accent-gold);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 0.95;
  color: var(--text-primary);
  max-width: 900px;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===========================
   CONSOLE WINDOW
   =========================== */
.console-window {
  width: 100%;
  max-width: 700px;
  background: #0D1117;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  box-shadow:
    0 0 0 1px rgba(202, 138, 4, 0.3),
    0 24px 64px rgba(0, 0, 0, 0.6);
  text-align: left;
}

.console-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-red {
  background: #FF5F56;
}

.dot-yellow {
  background: #FFBD2E;
}

.dot-green {
  background: #27C93F;
}

.console-title {
  flex: 1;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-gold);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-red);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-red);
  animation: live-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes live-pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px var(--accent-red);
  }

  50% {
    opacity: 0.35;
    box-shadow: none;
  }
}

.console-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.t-line {
  line-height: 1.7;
}

.t-blank {
  height: 8px;
  display: block;
}

.kw {
  color: #FF7B72;
}

.str {
  color: #A5D6FF;
}

.cm {
  color: #8B949E;
}

.fn-name {
  color: #D2A8FF;
}

.num {
  color: var(--accent-gold);
}

.console-output {
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.25);
}

.out-line {
  display: block;
  color: #A5D6FF;
  line-height: 1.7;
  font-size: 12px;
}

.out-gold {
  color: var(--accent-gold);
}

.terminal-cursor {
  color: var(--accent-gold);
  animation: cursor-blink 1.1s step-end infinite;
  display: inline-block;
}

@keyframes cursor-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  padding: 64px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-value {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-unit {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.stat-context {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-muted);
  max-width: 140px;
  text-align: center;
  margin-top: 4px;
  line-height: 1.4;
}

/* ===========================
   SECTIONS SHARED
   =========================== */
.section {
  padding: 104px 0;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.05;
}

.section-subtitle {
  font-family: var(--sans);
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 60px;
}

/* ===========================
   PROBLEM SECTION
   =========================== */
.problem-section {
  background: var(--bg-primary);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problem-card {
  padding: 32px 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent-red);
  border-radius: var(--radius);
  cursor: default;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 240ms var(--ease-out);
}

.problem-card:hover {
  border-color: rgba(202, 138, 4, 0.5);
  border-top-color: var(--accent-red);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(202, 138, 4, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-red);
  transition: background 220ms ease;
}

.problem-card:hover .problem-icon {
  background: rgba(202, 138, 4, 0.16);
}

.problem-icon svg {
  width: 22px;
  height: 22px;
}

.problem-card h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.problem-card p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.68;
}

/* ===========================
   SOLUTION SECTION
   =========================== */
.solution-section {
  background: var(--bg-surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.zero-qa-banner {
  background: linear-gradient(135deg, #0F0B00, #0A0A0A);
  border-left: 3px solid var(--accent-red);
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: white;
  padding: 24px 32px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.feature-card {
  padding: 36px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: default;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms var(--ease-out);
}

.feature-card:hover {
  border-color: rgba(202, 138, 4, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ===========================
   LEADERSHIP SECTION
   =========================== */
.leadership-section {
  background: var(--bg-primary);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.leadership-card {
  padding: 32px 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.leadership-card:hover {
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.lcard-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.lcard-icon svg {
  width: 32px;
  height: 32px;
}

.leadership-card h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.leadership-card p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   FLOOR BRIDGE SECTION
   =========================== */
.floor-bridge {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.floors-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
}

.floor-card {
  width: 100%;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
}

.floor-card-1 {
  background: rgba(202, 138, 4, 0.04);
  border: 1px solid rgba(202, 138, 4, 0.16);
  border-left: 3px solid var(--accent-red);
}

.floor-card-2 {
  background: rgba(148, 163, 184, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-left: 3px solid var(--accent-gold);
}

.floor-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.floor-tag-1 {
  background: rgba(202, 138, 4, 0.1);
  color: var(--accent-red);
  border: 1px solid rgba(202, 138, 4, 0.22);
}

.floor-tag-2 {
  background: rgba(148, 163, 184, 0.08);
  color: var(--accent-gold);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.floor-heading {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.floor-body {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.floor-outcomes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.floor-outcomes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
}

.fout-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fout-dot-red {
  background: var(--accent-red);
}

.fout-dot-gold {
  background: var(--accent-gold);
}

.floor-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    transform 160ms var(--ease-out),
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  white-space: nowrap;
}

.floor-btn:active {
  transform: scale(0.97);
}

.floor-btn-1 {
  background: var(--accent-red);
  color: #0A0A0A;
  border: none;
}

.floor-btn-1:hover {
  background: var(--accent-red-hv);
  box-shadow: 0 4px 20px rgba(202, 138, 4, 0.3);
  transform: translateY(-1px);
}

.floor-btn-2 {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.floor-btn-2:hover {
  background: rgba(148, 163, 184, 0.06);
  border-color: rgba(148, 163, 184, 0.5);
  transform: translateY(-1px);
}

.floor-connector-v {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 0;
  gap: 8px;
}

.fcon-line-v {
  width: 1px;
  height: 24px;
  background: rgba(202, 138, 4, 0.2);
}

.fcon-line-gold-v {
  background: rgba(148, 163, 184, 0.2);
}

.fcon-badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-elevated);
  white-space: nowrap;
}

/* ===========================
   COMPETITIVE MATRIX
   =========================== */
.matrix-section {
  background: var(--bg-surface);
}

.matrix-wrap {
  overflow-x: auto;
  margin-top: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
}

.comparison-table th {
  padding: 14px 20px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table th.col-ours {
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
}

.comparison-table td {
  padding: 18px 20px;
  text-align: center;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--bg-primary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td.row-label {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-elevated);
}

.comparison-table td.col-ours {
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(148, 163, 184, 0.04);
  border-left: 1px solid rgba(148, 163, 184, 0.1);
  border-right: 1px solid rgba(148, 163, 184, 0.1);
}

/* ===========================
   POC / DEAD PROJECT SECTION
   =========================== */
.poc-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #090700 100%);
  border-top: 1px solid rgba(202, 138, 4, 0.15);
  border-bottom: 1px solid rgba(202, 138, 4, 0.15);
}

.poc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.poc-desc {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

/* Horizontal timeline */
.tl-horizontal {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 72px;
}

.tl-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-bottom: 8px;
}

.tl-label {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  max-width: 72px;
}

.tl-connector {
  flex: 1;
  height: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  margin-top: 22px;
  min-width: 12px;
}

.trust-copy {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===========================
   COMPARE CARD
   =========================== */
.compare-card {
  display: flex;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.compare-side {
  flex: 1;
  padding: 28px 22px;
}

.compare-side.before {
  background: rgba(202, 138, 4, 0.04);
}

.compare-side.after {
  background: rgba(16, 185, 129, 0.04);
}

.compare-divider {
  width: 1px;
  background: var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compare-divider-icon {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  flex-shrink: 0;
}

.compare-divider-icon svg {
  width: 14px;
  height: 14px;
}

.compare-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.compare-label.neg {
  color: var(--accent-red);
}

.compare-label.pos {
  color: #10b981;
}

.compare-items {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.ci-x {
  color: var(--accent-red);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.ci-check {
  color: #10b981;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===========================
   CTA SECTION (CLOSING)
   =========================== */
.cta-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center,
      rgba(202, 138, 4, 0.07) 0%,
      transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.0;
}

.cta-subtitle {
  font-family: var(--sans);
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.social-proof {
  margin-bottom: 40px;
}

.social-proof-label {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.logo-placeholder {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.45;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  filter: grayscale(100%);
  transition: opacity 200ms ease, filter 200ms ease;
  letter-spacing: 0.5px;
}

.logo-placeholder:hover {
  opacity: 0.7;
  filter: grayscale(0%);
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cta-micro-copy {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* Dual CTA tracks */
.cta-dual {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cta-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cta-track-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.cta-track-detail {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.cta-track-divider {
  display: flex;
  align-items: center;
  padding-top: 28px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.45;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 48px 0 32px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 36px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo-img {
  height: 26px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-regions {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-links a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-muted);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy,
.footer-tech {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-muted);
}

.footer-tech {
  font-family: var(--mono);
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms var(--ease-out),
    transform 600ms var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 80ms;
}

.reveal-d2 {
  transition-delay: 160ms;
}

.reveal-d3 {
  transition-delay: 240ms;
}

.reveal-d4 {
  transition-delay: 320ms;
}

/* ===========================
   ACCESSIBILITY / REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-glow,
  .live-dot,
  .terminal-cursor {
    animation: none !important;
  }

  * {
    transition-duration: 1ms !important;
  }
}

/* ===========================
   RESPONSIVE — 1024px
   =========================== */
@media (max-width: 1024px) {
  .poc-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

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

/* ===========================
   RESPONSIVE — 768px
   =========================== */
@media (max-width: 768px) {
  .navbar {
    top: 10px;
    width: calc(100% - 28px);
  }

  .nav-container {
    padding: 11px 16px;
  }

  .hero {
    padding: 100px 0 64px;
  }

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

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

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

  .section {
    padding: 72px 0;
  }

  .section-subtitle {
    margin-bottom: 40px;
  }

  .compare-card {
    flex-direction: column;
  }

  .compare-divider {
    width: auto;
    height: 1px;
    flex-direction: row;
  }

  .compare-divider-icon {
    transform: rotate(90deg);
  }

  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

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

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

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .cta-dual {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .cta-track-divider {
    display: none;
  }

  .floor-card {
    padding: 28px 24px;
  }

  .floors-grid {
    max-width: 100%;
  }

  .tl-horizontal {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .tl-connector {
    display: none;
  }

  .matrix-wrap {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 560px;
  }
}

/* ===========================
   RESPONSIVE — 480px
   =========================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .console-window {
    font-size: 11px;
  }

  .console-body {
    padding: 14px 16px;
  }

  .console-output {
    padding: 10px 16px;
  }
}